/* ============================================================
   Eliana Camargo — Landing Page v3
   Direção: moderna, viva, inteligente. SaaS premium + autoridade política.
   Navy + branco + âmbar. Tipografia grande, cards arredondados, interação real.
   ============================================================ */

.lp {
    --ink: #0a0c10;
    --navy: #0a1a3a;
    --navy-soft: #13295c;
    --paper: #ffffff;
    --paper-soft: #f4f6fb;
    --paper-line: #e6e9f1;
    --amber: #ffa726;
    --amber-deep: #e8870c;
    --amber-soft: #fdf2de;
    --green: #1f9d57;
    --text: #14171f;
    --text-soft: #5d6275;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-pill: 100px;

    --shadow-sm: 0 8px 20px -10px rgba(14,17,22,0.12);
    --shadow-md: 0 24px 48px -24px rgba(14,17,22,0.18);
    --shadow-lg: 0 40px 80px -30px rgba(15,33,72,0.35);

    --display: 'Sora', -apple-system, sans-serif;
    --body: 'Inter', -apple-system, sans-serif;
    --mono: 'IBM Plex Mono', monospace;
    --accent-serif: 'Fraunces', Georgia, serif;

    font-family: var(--body);
    background: var(--paper);
    color: var(--text);
    position: relative;
}

.lp * { box-sizing: border-box; }
.lp a { color: inherit; }
.lp img, .lp svg { max-width: 100%; }

.lp [id] { scroll-margin-top: 90px; }

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

.lp-wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.lp-sr-only {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

/* ---------- Faixa de confiança no topo ---------- */

.lp-topbar {
    background: var(--navy);
    color: #fff;
    padding: 9px 24px;
    font-size: 12.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
}

.lp-topbar-tel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--amber);
    text-decoration: none;
    font-weight: 600;
    position: absolute;
    right: 24px;
}

@media (max-width: 600px) {
    .lp-topbar-tel { position: static; }
}

.lp-topbar strong { color: var(--amber); }

/* ---------- Nav ---------- */

.lp-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--paper-line);
}

.lp-nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo {
    font-family: var(--display);
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}


.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 500;
    flex-wrap: nowrap;
}

/* "Acessar" é para quem já comprou: presente, mas sem competir com o
   botão de inscrição. Discreto de propósito. */
.lp-nav-login {
    font-size: 13.5px;
    opacity: 0.8;
}

.lp-nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    transition: color 0.2s;
    position: relative;
    /* Sem isso, "O curso" e "Guias grátis" quebram em duas linhas e a
       barra inteira perde o alinhamento vertical. */
    white-space: nowrap;
}
.lp-nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: var(--amber);
    border-radius: 2px;
    transition: width 0.25s cubic-bezier(0.4,0,0.2,1);
}
.lp-nav-links a:hover { color: var(--text); }
.lp-nav-links a:hover::after { width: 100%; }

.lp-nav-cta {
    /* Botão sólido: NÃO herda o sublinhado animado dos links do menu */
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
    color: #14213d !important;
    padding: 11px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.1px;
    box-shadow: 0 4px 14px rgba(232, 135, 12, 0.28);
    transition: box-shadow 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}
/* mata a barrinha herdada de .lp-nav-links a::after */
.lp-nav-cta::after { display: none !important; content: none !important; }
.lp-nav-cta:hover {
    color: #14213d !important;
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(232, 135, 12, 0.4);
}
.lp-nav-cta:active { transform: translateY(0); }

/* ---------- Menu em telas menores ----------
   Entre 1024px e 980px os links já começam a apertar contra o logo.
   Abaixo disso, escondemos os links e mantemos apenas "Acessar" e o botão
   de inscrição: em celular ninguém usa menu de topo para navegar numa
   landing — rola a página. Um menu espremido só rouba espaço do CTA. */

@media (max-width: 1080px) {
    .lp-nav-links { gap: 16px; font-size: 13.5px; }
    .lp-nav-cta { padding: 10px 18px; font-size: 13px; }
}

@media (max-width: 900px) {
    .lp-nav-links a:not(.lp-nav-cta):not(.lp-nav-login) { display: none; }
    .lp-nav-links { gap: 14px; }
}

@media (max-width: 420px) {
    .lp-nav-login { display: none; }
    .lp-logo-nome small { display: none; }
}

/* ---------- Badges / pills ---------- */

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--paper-soft);
    border: 1px solid var(--paper-line);
    color: var(--text-soft);
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
}

.lp-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #2faa5f; flex-shrink: 0; }

/* ---------- Hero ---------- */

.lp-hero { padding: 48px 0 64px; overflow: hidden; position: relative; }

.lp-hero::before {
    content: '';
    position: absolute;
    top: -180px; right: -160px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(245,171,47,0.18) 0%, rgba(245,171,47,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.lp-hero::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -180px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(15,33,72,0.07) 0%, rgba(15,33,72,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.lp-hero-grid { position: relative; z-index: 1; }

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.lp-eyebrow-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }

.lp-hero-titulo {
    font-family: var(--display);
    font-size: clamp(38px, 5.2vw, 60px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 22px;
}

.lp-hero-titulo .accent { font-family: var(--accent-serif); font-style: italic; font-weight: 500; color: var(--amber-deep); }

.lp-hero-titulo .reveal-line {
    display: block;
    overflow: hidden;
}

.lp-hero-titulo .reveal-line span {
    display: inline-block;
    transform: translateY(105%);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), opacity 0.7s ease;
}

.lp-hero-titulo .reveal-line.is-visible span { transform: translateY(0); opacity: 1; }

.lp-segmento-tabs {
    display: inline-flex;
    background: var(--paper-soft);
    border-radius: 100px;
    padding: 4px;
    gap: 2px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.lp-segmento-tab {
    border: none;
    background: transparent;
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-soft);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: var(--body);
}

.lp-segmento-tab.is-ativo { background: var(--ink); color: #fff; }
.lp-segmento-tab:not(.is-ativo):hover { color: var(--text); }

.lp-hero-sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-soft);
    max-width: 480px;
    margin: 0 0 32px;
    transition: opacity 0.25s ease;
}

.lp-hero-sub.is-trocando { opacity: 0; }

.lp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.lp-btn-solid {
    background: var(--ink);
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px -8px rgba(10,12,16,0.5);
}

.lp-btn-solid:hover { background: var(--amber-deep); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(232,135,12,0.55); }

.lp-btn-ghost {
    border: 1.5px solid var(--paper-line);
    color: var(--text);
    padding: 15px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: border-color 0.25s, transform 0.25s, background 0.25s;
    display: inline-block;
}

.lp-btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-2px); }

.lp-btn-ghost-light {
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: border-color 0.2s, transform 0.2s;
    display: inline-block;
}

.lp-btn-ghost-light:hover { border-color: var(--amber); transform: translateY(-2px); }

.lp-trust-row { display: flex; gap: 22px; flex-wrap: wrap; }

.lp-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-soft); font-weight: 500; }

/* ---------- Mockup do produto no hero ---------- */

.lp-hero-visual { position: relative; }

.lp-hero-quote-card {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
    border-radius: 22px;
    padding: 56px 48px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.lp-hero-quote-card::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,167,38,0.22) 0%, rgba(255,167,38,0) 70%);
    border-radius: 50%;
}

.lp-hero-quote-marca {
    font-family: var(--accent-serif);
    font-size: 90px;
    line-height: 1;
    color: var(--amber);
    opacity: 0.85;
    margin-bottom: -10px;
    position: relative;
    z-index: 1;
}

