* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0b0b0b;
    color: white;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #111;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.header nav a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.header nav a:hover {
    color: #f7a600;
}

.login-btn {
    background: #f7a600;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
}

/* BANNER */
.banner {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(black, #1a1a1a);
}

.banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner p {
    color: #ccc;
}

.banner button {
    margin-top: 15px;
    padding: 12px 20px;
    background: #f7a600;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* PRODUTOS */
.products {
    padding: 40px;
    text-align: center;
}

.products h2 {
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-items: center;
}

.card {
    background: #1c1c1c;
    padding: 15px;
    width: 200px;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 260px; 
}

.card:hover {
    transform: scale(1.05);
}

.card h3 {
    margin-top: auto;
    margin-bottom: 5px;
}

.card p {
    color: #f7a600;
}

.login-box {
    background: #d9d9d9;
    color: black;
    padding: 25px;
    width: 320px;
    border-radius: 5px;
    margin: 40px auto;
}
.login-box h2 {
    margin-bottom: 15px;
    text-align: center;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 3px;
}

.password-box {
    position: relative;
}

.password-box span {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

button {
    width: 100%;
    padding: 10px;
    background: #f7a600;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
}

button:hover {
    background: #ffbb33;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 10px;
    }

    .product-grid {
        flex-direction: column;
        align-items: center;
    }
}

.top-bar {
    background: #ffbb33;
    color: black;
    padding: 5px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.top-links a {
    margin-left: 15px;
    color: black;
    text-decoration: none;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: #f5f5f5;
    color: black;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffbb33;
}

.menu a {
    margin: 0 10px;
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.menu a:hover {
    color: #f57c00;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search {
    padding: 8px 12px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    width: 200px;
    transition: 0.3s;
    background: transparent;
}

.search:focus {
    border-bottom: 2px solid #f57c00;
}

.icon {
    font-size: 18px;
    cursor: pointer;
}

.search-box {
    position: relative;
}

.search {
    padding: 8px 30px 8px 10px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    background: transparent;
}

.search-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.left-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
}

.search {
    padding: 8px 30px 8px 10px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    width: 220px;
    background: transparent;
}

.search-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.card img {
    width: 100%;
    border-radius: 5px;
    max-height: 140px;
    object-fit: contain;
}

.card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    background: white;
    padding: 10px;
    border-radius: 5px;
}

.products h2 {
    margin-bottom: 30px;
    font-size: 32px;
}

.card h3 {
    text-align: center;
    margin-top: 15px;
    color: white;
}

.card-link {
    text-decoration: none;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffbb33;
    text-decoration: none;
}

.about {
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    background: #1c1c1c;
    border-radius: 10px;
    line-height: 1.8;
}

.about h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #ffbb33;
    text-align: center;
}

.about h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #ffbb33;
}

.about p {
    color: #ddd;
    margin-bottom: 15px;
}

.about ul {
    margin-left: 20px;
    color: #ddd;
}

.about li {
    margin-bottom: 10px;
}

/* SUPORTE */

.support {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    text-align: center;
}

.support h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #ffbb33;
}

.support p {
    color: #ccc;
    margin-bottom: 40px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.support-card {
    background: #1c1c1c;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-card h2 {
    margin-bottom: 15px;
    color: #ffbb33;
}

.support-card p {
    margin-bottom: 20px;
    color: #ddd;
}

.support-card button {
    width: auto;
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

.switch-text {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

.switch-text a {
    color: #f7a600;
    text-decoration: none;
    font-weight: bold;
}

.switch-text a:hover {
    text-decoration: underline;
}