/*
 * LANDING-001 — TrueBlocker Landing Page
 *
 * Santuário digital: dark warm luxury na paleta dourada/marrom do app.
 * Animação de hover dos cards = Opção B do POLISH-MEGA (mesma fórmula
 * de dashboard-hover.css — levitação -8px + spring + glow dourado).
 *
 * Regras do sprint: sem !important, sem imagens pesadas (SVG/CSS apenas),
 * prefers-reduced-motion respeitado.
 */

/* ==================== VARIÁVEIS ==================== */
:root {
    --gold-light: #E8C46A;
    --gold: #C9973A;
    --gold-dark: #8B6914;
    --bg-deep: #0a0807;      /* LANDING-003: mais escuro p/ contraste editorial */
    --bg-primary: #1a1714;
    --bg-secondary: #2a251f;
    --bg-card: rgba(98, 92, 78, 0.25);
    --border-subtle: rgba(201, 151, 58, 0.18);
    --border-hover: rgba(232, 196, 106, 0.5);
    --rule-soft: rgba(201, 151, 58, 0.12);
    --rule-medium: rgba(201, 151, 58, 0.25);
    --text-primary: #f5ebd6;
    --text-headline: #f5ebd6;
    --text-secondary: #b0a896;
    --text-body: #b0a896;
    --text-tertiary: #a09886;
    --text-muted: #888;

    /* Tipografia editorial (LANDING-003) */
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-verse: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    --radius: 16px;
    --radius-lg: 20px;

    /* Opção B — POLISH-MEGA (espelho de dashboard-hover.css) */
    --hover-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* ==================== TIPOGRAFIA EDITORIAL (LANDING-003) ==================== */
.lp-serif {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.3px;
}

.lp-serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
}

/* Headlines editoriais */
.lp-headline-xl {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 56px);
    line-height: 0.98;
    letter-spacing: -1.5px;
    font-weight: 400;
    color: var(--text-headline);
}

.lp-headline-xl em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 500;
}

.lp-headline-lg {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.8px;
    font-weight: 400;
    color: var(--text-headline);
}

.lp-headline-lg em {
    font-style: italic;
    color: var(--gold-light);
}

/* Eyebrows editoriais (com travessão decorativo) */
.lp-eyebrow-edit {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
}

.lp-eyebrow-edit::before {
    content: '— ';
    color: var(--gold);
}

/* Numeral romano de seção (ornamento) */
.lp-roman {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
}

/* Divisor ornamental entre seções */
.lp-divider-ornament {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--gold);
    padding: 30px 0;
    letter-spacing: 12px;
    user-select: none;
}

/* ==================== SPLASH SCREEN (LANDING-003) ==================== */
.lp-splash {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    animation: lp-splash-out 0.8s ease-out 3.5s forwards;
}

@keyframes lp-splash-out {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}

.lp-splash-shield {
    width: 120px;
    height: 110px;
}

.lp-splash-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    clip-path: circle(0% at 50% 42%);
    transform: scale(0.82);
    opacity: 0;
    animation: lp-logo-reveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes lp-logo-reveal {
    0%   { clip-path: circle(0% at 50% 42%);   transform: scale(0.82); opacity: 0; }
    12%  { opacity: 1; }
    100% { clip-path: circle(110% at 50% 42%); transform: scale(1);    opacity: 1; }
}

.lp-splash-text {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--text-headline);
    font-weight: 500;
    letter-spacing: -0.3px;
    opacity: 0;
    animation: lp-text-in 0.6s ease-out 2.8s forwards;
}

.lp-splash-text em {
    font-style: italic;
    color: var(--gold-light);
}

@keyframes lp-text-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-splash-tagline {
    font-family: var(--font-sans);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 3px;
    font-weight: 500;
    opacity: 0;
    animation: lp-text-in 0.6s ease-out 3.1s forwards;
}

/* Partículas douradas */
.lp-splash-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lp-splash-particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    animation: lp-particle-rise 3s ease-out infinite;
}

