/* ============================================================================
   LANDING PAGE PRINCIPAL — ESTUDO LEI SECA
   CSS consolidado (global + todas as seções)

   Portado do WordPress (Code Snippets) para Flask.
   Variáveis de cor consolidadas no :root global.
   ============================================================================ */


/* ============================================================================
   1. VARIÁVEIS GLOBAIS + RESET + TIPOGRAFIA + CONTAINER
   ============================================================================ */

:root {
    --primary-color: #38bdf8;
    --primary-hover: #0ea5e9;
    --secondary-color: #f97316;
    --secondary-hover: #ea580c;
    --background-dark: #111827;
    --background-light: #1f2937;
    --text-primary: #f3f4f6;
    --text-secondary: #d4d4d8;
    --border-color: #374151;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

h1, h2, h3 { font-weight: 800; color: var(--text-primary); line-height: 1.3; }
h1 { font-size: clamp(2.8rem, 6vw, 3.8rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.0rem); text-align: center; margin-bottom: 20px; }
h3 { font-size: clamp(1.5rem, 4vw, 1.8rem); }

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px auto;
}


/* ============================================================================
   2. BOTÕES GLOBAIS
   ============================================================================ */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

.btn-primary { background-color: var(--primary-color); color: var(--background-dark); }
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 20px 0px rgba(56, 189, 248, 0.4);
}
.btn-secondary { background-color: var(--secondary-color); color: var(--white); }
.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 25px 0px rgba(249, 115, 22, 0.4);
}

/* Botão magnético (usado em Hero e Acervo) */
.magnetic-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}
.cta-hero-button.magnetic-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.cta-hero-button.magnetic-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.4), 0 10px 40px rgba(56, 189, 248, 0.3);
    transform: translateY(-3px);
}
.btn-primary.magnetic-btn {
    background: linear-gradient(135deg, var(--primary-color), #0ea5e9);
    color: var(--background-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}
.btn-primary.magnetic-btn:hover {
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.5), 0 15px 40px rgba(56, 189, 248, 0.4);
    transform: translateY(-5px);
}
.btn-text { position: relative; z-index: 2; }
.btn-icon { position: relative; z-index: 2; transition: transform 0.3s ease; }
.magnetic-btn:hover .btn-icon { transform: scale(1.2); }
.btn-ripple {
    position: absolute; top: 50%; left: 50%; width: 0; height: 0;
    background: rgba(255, 255, 255, 0.3); border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    pointer-events: none; z-index: 1;
}
.magnetic-btn.ripple-active .btn-ripple { width: 300px; height: 300px; opacity: 0; }


/* ============================================================================
   3. SCROLL REVEAL ANIMATIONS (.baixo / .esquerda / .direita / .cima → .ativo)
   Replica o comportamento do tema WP. JS adiciona `.ativo` ao entrar viewport.
   ============================================================================ */

.baixo, .esquerda, .direita, .cima {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}
.baixo  { transform: translateY(30px); }
.cima   { transform: translateY(-30px); }
.esquerda { transform: translateX(-40px); }
.direita  { transform: translateX(40px); }

.baixo.ativo, .esquerda.ativo, .direita.ativo, .cima.ativo {
    opacity: 1;
    transform: translate(0, 0);
}

.anim-delay-1 { transition-delay: 0.10s; }
.anim-delay-2 { transition-delay: 0.20s; }
.anim-delay-3 { transition-delay: 0.30s; }
.anim-delay-4 { transition-delay: 0.40s; }


/* ============================================================================
   4. CINEMATIC REVEAL (.reveal-blur)
   ============================================================================ */

.reveal-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-blur.is-revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}


/* ============================================================================
   5. EFEITO TYPEWRITER (.typewriter-text)
   ============================================================================ */

.typewriter-text {
    display: inline-block;
    border-right: 3px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: bottom;
}
.typewriter-text.typing {
    border-right-color: var(--primary-color);
    animation: blinkCursor 0.8s step-end infinite;
}
@keyframes blinkCursor {
    from, to { border-right-color: transparent; }
    50% { border-right-color: var(--primary-color); }
}


/* ============================================================================
   6. ANIMAÇÕES GLOBAIS REUTILIZADAS
   ============================================================================ */

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%      { transform: translate(30px, -20px) scale(1.05); }
    50%      { transform: translate(-20px, 30px) scale(0.95); }
    75%      { transform: translate(-30px, -10px) scale(1.02); }
}


/* ============================================================================
   7. CLASSES DE TRIAL / CTA REUTILIZADAS
   ============================================================================ */

.els-open-trial, [data-els-trial] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.els-cta-stripe {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    box-shadow: 0 6px 24px rgba(37,99,235,0.38) !important;
    animation: none !important;
}
.els-cta-stripe:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af) !important;
    box-shadow: 0 12px 32px rgba(37,99,235,0.48) !important;
    transform: translateY(-3px) scale(1.02) !important;
    color: white !important;
}
.els-cta-stripe-alt {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    box-shadow: 0 8px 25px rgba(37,99,235,0.35) !important;
    animation: none !important;
}
.els-cta-stripe-alt:hover {
    box-shadow: 0 15px 40px rgba(37,99,235,0.45) !important;
}
.els-trial-trust {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 18px; margin-top: 16px;
}
.els-trial-trust span {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.76rem; color: #6b7280;
}
.els-trial-trust .fa-check-circle { color: #22c55e; }
.els-stripe-note {
    font-size: 0.85rem; color: #d1d5db; line-height: 1.7;
    max-width: 480px; margin: 0 auto 24px auto;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-left: 4px solid #fbbf24;
    border-radius: 0 10px 10px 0; padding: 14px 18px; text-align: left;
}
.els-stripe-note strong { color: #fbbf24; font-weight: 700; }


/* ============================================================================
   8. WHATSAPP FLOAT GLOBAL
   ============================================================================ */

.whatsapp-float {
    position: fixed; width: 60px; height: 60px;
    bottom: 40px; right: 40px;
    background-color: #25D366; color: #FFF;
    border-radius: 50px; text-align: center; font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25); z-index: 1000;
    display: flex; justify-content: center; align-items: center;
    transition: transform 0.2s ease-in-out;
}
.whatsapp-float:hover { transform: scale(1.1); }


/* ============================================================================
   9. SEÇÃO 1 — HEADER / NAVEGAÇÃO (glassmorphism + menu mobile)
   ============================================================================ */

.dark-hero-header {
    background-color: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.dark-hero-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.dark-hero-header .logo {
    display: flex; align-items: center; gap: 8px;
    font-size: 1.4rem; font-weight: 800; color: var(--white);
    text-decoration: none; letter-spacing: -0.5px;
    position: relative; z-index: 1002;
}
.dark-hero-header .logo-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.3));
}
.dark-hero-header .main-nav { display: flex; gap: 30px; }
.dark-hero-header .main-nav a {
    text-decoration: none; color: var(--text-secondary);
    font-weight: 600; font-size: 0.95rem;
    transition: color 0.3s; position: relative;
}
.dark-hero-header .main-nav a:hover { color: var(--white); }
.dark-hero-header .main-nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.3s ease;
}
.dark-hero-header .main-nav a:hover::after {
    transform: scaleX(1); transform-origin: left;
}

.header-actions {
    display: flex; align-items: center; gap: 15px;
    position: relative; z-index: 1002;
}
.dark-hero-header .btn-header-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.05));
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: var(--primary-color);
    padding: 8px 20px; border-radius: 50px;
    font-weight: 700; font-size: 0.9rem;
    text-decoration: none; transition: all 0.3s ease;
}
.dark-hero-header .btn-header-cta i { font-size: 0.85rem; }
.dark-hero-header .btn-header-cta:hover {
    background: var(--primary-color); color: var(--background-dark);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
    transform: translateY(-2px);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px; height: 24px;
    background: transparent; border: none; cursor: pointer;
    padding: 0; z-index: 1001;
}
.hamburger-line {
    width: 100%; height: 2px;
    background-color: var(--white); border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}
body.nav-open .mobile-nav-toggle .hamburger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background-color: var(--primary-color);
}
body.nav-open .mobile-nav-toggle .hamburger-line:nth-child(2) {
    opacity: 0; transform: scaleX(0);
}
body.nav-open .mobile-nav-toggle .hamburger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .dark-hero-header { padding: 12px 0; }
    .mobile-nav-toggle { display: flex; }
    .dark-hero-header .btn-header-cta { display: none; }

    .dark-hero-header .main-nav {
        position: fixed; top: 0; left: 0;
        width: 100%; height: 100vh;
        background-color: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex; flex-direction: column;
        justify-content: center; align-items: center;
        gap: 35px;
        opacity: 0; visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
    }
    body.nav-open .dark-hero-header .main-nav {
        opacity: 1; visibility: visible;
        transform: translateY(0);
    }
    .dark-hero-header .main-nav a {
        font-size: 1.8rem; font-weight: 800;
        color: var(--white);
        opacity: 0; transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    body.nav-open .dark-hero-header .main-nav a { opacity: 1; transform: translateY(0); }
    body.nav-open .dark-hero-header .main-nav a:nth-child(1) { transition-delay: 0.1s; }
    body.nav-open .dark-hero-header .main-nav a:nth-child(2) { transition-delay: 0.2s; }
    body.nav-open .dark-hero-header .main-nav a:nth-child(3) { transition-delay: 0.3s; }
    .dark-hero-header .main-nav a::after { display: none; }
}