.lp-hero-quote-texto {
    font-family: var(--accent-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 28px;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.lp-hero-quote-linha { width: 50px; height: 3px; background: var(--amber); border-radius: 2px; margin-bottom: 16px; }

.lp-hero-quote-attr {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.lp-hero-foto-comp {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.lp-hero-foto-blob-1 {
    position: absolute;
    width: 360px; height: 360px;
    background: var(--navy);
    border-radius: 50%;
    z-index: 1;
    top: 30px;
}

.lp-hero-foto-blob-2 {
    position: absolute;
    width: 150px; height: 320px;
    background: var(--amber);
    border-radius: 80px;
    transform: rotate(20deg);
    right: 28px; top: 0;
    opacity: 0.9;
    z-index: 0;
}

.lp-hero-foto-wrap {
    position: relative;
    z-index: 2;
    width: 380px; height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--paper);
    box-shadow: var(--shadow-lg);
}

.lp-hero-foto-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lp-hero-foto-selo {
    position: absolute;
    z-index: 3;
    bottom: 36px; left: 0;
    background: var(--paper);
    border-radius: 16px;
    padding: 14px 20px 14px 14px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-hero-foto-selo-icone {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-hero-foto-selo strong { display: block; font-family: var(--display); font-size: 14px; color: var(--navy); }
.lp-hero-foto-selo small { display: block; font-size: 11.5px; color: var(--text-soft); margin-top: 1px; }

/* ---------- Estatísticas ---------- */

.lp-stats-section { background: var(--paper-soft); padding: 40px 0; }

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.lp-stat-card {
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
}

.lp-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--amber) 0%, rgba(255,167,38,0) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.lp-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lp-stat-card:hover::before { opacity: 1; }

.lp-stat-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--amber-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-stat-icon svg { width: 18px; height: 18px; }

.lp-stat-numero {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.lp-stat-label {
    font-size: 12px;
    color: var(--text-soft);
    margin-top: 3px;
    line-height: 1.35;
    font-weight: 500;
}

/* ---------- Faixa de destaques (estática) ---------- */

.lp-destaques-band {
    background: var(--navy);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.lp-destaques-band::before {
    content: '';
    position: absolute;
    top: -40%; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,167,38,0.07) 0%, rgba(255,167,38,0) 70%);
    pointer-events: none;
}

.lp-destaques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.lp-destaque-item {
    position: relative;
    padding: 0 28px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.lp-destaque-item + .lp-destaque-item::before {
    content: '';
    position: absolute;
    left: 0; top: 4px; bottom: 4px;
    width: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 100%);
}

.lp-destaque-icone {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: rgba(255,167,38,0.1);
    border: 1px solid rgba(255,167,38,0.22);
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-destaque-icone svg { width: 15px; height: 15px; }

.lp-destaque-num { display: none; }

.lp-destaque-item h3 {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
    letter-spacing: -0.01em;
}

.lp-destaque-item p {
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

/* ---------- Seções gerais ---------- */

.lp-section { padding: 76px 0; }

.lp-section-head { margin-bottom: 36px; max-width: 640px; }

.lp-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--amber-deep);
    background: #fdf2de;
    padding: 6px 13px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.lp-section-eyebrow::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--amber);
}

.lp-section-title {
    font-family: var(--display);
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 700;
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.lp-section-desc { font-size: 15.5px; line-height: 1.65; color: var(--text-soft); margin-top: 14px; }

/* ---------- Como funciona (imagem + lista + minicards) ---------- */

.lp-metodo-destaque { padding: 80px 0; background: var(--paper); position: relative; overflow: hidden; }

.lp-metodo-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.lp-metodo-titulo-grande {
    font-family: var(--display);
    font-size: clamp(28px, 3.6vw, 38px);
    font-weight: 700;
    color: var(--amber-deep);
    margin: 14px 0 22px;
}

.lp-metodo-mockup-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.lp-metodo-blob-1 {
    position: absolute;
    width: 230px; height: 230px;
    background: var(--amber);
    border-radius: 50%;
    top: 10%; left: 4%;
    opacity: 0.9;
    z-index: 0;
}

.lp-metodo-blob-2 {
    position: absolute;
    width: 110px; height: 260px;
    background: var(--navy);
    border-radius: 60px;
    transform: rotate(-16deg) translate(-50px, 40px);
    right: 6%;
    opacity: 0.9;
    z-index: 0;
}

.lp-monitor { position: relative; z-index: 1; width: 100%; max-width: 360px; }

.lp-monitor-tela {
    background: #fff;
    border: 10px solid var(--ink);
    border-radius: 14px;
    padding: 20px 18px;
    box-shadow: var(--shadow-lg);
}

.lp-monitor-linha { height: 10px; border-radius: 5px; background: var(--paper-line); margin-bottom: 10px; }
.lp-monitor-linha.w1 { width: 85%; }
.lp-monitor-linha.w2 { width: 60%; }
.lp-monitor-linha.ativa { background: var(--amber); }

.lp-monitor-rings { display: flex; align-items: flex-end; gap: 14px; margin-top: 16px; }

.lp-monitor-bars { display: flex; align-items: flex-end; gap: 5px; height: 50px; flex: 1; }
.lp-monitor-bars span { flex: 1; background: var(--navy); border-radius: 3px 3px 0 0; }

.lp-monitor-base { width: 34%; height: 16px; background: var(--ink); margin: 0 auto; border-radius: 0 0 6px 6px; }
.lp-monitor-pe { width: 16%; height: 8px; background: #cdd2dd; margin: 0 auto; border-radius: 0 0 4px 4px; }

/* ---------- Carrossel "Como funciona" (legado, sem uso atualmente) ---------- */

.lp-carousel-wrap { position: relative; }

.lp-carousel-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.lp-carousel-track::-webkit-scrollbar { display: none; }

.lp-cena-card {
    scroll-snap-align: start;
    flex: 0 0 300px;
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: 18px;
    padding: 30px 26px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.lp-cena-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.lp-cena-numero {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    background: var(--ink);
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lp-cena-numero.cor-amber { background: var(--amber-soft); }
.lp-cena-numero.cor-navy { background: var(--navy); }
.lp-cena-numero .num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 12px;
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: var(--paper);
    border: 1.5px solid var(--paper-line);
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.lp-cena-icon-wrap { position: relative; width: fit-content; }

.lp-cena-titulo { font-family: var(--display); font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.lp-cena-texto { font-size: 14px; line-height: 1.6; color: var(--text-soft); margin: 0; }

.lp-carousel-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }

.lp-carousel-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--paper-line);
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.lp-carousel-btn:hover { border-color: var(--ink); background: var(--paper-soft); }

/* ---------- Conteúdo do curso (timeline vertical em acordeão) ---------- */

.lp-curso-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: start;
}

.lp-timeline-list { position: relative; padding-left: 28px; }

.lp-timeline-list::before {
    content: '';
    position: absolute;
    left: 5px; top: 14px; bottom: 14px;
    width: 2px;
    background: var(--paper-line);
}

.lp-timeline-item { position: relative; margin-bottom: 4px; }

.lp-timeline-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: none;
    padding: 14px 16px;
    border-radius: 100px;
    cursor: pointer;
    text-align: left;
    transition: background 0.25s;
}

.lp-timeline-item.is-ativo .lp-timeline-header { background: var(--paper); box-shadow: var(--shadow-sm); }

.lp-timeline-dot {
    position: absolute;
    left: -28px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--ink);
    border: 3px solid var(--paper-soft);
    flex-shrink: 0;
    transition: background 0.25s;
}

.lp-timeline-item.is-ativo .lp-timeline-dot { background: var(--amber); }

.lp-timeline-header h3 {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    flex: 1;
    color: var(--text);
}

.lp-timeline-icon {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-soft);
    flex-shrink: 0;
    transition: transform 0.25s;
}

.lp-timeline-item.is-ativo .lp-timeline-icon { transform: rotate(45deg); color: var(--amber-deep); }

.lp-timeline-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }

.lp-timeline-body-inner { padding: 4px 16px 18px 16px; }

.lp-timeline-body-inner p { font-size: 14px; line-height: 1.6; color: var(--text-soft); margin: 0; }

.lp-timeline-mock-wrap { display: flex; align-items: center; justify-content: center; padding-top: 8px; }

.lp-timeline-mock-frame {
    background: var(--paper);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 320px;
}

.lp-timeline-mock-label { font-family: var(--mono); font-size: 11px; color: var(--text-soft); margin: 4px 0 12px 6px; text-transform: uppercase; letter-spacing: 0.5px; }

.lp-timeline-mock-card {
    background: var(--paper-soft);
    border-radius: 14px;
    padding: 24px 20px;
}

.lp-timeline-mock-linha { height: 9px; border-radius: 5px; background: var(--paper-line); margin: 14px 0 9px; }
.lp-timeline-mock-linha.w1 { width: 90%; }
.lp-timeline-mock-linha.w2 { width: 65%; }

.lp-timeline-mock-progresso { height: 8px; border-radius: 4px; background: var(--paper-line); margin: 16px 0 10px; overflow: hidden; }
.lp-timeline-mock-progresso span { display: block; height: 100%; background: var(--amber); }

.lp-timeline-mock-rodape { font-family: var(--mono); font-size: 11px; color: var(--text-soft); margin: 0; }

/* ---------- Parceiros / veículos ---------- */

.lp-secao-parceiros { padding: 56px 0; border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); }

.lp-parceiros-eyebrow {
    text-align: center;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin: 0 0 24px;
}