.lp-splash-particles span:nth-child(1) { left: 30%; bottom: 40%; animation-delay: 0.5s; }
.lp-splash-particles span:nth-child(2) { left: 65%; bottom: 35%; animation-delay: 1s; }
.lp-splash-particles span:nth-child(3) { left: 45%; bottom: 50%; animation-delay: 1.5s; }
.lp-splash-particles span:nth-child(4) { left: 55%; bottom: 30%; animation-delay: 2s; }
.lp-splash-particles span:nth-child(5) { left: 38%; bottom: 45%; animation-delay: 2.5s; }
.lp-splash-particles span:nth-child(6) { left: 70%; bottom: 50%; animation-delay: 3s; }

@keyframes lp-particle-rise {
    0% { opacity: 0; transform: translateY(0); }
    20% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-40px); }
}

/* Reduced motion: splash some quase instantânea, conteúdo estático visível */
@media (prefers-reduced-motion: reduce) {
    .lp-splash {
        animation: lp-splash-out 0.3s ease-out 0.3s forwards;
    }
    .lp-splash-logo,
    .lp-splash-text,
    .lp-splash-tagline,
    .lp-splash-particles span {
        animation: none;
        opacity: 1;
        clip-path: none;
        transform: none;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Atmosfera: luz de vela em glows radiais fixos (CSS puro, sem imagens) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 35% at 15% 0%, rgba(201, 151, 58, 0.10), transparent 70%),
        radial-gradient(ellipse 45% 35% at 90% 25%, rgba(139, 105, 20, 0.08), transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201, 151, 58, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.lp-container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Texto em gradiente dourado */
.lp-grad {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold);
}

/* ==================== BOTÕES EDITORIAIS (LANDING-003) ==================== */
.lp-btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-deep);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 2px;
    border: 1px solid var(--gold);
    transition:
        background 0.25s ease,
        transform 0.25s var(--hover-spring),
        box-shadow 0.25s ease;
}

.lp-btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(201, 151, 58, 0.28);
}

.lp-btn-primary:active {
    transform: translateY(0);
}

/* Modificadores de tamanho (mantidos p/ compat) */
.lp-btn-lg { padding: 15px 34px; }
.lp-btn-xl { padding: 17px 42px; font-size: 13px; }

/* Botão secundário em outline editorial */
.lp-btn-ghost {
    display: inline-block;
    color: var(--gold-light);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 2px;
    border: 1px solid var(--rule-medium);
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.lp-btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(201, 151, 58, 0.08);
    color: var(--gold-light);
}

/* ==================== HEADER EDITORIAL (LANDING-003, não-sticky) ==================== */
.lp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 20px clamp(20px, 5vw, 48px);
    border-bottom: 1px solid var(--rule-medium);
    background: var(--bg-deep);
}

.lp-header-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.lp-logo-mark {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(201, 151, 58, 0.45));
}

.lp-logo-text {
    font-family: var(--font-serif);
    font-size: 23px;
    color: var(--text-headline);
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1;
}

.lp-logo-text em {
    color: var(--gold-light);
    font-style: italic;
}

.lp-header-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.5px;
}

.lp-header-nav a {
    color: var(--text-body);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.lp-header-nav a.active {
    color: var(--gold-light);
    border-bottom: 1px solid var(--gold);
}

.lp-header-nav a:hover {
    color: var(--gold-light);
}

.lp-nav-soon {
    font-size: 8px;
    color: var(--gold);
    margin-left: 4px;
    padding: 2px 5px;
    background: rgba(201, 151, 58, 0.1);
    border-radius: 2px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 500;
}

.lp-header-cta {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--gold);
    padding: 9px 20px;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
}

.lp-header-cta:hover {
    background: var(--gold);
    color: var(--bg-deep);
}

/* LANDING-ROOT: 'Entrar' entrou ao lado de 'Juntar-se'. A landing virou a raiz
   do site, então quem JÁ tem conta precisa de uma porta — antes o único caminho
   era /cadastro, que manda o usuário existente para o lugar errado.

   Hierarquia deliberada: 'Juntar-se' continua sendo o botão contornado (ação
   primária de uma landing é converter visitante); 'Entrar' é texto, discreto,
   para quem sabe o que procura. Duas bordas competindo achatariam as duas. */