/* ============================================================================
   10. SEÇÃO 2 — HERO (background grid, glow, vídeo modal)
   ============================================================================ */

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px 0;
    overflow: hidden;
    background: var(--background-dark);
}
#hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0; pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}
.hero-static-glow {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 20%, rgba(56,189,248,0.10), transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 85%, rgba(139,92,246,0.07), transparent 60%);
    pointer-events: none; z-index: 0;
}
.hero-light-beam {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(56, 189, 248, 0.15) 30%,
        rgba(56, 189, 248, 0.35) 50%,
        rgba(56, 189, 248, 0.15) 70%,
        transparent 100%
    );
    pointer-events: none; z-index: 0;
    animation: beamPulse 6s ease-in-out infinite;
}
@keyframes beamPulse {
    0%, 100% { opacity: 0.4; width: 600px; }
    50%      { opacity: 1;   width: 900px; }
}
.hero-gradient-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(17,24,39,0.55) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, var(--background-dark) 0%, transparent 60%);
    z-index: 2; pointer-events: none;
}
#hero .container { position: relative; z-index: 3; }

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800; line-height: 1.2;
    max-width: 900px; margin: 0 auto 30px auto;
    color: var(--white);
}
.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(-40deg);
    animation: wordReveal 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
    transform-origin: center bottom;
    margin-right: 0.3em;
}
.hero-title .word:nth-child(1) { animation-delay: 0.2s; }
.hero-title .word:nth-child(2) { animation-delay: 0.4s; }
.hero-title .word:nth-child(3) { animation-delay: 0.55s; }
.hero-title .word:nth-child(4) { animation-delay: 0.7s; }
.hero-title .word:nth-child(5) { animation-delay: 0.85s; }
.hero-title .word:nth-child(6) { animation-delay: 1.0s; }
@keyframes wordReveal { to { opacity: 1; transform: translateY(0) rotateX(0); } }
.hero-title .word.highlight {
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.hero-title .word.highlight::after {
    content: '';
    position: absolute; bottom: -2px; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transform: scaleX(0);
    animation: underlineReveal 0.5s ease forwards;
    animation-delay: 1.8s;
}
@keyframes underlineReveal { to { transform: scaleX(1); } }

.hero-alert-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px 6px 10px;
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.2);
    border-radius: 100px;
    font-size: 0.78rem; font-weight: 600;
    color: #f87171;
    letter-spacing: 0.3px; text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeSlideDown 0.6s ease-out both;
}
.hero-alert-badge i { font-size: 0.7rem; animation: alertPulse 2s ease-in-out infinite; }
@keyframes alertPulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
@keyframes fadeSlideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }

.promessa-principal {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--text-secondary);
    font-weight: 500;
    margin: 30px auto;
    max-width: 600px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out forwards;
    animation-delay: 0.8s;
}
.promessa-principal .reveal-text {
    display: inline-block;
    font-size: 1.08rem; line-height: 1.7;
    color: rgba(255,255,255,0.75); font-weight: 400;
}
.promessa-principal .reveal-text strong { color: #fff; font-weight: 600; }

.hero-social-proof {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin: 24px 0 32px; flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out forwards;
    animation-delay: 1.1s;
}
.hero-social-proof .proof-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.9rem; color: rgba(255,255,255,0.85);
}
.hero-social-proof .proof-item strong { color: #fff; font-weight: 700; }
.hero-social-proof .proof-quote { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.hero-social-proof .proof-divider { color: rgba(255,255,255,0.3); font-size: 1.2rem; user-select: none; }

.hero-live-counter {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 0 auto 28px auto; padding: 8px 18px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    font-size: 0.85rem; color: rgba(255,255,255,0.85);
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out forwards;
    animation-delay: 1.25s;
    cursor: default;
}
.hero-live-dot {
    width: 8px; height: 8px;
    background: #22c55e; border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px #22c55e;
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #22c55e; }
    50%      { opacity: 0.5; box-shadow: 0 0 12px #22c55e; }
}
.hero-live-counter strong {
    color: #22c55e; font-weight: 700;
    font-variant-numeric: tabular-nums;
    min-width: 52px; display: inline-block; text-align: right;
}

.cta-hero-container {
    margin-top: 40px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out forwards;
    animation-delay: 1.3s;
}
.cta-hero-suporte { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 10px; }

.hero-price-tag {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 28px; padding: 12px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    flex-wrap: wrap; justify-content: center;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out forwards;
    animation-delay: 1.5s;
}
.hero-price-tag .price-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.hero-price-tag .price-value { font-size: 1.25rem; font-weight: 800; color: #22c55e; }
.hero-price-tag .price-value small { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.5); }

@keyframes fadeSlideUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

.video-placeholder-wrapper {
    max-width: 900px; margin: 50px auto;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out forwards;
    animation-delay: 1.7s;
}
.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden; cursor: pointer;
    transition: transform 0.3s ease;
    background:
        linear-gradient(135deg, rgba(17,24,39,0.8), rgba(17,24,39,0.6)),
        url('https://estudoleiseca.com.br/wp-content/uploads/2025/09/site.gif');
    background-size: cover; background-position: center;
}
.video-placeholder:hover { transform: scale(1.015); }
.video-placeholder-border {
    position: absolute; inset: 0;
    border-radius: 16px; padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
}
.video-placeholder-shine {
    position: absolute; top: -100%; left: -100%;
    width: 50%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(25deg);
    transition: all 0.7s ease;
    pointer-events: none; z-index: 3;
}
.video-placeholder:hover .video-placeholder-shine { left: 150%; }
.video-placeholder-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 2; padding: 20px;
}
.video-placeholder .play-icon {
    font-size: 5rem; color: var(--white);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), color 0.3s, text-shadow 0.3s;
    text-shadow: 0 0 20px rgba(56,189,248,0.3);
}
.video-placeholder:hover .play-icon {
    transform: scale(1.15); color: var(--primary-color);
    text-shadow: 0 0 40px rgba(56,189,248,0.6);
}
.video-placeholder p {
    font-size: 1.4rem; font-weight: 700;
    color: var(--white);
    margin: 15px 0 10px;
    text-transform: uppercase; letter-spacing: 2px;
}
.volume-instruction {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 1rem; color: rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.4);
    padding: 8px 16px; border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}
.volume-instruction i { color: var(--primary-color); }
.video-placeholder:hover .volume-instruction {
    background: rgba(0,0,0,0.6); border-color: var(--primary-color);
}
.video-placeholder::after {
    content: ''; position: absolute; inset: -3px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0; z-index: -1; filter: blur(20px);
    transition: opacity 0.4s;
}
.video-placeholder:hover::after { opacity: 0.4; }

/* Modal de Vídeo */
.video-modal-container {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.video-modal-container.is-visible {
    opacity: 1; visibility: visible; pointer-events: auto;
}
.video-modal-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(17,24,39,0.7);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}
.video-modal-content {
    position: relative;
    width: 90%; max-width: 1100px;
    background: var(--background-dark);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(56,189,248,0.35);
    border-radius: 16px; overflow: hidden;
    opacity: 0; transform: translateY(20px) scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25,1,0.5,1);
}
.video-modal-container.is-visible .video-modal-content {
    opacity: 1; transform: translateY(0) scale(1);
}
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; }
.video-wrapper video {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    border: none; border-radius: 15px;
}
.video-modal-close {
    position: absolute; top: 15px; right: 15px;
    width: 35px; height: 35px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--text-primary);
    background-color: rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer; font-weight: 300; line-height: 1;
    transition: all 0.3s; z-index: 10000;
}
.video-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
    background-color: rgba(0,0,0,0.7);
    border-color: var(--primary-color);
}
.video-cta-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(17,24,39,0.9);
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 20px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.5s;
}
.video-cta-overlay.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }


/* ============================================================================
   11. MARQUEE (faixa infinita de leis)
   ============================================================================ */

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 30px 0;
    background: var(--background-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    width: 100%;
}
.marquee-wrapper::before, .marquee-wrapper::after {
    content: ''; position: absolute; top: 0;
    width: 150px; height: 100%;
    z-index: 2; pointer-events: none;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--background-dark), transparent); }
.marquee-wrapper::after  { right: 0; background: linear-gradient(to left, var(--background-dark), transparent); }
.marquee-content {
    display: flex;
    animation: scrollMarquee 80s linear infinite;
}
.marquee-wrapper:hover .marquee-content { animation-play-state: paused; }
.marquee-item {
    display: inline-flex; align-items: center; gap: 8px;
    margin: 0 15px;
    font-size: 0.95rem; font-weight: 700;
    color: var(--text-secondary);
    padding: 10px 24px; border-radius: 50px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease; cursor: default;
}
.marquee-item:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(56, 189, 248, 0.1);
    transform: scale(1.05);
}
.marquee-item i { font-size: 1.1rem; }
@keyframes scrollMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ============================================================================
   12. SEÇÃO 3 — FUNCIONALIDADES (cards coloridos)
   ============================================================================ */

#features {
    background-color: var(--background-dark);
    border-top: none;
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
    overflow: hidden;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    opacity: 0;
    animation: gridFadeIn 0.8s ease forwards;
    animation-delay: 1s;
}
@keyframes gridFadeIn { to { opacity: 1; } }

