/* ============================================================
   LOOKBY Landing — Refresh Visual Leve (Sessão 65)
   ADDITIVO: carrega DEPOIS do lookby-landing.css.
   Não sobrescreve nada destrutivamente. Apenas polish visual.
   Marca dark + roxo/rosa preservada.
   Inspiração: deltas que funcionaram na /lojas (Direção D),
   adaptados pro tema dark do consumer.
   ============================================================ */

/* 1) Playfair Display nos H1/H2 decorativos
   ============================================================ */
.lb-h1,
.lb-hero h1.lb-h1,
.lb-cta-final h2,
.lb-h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 800;
}
.lb-h1 { font-weight: 900; }

/* Refina apenas a estrofe do hero — Playfair pede mais ar */
.lb-hero .lb-h1 {
    line-height: 1.05;
    letter-spacing: -0.025em;
}

/* 2) Eyebrow pill (estilo /lojas) — pra usar no hero
   ============================================================ */
.lb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #ff3fa4;
    background: rgba(180, 79, 255, 0.12);
    border: 1px solid rgba(180, 79, 255, 0.22);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    box-shadow: 0 0 0 4px rgba(180, 79, 255, 0.04);
}
.lb-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b44fff, #ff3fa4);
    box-shadow: 0 0 8px rgba(255, 63, 164, 0.6);
}

/* 3) Highlight no H1 do hero (gradient brand) — refino do .lb-text-highlight existente
   ============================================================ */
.lb-h1 .lb-text-highlight {
    background: linear-gradient(135deg, #b44fff 0%, #ff3fa4 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* 4) Progress bar de scroll (top, 3px gradient) — visual /lojas
   ============================================================ */
.lb-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #b44fff 0%, #ff3fa4 100%);
    z-index: 9999;
    transition: width 80ms linear;
    pointer-events: none;
}

/* 5) Step cards — número circular gradient + hover lift (estilo /lojas)
   Não muda layout — só polish nos elementos existentes
   ============================================================ */
.lb-step {
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 280ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.lb-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(180, 79, 255, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 280ms ease;
    pointer-events: none;
}
.lb-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(180, 79, 255, 0.14);
    border-color: rgba(180, 79, 255, 0.4);
}
.lb-step:hover::before { opacity: 1; }

.lb-step-num {
    background: linear-gradient(135deg, #b44fff 0%, #ff3fa4 100%) !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(180, 79, 255, 0.34);
    font-weight: 900;
    font-family: 'Inter', sans-serif;
}

.lb-step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* 6) Dore cards — hover lift estilo /lojas
   ============================================================ */
.lb-dore-card {
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.lb-dore-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(180, 79, 255, 0.12);
    border-color: rgba(180, 79, 255, 0.3);
}

/* 7) Plan cards — refino visual (mantém todas as classes existentes,
   só eleva o trato visual)
   ============================================================ */
.lb-plan-card {
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.lb-plan-card:hover {
    transform: translateY(-4px);
}
.lb-plan-card .lb-plan-name,
.lb-plan-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.lb-plan-card .lb-plan-price,
.lb-plan-card .lb-plan-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* 8) FAQ — animação suave do +/× ao abrir
   ============================================================ */
.lb-faq-item {
    transition: border-color 280ms ease, background 280ms ease;
}
.lb-faq-item:hover {
    border-color: rgba(180, 79, 255, 0.3);
}
.lb-faq-item[open] {
    border-color: rgba(180, 79, 255, 0.5);
    background: rgba(180, 79, 255, 0.04);
}
.lb-faq-item summary::after {
    transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}
/* O CSS original já vira pra `×` quando [open] — só garantimos animação */
.lb-faq-item[open] summary::after {
    transform: rotate(45deg) !important;
}

/* 9) Reveal animation — versão suave com failsafe.
   Se o JS de IntersectionObserver não captar o elemento (selector errado),
   a animação `lb-reveal-fallback` força a visibilidade após 1.5s pra evitar
   conteúdo invisível ocupando espaço.
   ============================================================ */
.lb-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 720ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 720ms cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
    animation: lb-reveal-fallback 0s 1.5s forwards;
}
.lb-reveal.is-visible,
.lb-reveal.lb-revealed,
.lb-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
@keyframes lb-reveal-fallback {
    to { opacity: 1; transform: translateY(0); }
}

