/* ================================== */
/* CSS AUTÔNOMO - PÁGINA AJUDA
/* TEMA: AMARELO
/* ================================== */

/* ---------------------------------- */
/* 1. VARIÁVEIS E RESET GLOBAL
/* ---------------------------------- */

:root {
    /* Paleta Vibrante (Padrão do Site) */
    --color-primary-blue: #005A9C;
    --color-secondary-green: #34A853;
    --color-accent-yellow: #FFBF00;
    --color-accent-red: #EA4335;
    --color-accent-purple: #7928CA;

    --color-text-dark: #333333;
    --color-text-light: #FFFFFF;
    --color-bg-light: #FFFFFF;
    --color-bg-grey: #f7f9fc;

    /* Tom de amarelo mais escuro para hovers */
    --color-accent-yellow-dark: #E6AC00;

    --font-main: 'Poppins', sans-serif;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Sombra baseada no Amarelo */
    --shadow-medium: 0 8px 25px rgba(255, 191, 0, 0.15);
    --border-radius: 12px;
    --transition-fast: 0.2s ease-in-out;
    --transition-premium: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background-color: var(--color-accent-yellow);
    color: var(--color-text-dark);
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
    /* 16px */
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-dark);
    line-height: 1.7;
    background-color: var(--color-bg-grey);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.1rem;
}

/* Classe utilitária para acessibilidade (Esconde visualmente) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent-yellow-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* ---------------------------------- */
/* 2. COMPONENTES (TEMA AMARELO)
/* ---------------------------------- */

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.btn-primary {
    background-color: var(--color-accent-yellow);
    color: var(--color-text-dark);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-accent-yellow-dark);
    transition: 0.3s ease-in-out;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-text-light);
}

.btn-secondary:hover {
    background-color: var(--color-text-light);
    color: var(--color-accent-yellow-dark);
}

.btn-link {
    font-weight: 600;
    color: var(--color-accent-yellow-dark);
    transition: var(--transition-fast);
}

.btn-link:hover {
    color: var(--color-primary-blue);
    letter-spacing: 0.5px;
}

.btn-link i {
    font-size: 0.9em;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.btn-link:hover i {
    transform: translateX(3px);
}

/* ---------------------------------- */
/* 3. HEADER E NAVEGAÇÃO
/* ---------------------------------- */

.header {
    background-color: var(--color-bg-light);
    width: 100%;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-icon {
    font-size: 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary-blue);
    transition: var(--transition-fast);
}

.search-icon:hover {
    color: var(--color-accent-red);
}

.mobile-menu-toggle {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary-blue);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-light);
    box-shadow: var(--shadow-medium);
    padding: 1rem 0;
}

.nav-menu.active {
    display: block;
}

.nav-list {
    flex-direction: column;
}

.nav-list li {
    text-align: center;
    margin: 0.5rem 0;
}

.nav-link {
    font-weight: 600;
    color: var(--color-primary-blue);
    padding: 0.75rem 1rem;
    position: relative;
    transition: var(--transition-fast);
    border-radius: 8px;
    margin: 0 1rem;
    display: block;
}

.nav-list li:nth-child(5) a.nav-link {
    color: var(--color-text-dark);
    background-color: var(--color-accent-yellow);
}

.nav-link:hover {
    color: var(--color-text-dark);
    background-color: var(--color-accent-yellow);
}

/* ---------------------------------- */
/* 5. SEÇÕES (PÁGINA AJUDA)
/* ---------------------------------- */

main {
    padding-top: 82px;
}