.feature-card {
    border: 1px solid transparent;
    background:
        radial-gradient(circle at 20% 20%, var(--card-bg-glow, transparent), transparent 80%) padding-box,
        linear-gradient(var(--background-light), var(--background-light)) padding-box,
        linear-gradient(135deg, #4b5563, var(--border-color)) border-box;
    border-left-width: 5px;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: left;
    position: relative;
    z-index: 1;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: inherit;
    z-index: -1;
    box-shadow: 0 0 40px 5px var(--glow-color, #fff);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.feature-card:hover {
    background:
        radial-gradient(circle at 20% 20%, var(--card-bg-glow, transparent), transparent 80%) padding-box,
        linear-gradient(var(--background-light), var(--background-light)) padding-box,
        linear-gradient(135deg, var(--primary-hover), var(--primary-color)) border-box;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}
.feature-card:hover::before { opacity: 0.15; }

.feature-icon { font-size: 2.2rem; margin-bottom: 1.25rem; display: inline-block; }
.feature-icon i {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon i { transform: scale(1.1); }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; color: #f9fafb; margin-bottom: 0.75rem; }
.feature-card p { color: #d1d5db; line-height: 1.6; margin: 0; font-size: 0.95rem; }

.features-grid .feature-card:nth-child(1) { border-left-color: #ec4899; --card-bg-glow: rgba(236,72,153,0.12); --glow-color: #ec4899; }
.features-grid .feature-card:nth-child(1) .feature-icon i { background-image: linear-gradient(45deg,#ec4899,#f87171); }
.features-grid .feature-card:nth-child(2) { border-left-color: #8b5cf6; --card-bg-glow: rgba(139,92,246,0.12); --glow-color: #8b5cf6; }
.features-grid .feature-card:nth-child(2) .feature-icon i { background-image: linear-gradient(45deg,#8b5cf6,#a78bfa); }
.features-grid .feature-card:nth-child(3) { border-left-color: #f59e0b; --card-bg-glow: rgba(245,158,11,0.12); --glow-color: #f59e0b; }
.features-grid .feature-card:nth-child(3) .feature-icon i { background-image: linear-gradient(45deg,#f59e0b,#fcd34d); }
.features-grid .feature-card:nth-child(4) { border-left-color: #10b981; --card-bg-glow: rgba(16,185,129,0.12); --glow-color: #10b981; }
.features-grid .feature-card:nth-child(4) .feature-icon i { background-image: linear-gradient(45deg,#10b981,#34d399); }
.features-grid .feature-card:nth-child(5) { border-left-color: #f59e0b; --card-bg-glow: rgba(245,158,11,0.12); --glow-color: #f59e0b; }
.features-grid .feature-card:nth-child(5) .feature-icon i { background-image: linear-gradient(45deg,#f59e0b,#fcd34d); }
.features-grid .feature-card:nth-child(6) { border-left-color: var(--primary-color); --card-bg-glow: rgba(56,189,248,0.12); --glow-color: var(--primary-color); }
.features-grid .feature-card:nth-child(6) .feature-icon i { background-image: linear-gradient(45deg,var(--primary-color),#60a5fa); }
.features-grid .feature-card:nth-child(7) { border-left-color: #2dd4bf; --card-bg-glow: rgba(45,212,191,0.12); --glow-color: #2dd4bf; }
.features-grid .feature-card:nth-child(7) .feature-icon i { background-image: linear-gradient(45deg,#2dd4bf,#5eead4); }
.features-grid .feature-card:nth-child(8) { border-left-color: #6366f1; --card-bg-glow: rgba(99,102,241,0.12); --glow-color: #6366f1; }
.features-grid .feature-card:nth-child(8) .feature-icon i { background-image: linear-gradient(45deg,#6366f1,#818cf8); }

.section-title-animated {
    font-size: clamp(2.2rem, 5vw, 3.0rem);
    font-weight: 800; text-align: center;
    margin-bottom: 20px; line-height: 1.3;
    perspective: 1000px;
}
.title-word {
    display: inline-block;
    margin-right: 0.3em;
    opacity: 0;
    transform: translateY(30px) rotateX(-20deg);
    animation: titleWordReveal 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
    animation-play-state: paused;
}
@keyframes titleWordReveal { to { opacity:1; transform:translateY(0) rotateX(0); } }
.title-word.highlight-word {
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.title-word.highlight-word::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0;
    animation: underlineSlide 0.4s ease forwards;
    animation-play-state: paused;
}
@keyframes underlineSlide {
    from { opacity:0; transform:scaleX(0); }
    to   { opacity:1; transform:scaleX(1); }
}

.animated-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px auto;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleFadeIn 0.8s ease forwards;
    animation-delay: 0.8s;
}
@keyframes subtitleFadeIn { to { opacity:1; transform:translateY(0); } }


/* ============================================================================
   13. SEÇÃO 4 — LEGISLAÇÃO SEMPRE ATUALIZADA
   ============================================================================ */

#always-updated-section {
    background-color: var(--background-dark);
    padding: 60px 0;
    position: relative;
    z-index: 1;
}
.update-trust-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(31,41,55,0.8), rgba(17,24,39,0.95));
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex; align-items: center;
    gap: 40px;
    position: relative; overflow: hidden;
}
.update-trust-card::before {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(34,197,94,0.05) 0%, transparent 60%);
    animation: subtleGlow 4s ease-in-out infinite;
}
@keyframes subtleGlow { 0%,100% { opacity:0.5; } 50% { opacity:1; } }

.trust-icon-wrapper {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(34,197,94,0.1));
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative; z-index: 2;
}
.pulse-ring {
    position: absolute; inset: -5px;
    border: 2px solid rgba(34,197,94,0.4);
    border-radius: 22px;
    animation: pulseExpand 2s ease-out infinite;
}
@keyframes pulseExpand {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}
.trust-icon-wrapper i {
    font-size: 2rem; color: #22c55e;
    animation: iconRotate 3s linear infinite;
}
@keyframes iconRotate { to { transform: rotate(360deg); } }

.trust-content { flex: 1; position: relative; z-index: 2; }
.trust-headline {
    font-size: clamp(1.5rem,4vw,1.9rem);
    font-weight: 800; color: var(--text-primary);
    margin: 0 0 12px; line-height: 1.3;
}
.highlight-green {
    background: linear-gradient(135deg, #22c55e, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.trust-text { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin: 0; }
.trust-text strong { color: var(--text-primary); font-weight: 700; }

.source-badge {
    display: flex; align-items: center; gap: 10px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    padding: 12px 20px; border-radius: 50px;
    flex-shrink: 0; position: relative; z-index: 2;
}
.source-badge i { font-size: 1.1rem; color: #22c55e; }
.source-badge span { font-size: 0.85rem; font-weight: 700; color: #22c55e; white-space: nowrap; }


/* ============================================================================
   14. SEÇÃO 5 — ACERVO COMPLETO
   ============================================================================ */

#available-laws {
    background-color: var(--background-dark);
    background-image:
        radial-gradient(ellipse 50% 40% at 10% 0%, rgba(56,189,248,0.08), transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 100%, rgba(139,92,246,0.06), transparent 70%);
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.laws-bg-decoration {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; overflow: hidden;
    z-index: 0;
}
.laws-gradient-orb { display: none; }
.laws-grid-pattern {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.laws-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative; z-index: 2;
}
.laws-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background-image: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 10px 20px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 25px;
}
.laws-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800; line-height: 1.2;
    margin-bottom: 20px;
}
.laws-title .title-line { display: block; }
.laws-title .title-gradient {
    background-image: linear-gradient(135deg, var(--primary-color), #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.laws-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
    position: relative; z-index: 2;
}
.info-card {
    background-image: linear-gradient(145deg, rgb(31, 41, 55), rgb(17, 24, 39));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(56, 189, 248, 0.1);
}
.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}
.info-card h4 {
    font-size: 1.25rem; font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.laws-search-wrapper {
    max-width: 600px;
    margin: 0 auto 50px auto;
    position: relative; z-index: 2;
}
.laws-search {
    position: relative;
    display: flex; align-items: center;
    background-image: linear-gradient(145deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding-left: 20px; padding-right: 20px;
    transition: all 0.3s;
}
.laws-search:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1), 0 10px 40px rgba(56, 189, 248, 0.15);
}
.laws-search input {
    flex: 1;
    background: transparent;
    border: none; outline: none;
    padding: 18px 15px;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: inherit;
}

.laws-grid-modern {
    display: flex; flex-direction: column;
    gap: 12px;
    max-width: 950px;
    margin: 0 auto;
    position: relative; z-index: 2;
}
.subject-card-modern {
    background-image: linear-gradient(145deg, rgb(28, 38, 54), rgb(17, 24, 39));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    content-visibility: auto;
    contain-intrinsic-size: 0 80px;
}
.subject-card-modern:hover {
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateX(5px);
}
.subject-card-modern.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.1);
}

.subject-header-modern {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
}
.subject-info { display: flex; align-items: center; gap: 18px; }
.subject-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background-image: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.05));
    border-radius: 12px;
}
.subject-icon i { font-size: 1.3rem; color: var(--icon-color, var(--primary-color)); }
.subject-text h3 {
    font-size: 1.35rem; font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}
.subject-count { display: none !important; }

.laws-list-modern-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
}
.subject-card-modern.active .laws-list-modern-wrapper {
    max-height: 2000px;
    content-visibility: visible;
}
.laws-list-modern {
    list-style: none;
    padding: 0 25px 25px 25px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.laws-list-modern li {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    opacity: 0;
    transition: all 0.3s;
}
.subject-card-modern.active .laws-list-modern li { opacity: 1; }
.laws-list-modern li.search-highlight {
    opacity: 1 !important;
    transform: translateX(0) !important;
    animation: none !important;
    background-color: rgba(56, 189, 248, 0.05);
    margin: 0 -15px;
    padding-left: 15px; padding-right: 15px;
    border-radius: 8px;
}
.law-text mark {
    background-color: var(--primary-color);
    color: var(--background-dark);
    padding: 0 2px;
    border-radius: 2px;
    font-weight: 600;
}

.law-bullet {
    width: 6px; height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.6;
}
.law-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.laws-no-results {
    text-align: center;
    padding: 60px;
    max-width: 400px;
    margin: 0 auto;
}

/* CTA Sugerir Legislação */
.cta-request-law {
    max-width: 850px;
    margin: 80px auto 0;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.95));
    border: 1px solid rgba(56, 189, 248, 0.2);
}
.cta-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
    animation: ctaGlowPulse 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes ctaGlowPulse {
    0%,100% { transform: scale(1); opacity: 0.5; }
    50%     { transform: scale(1.1); opacity: 0.8; }
}
.cta-content {
    position: relative; z-index: 2;
    padding: 50px 40px;
    text-align: center;
}
.cta-icon {
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 20px;
    margin: 0 auto 40px;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.2), 0 0 30px rgba(139, 92, 246, 0.1);
}
.cta-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-request-law h3 {
    font-size: clamp(1.5rem, 4vw, 1.9rem);
    color: var(--text-primary);
    margin: 0 0 15px;
    font-weight: 800;
}
.cta-request-law p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.btn-suggest {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700; font-size: 1.05rem;
    text-decoration: none; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    border: none;
    position: relative; overflow: hidden;
}
.btn-suggest::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.btn-suggest:hover::before { left: 100%; }
.btn-suggest i { font-size: 1.3rem; }
.btn-suggest:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.35);
}

/* Mapa Visual + Toggle */
.laws-view-toggle {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin: 30px auto 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 4px;
    width: fit-content;
}
.laws-view-btn {
    display: flex; align-items: center; gap: 7px;
    padding: 8px 20px;
    border-radius: 100px;
    border: none;
    font-size: 0.82rem; font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3px;
}
.laws-view-btn.active {
    background: var(--primary-color);
    color: #111827;
    box-shadow: 0 4px 14px rgba(56, 189, 248, 0.3);
}
.laws-view-btn i { font-size: 0.9rem; }
.laws-visual-map {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    padding: 12px 0 8px;
    position: relative; z-index: 2;
}
.laws-visual-map.is-visible { display: grid; }
.map-bubble {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px;
    padding: 22px 14px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative; overflow: hidden;
}
.map-bubble::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--bubble-color, rgba(56, 189, 248, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 20px;
}
.map-bubble:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--bubble-border, rgba(56, 189, 248, 0.4));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--bubble-border, rgba(56, 189, 248, 0.2));
}
.map-bubble:hover::before { opacity: 1; }
.map-bubble-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    background: var(--bubble-color, rgba(56, 189, 248, 0.15));
    color: var(--bubble-text, #38bdf8);
    flex-shrink: 0;
    transition: transform 0.3s;
    position: relative; z-index: 1;
}
.map-bubble:hover .map-bubble-icon { transform: scale(1.12); }
.map-bubble-name {
    font-size: 0.78rem; font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    position: relative; z-index: 1;
}
.map-bubble-count {
    font-size: 0.7rem;
    color: var(--bubble-text, rgba(56, 189, 248, 0.8));
    font-weight: 700;
    position: relative; z-index: 1;
}

.law-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease;
}
.law-modal-overlay.is-open {
    opacity: 1; pointer-events: auto;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.law-modal {
    background: linear-gradient(145deg, #1e293b, #111827);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 100%; max-width: 560px;
    max-height: 82vh;
    display: flex; flex-direction: column;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: scale(0.94) translateY(10px);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    opacity: 0;
}
.law-modal-overlay.is-open .law-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.law-modal-header {
    display: flex; align-items: center; gap: 14px;
    padding: 22px 22px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}
.law-modal-icon {
    width: 46px; height: 46px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.law-modal-info { flex: 1; min-width: 0; }
.law-modal-title {
    font-size: 1rem; font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.law-modal-count {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-top: 2px;
}
.law-modal-back {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem; font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap; flex-shrink: 0;
}
.law-modal-back:hover { background: rgba(255, 255, 255, 0.13); color: #fff; }
.law-modal-back i { font-size: 0.7rem; }
.law-modal-list {
    flex: 1; overflow-y: auto;
    padding: 8px 0 16px;
    list-style: none; margin: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}
.law-modal-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    transition: background 0.15s;
}
.law-modal-list li:last-child { border-bottom: none; }
.law-modal-list li:hover { background: rgba(255, 255, 255, 0.04); }
.law-modal-list li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--modal-accent, #38bdf8);
    flex-shrink: 0; margin-top: 7px;
    opacity: 0.8;
}

.laws-map-hint {
    text-align: center !important;
    margin: 18px auto 20px !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    line-height: 1.4 !important;
}
.laws-map-hint i {
    color: var(--primary-color) !important;
    font-size: 1rem !important;
}
@keyframes hintPulse {
    0%,100% { opacity: 0.7; transform: translateY(0); }
    50%     { opacity: 1; transform: translateY(-2px); }
}


/* ============================================================================
   15. SEÇÃO 7 — DEPOIMENTOS (cards estilo WhatsApp)
   ============================================================================ */

#testimonials {
    background-color: var(--background-dark);
    padding: 100px 0 120px 0;
    border-top: 1px solid var(--border-color);
}
.testimonials-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.testimonials-title .title-highlight {
    background: linear-gradient(135deg, #25D366, #128C7E, #25D366);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50%      { background-position: 100% center; }
}

.stats-mini-row {
    display: flex; justify-content: center;
    gap: 20px;
    margin: 50px auto 60px auto;
    flex-wrap: wrap;
    max-width: 900px;
}
.stat-mini-card {
    background: linear-gradient(145deg, rgba(31,41,55,0.7), rgba(17,24,39,0.9));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex; align-items: center; gap: 18px;
    flex: 1; min-width: 200px; max-width: 280px;
    transition: all 0.4s ease;
}
.stat-mini-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34,197,94,0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.stat-mini-card.featured-mini {
    border-color: rgba(251,191,36,0.4);
    box-shadow: 0 0 25px rgba(251,191,36,0.1);
}
.stat-mini-card.featured-mini:hover {
    border-color: rgba(251,191,36,0.6);
    box-shadow: 0 15px 40px rgba(251,191,36,0.2);
}
.stat-mini-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(34,197,94,0.1));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.stat-mini-icon.gold {
    background: linear-gradient(135deg, rgba(251,191,36,0.2), rgba(251,191,36,0.1));
}
.stat-mini-icon i { font-size: 1.3rem; color: #22c55e; }
.stat-mini-icon.gold i { color: #fbbf24; }
.stat-mini-content { flex: 1; }
.stat-mini-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-mini-number.large { font-size: 2.8rem; color: #fbbf24; }
.stat-mini-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.stat-mini-stars { display: flex; gap: 3px; margin: 6px 0; }
.stat-mini-stars i {
    font-size: 0.75rem;
    color: #fbbf24;
    animation: starPulse 2s ease-in-out infinite;
}
.stat-mini-stars i:nth-child(1) { animation-delay: 0s; }
.stat-mini-stars i:nth-child(2) { animation-delay: 0.1s; }
.stat-mini-stars i:nth-child(3) { animation-delay: 0.2s; }
.stat-mini-stars i:nth-child(4) { animation-delay: 0.3s; }
.stat-mini-stars i:nth-child(5) { animation-delay: 0.4s; }
@keyframes starPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 60px;
}
.testimonial-card.whatsapp-style {
    padding: 0;
    background: #0b141a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex; flex-direction: column;
}
.testimonial-card.whatsapp-style:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(37, 211, 102, 0.1);
}
.wa-header {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(180deg, #1f2c34 0%, #1a262d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.wa-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}
.wa-name { color: #e9edef; font-weight: 600; font-size: 1.05rem; }
.wa-body {
    padding: 16px;
    background-color: #0b141a;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: 380px;
    background-position: center;
    flex-grow: 1;
    min-height: 200px;
}
.wa-message {
    background: linear-gradient(135deg, #005c4b 0%, #004a3d 100%);
    color: #e9edef;
    padding: 12px 14px;
    border-radius: 0 10px 10px 10px;
    position: relative;
    font-size: 0.92rem;
    line-height: 1.6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.wa-message::before {
    content: '';
    position: absolute; top: 0; left: -8px;
    width: 0; height: 0;
    border: 8px solid transparent;
    border-top-color: #005c4b;
    border-right-color: #005c4b;
    border-bottom: 0;
}
.wa-message p { margin: 0 0 12px 0; color: #e9edef; }
.wa-message p:last-of-type { margin-bottom: 8px; }
.wa-message strong { color: #ffffff; font-weight: 600; }
.wa-meta {
    display: flex; justify-content: flex-end; align-items: center;
    gap: 5px;
    margin-top: 6px;
}
.wa-time { font-size: 0.7rem; color: rgba(255, 255, 255, 0.55); }
.wa-meta i { font-size: 0.75rem; color: #53bdeb; }

.challenge-cta {
    margin-top: 70px;
    position: relative;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.95));
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 24px;
    overflow: hidden;
    animation: ctaBorderPulse 3s ease-in-out infinite;
}
@keyframes ctaBorderPulse {
    0%, 100% { border-color: rgba(37, 211, 102, 0.3); }
    50%      { border-color: rgba(37, 211, 102, 0.6); }
}
.cta-icon-wrapper {
    position: relative;
    width: 80px; height: 80px;
    margin: 0 auto 28px auto;
}
.cta-icon-ring {
    position: absolute; inset: 0;
    border: 2px dashed rgba(37, 211, 102, 0.5);
    border-radius: 50%;
    animation: ringRotate 15s linear infinite;
}
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.challenge-cta .cta-icon {
    position: absolute;
    inset: 8px;
    margin: 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: none;
    width: auto; height: auto;
}
.challenge-cta .cta-icon i {
    font-size: 1.9rem;
    background: none;
    -webkit-text-fill-color: #25D366;
    color: #25D366;
}
.challenge-cta h3 {
    font-size: clamp(1.5rem, 4vw, 1.9rem);
    margin: 0 0 12px 0;
    color: var(--white);
}
.challenge-cta p {
    color: var(--text-secondary);
    margin: 0 0 32px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}
.challenge-cta p strong { color: #25D366; }

.btn-trial-whatsapp {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 14px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}
.btn-trial-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.55);
}
.btn-shine {
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}
.btn-trial-whatsapp:hover .btn-shine { left: 100%; }
.btn-text-wrapper {
    display: flex; flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.btn-main-text { font-size: 1rem; font-weight: 800; letter-spacing: 0.3px; }
.btn-subtext { font-size: 0.8rem; font-weight: 500; opacity: 0.9; margin-top: 3px; }

.cta-trust-badges {
    display: flex; justify-content: center;
    gap: 30px; margin-top: 30px;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.trust-badge i { color: #25D366; font-size: 1rem; }


/* ============================================================================
   16. SEÇÃO 8 — INSTAGRAM CTA
   ============================================================================ */

@keyframes subtle-gradient-pan {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.faq-instagram-cta {
    max-width: 800px;
    margin: 60px auto 0 auto;
    padding: 4px;
    border-radius: 18px;
    text-align: center;
    position: relative; overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: linear-gradient(115deg, #f09433, #dc2743, #bc1888, #833ab4);
    background-size: 200% 200%;
    animation: subtle-gradient-pan 15s ease infinite;
}
.faq-instagram-cta::before {
    content: '';
    position: absolute;
    top: 2px; left: 2px; right: 2px; bottom: 2px;
    background: linear-gradient(145deg, #1e293b, #111827);
    border-radius: 16px;
    z-index: 1;
}
.faq-instagram-cta > * {
    position: relative; z-index: 2;
    padding: 0 40px;
}
.faq-instagram-cta h3 {
    padding-top: 40px;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    color: var(--text-primary);
    margin: 0 auto 15px auto;
    max-width: 500px;
    line-height: 1.3;
}
.faq-instagram-cta p {
    margin: 0 auto 30px auto;
    color: var(--text-secondary);
    max-width: 600px;
}
.faq-instagram-cta .btn-instagram { margin-bottom: 40px; }
.faq-instagram-cta:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220, 39, 67, 0.25);
}
.btn-instagram {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700; font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    color: white;
    border: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-size: 250% auto;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-instagram i { font-size: 1.5rem; transition: transform 0.4s ease; }
.btn-instagram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.3);
    background-position: right center;
}
.btn-instagram:hover i { transform: rotate(15deg) scale(1.1); }


/* ============================================================================
   17. SEÇÃO 9 — DESENVOLVEDORES + COLABORADORES
   ============================================================================ */

#developers {
    background-color: var(--background-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.dev-bg-decoration {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; overflow: hidden;
    z-index: 0;
}
.dev-gradient-orb { display: none; }
.dev-grid-pattern {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.dev-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative; z-index: 2;
}
.dev-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(56, 189, 248, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    color: #a78bfa;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 25px;
}
.dev-badge i { font-size: 1rem; }
.dev-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    line-height: 1.2;
}
.dev-title .title-highlight {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9, #06b6d4, #38bdf8);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: devGradientShift 4s ease-in-out infinite;
}
@keyframes devGradientShift {
    0%, 100% { background-position: 0% center; }
    50%      { background-position: 100% center; }
}
.dev-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.dev-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 950px;
    margin: 0 auto;
    position: relative; z-index: 2;
}
.dev-card {
    position: relative;
    background: linear-gradient(165deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.dev-card:hover {
    transform: translateY(-12px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 92, 246, 0.15);
}
.dev-card .card-glow {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.dev-card:hover .card-glow { opacity: 1; }

.avatar-container {
    position: relative;
    width: 150px; height: 150px;
    margin: 0 auto 28px auto;
}
.avatar-ring {
    position: absolute; inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4, #8b5cf6);
    background-size: 200% 200%;
    animation: ringGradient 4s ease-in-out infinite;
    opacity: 0.7;
}
@keyframes ringGradient {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
.avatar-ring::before {
    content: '';
    position: absolute; inset: 3px;
    background: var(--background-dark);
    border-radius: 50%;
}
.avatar-wrapper {
    position: relative;
    width: 100%; height: 100%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}
.avatar-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.dev-card:hover .avatar-wrapper img { transform: scale(1.08); }

.dev-card h3 {
    font-size: 1.5rem; font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}
.dev-role {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; font-size: 0.95rem;
    margin-bottom: 22px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(56, 189, 248, 0.1));
    border-radius: 30px;
    color: #a78bfa;
}
.dev-role i { font-size: 0.85rem; color: #06b6d4; }
.dev-bio {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 28px;
    text-align: left;
}
.dev-bio strong { color: var(--text-primary); font-weight: 600; }

.dev-social {
    display: flex; justify-content: center;
    gap: 15px;
}
.dev-social a {
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(56, 189, 248, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    font-size: 1.3rem;
    transition: all 0.4s ease;
}
.dev-social a:hover {
    background: linear-gradient(135deg, #E1306C, #F77737);
    border-color: transparent;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.story-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 950px;
    margin: 0 auto 70px auto;
    position: relative; z-index: 2;
}
.story-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.666% + 20px);
    right: calc(16.666% + 20px);
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4, #8b5cf6);
    opacity: 0.4;
    z-index: 0;
}
.story-step {
    display: flex; flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    position: relative; z-index: 1;
}
.story-step-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative; flex-shrink: 0;
}
.story-step-icon.dor    { background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05)); border: 1.5px solid rgba(239, 68, 68, 0.3); }
.story-step-icon.virada { background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05)); border: 1.5px solid rgba(251, 191, 36, 0.3); }
.story-step-icon.criacao{ background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(139, 92, 246, 0.1)); border: 1.5px solid rgba(56, 189, 248, 0.3); }
.story-step-label {
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 8px;
}
.story-step-label.dor    { color: rgba(239, 68, 68, 0.7); }
.story-step-label.virada { color: rgba(251, 191, 36, 0.7); }
.story-step-label.criacao{ color: rgba(56, 189, 248, 0.7); }
.story-step-title {
    font-size: 1.05rem; font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}
.story-step-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dev-pull-quote {
    position: relative;
    margin: 22px 0 20px;
    padding: 18px 22px 18px 28px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(56, 189, 248, 0.05));
    border-left: 3px solid #8b5cf6;
    border-radius: 0 12px 12px 0;
    text-align: left;
}
.dev-pull-quote::before {
    content: '\201C';
    position: absolute;
    top: -8px; left: 12px;
    font-size: 3.5rem;
    color: #8b5cf6;
    opacity: 0.4;
    font-family: Georgia, serif;
    line-height: 1;
}
.dev-pull-quote p {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.65;
    font-style: italic;
    margin: 0;
}

.story-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 14px;
}
.story-badge.aprovado { background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.3); color: #4ade80; }
.story-badge.pedagoga { background: rgba(251, 191, 36, 0.12); border: 1px solid rgba(251, 191, 36, 0.3); color: #fbbf24; }

.collaborators-section {
    margin-top: 80px;
    padding: 50px 40px;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.6), rgba(17, 24, 39, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    position: relative; z-index: 2;
    overflow: hidden;
}
.collaborators-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.collab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative; z-index: 1;
}
.collab-text { padding-right: 20px; }
.collab-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(56, 189, 248, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem; font-weight: 600;
    color: #a78bfa;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 20px;
}
.collab-badge i { font-size: 0.85rem; }
.collab-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 18px 0;
    line-height: 1.3;
}
.collab-text .text-gradient {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.collab-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0 0 30px 0;
}
.collab-text p strong { color: var(--text-primary); }
.collab-stats {
    display: flex; align-items: center;
    gap: 25px;
    padding: 20px 25px;
    background: rgba(17, 24, 39, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-size: 1.8rem; font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.stat-divider {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.collab-illustration {
    display: flex; align-items: center; justify-content: center;
}
.network-svg { width: 100%; max-width: 350px; height: auto; }
.network-svg .line-animate {
    stroke-dasharray: 150; stroke-dashoffset: 150;
    animation: drawLine 2s ease forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.network-svg .line-secondary {
    stroke-dasharray: 100; stroke-dashoffset: 100;
    animation: drawLine 2.5s ease forwards 0.5s;
}
.network-svg .person-node {
    opacity: 0;
    animation: fadeInNode 0.5s ease forwards;
}
.network-svg .person-node:nth-of-type(1) { animation-delay: 0.3s; }
.network-svg .person-node:nth-of-type(2) { animation-delay: 0.4s; }
.network-svg .person-node:nth-of-type(3) { animation-delay: 0.5s; }
.network-svg .person-node:nth-of-type(4) { animation-delay: 0.6s; }
.network-svg .person-node:nth-of-type(5) { animation-delay: 0.7s; }
.network-svg .person-node:nth-of-type(6) { animation-delay: 0.8s; }
.network-svg .person-node:nth-of-type(7) { animation-delay: 0.9s; }
.network-svg .person-node:nth-of-type(8) { animation-delay: 1.0s; }
@keyframes fadeInNode {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}


/* ============================================================================
   18. SEÇÃO 10 — FAQ
   ============================================================================ */

#faq {
    background-color: var(--background-dark);
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.faq-bg-decoration {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; overflow: hidden;
    z-index: 0;
}
.faq-gradient-orb { display: none; }
.faq-grid-pattern {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative; z-index: 2;
}
.faq-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background-image: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(56, 189, 248, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    color: #a78bfa;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 25px;
}
.faq-badge i { font-size: 1rem; }
.faq-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800; line-height: 1.2;
    margin-bottom: 20px;
}
.faq-title .title-line { display: block; }
.faq-title .title-gradient {
    background-image: linear-gradient(135deg, var(--primary-color), #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq-list {
    display: flex; flex-direction: column;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative; z-index: 2;
}
.faq-item {
    background: linear-gradient(145deg, rgb(28, 38, 54), rgb(17, 24, 39));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.faq-item:hover {
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-2px);
}
.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.1);
}
.faq-item.hidden { display: none; }

.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
    gap: 20px;
}
.faq-question-content {
    display: flex; align-items: center; gap: 16px;
    flex: 1;
}
.faq-icon-box {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.05));
    border-radius: 12px;
    flex-shrink: 0;
}
.faq-icon-box i { font-size: 1.1rem; color: var(--primary-color); }
.faq-icon-box.icon-purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05)); }
.faq-icon-box.icon-purple i { color: #a78bfa; }
.faq-icon-box.icon-pink   { background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05)); }
.faq-icon-box.icon-pink i { color: #f472b6; }
.faq-icon-box.icon-green  { background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05)); }
.faq-icon-box.icon-green i { color: #22c55e; }
.faq-icon-box.icon-gold   { background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05)); }
.faq-icon-box.icon-gold i { color: #fbbf24; }

.faq-question-content > span {
    font-size: 1.05rem; font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
    line-height: 1.4;
}
.faq-item.active .faq-question-content > span { color: var(--primary-color); }

.premium-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem; font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase; letter-spacing: 0.5px;
    flex-shrink: 0;
}
.premium-tag i { font-size: 0.65rem; }

.faq-toggle {
    width: 24px; height: 24px;
    position: relative;
    flex-shrink: 0;
}
.toggle-line {
    position: absolute;
    width: 14px; height: 2px;
    background-color: var(--text-secondary);
    border-radius: 2px;
    top: 50%; left: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.toggle-line:first-child { transform: translate(-50%, -50%); }
.toggle-line:last-child  { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.active .toggle-line { background-color: var(--primary-color); }
.faq-item.active .toggle-line:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer { max-height: 800px; }
.faq-answer-content {
    padding: 0 28px 28px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}
.faq-answer-content > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.faq-features-list {
    display: flex; flex-direction: column;
    gap: 16px;
}
.faq-feature-item {
    display: flex; align-items: flex-start;
    gap: 14px;
}
.faq-answer .feature-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(56, 189, 248, 0.05));
    border-radius: 10px;
    flex-shrink: 0;
    /* override do .feature-icon de Section 3 */
    font-size: inherit;
    margin-bottom: 0;
    display: flex;
}
.faq-answer .feature-icon i {
    font-size: 0.9rem; color: var(--primary-color);
    background-image: none;
    -webkit-text-fill-color: var(--primary-color);
}
.faq-answer .feature-icon.icon-pink  { background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.05)); }
.faq-answer .feature-icon.icon-pink i { color: #f472b6; -webkit-text-fill-color: #f472b6; }
.faq-answer .feature-icon.icon-green { background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05)); }
.faq-answer .feature-icon.icon-green i { color: #22c55e; -webkit-text-fill-color: #22c55e; }
.faq-answer .feature-icon.icon-gold  { background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05)); }
.faq-answer .feature-icon.icon-gold i { color: #fbbf24; -webkit-text-fill-color: #fbbf24; }

.feature-text { display: flex; flex-direction: column; gap: 2px; }
.feature-text strong {
    color: var(--text-primary);
    font-size: 0.95rem; font-weight: 600;
}
.feature-text span {
    color: var(--text-secondary);
    font-size: 0.88rem; line-height: 1.5;
}

.faq-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.faq-features-grid .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    display: flex; flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
    /* desfaz o background degradê do .feature-card padrão */
    border-left-width: 1px !important;
}
.faq-features-grid .feature-card:hover {
    border-color: rgba(56, 189, 248, 0.2);
    background: rgba(56, 189, 248, 0.03);
    transform: none;
    box-shadow: none;
}
.faq-features-grid .feature-card i {
    font-size: 1.3rem;
    color: var(--primary-color);
    background-image: none;
    -webkit-text-fill-color: var(--primary-color);
}
.faq-features-grid .feature-card strong { color: var(--text-primary); font-size: 0.9rem; }
.faq-features-grid .feature-card span {
    color: var(--text-secondary);
    font-size: 0.8rem; line-height: 1.4;
}

.credits-table-wrapper {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}
.credits-table {
    width: 100%;
    border-collapse: collapse;
}
.credits-table th, .credits-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.credits-table th {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.02);
}
.credits-table td {
    color: var(--text-primary);
    font-size: 0.9rem;
}
.credits-table td i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
    opacity: 0.8;
}
.credits-table tbody tr:last-child td { border-bottom: none; }
.credits-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.credit-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.credit-badge.high   { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.credit-badge.medium { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.credit-badge.low    { background: rgba(34, 197, 94, 0.15); color: #22c55e; }

.faq-cta-section {
    margin-top: 80px;
    position: relative; z-index: 2;
}
.faq-cta-card {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.95));
    border: 1px solid rgba(37, 211, 102, 0.3);
}
.faq-cta-glow {
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 50%);
    animation: faqCtaGlowPulse 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes faqCtaGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50%      { transform: scale(1.1); opacity: 0.8; }
}
.faq-cta-content {
    position: relative; z-index: 2;
    padding: 50px 40px;
    text-align: center;
}
.faq-cta-icon {
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
    border-radius: 20px;
    margin: 0 auto 25px auto;
    position: relative;
}
.faq-cta-icon::before {
    content: '';
    position: absolute; inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}
.faq-cta-icon i { font-size: 2rem; color: #25D366; }
.faq-cta-content h3 {
    font-size: clamp(1.5rem, 4vw, 1.9rem);
    color: var(--text-primary);
    margin: 0 0 15px 0;
    font-weight: 800;
}
.faq-cta-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 450px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
}

.btn-whatsapp-faq {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700; font-size: 1.05rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    position: relative; overflow: hidden;
}
.btn-whatsapp-faq::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}
.btn-whatsapp-faq:hover::before { left: 100%; }
.btn-whatsapp-faq i { font-size: 1.3rem; }
.btn-whatsapp-faq:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.35);
}