.lp-header-actions {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 22px);
}

.lp-header-login {
    color: var(--text-body);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.lp-header-login:hover {
    color: var(--gold-light);
}

/* ==================== HERO EDITORIAL (LANDING-003) ==================== */
.lp-hero {
    padding: clamp(56px, 10vh, 104px) clamp(20px, 5vw, 48px);
    position: relative;
    border-bottom: 1px solid var(--rule-medium);
    background: var(--bg-deep);
    overflow: hidden;
}

.lp-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lp-hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 22px;
    font-weight: 500;
    text-transform: uppercase;
}

.lp-hero .lp-headline-xl {
    max-width: 720px;
    margin-bottom: 30px;
}

.lp-hero-sub {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.65;
    max-width: 38rem;
    margin-bottom: 38px;
}

.lp-hero-actions {
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
}

.lp-link-serif {
    color: var(--gold-light);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 17px;
    text-decoration: underline;
    text-decoration-color: rgba(201, 151, 58, 0.4);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s ease;
}

.lp-link-serif:hover {
    text-decoration-color: var(--gold-light);
}

/* Legacy: .lp-eyebrow ainda usado por seções até a FASE 6 refiná-las */
.lp-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 18px;
}

/* ==================== STATS BAND EDITORIAL (LANDING-003) ==================== */
.lp-stats-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--bg-deep);
    border-bottom: 1px solid var(--rule-medium);
}

.lp-stat {
    padding: 34px 24px;
    text-align: center;
    border-right: 1px solid var(--rule-medium);
}

.lp-stat:last-child {
    border-right: none;
}

.lp-stat-num {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 56px);
    line-height: 1;
    color: var(--gold-light);
    font-weight: 400;
    letter-spacing: -2px;
}

.lp-stat-num em {
    font-style: italic;
    color: var(--gold);
}

.lp-stat-label {
    font-family: var(--font-sans);
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 10px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
}

/* ==================== SEÇÕES (título padrão — editorial Cormorant) ==================== */
.lp-section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    letter-spacing: -0.8px;
    line-height: 1.06;
    text-align: center;
    color: var(--text-headline);
    margin-bottom: 14px;
}

.lp-section-title em,
.lp-section-title .lp-grad {
    font-style: italic;
    color: var(--gold-light);
    /* neutraliza o gradiente antigo do .lp-grad para virar itálico dourado sólido */
    -webkit-text-fill-color: var(--gold-light);
    background: none;
    font-weight: 400;
}

.lp-section-sub {
    font-family: var(--font-sans);
    text-align: center;
    color: var(--text-body);
    font-size: 14px;
    max-width: 520px;
    margin: 0 auto clamp(32px, 4vw, 52px);
}

/* Eyebrow editorial das seções (— LABEL) */
.lp-eyebrow.lp-eyebrow-center {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    margin-bottom: 14px;
}

.lp-eyebrow.lp-eyebrow-center::before {
    content: '— ';
    color: var(--gold);
}

/* ==================== BENEFÍCIOS ==================== */
.landing-benefits {
    padding: clamp(56px, 8vw, 100px) 0;
}

.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 28px 24px;
    /* Opção B — POLISH-MEGA: mesma transição dos cards do dashboard */
    transition:
        transform 0.3s var(--hover-spring),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    will-change: transform;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 196, 106, 0.75);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.4),
        0 0 24px rgba(201, 151, 58, 0.25);
}

.benefit-card .ti {
    font-size: 1.9rem;
    color: var(--gold-light);
    display: inline-block;
    margin-bottom: 14px;
}

.benefit-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
    color: var(--text-headline);
}