.lp-parceiros-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.lp-parceiro-badge {
    font-family: var(--display);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    background: var(--paper-soft);
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

a.lp-parceiro-badge:hover { background: var(--ink); color: #fff; }

.lp-secao-bastidores { background: var(--ink); }

.lp-bastidores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.lp-bastidor-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    filter: saturate(0.95);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.lp-bastidor-item:hover { transform: scale(1.03); filter: saturate(1.1); z-index: 1; }

/* ---------- Tecnologia: bento grid ---------- */

.lp-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
    gap: 16px;
}

.lp-bento-cell {
    background: var(--paper-soft);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-bento-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Camada de brilho que segue o cursor (spotlight) */
.lp-bento-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 180px at var(--mx, 50%) var(--my, 50%), rgba(245,171,47,0.16), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.lp-bento-cell:hover::after { opacity: 1; }

.lp-bento-grande {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
    padding: 24px;
}

.lp-bento-grande::after { background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(245,171,47,0.22), transparent 70%); }

.lp-bento-larga {
    grid-column: 3 / 5;
    grid-row: 1;
}

.lp-tech-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.lp-bento-cell h3 { font-family: var(--display); font-size: 16.5px; font-weight: 700; margin: 0 0 6px; position: relative; z-index: 1; }
.lp-bento-cell p { font-size: 13px; line-height: 1.55; color: var(--text-soft); margin: 0; position: relative; z-index: 1; }

/* ---------- Mentora ---------- */

.lp-mentora-destaque {
    background: var(--paper-soft);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lp-mentora-destaque::before {
    content: '';
    position: absolute;
    top: -120px; left: -8%;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(255,167,38,0.10) 0%, rgba(255,167,38,0) 68%);
    border-radius: 50%;
    pointer-events: none;
}

.lp-mentora-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-mentora-titulo-grande {
    font-family: var(--display);
    font-size: clamp(28px, 3.6vw, 38px);
    font-weight: 700;
    color: var(--amber-deep);
    margin: 14px 0 22px;
}

.lp-mentora-lista { list-style: none; margin: 0 0 26px; padding: 0; }

.lp-mentora-lista li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-soft);
}

.lp-mentora-lista li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--amber);
}

.lp-mentora-minicards { display: flex; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }

.lp-minicard {
    background: var(--navy);
    color: #fff !important;
    font-family: var(--display);
    font-weight: 700;
    font-size: 13.5px;
    padding: 20px 18px;
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 110px;
    text-align: center;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), background 0.25s;
}

.lp-minicard:hover { transform: translateY(-3px); background: var(--navy-soft); }

.lp-mentora-bio-extra { font-size: 14px; line-height: 1.7; color: var(--text-soft); margin-top: 22px; max-width: 540px; }

.lp-mentora-retrato {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-mentora-retrato-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--navy);
}

.lp-mentora-retrato-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.lp-mentora-retrato-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-mentora-retrato-faixa {
    position: absolute;
    left: 18px; right: 18px; bottom: 18px;
    background: rgba(10,26,58,0.82);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.lp-mentora-retrato-faixa strong {
    display: block;
    font-family: var(--display);
    font-size: 19px;
    font-weight: 700;
    color: #fff;
}

.lp-mentora-retrato-faixa span {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--amber);
    margin-top: 4px;
}

/* Forma decorativa âmbar atrás do retrato */
.lp-mentora-retrato-deco {
    position: absolute;
    z-index: 1;
    width: 200px; height: 200px;
    background: var(--amber);
    border-radius: 40% 60% 55% 45%;
    bottom: -24px; right: 8%;
    opacity: 0.9;
}

/* ---------- Prova social ---------- */

.lp-google-badge {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--paper-soft);
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.lp-google-nota { font-family: var(--display); font-size: 34px; font-weight: 700; color: var(--ink); line-height: 1; }
.lp-google-estrelas { color: var(--amber-deep); font-size: 15px; letter-spacing: 2px; }
.lp-google-meta { font-size: 13px; color: var(--text-soft); }
.lp-google-meta a { color: var(--text); text-decoration: underline; }

.lp-reviews-carousel { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; margin-bottom: 56px; }
.lp-reviews-carousel::-webkit-scrollbar { display: none; }

.lp-review-card {
    scroll-snap-align: start;
    flex: 0 0 280px;
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: 16px;
    padding: 24px 22px;
}

.lp-review-estrelas { color: var(--amber-deep); font-size: 13px; margin-bottom: 10px; }
.lp-review-texto { font-size: 13.5px; line-height: 1.6; color: var(--text); margin: 0 0 14px; }
.lp-review-autor { font-family: var(--mono); font-size: 11px; color: var(--text-soft); text-transform: uppercase; }

.lp-prova-subhead { font-family: var(--display); font-size: 18px; font-weight: 700; margin: 48px 0 20px; }

.lp-instagram-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.lp-instagram-embed-slot {
    flex: 1; min-width: 220px; max-width: 300px;
    background: var(--paper-soft);
    border: 1.5px dashed var(--paper-line);
    border-radius: 16px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    min-height: 260px;
}

.lp-instagram-embed-slot iframe { width: 100%; border: none; }

.lp-instagram-placeholder { text-align: center; padding: 22px; font-size: 12px; color: var(--text-soft); line-height: 1.6; }

.lp-instagram-follow {
    flex: 1; min-width: 220px; max-width: 300px;
    background: var(--ink);
    color: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex; flex-direction: column; justify-content: center;
}

.lp-instagram-handle { font-family: var(--display); font-size: 17px; font-weight: 700; margin: 14px 0 6px; }
.lp-instagram-follow p { font-size: 12.5px; color: rgba(255,255,255,0.6); margin: 0 0 18px; line-height: 1.6; }

.lp-instagram-btn {
    display: inline-block;
    background: var(--amber);
    color: var(--ink) !important;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    transition: background 0.2s;
}

.lp-instagram-btn:hover { background: var(--amber-deep); }

.lp-video-depo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }

.lp-video-depo-item { text-align: center; }

.lp-video-depo-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
    background-size: cover;
    background-position: center;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.lp-video-depo-thumb:hover { transform: scale(1.02); }

.lp-video-depo-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,26,58,0.18);
}

.lp-video-depo-play {
    position: relative;
    z-index: 1;
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.lp-video-depo-thumb:hover .lp-video-depo-play { background: var(--amber); color: var(--ink); border-color: var(--amber); }

.lp-video-depo-nome { font-family: var(--display); font-weight: 700; font-size: 13.5px; color: var(--text); }
.lp-video-depo-papel { font-size: 11.5px; color: var(--text-soft); margin-top: 2px; }

/* ---------- FAQ Acordeão ---------- */

.lp-faq-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: start; /* topo: a ilustração acompanha o início da lista */
}

.lp-faq-ilustra-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 280px;
    margin: 0 auto;
}

.lp-faq-list { max-width: 760px; }

.lp-faq-item {
    border-bottom: 1px solid var(--paper-line);
}

.lp-faq-pergunta {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.lp-faq-icone { flex-shrink: 0; transition: transform 0.3s ease; }
.lp-faq-item.is-aberto .lp-faq-icone { transform: rotate(45deg); }

.lp-faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.lp-faq-resposta-inner { padding: 0 0 22px; font-size: 14.5px; line-height: 1.65; color: var(--text-soft); }

/* ---------- Planos ---------- */

.lp-planos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; align-items: stretch; }

.lp-plano-card {
    background: var(--paper);
    border: 1.5px solid var(--paper-line);
    border-radius: 20px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.lp-plano-card:hover { border-color: var(--ink); transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.lp-plano-card.destaque { background: var(--ink); color: #fff; border-color: var(--ink); }
.lp-plano-card.destaque .lp-plano-desc { color: rgba(255,255,255,0.6); }
.lp-plano-card.destaque .lp-plano-preco { color: var(--amber); }

.lp-plano-ribbon {
    position: absolute;
    top: -12px; left: 28px;
    background: var(--amber);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.lp-plano-nome { font-family: var(--display); font-size: 18px; font-weight: 700; margin: 8px 0 10px; }
.lp-plano-desc { font-size: 13.5px; color: var(--text-soft); line-height: 1.6; margin: 0 0 24px; flex-grow: 1; }
.lp-plano-preco { font-family: var(--display); font-size: 30px; font-weight: 700; color: var(--ink); margin-bottom: 22px; }
.lp-plano-preco span { font-family: var(--mono); font-size: 11px; color: var(--text-soft); font-weight: 400; }

.lp-plano-cta {
    text-align: center;
    background: var(--ink);
    color: #fff !important;
    padding: 13px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    transition: background 0.25s;
}

.lp-plano-cta:hover { background: var(--amber-deep); }
.lp-plano-card.destaque .lp-plano-cta { background: var(--amber); color: var(--ink); }
.lp-plano-card.destaque .lp-plano-cta:hover { background: var(--amber-deep); color: #fff; }

.lp-sem-planos { color: var(--text-soft); font-size: 14px; text-align: center; padding: 40px 0; }

/* ---------- CTA final ---------- */

.lp-final-cta { background: var(--ink); color: #fff; text-align: center; padding: 80px 0; position: relative; overflow: hidden; }

.lp-final-cta::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,171,47,0.14) 0%, rgba(245,171,47,0) 70%);
    border-radius: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.lp-final-cta > .lp-wrap { position: relative; z-index: 1; }

.lp-final-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--amber); margin-bottom: 22px; }

.lp-final-titulo {
    font-family: var(--display);
    font-size: clamp(28px, 4.4vw, 48px);
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.2;
}

.lp-final-titulo .accent { font-family: var(--accent-serif); font-style: italic; font-weight: 500; color: rgba(255,255,255,0.55); }

@keyframes lp-chat-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(47,170,95,0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(47,170,95,0); }
}

@keyframes lp-chat-pop {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lp-chat-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

.lp-whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px -8px rgba(37,211,102,0.55);
    z-index: 70;
    transition: transform 0.2s;
}

.lp-whatsapp-float:hover { transform: scale(1.08); }

.lp-footer-institucional {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 18px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.4);
    font-family: var(--mono);
}

