/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #041b5d;
    background-color: #F7F8FA;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #FFFFFF;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #CBA04A;
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    gap: 3rem;
    height: 72px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
}

.logo:visited {
    color: inherit;
}

.logo:hover {
    color: inherit;
    text-decoration: none;
}

.logo:active {
    color: inherit;
}

.nav-logo {
    height: 52px;
    width: auto;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #CBA04A;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.logo:hover .brand-name {
    color: #CBA04A;
}

.logo:visited .brand-name {
    color: #CBA04A;
}

.logo:active .brand-name {
    color: #CBA04A;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #041b5d;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: #CBA04A;
}

.nav-link-destaque {
    background: linear-gradient(135deg, #CBA04A 0%, #b8903d 100%);
    color: #fff !important;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-weight: 700 !important;
    transition: box-shadow 0.2s, transform 0.2s !important;
}

.nav-link-destaque:hover {
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(203, 160, 74, 0.45);
    transform: translateY(-1px);
}

.whatsapp-nav-btn {
    background: #041b5d;
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(4, 27, 93, 0.2);
    border: 2px solid transparent;
    min-height: 44px;
}

.whatsapp-nav-btn:hover {
    background: #1E3A8A;
    transform: translateY(-1px);
    color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(4, 27, 93, 0.3);
}

.whatsapp-nav-icon {
    width: 16px;
    height: 16px;
    fill: #FFFFFF;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

/* Main Content */
.main-content {
    margin-top: 0; /* Remove margin since hero is 100vh */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(
        to right,
        #8692b1 0%,
        #F7F8FA 30%,
        #F7F8FA 70%,
        #8692b1 100%
    );
    color: #041b5d;
    margin-top: 72px;
    border-top: 4px solid #CBA04A;
    padding: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: 4rem 0;
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: #EEF2FF;
    color: #1E3A8A;
    border: 1px solid #C7D2FE;
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #041b5d;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #041b5d;
    line-height: 1.6;
}

.hero-trust {
    font-size: 0.85rem;
    color: #041b5d;
    margin-top: 1.25rem;
}

.hero-logo-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.cta-primary {
    background: #1E3A8A;
    color: #FFFFFF;
}

.cta-primary:hover {
    background: #162F6E;
    color: #FFFFFF;
}

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

.cta-secondary:hover {
    background: #041b5d;
    color: #FFFFFF;
}

.cta-button {
    display: inline-block;
    background: #1E3A8A;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    min-height: 44px;
    line-height: 1.2;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
}

.whatsapp-btn {
    background: #1E3A8A;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.instagram-btn {
    background: #1E3A8A;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    fill: #E5E7EB;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.whatsapp-btn.large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Sections */
.about-section, .features-section, .cta-section {
    padding: 80px 0;
}

.about-section {
    background-color: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.about-section h2,
.features-section h2 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.features-section {
    background: linear-gradient(
        to right,
        #8692b1 0%,
        #F7F8FA 30%,
        #F7F8FA 70%,
        #8692b1 100%
    );
}

.mission-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #CBA04A;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(4,27,93,0.07);
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #CBA04A;
    box-shadow: 0 6px 20px rgba(4,27,93,0.12);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #041b5d;
    font-size: 1.2rem;
}

.cta-section {
    background: #041b5d;
    border-top: 3px solid #CBA04A;
    text-align: center;
    color: #FFFFFF;
}

.cta-section h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.75rem;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    background: #CBA04A;
    color: #041b5d;
    font-weight: 700;
}

.cta-section .cta-button:hover {
    background: #B8903D;
    color: #041b5d;
}

/* Footer */
.footer {
    background: #041b5d;
    border-top: 3px solid #CBA04A;
    color: #FFFFFF;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.footer-cnpj {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #CBA04A;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #CBA04A;
}

.footer-brand-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-top: 0.75rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p + p {
    margin-top: 0.5rem;
}

.footer-legal {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    border-radius: 6px;
    transition: background 0.2s;
}

.mobile-menu-toggle:hover { background: #f0f4ff; }

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #041b5d;
    border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center;
}

.mobile-menu-toggle.open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-toggle.open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 0.75rem 1rem 1rem;
        box-shadow: 0 8px 24px rgba(4, 27, 93, 0.12);
        gap: 0.25rem;
        border-top: 1px solid #e5e7eb;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li { width: 100%; }

    .nav-links a {
        display: block;
        padding: 0.65rem 0.75rem;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .nav-links a:hover { background: #f0f4ff; }

    .nav-link-destaque {
        display: block;
        text-align: center;
        padding: 0.65rem 1rem !important;
        border-radius: 8px !important;
        margin-top: 0.25rem;
    }

    .navbar .container {
        position: relative;
        flex-wrap: wrap;
        height: auto;
        min-height: 72px;
        padding: 0.75rem 15px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 3rem 0;
        gap: 2rem;
    }

    .hero-visual { display: none; }

    .hero-title {
        font-size: 2.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col:first-child {
        text-align: center;
    }

    .footer-logo {
        filter: brightness(0) invert(1);
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .whatsapp-nav-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .whatsapp-nav-icon {
        width: 14px;
        height: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-highlights {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .whatsapp-btn.large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }

    /* Mobile: elipse com eixo maior vertical, cobre a pagina inteira */
    body {
        background: radial-gradient(
            ellipse 150% 55% at 50% 50%,
            #F7F8FA 20%,
            #8692b1 100%
        );
    }

    .hero-section,
    .about-section,
    .features-section,
    .cta-section {
        background: transparent !important;
    }

    .cta-section,
    .cta-section h2,
    .cta-section p {
        color: #041b5d;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .nav-logo {
        height: 50px;
    }
    
    .whatsapp-nav-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .whatsapp-btn.large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Privacy / Terms Page Styles */
.page-hero {
    padding: 3rem 0 2.5rem;
    margin-top: 72px;
}

.page-hero--dark {
    background: #041b5d;
    border-bottom: 3px solid #CBA04A;
    color: #FFFFFF;
}

.page-hero--dark h1 {
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0.75rem 0 0.5rem;
}

.page-hero--dark .page-hero-sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: #CBA04A;
    text-decoration: none;
}

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

.breadcrumb span[aria-hidden] {
    color: rgba(255,255,255,0.4);
}

.breadcrumb span:last-child {
    color: rgba(255,255,255,0.75);
}

.page-hero + .page-content {
    padding-top: 2.5rem;
}

.page-content {
    padding: 100px 0 50px;
    min-height: calc(100vh - 200px);
    background: #F7F8FA;
}

.page-content .container {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(4,27,93,0.07);
}

.page-content h1 {
    color: #1E3A8A;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    color: #1E3A8A;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #CBA04A;
    padding-bottom: 0.5rem;
    font-size: 1.8rem;
}

.privacy-section h3 {
    color: #1E3A8A;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section strong {
    font-weight: 600;
}

.privacy-section a {
    color: #CBA04A;
    text-decoration: none;
    font-weight: 500;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.operation-steps {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    background: #F8FAFF;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #CBA04A;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(203, 160, 74, 0.2);
}

.step h3 {
    color: #1E3A8A;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step p {
    margin-bottom: 0.5rem;
}

.step ul {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .page-content {
        padding: 80px 0 30px;
    }

    .page-hero + .page-content {
        padding-top: 2rem;
    }

    .page-content .container {
        padding: 1rem;
    }

    .page-content h1 {
        font-size: 2rem;
    }

    .privacy-section {
        margin-bottom: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }

    .step {
        padding: 1rem;
    }
}

.intro-text {
    color: #6B7280;
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section ol li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.terms-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #CBA04A;
    text-align: center;
    color: #6B7280;
}

/* Verificação Gratuita — Hub */
.page-content.vg-hub-page {
    padding: 2.5rem 0 5rem;
    background: #F7F8FA;
}

.page-content.vg-hub-page .container {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 20px;
}

.page-content.vg-page {
    padding-top: 0;
    overflow-x: hidden;
    background: #F7F8FA;
}

.page-content.vg-page .container {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 20px;
}

.vg-hub-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto 3rem;
}

.vg-hub-card {
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    padding: 1.75rem;
    box-shadow: 0 2px 8px rgba(4,27,93,0.07);
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 1.25rem;
}

.vg-hub-card:hover {
    border-color: #CBA04A;
    box-shadow: 0 6px 20px rgba(4,27,93,0.12);
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
}

.vg-hub-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #EEF2FF;
    color: #1E3A8A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vg-hub-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vg-hub-card-area {
    background: #FFF8E7;
    color: #92400E;
    border: 1px solid #FCD34D;
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.vg-hub-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #041b5d;
    margin: 0.4rem 0;
}

.vg-hub-card p {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
    flex: 1;
}

.vg-hub-card-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1E3A8A;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.75rem;
}

.vg-hub-info-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 3rem;
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 0 0;
    border-top: 1px solid #E5E7EB;
}

.vg-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #6B7280;
    max-width: 230px;
}

.vg-info-item svg {
    flex-shrink: 0;
    color: #CBA04A;
}

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

    .vg-hub-card {
        padding: 1.5rem;
    }

    .vg-hub-info-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Áreas de Atuação */
.page-content.areas-page {
    padding: 2.5rem 0 5rem;
    background: #F7F8FA;
}

.page-content.areas-page .container {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 20px;
}

.awareness-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #FFF8E7;
    border: 1px solid #FCD34D;
    border-left: 4px solid #CBA04A;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 0 0 2.5rem;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
}

.awareness-banner p { margin: 0; }
.awareness-icon { font-size: 1.5rem; flex-shrink: 0; }

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin: 0 0 4rem;
}