.benefit-card h3 em {
    font-style: italic;
    color: var(--gold-light);
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Destaque: Crescimento Espiritual */
.benefit-card.featured {
    border: 1.5px solid rgba(232, 196, 106, 0.45);
    background:
        linear-gradient(160deg, rgba(201, 151, 58, 0.14) 0%, rgba(98, 92, 78, 0.25) 60%);
    box-shadow: inset 0 1px 0 rgba(232, 196, 106, 0.18);
}

.benefit-card.featured .ti {
    color: var(--gold);
    text-shadow: 0 0 16px rgba(201, 151, 58, 0.6);
}

/* Versículo */
.lp-verse {
    max-width: 44rem;
    margin: clamp(40px, 5vw, 64px) auto 0;
    border-left: 3px solid var(--gold);
    padding: 6px 0 6px 24px;
}

.lp-verse p {
    font-family: var(--font-verse);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-primary);
    margin-bottom: 10px;
}

.lp-verse cite {
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
}

/* ==================== PLANOS ==================== */
.landing-plans {
    padding: clamp(56px, 8vw, 100px) 0;
    background: rgba(42, 37, 31, 0.3);
    border-top: 1px solid rgba(201, 151, 58, 0.08);
    border-bottom: 1px solid rgba(201, 151, 58, 0.08);
}

.lp-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
    gap: 26px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    /* Opção B — POLISH-MEGA */
    transition:
        transform 0.3s var(--hover-spring),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    will-change: transform;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 196, 106, 0.75);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.4),
        0 0 24px rgba(201, 151, 58, 0.25);
}

.plan-card.featured {
    border: 1.5px solid rgba(232, 196, 106, 0.45);
    background:
        linear-gradient(160deg, rgba(201, 151, 58, 0.13) 0%, rgba(98, 92, 78, 0.25) 55%);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1a1208;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 999px;
    padding: 5px 14px;
    box-shadow: 0 4px 12px rgba(201, 151, 58, 0.4);
    white-space: nowrap;
}

.plan-name {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.plan-price {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 4.2vw, 3.2rem);
    font-weight: 400;
    letter-spacing: -1.5px;
    color: var(--text-headline);
    margin-bottom: 22px;
}

.plan-price .small {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-tertiary);
    letter-spacing: 0;
}

.plan-features {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.plan-features .ti {
    color: var(--gold);
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-btn {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 20px;
    border-radius: 12px;
    margin-top: auto;
    color: var(--gold-light);
    border: 1px solid rgba(201, 151, 58, 0.4);
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.plan-btn:hover {
    background: rgba(201, 151, 58, 0.12);
    border-color: var(--border-hover);
}

.plan-card.featured .plan-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #1a1208;
    border-color: rgba(232, 196, 106, 0.35);
    box-shadow: 0 4px 16px rgba(201, 151, 58, 0.25);
}

.plan-card.featured .plan-btn:hover {
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.4),
        0 0 24px rgba(201, 151, 58, 0.35);
}

/* Skeleton loading */
.plan-skeleton {
    height: 420px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: linear-gradient(
        100deg,
        rgba(98, 92, 78, 0.18) 35%,
        rgba(201, 151, 58, 0.10) 50%,
        rgba(98, 92, 78, 0.18) 65%
    );
    background-size: 250% 100%;
    animation: lp-shimmer 1.6s ease-in-out infinite;
}

@keyframes lp-shimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

.lp-noscript {
    text-align: center;
    color: var(--text-secondary);
}

.lp-noscript a {
    color: var(--gold-light);
    text-decoration: underline;
}

/* ==================== COMO FUNCIONA ==================== */
.landing-how {
    padding: clamp(56px, 8vw, 100px) 0;
}

.lp-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    counter-reset: step;
    margin-top: clamp(28px, 4vw, 44px);
}

.lp-step {
    text-align: center;
    padding: 12px 16px;
}

.lp-step-num {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 400;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 10px;
}

.lp-step h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
    color: var(--text-headline);
}

.lp-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 18rem;
    margin: 0 auto;
}

/* ==================== DEPOIMENTOS ==================== */
.landing-testimonials {
    padding: clamp(56px, 8vw, 100px) 0;
    background: rgba(42, 37, 31, 0.3);
    border-top: 1px solid rgba(201, 151, 58, 0.08);
    border-bottom: 1px solid rgba(201, 151, 58, 0.08);
}

.lp-placeholder-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: clamp(28px, 4vw, 44px);
}

.lp-placeholder-note .ti {
    color: var(--gold);
}