/* ---------- Footer ---------- */

.lp-footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.08); padding: 44px 0 20px; color: #fff; }

.lp-footer-colunas {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-footer-col-marca p { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.55; margin-top: 12px; max-width: 250px; }

.lp-footer-social { display: flex; gap: 9px; margin-top: 16px; }

.lp-footer-social a {
    width: 34px !important; height: 34px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 !important;
    transition: background 0.2s, transform 0.2s;
}

.lp-footer-social a:hover { background: var(--amber); color: var(--ink); transform: translateY(-2px); }

.lp-footer-col h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 0 0 12px;
    font-weight: 400;
}

.lp-footer-col a {
    display: block;
    font-size: 13.5px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.lp-footer-col a:hover { color: var(--amber); }

.lp-footer-inner { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.4); padding-top: 24px; }

/* ---------- CTA fixo mobile ---------- */

.lp-sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--paper);
    border-top: 1px solid var(--paper-line);
    padding: 12px 16px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 60;
    box-shadow: 0 -8px 24px rgba(14,17,22,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.lp-sticky-cta.is-visible { transform: translateY(0); }

.lp-sticky-cta span { font-size: 13px; font-weight: 600; color: var(--text); }

.lp-sticky-cta a {
    background: var(--ink);
    color: #fff;
    padding: 11px 22px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
}

/* ---------- Reveal genérico no scroll ---------- */

.lp-spotlight { position: relative; isolation: isolate; }

.lp-spotlight::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(245,171,47,0.14), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}

.lp-spotlight:hover::after { opacity: 1; }

.lp-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.lp-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsivo ---------- */

@media (max-width: 900px) {
    .lp-hero-grid { grid-template-columns: 1fr; }
    .lp-hero-quote-card { max-width: 420px; margin: 0 auto; min-height: 280px; padding: 40px 32px; }
    .lp-hero-foto-comp { min-height: 360px; margin: 0 auto; }
    .lp-hero-foto-wrap { width: 280px; height: 280px; }
    .lp-hero-foto-blob-1 { width: 270px; height: 270px; }
    .lp-hero-foto-blob-2 { width: 110px; height: 240px; }
    .lp-hero-foto-selo { bottom: 10px; left: 50%; transform: translateX(-50%); }
    .lp-mentora-layout { grid-template-columns: 1fr; text-align: left; }
    .lp-mentora-retrato { order: -1; }
    .lp-mentora-retrato-card { max-width: 300px; }
    .lp-mentora-retrato-deco { width: 140px; height: 140px; }
    .lp-metodo-layout { grid-template-columns: 1fr; }
    .lp-metodo-mockup-wrap { min-height: 260px; order: -1; }
    .lp-tech-layout { grid-template-columns: 1fr; }
    .lp-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .lp-bento-grande { grid-column: 1 / 3; grid-row: 1 / 2; min-height: 200px; }
    .lp-bento-larga { grid-column: 1 / 3; grid-row: 2; }
    .lp-footer-colunas { grid-template-columns: 1fr 1fr 1fr; }
    .lp-footer-col-marca { grid-column: 1 / 4; }
    .lp-modulos-grid { grid-template-columns: 1fr; }
    .lp-modulo-card:nth-child(odd):last-child { max-width: 100%; }
}

@media (max-width: 760px) {
    .lp-nav-links { display: none; }
    .lp-section { padding: 64px 0; }
    .lp-final-cta { padding: 72px 0; }
    .lp-footer-inner { flex-direction: column; text-align: center; }
    .lp-footer-links a { margin: 0 10px; }
    .lp-sticky-cta { display: flex; }
    body { padding-bottom: 64px; }
    .lp-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .lp-bento-grande, .lp-bento-larga { grid-column: 1; grid-row: auto; }
    .lp-bento-grande { min-height: 200px; }
    .lp-whatsapp-float { bottom: 78px; right: 16px; width: 52px; height: 52px; }
    .lp-footer-colunas { grid-template-columns: 1fr 1fr; gap: 28px; }
    .lp-footer-col-marca { grid-column: 1 / 3; }
    .lp-bastidores-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-destaques-grid { grid-template-columns: 1fr; gap: 22px; }
    .lp-destaque-item { padding: 0 16px; }
    .lp-destaque-item + .lp-destaque-item::before { display: none; }
    .lp-curso-grid { grid-template-columns: 1fr; gap: 28px; }
    .lp-timeline-mock-wrap { order: -1; }
    .lp-faq-layout { grid-template-columns: 1fr; }
    .lp-faq-ilustra-wrap { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-hero-titulo .reveal-line span, .lp-reveal { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Seção Investimento — cartão de preço renderizado do banco
   ============================================================ */
.lp-planos-grid {
    display: grid;
    grid-template-columns: repeat(var(--total-planos, 1), minmax(0, 380px));
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}
.lp-plano-card {
    background: var(--navy);
    color: #fff;
    border-radius: 20px;
    padding: 38px 34px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 33, 72, 0.28);
}
.lp-plano-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 171, 47, 0.22) 0%, rgba(245, 171, 47, 0) 70%);
    pointer-events: none;
}
.lp-plano-nome {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}
.lp-plano-preco {
    line-height: 1;
    margin-bottom: 6px;
    font-family: var(--font-display, 'Sora', sans-serif);
}
.lp-plano-moeda {
    font-size: 20px;
    font-weight: 600;
    vertical-align: 18px;
    margin-right: 4px;
    color: rgba(255, 255, 255, 0.75);
}
.lp-plano-valor {
    font-size: 62px;
    font-weight: 800;
    letter-spacing: -1.5px;
}
.lp-plano-centavos {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
}
.lp-plano-condicao {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}
.lp-plano-descricao {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin: 0 0 8px;
}
.lp-plano-lista {
    list-style: none;
    margin: 18px 0 26px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-plano-lista li {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.88);
    padding-left: 26px;
    position: relative;
}
.lp-plano-lista li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 4px;
    width: 14px;
    height: 8px;
    border-left: 2.5px solid var(--amber);
    border-bottom: 2.5px solid var(--amber);
    transform: rotate(-45deg);
}
.lp-plano-cta {
    display: block;
    width: 100%;
    box-sizing: border-box;
}
.lp-plano-selo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 860px) {
    .lp-planos-grid {
        grid-template-columns: minmax(0, 420px);
    }
    .lp-plano-valor { font-size: 54px; }
}

/* ============================================================
   Conteúdo real do curso — grade de módulos e aulas
   ============================================================ */
.lp-curso-resumo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
    font-size: 14.5px;
    color: var(--ink);
}
.lp-curso-resumo strong {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    color: var(--navy);
}
.lp-curso-resumo .sep {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--amber);
}
.lp-timeline-list-curso {
    max-width: 780px;
    margin: 40px auto 0;
}
.lp-timeline-num {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--amber-deep);
    background: rgba(255, 167, 38, 0.12);
    border-radius: 8px;
    padding: 5px 9px;
    flex-shrink: 0;
}
.lp-timeline-badge {
    margin-left: auto;
    font-size: 12px;
    color: var(--ink);
    opacity: 0.55;
    white-space: nowrap;
    flex-shrink: 0;
}
.lp-aulas-lista {
    margin: 0;
    padding: 4px 0 14px 0;
    list-style: none;
    counter-reset: aula;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px 22px;
}
.lp-aulas-lista li {
    counter-increment: aula;
    font-size: 14px;
    color: var(--ink);
    opacity: 0.85;
    padding-left: 30px;
    position: relative;
    line-height: 1.45;
}
.lp-aulas-lista li::before {
    content: counter(aula, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 1px;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--amber-deep);
}
.lp-curso-nota {
    text-align: center;
    font-size: 13.5px;
    color: var(--ink);
    opacity: 0.6;
    max-width: 620px;
    margin: 26px auto 0;
}