.faq-login-section {
    max-width: 700px;
    margin: 50px auto 0 auto;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative; z-index: 2;
}
.faq-login-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
}
.btn-login-faq {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600; font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}
.btn-login-faq:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}


/* ============================================================================
   19. SEÇÃO 11 — FOOTER
   ============================================================================ */

.main-footer {
    background-color: var(--background-dark);
    color: var(--text-secondary);
    padding: 60px 0 30px 0;
    border-top: 1px solid var(--border-color);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    text-align: left;
}
.footer-column h4 {
    font-size: 1.1rem; font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-column ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.footer-logo {
    display: inline-block;
    font-size: 1.5rem; font-weight: 800;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 15px;
}
.footer-tagline {
    font-size: 0.95rem; line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
}
.social-links { display: flex; gap: 20px; }
.social-links a {
    color: var(--text-secondary);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}
.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}
.footer-bottom p { margin: 0; }


/* ============================================================================
   20. BOTÃO FLUTUANTE TRIAL
   ============================================================================ */

#floating-trial-btn {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9998;
    display: none;
}
#floating-trial-btn.visible {
    display: block;
    animation: ftbFadeInUp 0.4s ease forwards;
}
@keyframes ftbFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
#floating-trial-link {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px; font-weight: 700;
    padding: 14px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 28px rgba(22, 163, 74, 0.6);
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: ftbPulse 2.5s ease-in-out infinite;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}
#floating-trial-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(22, 163, 74, 0.8);
    color: #ffffff;
}
@keyframes ftbPulse {
    0%, 100% { box-shadow: 0 6px 28px rgba(22, 163, 74, 0.55); }
    50%      { box-shadow: 0 8px 36px rgba(22, 163, 74, 0.85); }
}


