/* ═══════════════════════════════════════════════════════════════════════
   landing-curso.css — Design Premium / Alta Conversão
   Herda de estilo.php: --purple-1 #7A28FF · --purple-2 #5B1EBB
                        --accent #F363FF · --bg #F8F5FF · --text #221133
                        --radius 16px · --maxw 1150px · --heightmenu 65px
   ═══════════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   BASE
   ════════════════════════════════════════════════════════════ */
body.lp {
    background: var(--bg, #F8F5FF);
    color: var(--text, #221133);
    overflow-x: hidden;
}

.lp-center { text-align: center; }

/* ════════════════════════════════════════════════════════════
   RITMO DE SEÇÕES
   ════════════════════════════════════════════════════════════ */
.lp-section {
    padding: clamp(44px, 5.5vw, 68px) 0;
    position: relative;
}

.lp-section--alt { background: #fff; }

/* ════════════════════════════════════════════════════════════
   SECTION HEADER — hierarquia visual forte
   ════════════════════════════════════════════════════════════ */
.lp-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.lp-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple-1, #7A28FF);
    background: rgba(122, 40, 255, .08);
    border: 1px solid rgba(122, 40, 255, .15);
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 14px;
}

.lp-label--light {
    color: var(--accent, #F363FF);
    background: rgba(243, 99, 255, .1);
    border-color: rgba(243, 99, 255, .2);
}

.lp-heading {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text, #221133);
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.lp-heading--left  { text-align: left; }
.lp-heading--white { color: #fff; }
.lp-heading--white strong { color: var(--accent, #F363FF); }

.lp-subheading {
    font-size: 17px;
    color: #6b5a82;
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
}

/* ════════════════════════════════════════════════════════════
   CHIP / BADGE
   ════════════════════════════════════════════════════════════ */
.lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .95);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}

.lp-chip i { color: var(--accent, #F363FF); }

.lp-chip--glow {
    border-color: rgba(243, 99, 255, .5);
    background: rgba(243, 99, 255, .1);
    animation: lp-chip-glow 2.4s ease-in-out infinite alternate;
}

@keyframes lp-chip-glow {
    from { box-shadow: 0 0 10px rgba(243, 99, 255, .2); }
    to   { box-shadow: 0 0 28px rgba(243, 99, 255, .55); }
}

/* ════════════════════════════════════════════════════════════
   BOTÕES — elemento de conversão central
   ════════════════════════════════════════════════════════════ */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 18px;
    font-family: Poppins, sans-serif;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1),
                box-shadow .25s ease,
                background .2s ease;
    white-space: nowrap;
    line-height: 1.3;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep no hover */
.lp-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -75%;
    width: 50%; height: 200%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
    transform: skewX(-15deg);
    transition: left .55s ease;
}
.lp-btn:hover::after { left: 130%; }

.lp-btn--primary {
    background: linear-gradient(135deg, #8B35FF 0%, var(--purple-1, #7A28FF) 40%, var(--purple-2, #5B1EBB) 100%);
    color: #fff;
    box-shadow:
        0 6px 20px rgba(122, 40, 255, .35),
        0 1px 0 rgba(255,255,255,.12) inset;
}

.lp-btn--white {
    background: #fff;
    color: var(--purple-1, #7A28FF);
    box-shadow: 0 6px 24px rgba(34, 17, 51, .12);
}

/* Tamanhos */
.lp-btn--lg  { padding: 17px 38px; font-size: 16px; }
.lp-btn--xl  { padding: 20px 54px; font-size: 19px; border-radius: 22px; }
.lp-btn--full{ width: 100%; }

.lp-btn:hover,
.lp-btn:focus-visible {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 40px rgba(122, 40, 255, .45),
        0 1px 0 rgba(255,255,255,.12) inset;
    outline: none;
}

.lp-btn--white:hover {
    box-shadow: 0 16px 40px rgba(34, 17, 51, .18);
}

/* Pulse CTA — anel pulsante */
@keyframes lp-pulse-ring {
    0%   { box-shadow: 0 6px 20px rgba(122,40,255,.4), 0 0 0 0   rgba(122,40,255,.5); }
    70%  { box-shadow: 0 6px 20px rgba(122,40,255,.4), 0 0 0 18px rgba(122,40,255,0); }
    100% { box-shadow: 0 6px 20px rgba(122,40,255,.4), 0 0 0 0   rgba(122,40,255,0); }
}

.lp-pulse        { animation: lp-pulse-ring 2.4s cubic-bezier(.36,.07,.19,.97) infinite; }
.lp-pulse:hover  { animation: none; }

/* ════════════════════════════════════════════════════════════
   TAGS
   ════════════════════════════════════════════════════════════ */
.lp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.lp-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--purple-2, #5B1EBB);
    border: 1.5px solid rgba(122, 40, 255, .15);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(122, 40, 255, .07);
    transition: border-color .2s, box-shadow .2s;
}

.lp-tag:hover {
    border-color: rgba(122, 40, 255, .35);
    box-shadow: 0 4px 14px rgba(122, 40, 255, .12);
}

/* ════════════════════════════════════════════════════════════
   PROSE
   ════════════════════════════════════════════════════════════ */
.lp-prose {
    font-size: 15px;
    color: #5a4e6e;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ════════════════════════════════════════════════════════════
   ██  HERO — Premium multi-layer / alta conversão
   ════════════════════════════════════════════════════════════ */
.lp-hero {
    position: relative;
    background: linear-gradient(150deg, #0a0118 0%, #14072a 30%, #2e0f60 65%, #4a1a8a 100%);
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: calc(100vh - 65px);
}

/* Luzes e textura de fundo */
.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 72% 12%, rgba(243,99,255,.22) 0%, transparent 40%),
        radial-gradient(ellipse at 8%  80%, rgba(122,40,255,.18) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(90,30,187,.1)   0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.025) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* ── Corpo principal: grid texto + visual ── */
.lp-hero__body {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    /* padding-top: clamp(52px, 7vw, 84px); */
    /* padding-bottom: 48px; */
}

/* ── Coluna de texto ── */
.lp-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lp-hero__title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.07;
    margin: 0 0 12px;
    color: #fff;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 24px rgba(0,0,0,.4);
}

.lp-hero__title em {
    font-style: normal;
    background: linear-gradient(90deg, #fff 0%, var(--accent, #F363FF) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero__subtitle {
    font-size: 15px;
    color: rgba(255,255,255,.78);
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 460px;
}

.lp-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.lp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.lp-hero__trust span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: rgba(255,255,255,.5);
    font-weight: 500;
}

.lp-hero__trust i { color: rgba(255,255,255,.28); font-size: 10px; }

.lp-hero__hint {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Social proof row */
.lp-hero__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
    color: rgba(255,255,255,.58);
    width: 100%;
}

.lp-hero__avatars { display: flex; }

.lp-hero__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(10,1,24,.85);
    margin-left: -7px;
    flex-shrink: 0;
}

.lp-hero__avatar:first-child { margin-left: 0; }
.lp-hero__social strong { color: rgba(255,255,255,.9); }

/* ── Coluna visual ── */
.lp-hero__visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.lp-hero__img-wrap {
    position: relative;
    width: 100%;
    /* overflow visible — permite que cards flutuem para fora */
}

.lp-hero__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    border: 1.5px solid rgba(255,255,255,.14);
    box-shadow:
        0 0 0 1px rgba(122,40,255,.25),
        0 32px 80px rgba(0,0,0,.55);
    transition: transform .5s ease;
}

.lp-hero__img:hover { transform: scale(1.015); }

/* ── Cards flutuantes sobre a imagem ── */
.lp-hcard {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 11px 15px;
    box-shadow:
        0 8px 28px rgba(0,0,0,.22),
        0 1px 0 rgba(255,255,255,.7) inset;
    border: 1px solid rgba(122,40,255,.08);
    min-width: 165px;
    z-index: 4;
    pointer-events: none;
}

.lp-hcard__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--purple-1,#7A28FF), var(--purple-2,#5B1EBB));
    box-shadow: 0 4px 12px rgba(122,40,255,.3);
}

.lp-hcard strong {
    font-size: 12px;
    color: #221133;
    font-weight: 700;
    display: block;
    line-height: 1.3;
}

.lp-hcard span {
    font-size: 11px;
    color: #6b5a82;
    display: block;
    line-height: 1.3;
}

.lp-hcard--tl {
    top: -20px;
    left: -28px;
    animation: lp-float-card 3.4s ease-in-out infinite alternate;
}

.lp-hcard--br {
    bottom: -20px;
    right: -28px;
    animation: lp-float-card 3.8s ease-in-out 0.7s infinite alternate-reverse;
}

@keyframes lp-float-card {
    from { transform: translateY(0); }
    to   { transform: translateY(-10px); }
}

/* ── Badge GRÁTIS ── */
.lp-hero__badge {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4dc4, var(--accent,#F363FF), var(--purple-1,#7A28FF));
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow:
        0 0 0 3px #fff,
        0 6px 22px rgba(122,40,255,.55),
        0 0 32px rgba(243,99,255,.4);
    line-height: 1.2;
    z-index: 5;
}

.lp-hero__badge i { font-size: 16px; margin-bottom: 2px; }

/* ── Pill strip: atributos do curso ── */
.lp-hero__pills {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    /* padding: 0 0 clamp(44px, 5.5vw, 64px); */
}

.lp-hpill {
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 14px 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background .2s, border-color .2s;
    cursor: default;
}

.lp-hpill:hover {
    background: rgba(255,255,255,.11);
    border-color: rgba(255,255,255,.18);
}

.lp-hpill > i {
    font-size: 22px;
    flex-shrink: 0;
    color: var(--accent,#F363FF);
}

.lp-hpill--star > i { color: #f59e0b; }

.lp-hpill span {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.92);
    display: block;
    line-height: 1.25;
}

.lp-hpill small {
    font-size: 10.5px;
    color: rgba(255,255,255,.42);
    display: block;
    line-height: 1.3;
    margin-top: 1px;
}

/* Legacy aliases mantidos para não quebrar outras partes do CSS */
.lp-hero__stat { display: none; }
.lp-stat       { display: none; }


/* ════════════════════════════════════════════════════════════
   GRID
   ════════════════════════════════════════════════════════════ */
.lp-grid { display: grid; gap: 24px; }
.lp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lp-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ════════════════════════════════════════════════════════════
   CARDS — BENEFÍCIOS
   ════════════════════════════════════════════════════════════ */
.lp-card {
    background: #fff;
    border: 1px solid rgba(122, 40, 255, .1);
    border-radius: 20px;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
    box-shadow: 0 2px 12px rgba(34, 17, 51, .06);
}

.lp-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 20px 48px rgba(122, 40, 255, .14),
        0 2px 0 rgba(122, 40, 255, .1) inset;
    border-color: rgba(122, 40, 255, .25);
}

.lp-card--benefit {
    padding: 22px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Destaque no segundo card (Conteúdo Atualizado) */
.lp-card--benefit.lp-card--featured {
    background: linear-gradient(145deg, var(--purple-1, #7A28FF) 0%, var(--purple-2, #5B1EBB) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow:
        0 8px 32px rgba(122, 40, 255, .35),
        0 1px 0 rgba(255,255,255,.12) inset;
    transform: translateY(-4px) scale(1.02);
}

.lp-card--featured:hover {
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 0 24px 56px rgba(122, 40, 255, .45) !important;
}

.lp-card--featured .lp-card__icon {
    background: rgba(255, 255, 255, .2) !important;
    box-shadow: 0 4px 16px rgba(255,255,255,.15) !important;
}

.lp-card--featured h3 { color: #fff; }
.lp-card--featured p  { color: rgba(255,255,255,.85); }

/* Linha decorativa top */
.lp-card--benefit::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--purple-1, #7A28FF), transparent);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity .3s;
}

.lp-card--benefit:hover::before,
.lp-card--featured::before { opacity: 1; }

.lp-card--featured::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
}

.lp-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--purple-1, #7A28FF), var(--purple-2, #5B1EBB));
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 6px 16px rgba(122, 40, 255, .25);
}

.lp-card--benefit h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text, #221133);
}

.lp-card--benefit p {
    font-size: 13px;
    color: #6b5a82;
    margin: 0;
    line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════
   CARDS — DEPOIMENTOS
   ════════════════════════════════════════════════════════════ */
.lp-card--testimonial {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lp-card__stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.lp-card__quote {
    font-size: 15px;
    color: #5a4e6e;
    line-height: 1.75;
    font-style: italic;
    margin: 0 0 20px;
    flex: 1;
    position: relative;
    padding-left: 20px;
}

.lp-card__quote::before {
    content: '"';
    position: absolute;
    left: 0; top: -8px;
    font-size: 48px;
    font-style: normal;
    color: var(--purple-1, #7A28FF);
    opacity: .15;
    line-height: 1;
    font-family: Georgia, serif;
}

.lp-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(122, 40, 255, .08);
    padding-top: 16px;
    margin-top: auto;
}

.lp-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,.15);
}

.lp-card__author strong {
    font-size: 14px;
    display: block;
    color: var(--text, #221133);
}

.lp-card__author span {
    font-size: 12px;
    color: #a094b4;
    display: block;
}

/* Rating summary */
.lp-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
    padding: 20px 32px;
    background: #fff;
    border: 1px solid rgba(122, 40, 255, .1);
    border-radius: 20px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 28px rgba(34, 17, 51, .07);
}

.lp-rating__number {
    font-size: 52px;
    font-weight: 900;
    color: var(--text, #221133);
    line-height: 1;
}

.lp-rating__stars {
    color: #f59e0b;
    font-size: 22px;
    letter-spacing: 2px;
    display: block;
}

.lp-rating__count {
    font-size: 13px;
    color: #6b5a82;
    display: block;
    margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   SPLIT LAYOUT
   ════════════════════════════════════════════════════════════ */
.lp-split {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
    margin-bottom: 48px;
}

.lp-split:last-child { margin-bottom: 0; }
.lp-split--reverse { grid-template-columns: 1.3fr 1fr; }
.lp-split--reverse .lp-split__media { order: -1; }

/* Imagem com profundidade */
.lp-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow:
        0 4px 0 rgba(122, 40, 255, .15),
        0 24px 48px rgba(34, 17, 51, .14);
    border: 1px solid rgba(122, 40, 255, .08);
    transition: transform .4s ease, box-shadow .4s ease;
}

.lp-img:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 4px 0 rgba(122, 40, 255, .2),
        0 32px 64px rgba(34, 17, 51, .18);
}

/* ════════════════════════════════════════════════════════════
   CHECKLIST
   ════════════════════════════════════════════════════════════ */
.lp-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #5a4e6e;
    line-height: 1.5;
    padding: 10px 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(122, 40, 255, .08);
    transition: border-color .2s, box-shadow .2s;
}

.lp-checklist li:hover {
    border-color: rgba(34, 168, 90, .25);
    box-shadow: 0 3px 12px rgba(34, 168, 90, .07);
}

.lp-checklist li i {
    color: #22a85a;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ════════════════════════════════════════════════════════════
   ACCORDION (módulos + FAQ)
   ════════════════════════════════════════════════════════════ */
.lp-accordion {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-accordion__item {
    background: #fff;
    border: 1.5px solid rgba(122, 40, 255, .1);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
    box-shadow: 0 2px 8px rgba(34, 17, 51, .04);
}

.lp-accordion__item:hover {
    border-color: rgba(122, 40, 255, .25);
    box-shadow: 0 6px 20px rgba(122, 40, 255, .08);
}

.lp-accordion__item[open] {
    border-color: var(--purple-1, #7A28FF);
    box-shadow: 0 6px 24px rgba(122, 40, 255, .12);
}

.lp-accordion__header {
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--text, #221133);
    user-select: none;
    outline: none;
    transition: background .15s;
}

.lp-accordion__header::-webkit-details-marker { display: none; }

.lp-accordion__header:hover {
    background: rgba(122, 40, 255, .03);
}

.lp-accordion__left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.lp-accordion__num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple-1, #7A28FF), var(--purple-2, #5B1EBB));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(122, 40, 255, .2);
}

.lp-accordion__title {
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-accordion__meta {
    font-size: 12px;
    color: #6b5a82;
    white-space: nowrap;
    font-weight: 500;
    background: rgba(122, 40, 255, .07);
    padding: 3px 10px;
    border-radius: 50px;
}

/* FAQ toggle +/− */
.lp-accordion--faq .lp-accordion__header::after {
    content: '+';
    font-size: 24px;
    font-weight: 700;
    color: var(--purple-1, #7A28FF);
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    transition: transform .25s;
}

.lp-accordion--faq .lp-accordion__item[open] .lp-accordion__header::after {
    content: '−';
}

/* Módulos: seta */
.lp-accordion:not(.lp-accordion--faq) .lp-accordion__header::after {
    content: '\f107';
    font-family: FontAwesome;
    font-size: 18px;
    color: var(--purple-1, #7A28FF);
    flex-shrink: 0;
    transition: transform .25s;
}

.lp-accordion:not(.lp-accordion--faq) .lp-accordion__item[open] .lp-accordion__header::after {
    transform: rotate(180deg);
}

.lp-accordion__body {
    padding: 0 18px 12px;
    animation: lp-slide-in .22s ease;
}

.lp-accordion__body p {
    margin: 0;
    font-size: 13px;
    color: #5a4e6e;
    line-height: 1.65;
    padding: 10px 0 0;
    border-top: 1px solid rgba(122, 40, 255, .07);
}

@keyframes lp-slide-in {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════
   CTA BAND — faixa intermediária
   ════════════════════════════════════════════════════════════ */
.lp-cta-band {
    background: linear-gradient(135deg, #1a0a2e 0%, var(--purple-1, #7A28FF) 50%, #5b1ebb 100%);
    padding: clamp(40px, 5vw, 60px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Efeito de luz */
.lp-cta-band::before,
.lp-cta-band::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.lp-cta-band::before {
    inset: 0;
    background: radial-gradient(ellipse at 50% -20%, rgba(255,255,255,.12) 0%, transparent 55%);
}

.lp-cta-band::after {
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(243, 99, 255, .08);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: lp-band-pulse 4s ease-in-out infinite alternate;
}

@keyframes lp-band-pulse {
    from { transform: translate(-50%,-50%) scale(.8); opacity: .5; }
    to   { transform: translate(-50%,-50%) scale(1.2); opacity: .8; }
}

.lp-cta-band__inner {
    position: relative;
    z-index: 1;
}

.lp-cta-band h2 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.lp-cta-band p {
    font-size: 17px;
    color: rgba(255, 255, 255, .82);
    margin: 0 0 36px;
}

/* ════════════════════════════════════════════════════════════
   OFERTA — seção dark premium
   ════════════════════════════════════════════════════════════ */
.lp-offer {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(122,40,255,.25) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(243,99,255,.15) 0%, transparent 45%),
        linear-gradient(145deg, #080110 0%, #130826 40%, #220c46 70%, #3a1070 100%);
    color: #fff;
}

.lp-offer__card {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 36px;
    align-items: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 28px;
    padding: clamp(32px, 4.5vw, 52px);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 64px rgba(0,0,0,.3);
    position: relative;
    overflow: hidden;
}

/* Brilho no canto superior */
.lp-offer__card::before {
    content: '';
    position: absolute;
    top: -1px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243,99,255,.6), transparent);
}

.lp-offer__price-old {
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 6px;
}

.lp-offer__price-old s { color: rgba(255, 255, 255, .5); }

.lp-offer__price {
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 900;
    background: linear-gradient(90deg, #fff 0%, var(--accent, #F363FF) 60%, #a78bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: none;
}

.lp-offer__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 28px;
}

.lp-offer__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.lp-offer__list li {
    font-size: 15px;
    color: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    gap: 11px;
}

.lp-offer__list li i {
    color: #4ade80;
    font-size: 15px;
    flex-shrink: 0;
}

/* Urgência */
.lp-offer__right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-offer__urgency {
    text-align: center;
    padding: 36px 28px;
    background: rgba(255, 255, 255, .04);
    border-radius: 22px;
    border: 1px solid rgba(243, 99, 255, .2);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.lp-offer__urgency::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(243,99,255,.12) 0%, transparent 60%);
}

.lp-offer__urgency > i {
    font-size: 48px;
    color: #fb923c;
    display: block;
    margin-bottom: 16px;
    position: relative;
    animation: lp-fire 1.6s ease-in-out infinite alternate;
}

@keyframes lp-fire {
    0%   { transform: scale(1) rotate(-3deg); }
    100% { transform: scale(1.1) rotate(3deg); }
}

.lp-offer__urgency h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #fff;
    position: relative;
}

.lp-offer__urgency p {
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
    margin: 0 0 22px;
    line-height: 1.65;
    position: relative;
}

.lp-offer__counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 99, 255, .12);
    border: 1px solid rgba(243, 99, 255, .3);
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .95);
    position: relative;
}

/* ════════════════════════════════════════════════════════════
   GARANTIA
   ════════════════════════════════════════════════════════════ */
.lp-guarantee {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 36px;
    background: linear-gradient(135deg, #f5f0ff, #fff);
    border-radius: 24px;
    border: 2px solid rgba(122, 40, 255, .1);
    box-shadow:
        0 12px 40px rgba(122, 40, 255, .07),
        0 1px 0 rgba(122, 40, 255, .15) inset;
    position: relative;
    overflow: hidden;
}

.lp-guarantee::before {
    content: '';
    position: absolute;
    top: -1px; left: 15%; right: 15%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--purple-1, #7A28FF), var(--accent, #F363FF), transparent);
    border-radius: 0 0 4px 4px;
}

.lp-guarantee__icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22a85a, #15803d);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(34, 168, 90, .3);
}

.lp-guarantee__icon i {
    font-size: 34px;
    color: #fff;
}

.lp-guarantee__text h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--text, #221133);
}

.lp-guarantee__text p {
    font-size: 15px;
    color: #5a4e6e;
    margin: 0;
    line-height: 1.75;
    max-width: 620px;
}

/* ════════════════════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════════════════════ */
.lp-final-cta {
    background:
        radial-gradient(ellipse at 50% 0%,  rgba(243, 99, 255, .18) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(122, 40, 255, .18) 0%, transparent 55%),
        linear-gradient(145deg, #070012 0%, #130826 35%, #221044 65%, #3a1070 100%);
    text-align: center;
    color: #fff;
    padding: clamp(52px, 7vw, 88px) 0;
    position: relative;
    overflow: hidden;
}

/* Mesh pattern decorativo */
.lp-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.lp-final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.lp-final-cta__title {
    font-size: clamp(34px, 5.5vw, 64px);
    font-weight: 900;
    margin: 18px 0 18px;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -1px;
}

.lp-final-cta__title strong {
    background: linear-gradient(90deg, var(--accent, #F363FF) 0%, #a78bff 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-final-cta__sub {
    font-size: 18px;
    color: rgba(255, 255, 255, .78);
    margin: 0 0 44px;
    line-height: 1.65;
}

.lp-final-cta__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.lp-final-cta__trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

/* ════════════════════════════════════════════════════════════
   STICKY CTA mobile
   ════════════════════════════════════════════════════════════ */
.lp-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 14px 18px;
    background: rgba(7, 0, 18, .97);
    backdrop-filter: blur(12px);
    box-shadow: 0 -4px 28px rgba(0,0,0,.35);
    border-top: 1px solid rgba(122, 40, 255, .2);
    transform: translateY(100%);
    transition: transform .38s cubic-bezier(.34,1.56,.64,1);
}

.lp-sticky--show { transform: translateY(0); }

/* ════════════════════════════════════════════════════════════
   CRO — EYEBROW & TRUST BAR (hero)
   ════════════════════════════════════════════════════════════ */
.lp-hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent, #F363FF);
    margin: 0 0 10px;
    opacity: .9;
    display: block;
}

.lp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    margin-top: 12px;
}

.lp-hero__trust span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, .58);
    font-weight: 500;
}

.lp-hero__trust i {
    color: rgba(255, 255, 255, .35);
    font-size: 10px;
}

@media (max-width: 768px) {
    .lp-hero__trust { justify-content: center; }
    .lp-hero__eyebrow { text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   ANIMAÇÕES DE ENTRADA
   ════════════════════════════════════════════════════════════ */
.lp-animate {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .55s ease, transform .55s ease;
}

.lp-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* delay escalonado nos grids */
.lp-grid .lp-animate:nth-child(1) { transition-delay: .05s; }
.lp-grid .lp-animate:nth-child(2) { transition-delay: .12s; }
.lp-grid .lp-animate:nth-child(3) { transition-delay: .19s; }
.lp-grid .lp-animate:nth-child(4) { transition-delay: .26s; }
.lp-grid .lp-animate:nth-child(5) { transition-delay: .33s; }
.lp-grid .lp-animate:nth-child(6) { transition-delay: .40s; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVO
   ════════════════════════════════════════════════════════════ */

/* Tablet grande */
@media (max-width: 1024px) {
    .lp-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .lp-hero__body  { grid-template-columns: 1fr 1fr; }
    .lp-hero__pills { grid-template-columns: repeat(3, 1fr); }
    .lp-hcard--tl   { left: -12px; }
    .lp-hcard--br   { right: -12px; }
}

/* Tablet */
@media (max-width: 768px) {
    .lp-hero { padding: 0; }

    .lp-hero__body {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: clamp(40px, 7vw, 60px);
        padding-bottom: 20px;
    }

    .lp-hero__visual { order: -1; }

    .lp-hero__content { align-items: center; }
    .lp-hero__actions { align-items: center; }
    .lp-hero__trust   { justify-content: center; }
    .lp-hero__social  { justify-content: center; }
    .lp-hero__subtitle{ max-width: 100%; }

    /* Esconde cards flutuantes no tablet — ficam fora da tela no layout stacked */
    .lp-hcard { display: none; }

    .lp-hero__pills {
        grid-template-columns: repeat(3, 1fr);
    }

    .lp-split,
    .lp-split--reverse {
        grid-template-columns: 1fr;
    }

    .lp-split--reverse .lp-split__media { order: 0; }
    .lp-heading--left { text-align: center; }

    .lp-offer__card    { grid-template-columns: 1fr; }
    .lp-guarantee      { flex-direction: column; text-align: center; padding: 32px 24px; }

    .lp-sticky { display: block; }
}

/* Mobile */
@media (max-width: 500px) {
    .lp-grid--3 { grid-template-columns: 1fr; }

    .lp-hero__title { font-size: 28px; letter-spacing: -0.5px; }
    .lp-hero__pills { grid-template-columns: repeat(2, 1fr); }
    /* Último pill centrado sozinho */
    .lp-hero__pills .lp-hpill:last-child { grid-column: 1 / -1; max-width: 240px; margin: 0 auto; }

    .lp-btn--xl  { font-size: 16px; padding: 16px 28px; }
    .lp-btn--lg  { font-size: 15px; padding: 14px 24px; }

    .lp-offer__card  { padding: 28px 20px; }
    .lp-offer__price { font-size: 58px; }

    .lp-final-cta__trust { gap: 14px; }
    .lp-final-cta__trust span { font-size: 12px; }

    .lp-accordion__title { white-space: normal; }
}