/* 10) Antes/Depois — divider central + tag pill (caso o exemplos use class .lb-compare-pair)
   Adaptativo: aplica em qualquer elemento com pares antes/depois marcados
   ============================================================ */
.lb-compare-pair,
.lb-before-after {
    position: relative;
}
.lb-compare-pair::after,
.lb-before-after::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   Mobile refinements — Playfair scale down + spacing
   ============================================================ */
@media (max-width: 768px) {
    .lb-h1,
    .lb-hero .lb-h1 {
        line-height: 1.1;
        letter-spacing: -0.02em;
    }
    .lb-eyebrow {
        font-size: 11px;
        letter-spacing: 1.2px;
        padding: 5px 12px;
    }
}

/* ============================================================
   Print-friendly (caso lojista imprima a LP)
   ============================================================ */
@media print {
    .lb-progress-bar,
    .lb-launch-banner,
    .lb-sticky-mobile,
    .lb-exit-intent { display: none !important; }
}

/* ============================================================
   SESSÃO 65 — Opção B: elementos "wow"
   ============================================================ */

/* B1) Tag pills "Antes / Depois" + divider central nos cards .xcard-ba existentes
   Não muda HTML — só visual. As labels de texto continuam abaixo. */
.xcard-ba {
    position: relative;
}
.xcard-ba::after {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.55);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(0, 0, 0, 0.18);
    border-radius: 2px;
}
.xcard-ba-col {
    position: relative;
}
.xcard-ba-col::before {
    content: 'Antes';
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}
.xcard-ba-col:last-child::before {
    content: '30s depois';
    background: linear-gradient(135deg, #b44fff 0%, #ff3fa4 100%);
    box-shadow: 0 4px 12px rgba(180, 79, 255, 0.4);
}
/* No card "Compare" (.xcard-compare), pills viram "Look A" / "Look B" */
.xcard-compare-item:first-child::before {
    content: 'Look A';
}
.xcard-compare-item:last-child::before {
    content: 'Look B';
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}
.xcard-compare-item {
    position: relative;
}
.xcard-compare-item::before {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

/* Esconde as labels de texto antigas (estavam ABAIXO do card) — agora as pills SOBRE
   a imagem cobrem essa função */
.xcard-ba-labels { display: none !important; }

/* B2 v2) Section "Vista Livre" — tom aspiracional (substitui ROI dor R$315
   que parecia preço de produto e dava bounce visual)
   ============================================================ */
.lb-vista-livre {
    padding: 64px 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(180, 79, 255, 0.10), transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 63, 164, 0.08), transparent 60%);
}
.lb-vista-livre-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 28px 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.lb-vista-livre-inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(180, 79, 255, 0.4), transparent 40%, transparent 60%, rgba(255, 63, 164, 0.4));
    z-index: -1;
    opacity: 0.5;
    filter: blur(14px);
}
.lb-vista-livre-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #ff3fa4;
    background: rgba(180, 79, 255, 0.12);
    border: 1px solid rgba(180, 79, 255, 0.22);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}