/* ============================================================================
   21. MODAL DE TESTE GRATUITO
   ============================================================================ */

#els-trial-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    opacity: 0; visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
#els-trial-modal.is-open { opacity: 1; visibility: visible; }

.etm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 20, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}
.etm-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(165deg, #1a2640, #111827);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(56,189,248,.08);
    transform: translateY(28px) scale(.97);
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}
#els-trial-modal.is-open .etm-box { transform: translateY(0) scale(1); }
.etm-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    color: #9ca3af;
    font-size: 1.2rem; line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s;
    z-index: 2;
}
.etm-close:hover { background: rgba(255,255,255,.12); color: #f3f4f6; }
.etm-top {
    padding: 36px 36px 28px;
    background: linear-gradient(160deg, rgba(56,189,248,.07) 0%, transparent 60%);
    border-bottom: 1px solid rgba(255,255,255,.05);
    text-align: center;
    position: relative;
}
.etm-top::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color, #38bdf8), var(--secondary-color, #f97316), transparent);
    border-radius: 24px 24px 0 0;
}
.etm-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(56,189,248,.1);
    border: 1px solid rgba(56,189,248,.25);
    color: #7dd3fc;
    font-size: .72rem; font-weight: 700;
    letter-spacing: 1.3px; text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}
.etm-dot {
    width: 7px; height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: etmDot 1.5s ease-in-out infinite;
}
@keyframes etmDot {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.4; transform:scale(1.5); }
}
.etm-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.7rem, 5vw, 2.1rem);
    font-weight: 800;
    color: #f9fafb;
    line-height: 1.2;
    margin: 0 0 10px;
}
.etm-title span {
    background: linear-gradient(135deg, #22c55e, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.etm-subtitle { font-size: .9rem; color: #9ca3af; margin: 0; line-height: 1.6; }

.etm-form { padding: 28px 36px 32px; }
.etm-field { margin-bottom: 16px; }
.etm-field label {
    display: block;
    font-size: .78rem; font-weight: 600;
    color: #9ca3af;
    letter-spacing: .6px; text-transform: uppercase;
    margin-bottom: 7px;
}
.etm-field input {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: .95rem;
    color: #f3f4f6;
    font-family: inherit;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
    box-sizing: border-box;
}
.etm-field input::placeholder { color: #4b5563; }
.etm-field input:focus {
    border-color: var(--primary-color, #38bdf8);
    box-shadow: 0 0 0 3px rgba(56,189,248,.12);
}
.etm-field input.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.etm-phone-wrap {
    display: flex; align-items: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    transition: border-color .25s, box-shadow .25s;
}
.etm-phone-wrap:focus-within {
    border-color: var(--primary-color, #38bdf8);
    box-shadow: 0 0 0 3px rgba(56,189,248,.12);
}
.etm-phone-flag {
    padding: 14px 0 14px 16px;
    font-size: .9rem;
    color: #9ca3af;
    white-space: nowrap;
    user-select: none;
}
.etm-phone-wrap input {
    border: none;
    background: transparent;
    padding-left: 8px;
    border-radius: 0 12px 12px 0;
}
.etm-phone-wrap input:focus {
    border-color: transparent;
    box-shadow: none;
}
.etm-msg {
    border-radius: 10px;
    padding: 11px 14px;
    font-size: .82rem;
    margin-bottom: 16px;
    line-height: 1.5;
}
.etm-msg--error {
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.25);
    color: #fca5a5;
}
.etm-submit {
    display: flex; align-items: center; justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-family: inherit;
    font-size: 1rem; font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37,99,235,.38);
    transition: transform .2s, box-shadow .2s;
    position: relative; overflow: hidden;
    margin-bottom: 16px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.etm-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    transition: left .5s;
}
.etm-submit:hover::before { left: 100%; }
.etm-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,99,235,.48); }
.etm-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.etm-spinner {
    display: inline-block;
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: etmSpin .7s linear infinite;
    vertical-align: middle;
}
@keyframes etmSpin { to { transform: rotate(360deg); } }
.etm-trust {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 14px;
}
.etm-trust span {
    display: flex; align-items: center; gap: 5px;
    font-size: .73rem;
    color: #4b5563;
}
.etm-trust .fa-check-circle { color: #22c55e; }
.etm-trust .fa-lock         { color: #60a5fa; }


/* ============================================================================
   22. SEÇÃO 6 — PREÇOS (PRICING)
   ============================================================================ */

#pricing {
    background-color: var(--background-dark);
    background-image:
        radial-gradient(ellipse 50% 35% at 90% 0%, rgba(249,115,22,0.08), transparent 70%),
        radial-gradient(ellipse 50% 35% at 10% 100%, rgba(56,189,248,0.07), transparent 70%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.pricing-bg-decoration {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; overflow: hidden;
    z-index: 0;
}
.pricing-gradient-orb { display: none; }
.pricing-grid-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
}

.pricing-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative; z-index: 2;
}
.pricing-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 25px;
}
.pricing-badge i { font-size: 1rem; color: #fbbf24; }
.pricing-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800; line-height: 1.2;
    margin-bottom: 20px;
}
.pricing-title .title-line { display: block; }
.pricing-title .title-gradient {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Badge NOVO */
.novo-tag {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.35);
    line-height: 1.4;
}
.plan-features .novo-tag {
    font-size: 0.55rem;
    padding: 1px 6px;
    margin-left: 6px;
    letter-spacing: 0.4px;
    box-shadow: 0 1px 4px rgba(34, 197, 94, 0.3);
}

/* Pre-release Banner */
.pre-release-banner {
    display: flex; align-items: center; gap: 15px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.4);
    padding: 16px 25px;
    border-radius: 16px;
    max-width: 750px;
    margin: 30px auto 0;
    text-align: left;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}