/* ============================================================
   Para quem é — grade de públicos
   ============================================================ */
.lp-publico-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 36px;
}
.lp-publico-item {
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--navy);
    position: relative;
    padding-left: 42px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.lp-publico-item::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-62%) rotate(-45deg);
    width: 12px;
    height: 7px;
    border-left: 2.5px solid var(--amber);
    border-bottom: 2.5px solid var(--amber);
}
.lp-publico-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(15, 33, 72, 0.08);
    border-color: var(--amber);
}

/* ============================================================
   Resultados — o que o aluno desenvolve
   ============================================================ */
.lp-resultados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 36px;
}
.lp-resultado-item {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    padding: 18px 18px 18px 44px;
    font-size: 14.5px;
    position: relative;
    line-height: 1.4;
}
.lp-resultado-item::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 24px;
    width: 13px;
    height: 8px;
    border-left: 2.5px solid var(--amber);
    border-bottom: 2.5px solid var(--amber);
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .lp-publico-grid, .lp-resultados-grid { grid-template-columns: 1fr 1fr; }
    .lp-aulas-lista { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .lp-publico-grid, .lp-resultados-grid { grid-template-columns: 1fr; }
    .lp-curso-resumo { gap: 10px; font-size: 13px; }
    .lp-curso-resumo strong { font-size: 16px; }
    .lp-timeline-badge { display: none; }
}

/* Chamada do pré-lançamento (substitui o investimento até as vendas abrirem) */
.lp-prelanc-beneficios {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 18px;
}
.lp-prelanc-beneficios span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   AJUSTES DE REFINAMENTO — impacto visual
   ============================================================ */

/* ---------- PRINT 2: cabeçalho da grade do curso ---------- */
.lp-titulo-curso {
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    max-width: 15ch;
    margin-left: auto;
    margin-right: auto;
}
.lp-titulo-destaque {
    display: inline-block;
    position: relative;
    color: var(--navy);
}
/* traço dourado sob a frase-chave, como marcação de caneta */
.lp-titulo-destaque::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.06em;
    height: 0.30em;
    background: linear-gradient(90deg, rgba(255,167,38,0.45), rgba(255,167,38,0.18));
    border-radius: 3px;
    z-index: -1;
}
.lp-curso-sub {
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}
.lp-curso-numeros {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
    margin: 30px auto 0;
}
.lp-curso-numero {
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.lp-curso-numero:hover {
    transform: translateY(-3px);
    border-color: var(--amber);
    box-shadow: 0 12px 28px rgba(15, 33, 72, 0.09);
}
.lp-curso-numero strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.lp-curso-numero span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
}
.lp-curso-dica {
    text-align: center;
    font-size: 13px;
    color: var(--text-soft);
    margin: 22px 0 0;
    opacity: 0.75;
}

/* ---------- PRINT 4: seção de pré-lançamento ---------- */
.lp-prelanc {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background:
        radial-gradient(ellipse 60% 80% at 50% -10%, rgba(255, 167, 38, 0.16) 0%, rgba(255, 167, 38, 0) 62%),
        linear-gradient(165deg, #0d1f45 0%, #081228 100%);
    color: #fff;
}
/* halo suave girando devagar ao fundo */
.lp-prelanc-brilho {
    position: absolute;
    top: -30%;
    left: 50%;
    width: 900px;
    height: 900px;
    margin-left: -450px;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.1) 0%, rgba(255, 167, 38, 0) 65%);
    pointer-events: none;
    animation: lpPrelancGira 26s linear infinite;
}
@keyframes lpPrelancGira {
    from { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.08); }
    to   { transform: rotate(360deg) scale(1); }
}
.lp-prelanc-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}
.lp-prelanc-selo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(255, 167, 38, 0.1);
    border: 1px solid rgba(255, 167, 38, 0.28);
    border-radius: 999px;
    padding: 9px 20px;
    margin-bottom: 26px;
}
.lp-prelanc-pulso {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 0 rgba(255, 167, 38, 0.7);
    animation: lpPulso 2.2s ease-out infinite;
}
@keyframes lpPulso {
    0%   { box-shadow: 0 0 0 0 rgba(255, 167, 38, 0.65); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 167, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 167, 38, 0); }
}
.lp-prelanc-titulo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4.6vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 auto 20px;
    max-width: 20ch;
}
.lp-prelanc-titulo em {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--amber);
    letter-spacing: -0.01em;
}
.lp-prelanc-texto {
    font-size: clamp(15px, 1.9vw, 17.5px);
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.78);
    max-width: 54ch;
    margin: 0 auto 46px;
}
.lp-prelanc-texto strong { color: #fff; font-weight: 600; }
.lp-prelanc-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 900px;
    margin: 0 auto 46px;
    text-align: left;
}
.lp-prelanc-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 26px 24px;
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.lp-prelanc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 167, 38, 0.45);
    background: rgba(255, 255, 255, 0.085);
}
.lp-prelanc-card-icone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 167, 38, 0.14);
    color: var(--amber);
    margin-bottom: 16px;
}
.lp-prelanc-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.lp-prelanc-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}
.lp-prelanc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 18px 42px;
    border-radius: 100px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
    color: #14213d;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 34px rgba(255, 167, 38, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.lp-prelanc-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
    box-shadow: 0 16px 44px rgba(255, 167, 38, 0.45);
}
.lp-prelanc-rodape {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
    margin: 16px 0 0;
}

/* ---------- PRINT 5: ilustração do FAQ acompanha a lista ---------- */
.lp-faq-ilustra-wrap {
    position: sticky;
    top: 110px;
}

@media (max-width: 900px) {
    .lp-prelanc-cards { grid-template-columns: 1fr; max-width: 420px; }
    .lp-curso-numeros { grid-template-columns: repeat(2, 1fr); max-width: 400px; }
    .lp-prelanc { padding: 72px 0 66px; }
}
@media (prefers-reduced-motion: reduce) {
    .lp-prelanc-brilho { animation: none; }
    .lp-prelanc-pulso { animation: none; }
}

/* ============================================================
   Seleção de texto — o padrão do navegador (azul + texto preto)
   ficava ilegível sobre as seções escuras. Agora a marcação usa
   a cor da marca e mantém contraste em qualquer fundo.
   ============================================================ */
::selection {
    background: rgba(255, 167, 38, 0.85);
    color: #14213d;
    text-shadow: none;
}
::-moz-selection {
    background: rgba(255, 167, 38, 0.85);
    color: #14213d;
    text-shadow: none;
}

/* ============================================================
   Alinhamento consistente dos cabeçalhos de seção
   Regra: centralizado quando o conteúdo abaixo é uma grade
   simétrica; alinhado à esquerda quando o layout é assimétrico
   (bento da Tecnologia, duas colunas do FAQ).
   ============================================================ */
.lp-section-head-centro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.lp-section-head-centro .lp-section-title {
    margin-left: auto;
    margin-right: auto;
}
.lp-section-head-centro .lp-section-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 56ch;
}

/* Coluna de perguntas do FAQ — a ilustração é irmã dela dentro do grid,
   não um bloco solto abaixo (garante o alinhamento lado a lado). */
.lp-faq-coluna { min-width: 0; }
.lp-faq-layout > * { align-self: start; }
@media (max-width: 900px) {
}

/* ============================================================
   Material de apoio — kit prático que acompanha o curso
   (substitui a antiga seção de "bônus"; linguagem institucional)
   ============================================================ */
.lp-material-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}
.lp-material-card {
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: 16px;
    padding: 28px 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp-material-card:hover {
    transform: translateY(-4px);
    border-color: var(--amber);
    box-shadow: 0 16px 38px rgba(15, 33, 72, 0.1);
}
.lp-material-icone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--navy);
    color: var(--amber);
    margin-bottom: 18px;
}
.lp-material-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 9px;
    letter-spacing: -0.01em;
}
.lp-material-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-soft);
    margin: 0;
}
/* as duas últimas centralizam para não deixar buraco na terceira coluna */
.lp-material-card:nth-child(4) { grid-column: 1 / 2; }
.lp-material-card:nth-child(5) { grid-column: 2 / 3; }

