/* ====== TIPOGRAFIA GOOGLE FONTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

/* ====== PALETA OFICIAL NUAPSI ====== */
:root {
    --roxo: #4B0E7A;
    --roxo-escuro: #41007C;
    --turquesa: #06D7C9;
    --coral: #FF5A66;
    --laranja: #FBAA00;
    --azul: #DFF1F4;
}

/* ====== RESET ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ====== BODY ====== */
body {
    font-family: 'Nunito', sans-serif;
    background: var(--azul);
    color: #333;
}

/* ====== HEADER ====== */
header {
    width: 100%;
    background: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    color: var(--roxo);
}

header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--roxo);
}

header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--roxo);
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

header nav a:hover {
    color: var(--turquesa);
}

/* ====== HERO ====== */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--roxo), var(--turquesa));
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 35px;
    margin-top: 120px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 650px;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* ====== BOTÃO PRINCIPAL ====== */
.btn-primary {
    background: var(--laranja);
    padding: 15px 35px;
    border-radius: 12px;
    color: white;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--coral);
}

/* ====== SEÇÃO ====== */
section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* ====== CARDS ====== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

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

/* ====== CTA FINAL ====== */
.cta-final {
    background: var(--roxo);
    color: white;
    text-align: center;
    padding: 90px 20px;
    border-radius: 30px;
}

.cta-final h2 {
    font-size: 36px;
    font-weight: 800;
}

/* ====== FOOTER ====== */
footer {
    background: #fff;
    text-align: center;
    padding: 20px;
    color: #444;
    font-size: 15px;
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 992px) {
    header {
        padding: 15px;
    }

    header h2 {
        font-size: 26px;
    }

    header nav a {
        margin-left: 10px;
        font-size: 14px;
    }

    .hero {
        padding: 40px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }
}

/* ====== CELULARES ====== */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 10px;
    }

    header nav a {
        margin: 0 10px;
        font-size: 14px;
    }

    .hero {
        height: auto;
        padding: 45px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn-primary {
        padding: 12px 28px;
        font-size: 16px;
        border-radius: 10px;
    }

    section {
        padding: 60px 15px;
    }

    footer {
        font-size: 13px;
    }
}

/* ====== CELULARES MUITO PEQUENOS ====== */
@media (max-width: 480px) {
    .hero {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 15px;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 14px;
    }

    header nav a {
        font-size: 12px;
    }
}

/* ... todo o seu CSS ... */

/* Media queries finais */

/* ===== Botão fixo do WhatsApp ===== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.2s ease;
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}
