/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #121212;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    color: inherit;
}

/* Cabeçalho */
.header {
    background-color: #2a2e47;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.header .logo {
    max-width: 50px;
    border-radius: 50%;
    display: block;
}

.brand-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.header .nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1rem;
}

.header .nav a:hover {
    color: #68d391;
}

.cta-button {
    padding: 10px 20px;
    background-color: #68d391;
    color: #121212;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

/* Seção Principal */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(120deg, #68d391, #805ad5);
    color: #121212;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .cta-button {
    background-color: #fff;
    color: #121212;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
}

.hero .cta-secondary {
    background-color: transparent;
    border: 2px solid #121212;
    color: #121212;
}

/* Produtos */
.produtos {
    background-color: #2a2e47;
    padding: 60px 20px;
    text-align: center;
}

.produtos h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.section-subtitle {
    color: #c9c9d9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.produtos .grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.produto {
    background: #393e59;
    padding: 15px;
    border-radius: 10px;
    width: 250px;
}

.produto-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #0d1b2a, #1a1c2c);
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-logo {
    max-width: 65%;
    opacity: 0.9;
}

.produtos-cta {
    margin-top: 40px;
}

/* Sobre Nós */
.sobre {
    background: linear-gradient(120deg, #805ad5, #68d391);
    padding: 60px 20px;
    text-align: center;
    color: #121212;
}

.sobre h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.sobre p {
    max-width: 700px;
    margin: 0 auto;
}

/* Contato */
.contato {
    background-color: #1a1c2c;
    padding: 60px 20px;
    text-align: center;
}

.contato h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contato-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contato-card {
    background: #2a2e47;
    padding: 25px 35px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    min-width: 140px;
    transition: transform 0.15s ease, background 0.15s ease;
}

.contato-card:hover {
    background: #393e59;
    transform: translateY(-3px);
}

.contato-icon {
    font-size: 1.8rem;
}

/* Rodapé */
.footer {
    background-color: #1a1c2c;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #2a2e47;
}

.footer .social a {
    color: #68d391;
    margin: 0 10px;
    text-decoration: none;
}

.footer .social a:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-top: 15px;
        order: 3;
    }

    .nav.open {
        display: flex;
    }

    .header .nav a {
        margin: 8px 0;
    }

    .header-cta {
        display: none;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}