.pre-release-banner .banner-icon {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.pre-release-banner .banner-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
}
.pre-release-banner .banner-text strong {
    color: #a78bfa;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 2px;
}
.pre-release-banner .banner-text .highlight {
    color: #fb923c;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; z-index: 2;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: linear-gradient(145deg, rgb(31, 41, 55), rgb(17, 24, 39));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex; flex-direction: column;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}
.pricing-card .card-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.pricing-card:hover .card-glow { opacity: 1; }

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    z-index: 10;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 1));
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2), 0 0 40px rgba(249, 115, 22, 0.1);
}
.pricing-card.featured:hover {
    transform: scale(1.07) translateY(-5px);
    box-shadow: 0 30px 70px rgba(249, 115, 22, 0.25), 0 0 50px rgba(249, 115, 22, 0.15);
}
.pricing-card .featured-glow {
    background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.15) 0%, transparent 50%) !important;
    opacity: 1 !important;
}
.featured-tag {
    position: absolute;
    top: 50px; left: -50px;
    background: linear-gradient(135deg, var(--secondary-color), #fb923c);
    color: white;
    padding: 8px 50px 8px 60px;
    font-size: 0.7rem; font-weight: 800;
    letter-spacing: 1px;
    display: flex; align-items: center; justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    transform: rotate(-45deg);
    transform-origin: center;
}
.featured-tag i { font-size: 0.75rem; }

.discount-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.05));
    color: var(--primary-color);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem; font-weight: 700;
    display: flex; align-items: center; gap: 5px;
}
.discount-badge i { font-size: 0.7rem; }
.discount-badge.best-value {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.1));
    color: var(--secondary-color);
    border-color: rgba(249, 115, 22, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.3); }
    50%      { box-shadow: 0 0 15px 3px rgba(249, 115, 22, 0.2); }
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    padding-top: 20px;
}
.plan-icon {
    width: 60px; height: 60px;
    margin: 0 auto 15px auto;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.05));
    border-radius: 16px;
    position: relative;
    /* desfaz o .cta-icon herdado da seção Acervo */
    box-shadow: none;
}
.plan-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}
.plan-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    /* desfaz o gradient text dos ícones do acervo */
    background: none;
    -webkit-text-fill-color: var(--primary-color);
}
.plan-icon.featured-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.1));
}
.plan-icon.featured-icon::before {
    background: linear-gradient(135deg, var(--secondary-color), #fbbf24);
}
.plan-icon.featured-icon i {
    color: var(--secondary-color);
    -webkit-text-fill-color: var(--secondary-color);
}

.plan-name {
    font-size: 1.5rem; font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}
.plan-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0; opacity: 0.8;
}