/* --- Hero Section (Amarelo - ALTERADO) --- */
.page-title-ajuda {
    /* === ALTERAÇÃO: Fundo de Imagem === */
    /* TROQUE A IMAGEM AQUI */
    background-image: linear-gradient(rgba(204, 152, 0, 0.75), rgba(179, 127, 0, 0.75)), url('../imagens/hero-ajuda.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--color-text-dark);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.page-title-ajuda h1 {
    font-size: 2.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
}

.page-title-ajuda p {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2rem;
    /* Espaço para botões */
}

/* === NOVO: Wrapper dos Botões do Hero === */
.hero-buttons {
    display: flex;
    flex-direction: column;
    /* Empilha no mobile */
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

/* Botão primário (Amarelo) */
.hero-buttons .btn-primary {
    background-color: var(--color-accent-yellow-dark);
    color: var(--color-text-dark);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--color-accent-yellow);
}

/* Botão secundário (Preto/Transparente) */
.hero-buttons .btn-secondary {
    border-color: var(--color-text-dark);
    color: var(--color-text-dark);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
}

/* ==================================
  MINI MENU DE NAVEGAÇÃO (ATUALIZADO)
  ================================== */
.faq-nav-menu {
    background-color: var(--color-bg-light);
    padding: 2rem 0;
    /* Mais padding vertical */
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 82px;
    /* Altura do header mobile */
    z-index: 999;
}

.faq-nav-menu .container {
    max-width: 900px;
}

.faq-nav-menu h2 {
    font-size: 1.5rem;
    color: var(--color-primary-blue);
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-nav-menu p {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #555;
}

.nav-buttons-container {
    display: flex;
    gap: 0.75rem;
    /* Espaçamento menor */
    overflow-x: auto;
    /* Scroll horizontal no mobile */
    white-space: nowrap;
    /* Impede quebra de linha */

    /* Esconde a barra de scroll */
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* Adiciona padding lateral para não colar */
    padding-left: 5%;
    padding-right: 5%;
}

.nav-buttons-container::-webkit-scrollbar {
    display: none;
}

.nav-button {
    flex-shrink: 0;
    display: inline-block;
    padding: 0.5rem 1.25rem;
    /* Botões menores */
    border-radius: 50px;
    background-color: var(--color-bg-grey);
    border: 1px solid #eee;
    color: var(--color-primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    /* Fonte menor */
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-button:hover {
    background-color: var(--color-accent-yellow);
    color: var(--color-text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}


/* --- Seção FAQ (Acordeão) --- */
.faq-section {
    padding: 4rem 0;
    background-color: var(--color-bg-grey);
}

.faq-section h2 {
    /* Título "Perguntas e Respostas" */
    color: var(--color-primary-blue);
}

/* TÍTULO DE CATEGORIA (ATUALIZADO) */
.faq-category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-accent-yellow);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;

    /* CORREÇÃO DA ÂNCORA (MOBILE) */
    scroll-margin-top: 180px;
    /* (82px header + 90px menu-nav + buffer) */
}

.faq-category-title:first-of-type {
    margin-top: 2rem;
}

.faq-accordion {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    font-size: 1rem;
    color: var(--color-accent-yellow-dark);
    /* Tema Amarelo */
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.1s ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 0;
    /* Padding inferior removido */
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Adiciona padding apenas quando ativo */
.faq-item.active .faq-answer p {
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Altura máxima da resposta */
}

.faq-cta {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}


/* ---------------------------------- */
/* 6. ANIMAÇÕES ON-SCROLL (Padrão)
/* ---------------------------------- */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform var(--transition-premium);
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

.animate-on-scroll.fade-in {
    transform: scale(0.98);
}

.animate-on-scroll.slide-in-up {
    transform: translateY(30px) scale(0.98);
}

.animate-on-scroll.slide-in-left {
    transform: translateX(-30px) scale(0.98);
}

.animate-on-scroll.slide-in-right {
    transform: translateX(30px) scale(0.98);
}

/* ---------------------------------- */
/* 7. NOVA SEÇÃO NEWSLETTER
/* ---------------------------------- */
.ajuda-newsletter {
    padding: 4rem 0;
    background-color: var(--color-primary-blue);
    /* Fundo azul */
    color: var(--color-text-light);
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-text .section-tag {
    color: var(--color-accent-yellow);
    /* Tag amarela no fundo azul */
}

.newsletter-text h2 {
    color: var(--color-text-light);
    font-size: 2rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form .form-group {
    margin-bottom: 0;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    padding: 0.9rem 1rem;
    border: 1px solid var(--color-bg-light);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    width: 100%;
}

.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 191, 0, 0.3);
}

/* Botão da newsletter (amarelo) */
.newsletter-form .btn {
    padding: 0.9rem;
    font-size: 1rem;
    background-color: var(--color-accent-yellow);
    color: var(--color-text-dark);
}

.newsletter-form .btn-primary::before {
    background: #e6ac00;
    /* Amarelo escuro */
}

.newsletter-form .btn:hover {
    background-color: #ffce3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-privacy {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-privacy a {
    color: var(--color-text-light);
    font-weight: 600;
    text-decoration: underline;
}

.newsletter-privacy a:hover {
    color: var(--color-accent-yellow);
}


/* ---------------------------------- */
/* 8. BOTÃO WHATSAPP E RODAPÉ (TEMA AMARELO) */
/* ---------------------------------- */

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-wpp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 998;
    animation: pulse 2s infinite;
    transition: var(--transition-fast);
}

.floating-wpp:hover {
    animation-play-state: paused;
    transform: scale(1.15);
}

/* === INÍCIO DO RODAPÉ (TEMA AMARELO) === */

.footer {
    background-color: var(--color-accent-yellow);
    color: var(--color-text-dark);
    padding: 3rem 0 0;
    position: relative;
    z-index: 1;
}

.footer-container-new {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col-white {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 0 1rem;
}

.footer-col-white .footer-logo {
    height: 70px;
    /* Logo maior */
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-text-line1 {
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 1rem;
    line-height: 1.5;
}

.footer-divider {
    border: none;
    height: 2px;
    background-color: var(--color-accent-yellow-dark);
    width: 50px;
    margin: 1rem 0;
}

.footer-text-line2 {
    font-weight: 700;
    color: var(--color-accent-yellow-dark);
    font-size: 1.1rem;
    line-height: 1.4;
}

.footer-col-blue {
    padding: 0 1rem;
}

.footer-grid-blue {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-col h4 {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.3rem;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--color-primary-blue);
    margin-top: 0.25rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.footer-col ul a,
.footer-col ul span {
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.footer-col ul a:hover {
    color: var(--color-primary-blue);
}

.footer-col ul i {
    margin-right: 0.75rem;
    width: 20px;
    flex-shrink: 0;
    text-align: center;
    margin-top: 4px;
    color: var(--color-primary-blue);
    /* Ícones azuis */
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.1);
    /* Fundo escuro leve */
    color: var(--color-text-dark);
    /* Ícone escuro */
    border-radius: 50%;
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
    /* Ícone claro no hover */
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    /* Borda escura */
    margin-top: 3rem;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-dark);
    /* Texto escuro */
}

/* ---------------------------------- */
/* 9. ELEMENTOS FIXOS (de flutuante.css)
/* ---------------------------------- */

/* 1. BARRA DE DOAÇÃO FIXA */
.fixed-donation-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0;
    border-top: 1px solid #ddd;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 995;
}

.fixed-donation-bar p {
    margin: 0;
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 0.9rem;
}

.btn-donation {
    background-color: var(--color-secondary-green);
    color: var(--color-text-light);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 50px;
    text-decoration: none;
}

.btn-donation:hover {
    background-color: #2a8a44;
}

/* 2. ÍCONES SOCIAIS FIXOS (TEMA AMARELO) */
.fixed-social-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 997;
    background: rgba(255, 191, 0, 0.8);
    /* <-- MUDANÇA: Amarelo */
    backdrop-filter: blur(5px);
    border-radius: 8px 0 0 8px;
    box-shadow: var(--shadow-light);
}

.fixed-social-icons a {
    display: block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    /* <-- MUDANÇA: Texto Escuro */
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.fixed-social-icons a:hover {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
}

/* 3. BOTÃO VOLTAR AO TOPO (NOVO) */
.back-to-top-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Lado esquerdo */
    width: 45px;
    height: 45px;
    background-color: var(--color-accent-yellow-dark);
    color: var(--color-text-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-light);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: var(--color-accent-yellow);
    transform: scale(1.1);
}

/* 4. AJUSTES DE ELEMENTOS FLUTUANTES (WPP, VLIBRAS) */
.floating-wpp {
    bottom: 80px;
    /* Sobe 60px para a barra de doação */
}

div[vw-access-button].active {
    bottom: 140px !important;
    right: 20px !important;
    z-index: 999 !important;
}

/* 5. AJUSTE PADDING DO RODAPÉ */
.footer {
    padding-bottom: 60px;
    /* Altura da barra de doação */
}


/* ---------------------------------- */
/* 10. MEDIA QUERIES (DESKTOP)
/* ---------------------------------- */

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Header Desktop */
    .header-logo img {
        height: 70px;
    }

    main {
        padding-top: 102px;
    }

    .nav-menu {
        display: block;
        position: static;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        top: auto;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-list {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-list li {
        margin: 0;
    }

    /* === MENU DESKTOP (PÍLULA) (TEMA AMARELO) === */
    .nav-link {
        padding: 0.5rem 1.2rem;
        border-radius: 50px;
        border: 2px solid;
        background: transparent;
        z-index: 1;
        overflow: hidden;
        margin: 0;
        display: inline-block;
    }

    .nav-link:hover {
        background: transparent;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        z-index: -1;
        transition: width 0.3s ease-out;
        background-color: #ccc;
    }

    .nav-link:hover::before {
        width: 100%;
    }

    /* Links do Menu Desktop */
    .nav-list li:nth-child(1) a.nav-link {
        border-color: var(--color-primary-blue);
        color: var(--color-primary-blue);
    }

    .nav-list li:nth-child(1) a.nav-link::before {
        background-color: var(--color-primary-blue);
    }

    .nav-list li:nth-child(1) a.nav-link:hover {
        color: var(--color-text-light);
    }

    .nav-list li:nth-child(2) a.nav-link {
        border-color: var(--color-secondary-green);
        color: var(--color-secondary-green);
    }

    .nav-list li:nth-child(2) a.nav-link::before {
        background-color: var(--color-secondary-green);
    }

    .nav-list li:nth-child(2) a.nav-link:hover {
        color: var(--color-text-light);
    }

    .nav-list li:nth-child(3) a.nav-link {
        border-color: var(--color-accent-purple);
        color: var(--color-accent-purple);
    }

    .nav-list li:nth-child(3) a.nav-link::before {
        background-color: var(--color-accent-purple);
    }

    .nav-list li:nth-child(3) a.nav-link:hover {
        color: var(--color-text-light);
    }

    .nav-list li:nth-child(4) a.nav-link {
        border-color: var(--color-accent-red);
        color: var(--color-accent-red);
    }

    .nav-list li:nth-child(4) a.nav-link::before {
        background-color: var(--color-accent-red);
    }

    .nav-list li:nth-child(4) a.nav-link:hover {
        color: var(--color-text-light);
    }

    .nav-list li:nth-child(5) a.nav-link {
        border-color: var(--color-accent-yellow);
        background-color: var(--color-accent-yellow);
        color: var(--color-text-dark);
    }

    .nav-list li:nth-child(5) a.nav-link::before {
        background-color: var(--color-accent-yellow);
        width: 100%;
        /* Ativo */
    }

    .nav-list li:nth-child(5) a.nav-link:hover {
        color: var(--color-text-dark);
    }

    /* Hero Desktop */
    .page-title-ajuda {
        padding: 6rem 0;
    }

    /* NOVO: Botões do Hero lado a lado */
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    /* --- Mini Menu Desktop --- */
    .faq-nav-menu {
        top: 102px;
        /* Altura do header desktop */
        padding: 2rem 0;
    }

    .faq-nav-menu .container {
        max-width: 900px;
    }

    .nav-buttons-container {
        flex-wrap: wrap;
        /* Permite quebra de linha */
        justify-content: center;
        /* Centraliza os botões */
        overflow-x: visible;
        gap: 1rem;
        padding-left: 0;
        padding-right: 0;
    }

    .nav-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }


    /* --- FAQ Desktop --- */
    .faq-section {
        padding: 5rem 0;
    }

    .faq-category-title {
        font-size: 1.5rem;
        /* CORREÇÃO DA ÂNCORA (DESKTOP) */
        scroll-margin-top: 200px;
        /* (102px header + ~80px menu-nav + buffer) */
    }

    .faq-question {
        padding: 1.75rem 2rem;
        font-size: 1.2rem;
    }

    .faq-answer p {
        padding: 0 2rem 1.75rem;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
    }

    /* Newsletter Desktop - NOVO */
    .newsletter-text {
        text-align: left;
    }

    .newsletter-content {
        display: flex;
        align-items: center;
        gap: 3rem;
        text-align: left;
        max-width: 1100px;
        /* Alinha com o container */
    }

    .newsletter-form {
        flex-direction: row;
        align-items: center;
        flex-grow: 1;
        min-width: 500px;
    }

    .newsletter-form .form-group {
        flex-grow: 1;
    }

    .newsletter-form .btn {
        flex-shrink: 0;
    }

    .newsletter-privacy {
        text-align: left;
        margin-top: 1.5rem;
    }

    .newsletter-text h2 {
        font-size: 2.2rem;
    }

    /* Rodapé Desktop */
    .footer {
        padding-top: 4rem;
    }

    .footer-container-new {
        flex-direction: row;
        align-items: stretch;
        gap: 3rem;
        padding-bottom: 4rem;
    }

    .footer-col-white {
        flex: 0 0 30%;
        margin: 0;
        padding: 2.5rem;
    }

    .footer-col-white .footer-logo {
        height: 70px;
        /* Logo maior */
    }

    .footer-text-line2 {
        color: var(--color-accent-yellow-dark);
    }

    .footer-divider {
        background-color: var(--color-accent-yellow-dark);
    }

    .footer-col-blue {
        flex: 1;
        padding: 0;
    }

    .footer-grid-blue {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-col h4 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-col ul li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

    .social-links {
        margin-top: 0;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .footer-bottom {
        margin-top: 0;
        padding: 2.5rem 0;
        font-size: 0.9rem;
    }

    /* Ajustes flutuantes para desktop */
    .fixed-donation-bar {
        flex-direction: row;
        gap: 1.5rem;
        padding: 0.75rem 1rem;
        height: 70px;
    }

    .fixed-donation-bar p {
        font-size: 1rem;
    }

    .btn-donation {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }

    .footer {
        padding-bottom: 70px;
        /* Altura da barra no desktop */
    }

    .back-to-top-btn {
        bottom: 90px;
        left: 30px;
        width: 50px;
        height: 50px;
    }

    .floating-wpp {
        bottom: 90px;
        /* 20px + 70px da barra */
    }

    div[vw-access-button].active {
        bottom: 165px !important;
        /* 90px do WPP + 55px (altura WPP) + 20px espaço */
    }

    .fixed-social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}