.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 480px));
    justify-content: center;
    gap: 22px;
}

.lp-testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 28px 26px;
}

.lp-testimonial blockquote {
    font-family: var(--font-verse);
    font-style: italic;
    font-size: 0.98rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.lp-testimonial figcaption {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
}

/* ==================== CTA FINAL ==================== */
.landing-cta-final {
    padding: clamp(72px, 10vw, 130px) 0;
    text-align: center;
    background:
        radial-gradient(ellipse 60% 70% at 50% 100%, rgba(201, 151, 58, 0.13), transparent 70%);
}

.landing-cta-final h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.4vw, 3.4rem);
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.05;
    color: var(--text-headline);
    margin-bottom: 14px;
}

.landing-cta-final h2 em {
    font-style: italic;
    color: var(--gold-light);
}

.landing-cta-final p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 34px;
}

/* ==================== FOOTER ==================== */
.landing-footer {
    border-top: 1px solid rgba(201, 151, 58, 0.10);
    padding: 36px 0;
}

.lp-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.lp-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.lp-footer-links a {
    transition: color 0.25s ease;
}

.lp-footer-links a:hover {
    color: var(--gold-light);
}

.lp-footer-links span {
    color: var(--text-tertiary);
}

.lp-footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-tertiary);
}

/* ==================== PÁGINA EM BREVE ==================== */
.lp-soon {
    min-height: 62vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: clamp(56px, 9vw, 110px) 0;
}

.lp-soon-icon {
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 151, 58, 0.16) 0%, transparent 70%);
    border: 1px solid rgba(201, 151, 58, 0.25);
}

.lp-soon-icon .ti {
    font-size: 2.6rem;
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(201, 151, 58, 0.5);
}

.lp-soon-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #1a1208;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(201, 151, 58, 0.35);
}

.lp-soon h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    letter-spacing: -1px;
    color: var(--text-headline);
    margin-bottom: 14px;
}

.lp-soon p {
    font-family: var(--font-sans);
    color: var(--text-body);
    max-width: 34rem;
    margin: 0 auto 32px;
}

.lp-soon-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.lp-btn-disabled {
    display: inline-block;
    color: var(--text-tertiary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 26px;
    border-radius: 12px;
    border: 1px dashed rgba(201, 151, 58, 0.3);
    cursor: not-allowed;
}

/* ==================== REVEAL ON SCROLL (progressivo via JS) ==================== */
.lp-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-reveal.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== LANDING-002: SEÇÕES NOVAS ==================== */
.lp-section {
    padding: clamp(56px, 8vw, 100px) 0;
}

.lp-eyebrow-center {
    text-align: center;
}

/* ---- Por que os outros falham ---- */
.lp-problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 720px;
    margin: 24px auto 0;
}

.lp-problem-card {
    background: rgba(60, 25, 25, 0.2);
    border: 1px solid rgba(180, 60, 60, 0.2);
    border-radius: 10px;
    padding: 16px;
}

.lp-problem-icon {
    width: 32px;
    height: 32px;
    background: rgba(180, 60, 60, 0.18);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d88080;
    font-size: 15px;
    margin-bottom: 10px;
}

.lp-problem-title {
    font-size: 13px;
    font-weight: 500;
    color: #e8b0b0;
    margin-bottom: 4px;
}

.lp-problem-desc {
    font-size: 12px;
    color: #a89090;
    line-height: 1.55;
}

/* ---- O que torna diferente ---- */
.lp-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 960px;
    margin: 24px auto 0;
}

.lp-diff-card {
    background: rgba(98, 92, 78, 0.25);
    border: 1px solid rgba(201, 151, 58, 0.25);
    border-radius: 12px;
    padding: 16px;
    /* Opção B — POLISH-MEGA (variante -6px para cards menores) */
    transition:
        transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    will-change: transform;
}

.lp-diff-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 196, 106, 0.6);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(201, 151, 58, 0.2);
}

.lp-diff-card > .ti {
    font-size: 1.7rem;
    color: var(--gold-light);
    display: inline-block;
    margin-bottom: 12px;
}