.plan-price {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.original-price {
    display: block;
    text-decoration: line-through;
    color: #6b7280;
    font-size: 0.9rem; font-weight: 500;
    margin-bottom: 5px;
}
.price-main {
    display: flex; align-items: flex-start; justify-content: center;
    line-height: 1;
}
.price-main .currency {
    font-size: 1.5rem; font-weight: 700;
    color: var(--text-secondary);
    margin-top: 8px; margin-right: 3px;
}
.price-main .amount {
    font-size: 4rem; font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
}
.price-main .cents {
    font-size: 1.8rem; font-weight: 700;
    color: var(--text-secondary);
    margin-top: 8px;
}
.plan-price .period {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 5px;
}
.monthly-equivalent {
    display: flex; align-items: center; justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.95rem;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px dashed rgba(251, 191, 36, 0.3);
}
.monthly-equivalent i { font-size: 0.85rem; }
.monthly-equivalent strong { color: #fcd34d; }

.plan-description {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
    min-height: 45px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}
.plan-features li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i {
    width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
}
.plan-features li i.fa-check {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    color: #22c55e;
}
.plan-features li i.fa-times {
    background: rgba(107, 114, 128, 0.2);
    color: #6b7280;
}
.plan-features li span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.plan-features li.highlight span { color: var(--text-primary); }
.plan-features li.disabled { opacity: 0.5; }
.plan-features li.disabled span { text-decoration: line-through; }

.coupon-tag {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
    background: rgba(16, 185, 129, 0.1);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px dashed rgba(16, 185, 129, 0.3);
}
.coupon-main {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem;
    color: #10b981;
}
.coupon-main i { font-size: 0.9rem; }
.coupon-urgency {
    font-size: 0.7rem;
    color: #ef4444;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: textPulse 2s infinite;
}
.coupon-tag.featured-coupon {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}
.coupon-tag.featured-coupon .coupon-main { color: #fbbf24; }
.coupon-tag.featured-coupon .coupon-urgency { color: #f97316; }
@keyframes textPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}

.btn-plan {
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700; font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--primary-color), #0ea5e9);
    color: var(--background-dark);
    border: none;
    cursor: pointer;
    position: relative; overflow: hidden;
}
.btn-plan::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}
.btn-plan:hover::before { left: 100%; }
.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}
.btn-plan i { font-size: 0.9rem; transition: transform 0.3s ease; }
.btn-plan:hover i { transform: translateX(5px); }
.btn-featured {
    background: linear-gradient(135deg, var(--secondary-color), #fb923c);
    color: white;
}
.btn-featured:hover { box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4); }
.pulse-animation { animation: pulseGlow 2s infinite; }
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    50%      { box-shadow: 0 0 20px 5px rgba(249, 115, 22, 0.2); }
}

.pricing-guarantee {
    display: flex; align-items: center; justify-content: center;
    gap: 20px;
    max-width: 700px;
    margin: 60px auto 50px auto;
    padding: 25px 30px;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.6), rgba(17, 24, 39, 0.8));
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 16px;
    position: relative; z-index: 2;
}
.guarantee-icon {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0.1));
    border-radius: 12px;
    flex-shrink: 0;
}
.guarantee-icon i { font-size: 1.5rem; color: var(--primary-color); }
.guarantee-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.guarantee-text strong { color: var(--text-primary); }
.guarantee-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}
.guarantee-text a:hover { color: var(--primary-hover); }