.lb-vista-livre-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b44fff, #ff3fa4);
    box-shadow: 0 0 8px rgba(255, 63, 164, 0.6);
}
.lb-vista-livre-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 auto 18px;
    letter-spacing: -0.02em;
    max-width: 760px;
}
.lb-vista-livre-headline-accent {
    background: linear-gradient(135deg, #b44fff 0%, #ff3fa4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
}
.lb-vista-livre-sub {
    font-size: clamp(15px, 1.6vw, 17px);
    color: rgba(255, 255, 255, 0.72);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.65;
}
.lb-vista-livre-uses {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 880px;
    margin: 0 auto 36px;
    text-align: left;
}
@media (min-width: 760px) {
    .lb-vista-livre-uses {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}
.lb-vista-livre-use {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px 22px 24px;
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.lb-vista-livre-use:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(180, 79, 255, 0.14);
    border-color: rgba(180, 79, 255, 0.3);
}
.lb-vista-livre-use-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(180, 79, 255, 0.18), rgba(255, 63, 164, 0.12));
    border: 1px solid rgba(180, 79, 255, 0.25);
    color: #ff3fa4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 14px;
}
.lb-vista-livre-use h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.lb-vista-livre-use p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
    line-height: 1.55;
}

/* Compatibilidade: se ainda houver alguma referência à seção antiga ROI dor,
   ela continua funcional. Estas regras ficam como fallback. */
/* B2-LEGACY) Section ROI dor — mantida pra compat (não usada mais no index)
   ============================================================ */
.lb-roi-dor {
    padding: 56px 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(180, 79, 255, 0.10), transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 63, 164, 0.08), transparent 60%);
}
.lb-roi-dor-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.lb-roi-dor-inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(180, 79, 255, 0.5), transparent 40%, transparent 60%, rgba(255, 63, 164, 0.5));
    z-index: -1;
    opacity: 0.6;
    filter: blur(12px);
}
.lb-roi-dor-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #ff3fa4;
    background: rgba(180, 79, 255, 0.12);
    border: 1px solid rgba(180, 79, 255, 0.22);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
}
.lb-roi-dor-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b44fff, #ff3fa4);
    box-shadow: 0 0 8px rgba(255, 63, 164, 0.6);
}
.lb-roi-dor-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(56px, 9vw, 96px);
    font-weight: 900;
    background: linear-gradient(135deg, #b44fff 0%, #ff3fa4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.lb-roi-dor-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.lb-roi-dor-sub {
    font-size: clamp(14px, 1.6vw, 16px);
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.lb-roi-dor-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 28px;
}
.lb-roi-dor-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 18px;
    text-align: left;
}
.lb-roi-dor-stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.lb-roi-dor-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

/* B3) Hero destaque — bloco grande antes/depois no topo de #exemplos
   ============================================================ */
.lb-hero-destaque {
    max-width: 1080px;
    margin: 0 auto 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
    position: relative;
}
.lb-hero-destaque-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, #b44fff 0%, #ff3fa4 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    z-index: 4;
    box-shadow: 0 8px 24px rgba(180, 79, 255, 0.3);
    font-family: 'Inter', sans-serif;
}
.lb-hero-destaque-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}
.lb-hero-destaque-half {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.25);
}
.lb-hero-destaque-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lb-hero-destaque-half-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    font-family: 'Inter', sans-serif;
}
.lb-hero-destaque-half--after .lb-hero-destaque-half-tag {
    background: linear-gradient(135deg, #b44fff 0%, #ff3fa4 100%);
    box-shadow: 0 4px 12px rgba(180, 79, 255, 0.4);
}
.lb-hero-destaque-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(-50%);
    z-index: 5;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}
.lb-hero-destaque-caption {
    padding: 18px 22px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.18);
}
.lb-hero-destaque-caption-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}
.lb-hero-destaque-caption-text strong {
    color: #fff;
    font-weight: 700;
}
.lb-hero-destaque-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, rgba(180, 79, 255, 0.18), rgba(255, 63, 164, 0.12));
    border: 1px solid rgba(180, 79, 255, 0.3);
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: 'Inter', sans-serif;
}
.lb-hero-destaque-meta i { color: #ff3fa4; }

@media (max-width: 600px) {
    .lb-hero-destaque-grid { grid-template-columns: 1fr; }
    .lb-hero-destaque-half { aspect-ratio: 4 / 4.6; }
    .lb-hero-destaque-divider {
        top: 50%;
        bottom: auto;
        left: 0;
        right: 0;
        width: auto;
        height: 3px;
        transform: translateY(-50%);
    }
}