.lp-diff-card h3 {
    font-family: var(--font-serif);
    font-size: 1.32rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin-bottom: 7px;
    color: var(--text-headline);
}

.lp-diff-card h3 em {
    font-style: italic;
    color: var(--gold-light);
}

.lp-diff-card p {
    font-size: 0.86rem;
    color: var(--text-secondary);
}

/* ANIM 1: scan line (card "IA que entende contexto") */
.lp-diff-card.has-anim-scan {
    position: relative;
    overflow: hidden;
}

.lp-diff-card.has-anim-scan::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(232, 196, 106, 0.7),
        transparent);
    box-shadow: 0 0 8px rgba(232, 196, 106, 0.5);
    animation: scan-line-move 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scan-line-move {
    0%, 100% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateY(160px); opacity: 1; }
    60%, 100% { opacity: 0; }
}

/* ANIM 2: ícones de navegadores pulsando + Tor destacado */
.lp-diff-card.has-anim-browsers .browser-icons-row {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 12px;
}

.browser-icon-mini {
    width: 26px;
    height: 26px;
    background: rgba(232, 196, 106, 0.1);
    border: 1px solid rgba(232, 196, 106, 0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E8C46A;
    font-size: 14px;
    animation: browser-pulse 6s ease-in-out infinite;
}

.browser-icon-mini:nth-child(1) { animation-delay: 0s; }
.browser-icon-mini:nth-child(2) { animation-delay: 0.4s; }
.browser-icon-mini:nth-child(3) { animation-delay: 0.8s; }
.browser-icon-mini:nth-child(4) { animation-delay: 1.2s; }
.browser-icon-mini:nth-child(5) { animation-delay: 1.6s; }
.browser-icon-mini:nth-child(6) { animation-delay: 2s; }

.browser-icon-mini.tor {
    background: linear-gradient(135deg, rgba(74, 45, 108, 0.3), rgba(45, 21, 69, 0.5));
    border-color: rgba(180, 130, 230, 0.4);
    color: #d4a8ff;
}

@keyframes browser-pulse {
    0%, 25% {
        background: rgba(232, 196, 106, 0.1);
        transform: scale(1);
    }
    30%, 45% {
        background: rgba(201, 151, 58, 0.4);
        transform: scale(1.1);
    }
    50%, 100% {
        background: rgba(232, 196, 106, 0.1);
        transform: scale(1);
    }
}

/* ANIM 3: versículo aparecendo (card espiritual) */
.lp-diff-card.has-anim-verse .verse-preview {
    margin-top: 12px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.25);
    border-left: 2px solid rgba(232, 196, 106, 0.4);
    border-radius: 0 6px 6px 0;
    font-family: var(--font-verse);
    font-style: italic;
    font-size: 11px;
    color: #d4cab8;
    animation: verse-cycle 7s ease-in-out infinite;
}

@keyframes verse-cycle {
    0%, 30% { opacity: 0; transform: translateX(-8px); }
    35%, 70% { opacity: 1; transform: translateX(0); }
    75%, 100% { opacity: 0; }
}

/* ANIM 4: escudo bloqueando ameaças (card análise em tempo real) */
.lp-diff-card.has-anim-shield .shield-demo {
    margin-top: 12px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shield-center-mini {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #C9973A 0%, #8B6914 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1714;
    font-size: 18px;
    z-index: 2;
    animation: shield-pulse-mini 2s ease-in-out infinite;
}

@keyframes shield-pulse-mini {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 151, 58, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(201, 151, 58, 0); }
}

.threat-mini {
    position: absolute;
    width: 16px;
    height: 16px;
    background: rgba(180, 60, 60, 0.7);
    border-radius: 50%;
    bottom: -20px;
    animation: threat-mini-rise 3s ease-in infinite;
}

.threat-mini:nth-child(1) { left: 30%; animation-delay: 0s; }
.threat-mini:nth-child(2) { left: 50%; animation-delay: 1s; }
.threat-mini:nth-child(3) { left: 70%; animation-delay: 2s; }