.free-trial-cta {
    max-width: 750px;
    margin: 0 auto 50px auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.95));
    border: 2px solid #25D366;
    z-index: 2;
}
.trial-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 50%);
    animation: trialGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes trialGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50%      { transform: scale(1.1); opacity: 0.8; }
}
.trial-content {
    position: relative; z-index: 2;
    padding: 50px 40px;
    text-align: center;
}
.trial-headline {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 15px 0;
}
.trial-subheadline {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
}
.trial-subheadline strong { color: #25D366; }

/* Override do .btn-trial-whatsapp pra esta variante simplificada */
.free-trial-cta .btn-trial-whatsapp {
    padding: 18px 36px;
    font-size: 1.1rem;
    gap: 12px;
}
.free-trial-cta .btn-trial-whatsapp i { font-size: 1.4rem; }

/* Responsividade do Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 40px;
    }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-10px); }
}
@media (max-width: 768px) {
    #pricing { padding: 80px 0; }
    .pricing-header { margin-bottom: 50px; }
    .pricing-badge { font-size: 0.75rem; padding: 8px 16px; }
    .pricing-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .pricing-subtitle { font-size: 1rem; }
    .pre-release-banner { flex-direction: column; text-align: center; padding: 15px; }
    .pricing-card { padding: 35px 25px; }
    .plan-header { padding-top: 30px; }
    .plan-icon { width: 50px; height: 50px; }
    .plan-icon i { font-size: 1.3rem; }
    .plan-name { font-size: 1.3rem; }
    .price-main .amount { font-size: 3.5rem; }
    .pricing-guarantee {
        flex-direction: column; text-align: center;
        gap: 15px; padding: 25px 20px;
    }
    .trial-content { padding: 40px 25px; }
    .trial-headline { font-size: 1.5rem; }
    .trial-subheadline { font-size: 1rem; }
    .free-trial-cta .btn-trial-whatsapp { padding: 16px 28px; font-size: 1rem; }
    .featured-tag {
        top: 12px; left: -35px;
        padding: 6px 40px;
        font-size: 0.65rem;
    }
    /* Reordena pra featured ficar no topo no mobile */
    .pricing-card:nth-child(1) { order: 1; }
    .pricing-card:nth-child(2) { order: 3; }
    .pricing-card:nth-child(3) { order: 2; }
}
@media (max-width: 480px) {
    .pricing-card { padding: 30px 20px; }
    .discount-badge { top: 15px; right: 15px; font-size: 0.7rem; padding: 5px 10px; }
    .price-main .amount { font-size: 3rem; }
    .plan-features li span { font-size: 0.9rem; }
    .btn-plan { padding: 14px 20px; font-size: 0.95rem; }
    .featured-tag {
        top: 38px; left: -38px;
        padding: 5px 38px;
        font-size: 0.6rem;
    }
}


/* ============================================================================
   23. RESPONSIVIDADE GLOBAL — sobreposições mobile (preserva quebras
   originais de cada seção do WP)
   ============================================================================ */

@media (max-width: 1200px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto; margin-right: auto;
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .feature-highlights { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 900px) {
    .dev-grid { grid-template-columns: 1fr; max-width: 500px; gap: 35px; }
    .collab-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .collab-text { padding-right: 0; order: 2; }
    .collab-illustration { order: 1; }
    .collab-stats { justify-content: center; }
    .network-svg { max-width: 300px; }
}

@media (max-width: 768px) {
    h1 { font-size: clamp(2.0rem, 8vw, 2.6rem); }
    h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    h3 { font-size: clamp(1.5rem, 6vw, 2.0rem); }

    /* Hero */
    #hero { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: clamp(1.8rem,7vw,2.5rem); }
    .hero-title .word { margin-right: 0.2em; }
    .promessa-principal { font-size: 1.1rem; }
    .video-placeholder .play-icon { font-size: 3.5rem; }
    .video-placeholder p { font-size: 1rem; }
    .video-placeholder-wrapper { margin: 30px auto; }
    .video-modal-content { width: 95%; }
    .video-modal-close { top: 10px; right: 10px; width: 30px; height: 30px; font-size: 1.5rem; }
    .hero-social-proof { gap: 6px 16px; }
    .hero-social-proof .proof-item { font-size: 0.8rem; }
    .hero-social-proof .proof-divider { display: none; }
    .hero-price-tag { flex-direction: column; gap: 4px; padding: 14px 20px; border-radius: 16px; }
    .hero-alert-badge { font-size: 0.7rem; }

    /* Marquee */
    .marquee-wrapper::before, .marquee-wrapper::after { width: 80px; }
    .marquee-item { font-size: 0.85rem; padding: 8px 20px; }

    /* Features */
    #features { padding: 60px 0; }
    .features-grid { grid-template-columns: 1fr; }
    .section-title-animated { font-size: clamp(1.5rem,6vw,2rem); }
    .title-word { margin-right: 0.25em; }
    .animated-subtitle { font-size: 1rem; margin-bottom: 40px; }
    .feature-card { padding: 24px 20px; }

    /* Sempre Atualizada */
    .update-trust-card { flex-direction: column; padding: 40px 30px; gap: 30px; text-align: center; }
    .trust-icon-wrapper { width: 70px; height: 70px; }
    .trust-icon-wrapper i { font-size: 1.7rem; }
    .trust-headline { font-size: 1.4rem; }
    .trust-text { font-size: 0.95rem; }
    .source-badge { width: 100%; justify-content: center; }

    /* Acervo */
    #available-laws { padding-top: 80px; padding-bottom: 80px; }
    .feature-highlights { grid-template-columns: 1fr; margin-bottom: 40px; }
    .subject-header-modern { padding-left: 18px; padding-right: 18px; }
    .laws-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

    /* Testimonials */
    #testimonials { padding: 70px 0 90px 0; }
    .testimonials-grid { margin-top: 40px; gap: 20px; }
    .stats-mini-row { gap: 15px; margin: 40px auto 50px auto; }
    .stat-mini-card { padding: 20px 22px; min-width: 160px; }
    .stat-mini-icon { width: 45px; height: 45px; }
    .stat-mini-icon i { font-size: 1.1rem; }
    .stat-mini-number { font-size: 2.2rem; }
    .stat-mini-number.large { font-size: 2.5rem; }
    .stat-mini-label { font-size: 0.75rem; }
    .wa-header { padding: 12px 15px; }
    .wa-avatar { width: 38px; height: 38px; font-size: 0.85rem; }
    .wa-name { font-size: 1rem; }
    .wa-body { padding: 14px; }
    .wa-message { font-size: 0.88rem; padding: 10px 12px; }
    .challenge-cta { margin-top: 50px; }
    .cta-content { padding: 45px 25px; }
    .cta-icon-wrapper { width: 80px; height: 80px; margin-bottom: 20px; }
    .challenge-cta .cta-icon { inset: 6px; }
    .challenge-cta .cta-icon i { font-size: 1.5rem; }
    .challenge-cta h3 { font-size: 1.4rem; }
    .challenge-cta p { font-size: 1rem; margin-bottom: 28px; }
    .cta-trust-badges { gap: 20px; }
    .trust-badge { font-size: 0.82rem; }

    /* Devs */
    #developers { padding: 80px 0; }
    .dev-header { margin-bottom: 50px; }
    .dev-badge { font-size: 0.75rem; padding: 8px 16px; }
    .dev-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .dev-subtitle { font-size: 1rem; }
    .dev-card { padding: 35px 25px; }
    .avatar-container { width: 130px; height: 130px; margin-bottom: 24px; }
    .dev-card h3 { font-size: 1.35rem; }
    .dev-role { font-size: 0.88rem; padding: 7px 15px; }
    .dev-bio { font-size: 0.9rem; text-align: center; }

    .story-timeline { grid-template-columns: 1fr; gap: 32px; margin-bottom: 50px; }
    .story-timeline::before { display: none; }
    .story-step {
        flex-direction: row; text-align: left;
        align-items: flex-start; gap: 20px;
        padding: 0 10px;
    }
    .story-step-icon { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 0; flex-shrink: 0; }

    .collaborators-section { margin-top: 60px; padding: 40px 25px; }
    .collab-badge { font-size: 0.75rem; padding: 6px 14px; }
    .collab-text h3 { font-size: 1.4rem; }
    .collab-text p { font-size: 0.95rem; }
    .collab-stats { flex-wrap: wrap; gap: 20px; padding: 18px 20px; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.75rem; }
    .stat-divider { display: none; }
    .stat-item { flex: 1; min-width: 80px; }
    .network-svg { max-width: 260px; }

    /* Footer */
    .footer-content { text-align: center; }
    .footer-tagline { margin-left: auto; margin-right: auto; }
    .social-links { justify-content: center; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 25px; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    #floating-trial-btn { bottom: 16px; right: 16px; }
    #floating-trial-link { font-size: 13px; padding: 12px 18px; gap: 8px; }
}

@media (max-width: 520px) {
    .etm-top, .etm-form { padding-left: 24px; padding-right: 24px; }
    .etm-title { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    h1 { font-size: clamp(1.8rem, 8vw, 2.2rem); }
    h2 { font-size: clamp(1.6rem, 7vw, 2.0rem); }
    .els-trial-trust { gap: 10px; }
    .els-stripe-note { font-size: 0.78rem; }
    .hero-title { font-size: clamp(1.5rem,8vw,2rem); }
    .hero-social-proof .proof-item { font-size: 0.75rem; }
    .title-word.highlight-word::after { height: 2px; bottom: -2px; }
    .subject-text h3 { font-size: 1.1rem; }
    .law-text { font-size: 0.85rem; }
    .stats-mini-row { flex-direction: column; max-width: 100%; }
    .stat-mini-card { max-width: 100%; }
    .testimonials-grid { min-width: 0; }
    .testimonials-grid > * { min-width: 0; }
    .wa-message p { font-size: 0.85rem; }
    .challenge-cta .cta-content { padding: 40px 20px; }
    .cta-icon-wrapper { width: 80px; height: 80px; margin-bottom: 15px; }
    .challenge-cta .cta-icon i { font-size: 1.2rem; }
    .btn-text-wrapper { align-items: center; text-align: center; }
    .cta-trust-badges { flex-direction: column; gap: 12px; }
    .btn-subtext { font-size: 0.75rem; }
    .dev-card { padding: 30px 20px; }
    .avatar-container { width: 110px; height: 110px; }
    .dev-card h3 { font-size: 1.25rem; }
    .dev-role { font-size: 0.82rem; }
    .dev-social a { width: 44px; height: 44px; font-size: 1.2rem; }
    .collaborators-section { padding: 35px 20px; }
    .collab-text h3 { font-size: 1.25rem; }
    .collab-stats { gap: 15px; padding: 15px; }
    .stat-number { font-size: 1.3rem; }
    .network-svg { max-width: 220px; }
}

@media (min-width: 1025px) {
    .section-subtitle { font-size: 1.2rem; }
}