@media (max-width: 900px) {
    .lp-material-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-material-card:nth-child(4),
    .lp-material-card:nth-child(5) { grid-column: auto; }
}
@media (max-width: 560px) {
    .lp-material-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Barra de contato por WhatsApp — discreta e clicável inteira
   ============================================================ */
.lp-wa-barra {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 520px;
    margin: 36px auto 0;
    padding: 20px 24px;
    border-radius: 18px;
    text-decoration: none;
    background: var(--paper);
    border: 1px solid var(--paper-line);
    box-shadow: 0 6px 22px rgba(15, 33, 72, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp-wa-barra:hover {
    transform: translateY(-3px);
    border-color: #25D366;
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.18);
}
.lp-wa-barra-icone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: #25D366;
    color: #fff;
    flex-shrink: 0;
}
.lp-wa-barra-texto {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}
.lp-wa-barra-texto strong {
    font-family: 'Sora', sans-serif;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}
.lp-wa-barra-texto small {
    font-size: 13.5px;
    color: var(--text-soft);
}
.lp-wa-barra-seta {
    color: var(--text-soft);
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.25s ease;
}
.lp-wa-barra:hover .lp-wa-barra-seta {
    transform: translateX(4px);
    color: #25D366;
}
@media (max-width: 560px) {
    .lp-wa-barra { padding: 16px 18px; gap: 14px; }
    .lp-wa-barra-icone { width: 46px; height: 46px; }
    .lp-wa-barra-texto strong { font-size: 15px; }
}

/* ============================================================
   Marca — monograma EC (o "C" envolvendo linhas de fala)
   ============================================================ */
.lp-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}
.lp-logo-marca {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    color: var(--navy);
}
.lp-logo-nome {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.lp-logo-nome small {
    font-family: var(--mono, monospace);
    font-size: 9.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 400;
    margin-top: 3px;
    /* Quebrando em duas linhas, a marca ficava mais alta que a barra e
       empurrava os links do menu para fora do alinhamento. */
    white-space: nowrap;
}
.lp-logo-rodape { color: #fff; }
.lp-logo-rodape .lp-logo-marca { color: #fff; }
.lp-logo-rodape .lp-logo-nome small { color: rgba(255, 255, 255, 0.5); }

/* ============================================================
   Rodapé — créditos e assinatura do desenvolvedor
   ============================================================ */
.lp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.lp-footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 640px) {
    .lp-footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .lp-footer-dev { width: 100%; justify-content: center; }
}


/* Crédito do desenvolvedor — discreto, sem competir com a marca */
.lp-footer-dev {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.3);
}
.lp-footer-dev a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}
.lp-footer-dev a:hover { color: var(--amber); }

/* ============================================================
   Páginas legais (Termos, Privacidade) — mesmo corpo do site,
   com menu e rodapé da landing
   ============================================================ */
.lp-legal {
    background: var(--paper-soft);
    padding: 120px 0 72px;
    min-height: 60vh;
}
.lp-legal-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 44px 48px 52px;
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(15, 33, 72, 0.06);
}
.lp-legal-wrap h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3.4vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 0 0 6px;
}
.lp-legal-wrap h2 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin: 34px 0 10px;
    letter-spacing: -0.01em;
}
.lp-legal-wrap p,
.lp-legal-wrap li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-soft);
}
.lp-legal-wrap p { margin: 0 0 12px; }
.lp-legal-wrap ul { margin: 0 0 14px; padding-left: 22px; }
.lp-legal-wrap li { margin-bottom: 7px; }
.lp-legal-wrap strong { color: var(--navy); font-weight: 600; }
.lp-legal-wrap a { color: var(--amber-deep); }
.legal-data {
    font-family: var(--mono, monospace);
    font-size: 12.5px !important;
    color: var(--text-soft);
    opacity: 0.8;
    margin-bottom: 26px !important;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--paper-line);
}
.legal-box {
    background: var(--paper-soft);
    border-left: 3px solid var(--amber);
    border-radius: 0;
    padding: 16px 20px;
    margin: 18px 0;
    font-size: 14.5px;
}
.lp-legal-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 20px;
    font-size: 13.5px;
}
.lp-legal-wrap th,
.lp-legal-wrap td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--paper-line);
    vertical-align: top;
    color: var(--text-soft);
}
.lp-legal-wrap th {
    font-family: 'Sora', sans-serif;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    background: var(--paper-soft);
    font-weight: 700;
}
@media (max-width: 720px) {
    .lp-legal { padding: 96px 16px 48px; }
    .lp-legal-wrap { padding: 30px 22px 36px; border-radius: 16px; }
    .lp-legal-wrap table { font-size: 12.5px; }
    .lp-legal-wrap th, .lp-legal-wrap td { padding: 8px 7px; }
}

/* ============================================================
   O PROBLEMA — reconhecimento antes da solução
   Fundo escuro cria a pausa dramática entre o hero e o método.
   ============================================================ */
.lp-tensao {
    background: linear-gradient(170deg, #0d1f45 0%, #081228 100%);
    padding: 88px 0 80px;
    position: relative;
    overflow: hidden;
}
.lp-tensao::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 167, 38, 0.08) 0%, rgba(255, 167, 38, 0) 60%);
    pointer-events: none;
}
.lp-tensao .lp-wrap { position: relative; z-index: 1; }
.lp-tensao-titulo { color: #fff; }
.lp-tensao-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 44px;
}
.lp-tensao-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid rgba(255, 167, 38, 0.5);
    border-radius: 14px;
    padding: 28px 26px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.lp-tensao-card:hover {
    transform: translateY(-4px);
    border-left-color: var(--amber);
    background: rgba(255, 255, 255, 0.075);
}
.lp-tensao-num {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--amber);
    margin-bottom: 14px;
}
.lp-tensao-cena {
    font-size: 15.5px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}
.lp-tensao-cena strong { color: #fff; font-weight: 600; }
.lp-tensao-virada {
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: clamp(17px, 2.3vw, 22px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 46ch;
    margin: 46px auto 0;
    letter-spacing: -0.01em;
}
.lp-tensao-virada strong { color: var(--amber); font-weight: 700; }

/* ============================================================
   Vídeo de apresentação (renderizado só quando há arquivo)
   ============================================================ */
.lp-video-sec {
    padding: 84px 0 76px;
    background: var(--paper-soft);
}
.lp-video-palco {
    max-width: 880px;
    margin: 42px auto 0;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 28px 70px rgba(15, 33, 72, 0.22);
    line-height: 0;
}
.lp-video-palco video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 78vh;
}

@media (max-width: 900px) {
    .lp-tensao-grid { grid-template-columns: 1fr; gap: 14px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .lp-tensao { padding: 66px 0 60px; }
    .lp-video-sec { padding: 60px 0 56px; }
    .lp-video-palco { border-radius: 14px; margin-top: 30px; }
}

/* ============================================================
   APOSTILA — material exclusivo dos alunos
   Fundo escuro dá o peso de "troféu" e separa a grade do curso
   da seção de tecnologia.
   ============================================================ */
.lp-apostila {
    position: relative;
    overflow: hidden;
    padding: 92px 0 88px;
    background: linear-gradient(155deg, #0d1f45 0%, #071026 100%);
    color: #fff;
}
.lp-apostila-brilho {
    position: absolute;
    top: -25%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.13) 0%, rgba(255, 167, 38, 0) 62%);
    pointer-events: none;
}
.lp-apostila-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: center;
}
.lp-apostila-texto { min-width: 0; }
.lp-apostila-selo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(255, 167, 38, 0.1);
    border: 1px solid rgba(255, 167, 38, 0.3);
    border-radius: 999px;
    padding: 8px 18px;
    margin-bottom: 22px;
}
.lp-apostila-titulo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4.2vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 18px;
}
.lp-apostila-titulo em {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--amber);
}
.lp-apostila-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 52ch;
    margin: 0 0 28px;
}
.lp-apostila-numeros {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 26px;
}
.lp-apostila-numeros strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
    letter-spacing: -0.02em;
}
.lp-apostila-numeros span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.lp-apostila-lista {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.lp-apostila-lista li {
    position: relative;
    padding-left: 26px;
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}
.lp-apostila-lista li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 5px;
    width: 12px;
    height: 7px;
    border-left: 2.4px solid var(--amber);
    border-bottom: 2.4px solid var(--amber);
    transform: rotate(-45deg);
}
.lp-apostila-nota {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    font-style: italic;
}

/* Capa estilizada (sem imagem: puro CSS, sempre nítida) */
.lp-apostila-visual {
    display: flex;
    justify-content: center;
}
.lp-apostila-capa {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3 / 4.2;
    border-radius: 6px 14px 14px 6px;
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(150deg, #16305e 0%, #0a1836 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), inset 3px 0 0 rgba(255, 167, 38, 0.5);
    transform: rotate(-2.5deg);
    transition: transform 0.4s ease;
}
.lp-apostila-capa:hover { transform: rotate(0deg) translateY(-6px); }
.lp-apostila-capa-selo {
    font-family: var(--mono, monospace);
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 167, 38, 0.8);
    margin-bottom: auto;
}
.lp-apostila-capa-titulo {
    font-family: 'Sora', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
}
.lp-apostila-capa-traco {
    width: 44px;
    height: 3px;
    background: var(--amber);
    border-radius: 2px;
    margin-top: 14px;
}
.lp-apostila-capa-autora {
    margin-top: 12px;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
    .lp-apostila { padding: 68px 0 64px; }
    .lp-apostila-grid { grid-template-columns: 1fr; gap: 38px; }
    .lp-apostila-visual { order: -1; }
    .lp-apostila-capa { max-width: 210px; }
    .lp-apostila-numeros { gap: 26px; }
    .lp-apostila-numeros strong { font-size: 25px; }
}

