body {
    background: var(--brand-blue);
}

/* HERO SECTION */
main .hero {
    padding: 40px 0 60px;
    text-align: center;
    background: var(--brand-blue);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

main .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(50, 58, 204, 0.95) 0%, rgba(42, 48, 179, 0.98) 100%);
    z-index: 1;
}

main .hero .container {
    position: relative;
    z-index: 2;
    padding-top: 20px;
}

main .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--brand-yellow);
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

main .hero .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

/* CONTENT SECTIONS */
main section {
    padding: 80px 0;
    background: white;
}

main section:nth-child(even) {
    background-color: var(--bg-light);
}

/* CONTAINER DE CONTEÚDO */
main .content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADINGS dentro do main apenas */
main section h2 {
    color: var(--brand-blue);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

main section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--brand-yellow);
    border-radius: 2px;
}

main section:nth-child(even) h2::after {
    background: var(--brand-blue);
}

/* PARAGRAPHS dentro do main apenas */
main section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--ink-700);
}

/* LISTS dentro do main apenas - AJUSTADO PARA BOLINHAS LARANJAS */
main section ul {
    list-style: none;
    padding-left: 0;
    margin: 40px 0;
}

main section li {
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ink-700);
}

main section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: #FFAA00;
    border-radius: 50%;
}

/* REMOVER ESTILOS ANTIGOS DOS LINKS EM SEÇÕES PARES */
main section a:not(.cta-button) {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    padding-bottom: 2px;
}

main section a:not(.cta-button):hover {
    color: var(--brand-blue-hero);
    border-bottom-color: #FFAA00;
}

/* STRONG TEXT dentro do main apenas */
main section strong {
    color: var(--brand-blue);
    font-weight: 700;
}

main section:nth-child(even) strong {
    color: var(--brand-yellow);
}

/* ========================= */
/* SEÇÃO CTA - ESTILO ORIGINAL RESTAURADO */
/* ========================= */

.cta {
    background: var(--brand-blue-hero);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta .content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta h2 {
    font-family: "Dosis", sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--brand-yellow);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta p {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-yellow);
    color: var(--brand-blue-hero);
    border: 2px solid var(--brand-yellow);
    border-radius: 999px;
    padding: 16px 40px;
    font-family: "Dosis", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #fdfd6b, #ffff00);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    color: var(--brand-blue-hero);
    text-decoration: none;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ========================= */
/* ESTILOS DO FAQ - NOVOS */
/* ========================= */

.feature-faq {
    background: white;
    padding: 80px 0;
}

.feature-faq .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-faq h2 {
    color: var(--brand-blue);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.feature-faq h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FFAA00;
    border-radius: 2px;
}

.feature-faq .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-faq details {
    border: 1px solid #EEF0FF;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 26px rgba(0, 0, 0, .08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-faq details:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    border-color: #D0D4FF;
}

.feature-faq details[open] {
    border-color: var(--brand-blue);
}

.feature-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 60px 20px 20px;
    font-family: "Dosis", sans-serif;
    font-weight: 600;
    color: var(--brand-blue);
    font-size: 18px;
    position: relative;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.feature-faq summary:hover {
    background-color: rgba(247, 248, 255, 0.5);
}

.feature-faq summary::-webkit-details-marker {
    display: none;
}

.feature-faq summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Dosis", sans-serif;
    font-weight: 700;
    color: var(--brand-blue);
    font-size: 24px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 248, 255, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-faq details[open] summary::after {
    content: "–";
    background: var(--brand-blue);
    color: white;
}

.feature-faq details p {
    padding: 0 20px 20px 20px;
    color: var(--ink-700);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.feature-faq details a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    padding-bottom: 2px;
}

.feature-faq details a:hover {
    color: var(--brand-blue-hero);
    border-bottom-color: #FFAA00;
}

/* RESPONSIVIDADE GERAL */
@media (max-width: 768px) {
    main .hero {
        padding: 30px 0 40px;
    }

    main .hero .container {
        padding-top: 10px;
    }

    main .hero h1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    main section {
        padding: 60px 0;
    }

    main section h2 {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }

    main section p,
    main section li {
        font-size: 1rem;
    }

    main section li {
        padding-left: 35px;
    }

    main section li::before {
        top: 8px;
        width: 8px;
        height: 8px;
    }

    /* CTA Responsivo */
    .cta {
        padding: 70px 0;
    }

    .cta h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .cta p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 1.1rem;
    }

    /* FAQ Responsivo */
    .feature-faq {
        padding: 60px 0;
    }

    .feature-faq summary {
        padding: 16px 50px 16px 16px;
        font-size: 16px;
    }

    .feature-faq summary::after {
        right: 16px;
        width: 26px;
        height: 26px;
        font-size: 20px;
    }

    .feature-faq details p {
        padding: 0 16px 16px 16px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    main .content-container {
        padding: 0 15px;
    }

    main section h2 {
        font-size: 1.5rem;
    }

    /* CTA Mobile */
    .cta {
        padding: 50px 0;
    }

    .cta .content-container {
        padding: 0 15px;
    }

    .cta h2 {
        font-size: 1.6rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
    }
}



.pricing-context,
.pricing-reassurance,
.cta-secondary-link {
    margin-top: 12px;
    font-size: 0.95rem;
    opacity: 0.92;
}

.cta-secondary-link a,
.pricing-context a,
.pricing-reassurance a {
    text-decoration: underline;
}

/* CTA – secondary pricing link (isolated, clean) */
.cta .cta-secondary-pricing-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    border-bottom: none !important;
}

/* Neutralize hover/focus/active completely */
.cta .cta-secondary-pricing-link:hover,
.cta .cta-secondary-pricing-link:focus,
.cta .cta-secondary-pricing-link:active {
    color: #fff;
    text-decoration: underline;
    border-bottom: none !important;
}


/* ========================= */
/* CORREÇÃO PARA CTA DENTRO DO MAIN */
/* ========================= */

/* Sobrescreve estilos gerais de main section para a CTA */
main .cta {
    background: var(--brand-blue-hero) !important;
    padding: 100px 0 !important;
    text-align: center !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Remove estilos de section para a CTA */
main .cta section {
    background: transparent !important;
}

/* Garante que o container da CTA tenha z-index correto */
main .cta .container {
    position: relative;
    z-index: 2;
}

/* Restaura estilos específicos da CTA */
main .cta h2 {
    font-family: "Dosis", sans-serif !important;
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
    color: var(--brand-yellow) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    position: relative !important;
    padding-bottom: 15px !important;
}

/* Remove a linha amarela do h2 da CTA */
main .cta h2::after {
    display: none !important;
}

main .cta p {
    font-family: "DM Sans", system-ui, sans-serif !important;
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 2.5rem !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Garante que os strong na CTA fiquem amarelos */
main .cta strong {
    color: var(--brand-yellow) !important;
    font-weight: 700 !important;
}


/* Sobrescreve para esta seção específica */
main section.intro-section strong {
    color: var(--brand-blue) !important;
}