.area-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(4,27,93,0.07);
    border: 1px solid #E5E7EB;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.area-card:hover {
    border-color: #CBA04A;
    box-shadow: 0 6px 20px rgba(4,27,93,0.12);
}

.area-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.75rem 1.75rem 1.25rem;
    background: #EEF2FF;
    border-bottom: 1px solid #E5E7EB;
}

.area-icon { font-size: 2.5rem; flex-shrink: 0; margin-top: 2px; }

.area-card-header h2 {
    font-size: 1.3rem;
    color: #041b5d;
    margin: 0 0 0.4rem;
    font-weight: 700;
}

.area-description {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.area-topics {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.area-topic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    gap: 0.5rem;
    min-height: 44px;
}

.area-topic-link {
    text-decoration: none;
    color: inherit;
}

.area-topic-link:hover { background: #F7F8FA; }
.area-topic-link:hover .area-arrow { transform: translateX(4px); color: #1E3A8A; }
.area-topic-link:hover .topic-title { color: #1E3A8A; }

.topic-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.topic-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #041b5d;
    line-height: 1.3;
    transition: color 0.2s;
}

.topic-desc {
    font-size: 0.8rem;
    color: #6B7280;
    line-height: 1.3;
}

.area-arrow {
    font-size: 1.1rem;
    color: #CBA04A;
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
    font-weight: 600;
}

.topics-extra[hidden] { display: none !important; }

.topics-extra {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.topics-extra:not([hidden]) {
    animation: slideDown 0.25s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.topics-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.65rem 1rem;
    background: none;
    border: 1px dashed #D1D5DB;
    border-radius: 8px;
    color: #6B7280;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    min-height: 44px;
}

.topics-toggle:hover {
    background: #EEF2FF;
    border-color: #CBA04A;
    color: #041b5d;
}

.toggle-chevron {
    font-size: 1rem;
    transition: transform 0.25s ease;
    line-height: 1;
}

.topics-toggle[aria-expanded="true"] .toggle-chevron {
    transform: rotate(180deg);
}

.cta-info {
    text-align: center;
    margin: 2rem 0 4rem;
    padding: 2.5rem 2rem;
    background: #041b5d;
    border-radius: 16px;
    border-top: 3px solid #CBA04A;
    color: #FFFFFF;
}

.cta-info h2 { color: #FFFFFF; font-size: 1.6rem; margin-bottom: 0.75rem; font-weight: 700; }

.cta-info p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-info .cta-button {
    background: #CBA04A;
    color: #041b5d;
    font-weight: 700;
}

.cta-info .cta-button:hover {
    background: #B8903D;
    color: #041b5d;
}

@media (max-width: 768px) {
    .areas-grid { grid-template-columns: 1fr; }
    .awareness-banner { flex-direction: column; gap: 0.5rem; text-align: center; }
    .area-card-header { padding: 1.25rem; }
    .area-topics { padding: 0.75rem 1rem 1rem; }
}

/* Páginas internas — conteúdo editorial */
.page-content.page-prose {
    background: #F7F8FA;
}

.page-content.page-prose .container h2 {
    color: #041b5d;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #CBA04A;
}

.page-content.page-prose .container p {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.page-content.page-prose .container h1 {
    display: none;
}

.page-content.page-prose .disclaimer-box {
    background: rgba(30, 58, 138, 0.06);
    border-left: 4px solid #1E3A8A;
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    margin: 1rem 0 1.25rem;
}

.page-content.page-prose .disclaimer-box ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #374151;
    line-height: 1.75;
}

.page-content.page-prose .disclaimer-box li {
    margin-bottom: 0.5rem;
}

.page-content.page-prose .disclaimer-box li:last-child {
    margin-bottom: 0;
}

.page-content.page-prose .container ol {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.page-content.page-prose .container ul {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

@media (max-width: 768px) {
    .page-content.page-prose .disclaimer-box {
        padding: 0.875rem 1rem;
    }
}

.page-content.page-contact {
    background: #F7F8FA;
}

/* WhatsApp Roleta — /conectar-whatsapp/ */
.roulette-page {
    margin-top: 72px;
    padding: 4rem 0;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    background: #F7F8FA;
}

.roulette-card {
    max-width: 520px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(4,27,93,0.08);
}

.roulette-eyebrow {
    display: inline-block;
    background: #EEF2FF;
    color: #1E3A8A;
    border: 1px solid #C7D2FE;
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.roulette-card h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #041b5d;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.roulette-lead {
    color: #374151;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.roulette-wheel {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #041b5d;
    border: 3px solid #CBA04A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.roulette-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
}

.roulette-status {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.roulette-alert {
    background: #FFF8E7;
    border: 1px solid #FCD34D;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    text-align: left;
    color: #374151;
    font-size: 0.9rem;
}

.roulette-alert a { color: #1E3A8A; }

.roulette-button {
    min-height: 48px;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.roulette-footnote {
    font-size: 0.8rem;
    color: #6B7280;
    margin-top: 1.25rem;
}

@media (max-width: 768px) {
    .roulette-card { padding: 2rem 1.25rem; }
}

/* Verificação Gratuita — segurança (honeypot + Turnstile) */
.vg-hp-wrap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.vg-turnstile-wrap {
    min-height: 0;
}

/* Página 404 */
.page-content.page-error .container.error-card {
    text-align: center;
    max-width: 560px;
}

.error-code {
    font-size: 4rem;
    font-weight: 800;
    color: #041b5d;
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-text {
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.error-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

.cta-button--gold {
    background: #CBA04A;
    color: #041b5d;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button--gold:hover {
    background: #B8903D;
    color: #041b5d;
}

@media (min-width: 480px) {
    .error-actions {
        align-items: center;
    }

    .error-actions .cta-button {
        min-width: 260px;
    }
}
 