/* ============================================================
   Página de pré-lançamento (/apresentacao)
   Dentro da estrutura do site: menu e rodapé da landing.
   ============================================================ */
.lp-legal-larga { padding: 104px 0 76px; }

.pl-grade {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.pl-texto { min-width: 0; }
.pl-form-coluna { min-width: 0; }

.pl-selo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-deep);
    background: rgba(255, 167, 38, 0.12);
    border: 1px solid rgba(255, 167, 38, 0.32);
    border-radius: 999px;
    padding: 8px 18px;
    margin-bottom: 22px;
}
.pl-ponto {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    animation: lpPulso 2.2s ease-out infinite;
}
.pl-titulo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin: 0 0 18px;
}
.pl-titulo em {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--amber-deep);
}
.pl-sub {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 46ch;
    margin: 0 0 26px;
}
.pl-sub strong { color: var(--navy); font-weight: 600; }

.pl-numeros {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
    margin-bottom: 24px;
    border-top: 1px solid var(--paper-line);
    border-bottom: 1px solid var(--paper-line);
}
.pl-numeros strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--amber-deep);
    line-height: 1;
    letter-spacing: -0.02em;
}
.pl-numeros span {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.pl-beneficios { display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.pl-beneficio {
    position: relative;
    padding-left: 26px;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-soft);
}
.pl-beneficio strong { color: var(--navy); font-weight: 600; }
.pl-beneficio::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 5px;
    width: 12px;
    height: 7px;
    border-left: 2.4px solid var(--amber);
    border-bottom: 2.4px solid var(--amber);
    transform: rotate(-45deg);
}
.pl-autora { font-size: 12.5px; color: var(--text-soft); opacity: 0.75; margin: 0; }

.pl-cartao {
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: 20px;
    padding: 32px 30px;
    box-shadow: 0 20px 50px rgba(15, 33, 72, 0.09);
}
.pl-cartao-titulo {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.pl-cartao-sub { font-size: 13.5px; color: var(--text-soft); margin: 0 0 22px; }
.pl-cartao label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 6px;
}
.pl-cartao input, .pl-cartao select {
    width: 100%;
    padding: 13px 14px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--paper-line);
    background: var(--paper-soft);
    color: var(--ink);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.pl-cartao input:focus, .pl-cartao select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.16);
}
.pl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
    color: #14213d;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 15.5px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(232, 135, 12, 0.26);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.pl-btn:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 14px 34px rgba(232, 135, 12, 0.36); }
.pl-btn-zap { background: #25D366; color: #0b3d22; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.26); max-width: 340px; margin: 0 auto; }
.pl-btn-zap:hover { box-shadow: 0 14px 34px rgba(37, 211, 102, 0.4); }
.pl-erro {
    background: rgba(201, 37, 45, 0.08);
    border: 1px solid rgba(201, 37, 45, 0.3);
    color: #c9252d;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13.5px;
    margin-bottom: 14px;
}
.pl-privacidade { font-size: 11.5px; color: var(--text-soft); opacity: 0.8; margin: 12px 0 0; text-align: center; line-height: 1.5; }
.pl-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Estado de sucesso */
.pl-sucesso {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: 20px;
    padding: 42px 34px 36px;
    box-shadow: 0 20px 50px rgba(15, 33, 72, 0.09);
}
.pl-sucesso-icone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #1a9e52;
    margin-bottom: 18px;
}
.pl-sucesso h1 {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 0 0 10px;
}
.pl-sucesso p { font-size: 15px; line-height: 1.65; color: var(--text-soft); margin: 0 auto 24px; max-width: 42ch; }

.pl-indicar { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--paper-line); }
.pl-indicar-titulo {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.pl-indicar-texto { font-size: 13.5px; color: var(--text-soft); line-height: 1.55; margin: 0 auto 16px; max-width: 44ch; }
.pl-indicar-botoes { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pl-btn-indicar, .pl-btn-copiar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 100px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.22s ease;
}
.pl-btn-indicar { background: rgba(37, 211, 102, 0.1); border: 1px solid rgba(37, 211, 102, 0.4); color: #1a9e52; }
.pl-btn-indicar:hover { background: rgba(37, 211, 102, 0.18); transform: translateY(-2px); }
.pl-btn-copiar { background: var(--paper-soft); border: 1px solid var(--paper-line); color: var(--text-soft); }
.pl-btn-copiar:hover { background: var(--paper); border-color: var(--border-strong, #ccc); transform: translateY(-2px); }
.pl-btn-copiar.copiado { border-color: var(--amber); color: var(--amber-deep); }

@media (max-width: 900px) {
    .lp-legal-larga { padding: 92px 16px 56px; }
    .pl-grade { grid-template-columns: 1fr; gap: 34px; }
    .pl-numeros { gap: 22px; }
    .pl-numeros strong { font-size: 22px; }
    .pl-cartao { padding: 26px 22px; }
    .pl-sucesso { padding: 34px 22px 30px; }
}

/* ============================================================
   Banner de consentimento de cookies (LGPD)
   Só aparece se houver ferramenta de medição configurada e o
   visitante ainda não tiver escolhido.
   ============================================================ */
.ec-cookies {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 200;
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 16px 20px;
    border-radius: 14px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
}
.ec-cookies[hidden] { display: none; }
.ec-cookies-texto {
    flex: 1;
    min-width: 240px;
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}
.ec-cookies-texto a { color: var(--amber); text-decoration: underline; }
.ec-cookies-botoes { display: flex; gap: 9px; flex-shrink: 0; }
.ec-cookies-aceitar, .ec-cookies-recusar {
    padding: 10px 20px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.ec-cookies-aceitar {
    border: none;
    background: var(--amber);
    color: #14213d;
}
.ec-cookies-aceitar:hover { filter: brightness(1.06); transform: translateY(-1px); }
.ec-cookies-recusar {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: rgba(255, 255, 255, 0.8);
}
.ec-cookies-recusar:hover { background: rgba(255, 255, 255, 0.08); }
@media (max-width: 560px) {
    .ec-cookies { padding: 14px 16px; gap: 12px; }
    .ec-cookies-botoes { width: 100%; }
    .ec-cookies-aceitar, .ec-cookies-recusar { flex: 1; }
}

/* ============================================================
   Redes sociais na seção da mentora
   ============================================================ */
.lp-mentora-redes {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--paper-line);
}
.lp-mentora-redes-rotulo {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-soft);
}
.lp-mentora-redes-icones { display: flex; gap: 10px; }
.lp-mentora-redes-icones a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--paper-soft);
    border: 1px solid var(--paper-line);
    color: var(--navy);
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.lp-mentora-redes-icones a:hover {
    transform: translateY(-3px);
    background: var(--navy);
    border-color: var(--navy);
    color: var(--amber);
}
@media (max-width: 560px) {
    .lp-mentora-redes { gap: 12px; }
}

/* Link do Instagram na página de pré-lançamento */
.pl-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 9px 18px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    background: var(--paper-soft);
    border: 1px solid var(--paper-line);
    transition: all 0.22s ease;
}
.pl-instagram:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--amber);
    transform: translateY(-2px);
}


/* ============================================================
   GUIAS PÚBLICOS DE PORTUGUÊS (/guias/)
   ------------------------------------------------------------
   Páginas de conteúdo aberto que captam busca orgânica. A
   tipografia aqui é de leitura longa (medida de ~68 caracteres,
   entrelinha alta), diferente da landing, que é de escaneamento.
   ============================================================ */

.guia-hero {
    padding: 120px 0 56px;
    background: linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
    border-bottom: 1px solid var(--paper-line);
}

.guia-breadcrumb {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.guia-breadcrumb a { text-decoration: none; color: var(--text-soft); }
.guia-breadcrumb a:hover { color: var(--amber-deep); }
.guia-breadcrumb strong { font-weight: 600; color: var(--text); }
.guia-breadcrumb span { opacity: 0.4; }

.guia-hero-titulo {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 10px 0 18px;
}

.guia-hero-sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-soft);
    max-width: 640px;
    margin: 0;
}
.guia-hero-sub a { color: var(--amber-deep); font-weight: 600; }

/* ---------- Cards do hub ---------- */

.guia-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.guia-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 26px 24px 22px;
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.guia-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--amber);
}
.guia-card-tag {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--amber-deep);
}
.guia-card h2 {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
.guia-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-soft);
    margin: 0;
    flex: 1;
}
.guia-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--amber-deep);
    margin-top: 4px;
}