@keyframes threat-mini-rise {
    0% { bottom: -20px; opacity: 0; }
    20% { opacity: 1; }
    60% { bottom: 18px; opacity: 1; }
    75% { opacity: 0; transform: scale(0.3); }
    100% { opacity: 0; transform: scale(0); }
}

/* ---- Lado a lado (comparativo) ---- */
.lp-comparison-box {
    max-width: 720px;
    margin: 24px auto 0;
    background: linear-gradient(135deg,
        rgba(98, 92, 78, 0.4) 0%,
        rgba(50, 46, 40, 0.5) 100%);
    border: 1px solid rgba(201, 151, 58, 0.25);
    border-radius: 12px;
    padding: 24px 20px;
}

.lp-comparison-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(201, 151, 58, 0.2);
    margin-bottom: 6px;
}

.lp-comp-others {
    text-align: right;
    font-size: 11px;
    color: #888;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.lp-comp-tb {
    text-align: left;
    font-size: 11px;
    color: #E8C46A;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.lp-comparison-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 151, 58, 0.1);
}

.lp-comparison-row:last-child {
    border-bottom: none;
}

.lp-comparison-others {
    text-align: right;
    font-size: 12px;
    color: #b88888;
}

.lp-comparison-label {
    font-size: 10px;
    color: #a09886;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.lp-comparison-tb {
    text-align: left;
    font-size: 12px;
    color: #d4cab8;
    font-weight: 500;
}

.lp-comparison-others i,
.lp-comparison-tb i {
    font-size: 13px;
    vertical-align: -1px;
    margin: 0 4px;
}

.lp-comparison-others i { color: #a85555; }
.lp-comparison-tb i { color: #E8C46A; }

/* ==================== RESPONSIVO ==================== */
@media (max-width: 1023px) {
    .lp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    /* Header editorial mobile: marca em cima, nav centralizada, CTA na linha */
    .lp-header {
        flex-wrap: wrap;
        gap: 14px;
        padding: 16px 20px;
    }

    .lp-header-nav {
        order: 3;
        width: 100%;
        margin-left: 0;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    /* LANDING-ROOT: com 'Entrar' ao lado de 'Juntar-se', a primeira linha passou
       a carregar marca + duas ações. Em telas de ~360px isso encosta, então o
       respiro encolhe e o CTA pode quebrar para baixo em vez de espremer. */
    .lp-header-actions {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    /* Hero mobile: ações empilham */
    .lp-hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .lp-benefits-grid,
    .lp-plans-grid,
    .lp-steps,
    .lp-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .lp-problems-grid,
    .lp-diff-grid {
        grid-template-columns: 1fr;
    }

    /* Stats band empilha (3 → 1 coluna) */
    .lp-stats-band {
        grid-template-columns: 1fr;
    }

    .lp-stat {
        border-right: none;
        border-bottom: 1px solid var(--rule-medium);
    }

    .lp-stat:last-child {
        border-bottom: none;
    }

    .lp-comparison-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .lp-comparison-others,
    .lp-comparison-tb {
        text-align: center;
    }

    .lp-comparison-header {
        display: none;
    }
}

/* ==================== ACESSIBILIDADE: REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .benefit-card,
    .plan-card,
    .lp-diff-card,
    .lp-btn-primary,
    .lp-btn-ghost {
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        will-change: auto;
    }

    .benefit-card:hover,
    .plan-card:hover,
    .lp-diff-card:hover,
    .lp-btn-primary:hover,
    .lp-btn-ghost:hover {
        transform: none;
    }

    .plan-skeleton {
        animation: none;
    }

    /* Animações inline das novas seções (LANDING-002) */
    .lp-diff-card.has-anim-scan::after,
    .browser-icon-mini,
    .shield-center-mini,
    .threat-mini,
    .lp-diff-card.has-anim-verse .verse-preview {
        animation: none;
    }

    /* Versículo precisa ficar visível mesmo sem animação */
    .lp-diff-card.has-anim-verse .verse-preview {
        opacity: 1;
        transform: none;
    }

    /* Scan line some quando estática (sem motion não faz sentido) */
    .lp-diff-card.has-anim-scan::after {
        opacity: 0;
    }

    .lp-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