/* ---------- Unidades no hub ---------- */

.guia-unidades {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}
.guia-unidade {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: var(--radius-md);
}
.guia-unidade-num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 15px;
    color: var(--amber-deep);
    background: var(--amber-soft);
    width: 38px; height: 38px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.guia-unidade h3 {
    font-family: var(--display);
    font-size: 16px;
    margin: 0 0 6px;
}
.guia-unidade p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-soft);
    margin: 0 0 10px;
}
.guia-unidade-links { display: flex; flex-direction: column; gap: 5px; }
.guia-unidade-links a {
    font-size: 13.5px;
    color: var(--amber-deep);
    text-decoration: none;
    font-weight: 500;
}
.guia-unidade-links a:hover { text-decoration: underline; }

.guia-cta-bloco {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--navy);
    color: #fff;
}
.guia-cta-bloco h3 { font-family: var(--display); font-size: 22px; margin: 0 0 6px; }
.guia-cta-bloco p { margin: 0; color: rgba(255,255,255,0.72); font-size: 15px; }

/* ---------- Artigo ---------- */

.guia-artigo { padding: 110px 0 70px; }
.guia-artigo-wrap { max-width: 760px; margin: 0 auto; padding: 0 28px; }

.guia-artigo-head { margin-bottom: 36px; }
.guia-artigo-head h1 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(30px, 4.4vw, 44px);
    line-height: 1.14;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.guia-artigo-resumo {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-soft);
    margin: 0 0 18px;
}
.guia-artigo-meta {
    display: flex; flex-wrap: wrap; gap: 8px;
    font-size: 13px;
    color: var(--text-soft);
    padding-top: 16px;
    border-top: 1px solid var(--paper-line);
}

.guia-artigo-corpo { font-size: 17px; line-height: 1.78; color: var(--text); }
.guia-artigo-corpo p { margin: 0 0 20px; }
.guia-artigo-corpo .guia-lead {
    font-size: 18.5px;
    line-height: 1.65;
    color: var(--text-soft);
    padding-left: 18px;
    border-left: 3px solid var(--amber);
}
.guia-artigo-corpo h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 44px 0 16px;
}
.guia-artigo-corpo h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 19px;
    margin: 30px 0 12px;
}
.guia-artigo-corpo ul,
.guia-artigo-corpo ol { margin: 0 0 22px; padding-left: 22px; }
.guia-artigo-corpo li { margin-bottom: 9px; }
.guia-artigo-corpo em { font-family: var(--accent-serif); font-style: italic; }
.guia-artigo-corpo strong { font-weight: 650; }

.guia-artigo-corpo .guia-dica {
    background: var(--amber-soft);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    font-size: 15.5px;
    line-height: 1.6;
    border-left: 3px solid var(--amber);
}

.guia-tabela {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 26px;
    font-size: 15px;
    display: block;
    overflow-x: auto;
}
.guia-tabela th,
.guia-tabela td {
    text-align: left;
    padding: 11px 14px;
    border-bottom: 1px solid var(--paper-line);
    white-space: nowrap;
}
.guia-tabela thead th {
    background: var(--paper-soft);
    font-family: var(--display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-soft);
}

/* ---------- FAQ do artigo ---------- */

.guia-faq { margin-top: 48px; }
.guia-faq h2 { font-family: var(--display); font-size: 24px; margin: 0 0 18px; }
.guia-faq-item {
    border: 1px solid var(--paper-line);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    margin-bottom: 10px;
    background: var(--paper);
}
.guia-faq-item summary {
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
}
.guia-faq-item summary::-webkit-details-marker { display: none; }
.guia-faq-item summary::after { content: '+'; float: right; color: var(--amber-deep); font-weight: 700; }
.guia-faq-item[open] summary::after { content: '−'; }
.guia-faq-item p { margin: 12px 0 0; font-size: 15.5px; line-height: 1.65; color: var(--text-soft); }

/* ---------- Bloco de conversão ---------- */

.guia-conversao {
    margin: 52px 0 0;
    padding: 34px 30px;
    border-radius: var(--radius-lg);
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow-lg);
}
.guia-conversao-tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin-bottom: 12px;
}
.guia-conversao h2 { font-family: var(--display); font-size: 25px; margin: 0 0 10px; color: #fff; }
.guia-conversao > p { margin: 0 0 18px; color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.6; }
.guia-conversao ul { margin: 0 0 24px; padding-left: 20px; color: rgba(255,255,255,0.72); font-size: 15px; }
.guia-conversao li { margin-bottom: 7px; }
.guia-conversao-acoes { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.guia-conversao .lp-btn-ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.guia-conversao-nota {
    margin: 18px 0 0;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

/* ---------- Relacionados ---------- */

.guia-relacionados { margin-top: 52px; }
.guia-relacionados h2 { font-family: var(--display); font-size: 22px; margin: 0 0 18px; }
.guia-relacionados-grid { display: grid; gap: 14px; }
.guia-relacionados-grid a {
    display: block;
    padding: 20px 22px;
    border: 1px solid var(--paper-line);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.guia-relacionados-grid a:hover { border-color: var(--amber); transform: translateX(3px); }
.guia-relacionados-grid h3 { font-family: var(--display); font-size: 16.5px; margin: 0 0 5px; }
.guia-relacionados-grid p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text-soft); }

@media (max-width: 640px) {
    .guia-hero { padding: 96px 0 40px; }
    .guia-artigo { padding: 90px 0 50px; }
    .guia-artigo-corpo { font-size: 16.5px; }
    .guia-conversao { padding: 26px 22px; }
}


/* ---------- Detalhes das unidades no acordeão do programa ---------- */

.lp-unidade-resumo {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-soft);
    margin: 0 0 14px;
}
.lp-unidade-promessa {
    margin: 14px 0 0;
    padding: 12px 14px;
    background: var(--amber-soft);
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    line-height: 1.55;
}
.lp-unidade-guias {
    margin: 12px 0 0;
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.6;
}
.lp-unidade-guias a { color: var(--amber-deep); font-weight: 600; text-decoration: none; }
.lp-unidade-guias a:hover { text-decoration: underline; }

.lp-material-formato {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--amber-deep);
    background: var(--amber-soft);
    padding: 4px 9px;
    border-radius: var(--radius-pill);
}

.lp-video-legenda-aviso {
    text-align: center;
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--text-soft);
}


/* ============================================================
   ACESSIBILIDADE E FOCO
   ------------------------------------------------------------
   A auditoria mostrou que a folha não tinha NENHUMA regra de
   :focus-visible. Na prática, quem navega por teclado — e quem
   usa leitor de tela — percorria a página inteira sem enxergar
   onde estava. Isso não é detalhe de conformidade: é gente que
   não consegue chegar ao botão de inscrição.
   ============================================================ */

.lp-skip {
    position: absolute;
    left: 12px;
    top: -60px;
    z-index: 300;
    background: var(--navy);
    color: #fff;
    padding: 11px 20px;
    border-radius: 0 0 10px 10px;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}
.lp-skip:focus { top: 0; }

/* Anel de foco visível em tudo que é interativo.
   Só no :focus-visible, para não aparecer em clique de mouse. */
.lp a:focus-visible,
.lp button:focus-visible,
.lp input:focus-visible,
.lp select:focus-visible,
.lp textarea:focus-visible,
.lp summary:focus-visible,
.lp [tabindex]:focus-visible {
    outline: 3px solid var(--amber-deep);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Sobre fundo escuro, o âmbar some: inverte para branco. */
.lp-video-sec a:focus-visible,
.lp-footer a:focus-visible,
.lp-apostila a:focus-visible,
.guia-conversao a:focus-visible {
    outline-color: #fff;
}

/* Imagens não deformam enquanto o width/height reservam o espaço */
.lp-hero-foto img,
.lp-mentora-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ---------- Garantia de 7 dias ---------- */
.lp-garantia {
    display: flex;
    align-items: center;
    gap: 22px;
    max-width: 680px;
    margin: 40px auto 0;
    padding: 26px 28px;
    border-radius: var(--radius-lg);
    background: var(--paper);
    border: 1px solid var(--paper-line);
    box-shadow: var(--shadow-sm);
}
.lp-garantia-selo {
    width: 62px; height: 62px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--amber-soft);
    color: var(--amber-deep);
    display: flex; align-items: center; justify-content: center;
}
.lp-garantia-texto h3 {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 7px;
    line-height: 1.25;
}
.lp-garantia-texto p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-soft);
}
.lp-garantia-texto a {
    color: var(--amber-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 560px) {
    .lp-garantia { flex-direction: column; text-align: center; padding: 24px 20px; gap: 16px; }
}
