/* InsideBot — design tokens e layout */
:root {
    --purple: #5d2cd0;
    --purple-2: #6c43cd;
    --green: #3dfc94;
    --white: #ffffff;
    --gray-900: #1a1525;
    --gray-700: #4a4458;
    --gray-500: #6b6578;
    --gray-200: #eceaf2;
    --gray-100: #f7f5fb;
    --dark-bg: #0c0a18;
    --card-dark: #1c2024;
    --shadow: 0 10px 40px rgba(93, 44, 208, 0.12);
    --shadow-lg: 0 20px 50px rgba(93, 44, 208, 0.18);
    --radius: 14px;
    --radius-sm: 10px;
    --header-h: 72px;
    --font: "Inter", system-ui, -apple-system, sans-serif;
    --max: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

/* Evita título colado no header ao usar âncoras */
main section[id],
.footer {
    scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--purple);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}

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

.text-accent {
    color: var(--purple);
}

.text-green {
    color: var(--green);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(93, 44, 208, 0.35);
}

.btn--primary:hover {
    background: var(--purple-2);
}

.btn--green {
    background: var(--green);
    color: var(--gray-900);
    box-shadow: 0 4px 20px rgba(61, 252, 148, 0.35);
}

.btn--green:hover {
    filter: brightness(1.05);
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
}

.link-btn {
    font-weight: 600;
    color: var(--gray-700);
}

.link-btn:hover {
    color: var(--purple);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
}

.header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-h);
}

.header__sheet {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: var(--header-h);
}

@media (min-width: 901px) {
    .header__sheet {
        /* Evita sobreposição entre links centrais e Login/Cadastro à direita */
        padding-right: clamp(9.5rem, 15vw, 12rem);
    }
}

.header__sheet .header__actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__brand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-900);
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
}

.header__brand:hover {
    text-decoration: none;
    color: var(--purple);
}

.header__logo {
    display: block;
    height: 42px;
    width: auto;
    flex-shrink: 0;
}

.header__menu-btn {
    display: none;
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
}

.header__menu-btn:hover {
    background: var(--gray-100);
}

.header__menu-icon,
.header__menu-icon::before,
.header__menu-icon::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__menu-icon {
    position: relative;
}

.header__menu-icon::before,
.header__menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.header__menu-icon::before {
    top: -7px;
}

.header__menu-icon::after {
    top: 7px;
}

body.is-nav-open .header__menu-icon {
    background: transparent;
}

body.is-nav-open .header__menu-icon::before {
    transform: translateY(7px) rotate(45deg);
}

body.is-nav-open .header__menu-icon::after {
    transform: translateY(-7px) rotate(-45deg);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__list a {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav__list a:hover {
    color: var(--purple);
    text-decoration: none;
}

@media (max-width: 900px) {
    .header__menu-btn {
        display: flex;
    }

    .header__sheet {
        position: fixed;
        left: 0;
        right: 0;
        top: var(--header-h);
        flex: none;
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 1.25rem 1.5rem 1.5rem;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
        z-index: 99;
    }

    body.is-nav-open .header__sheet {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__sheet .nav {
        justify-content: flex-start;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .header__sheet .header__actions {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: stretch;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--gray-200);
    }

    .header__sheet .header__actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Hero */
.hero {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
    overflow-x: clip;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

.hero__content {
    min-width: 0;
}

@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
        gap: clamp(1.25rem, 4vw, 1.75rem);
    }

    .hero__visual {
        width: 100%;
        max-width: min(100%, 32rem);
        margin-inline: auto;
    }
}

.hero__title {
    font-size: clamp(1.5rem, 4.2vw + 0.35rem, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1.75rem;
    color: var(--gray-900);
    text-wrap: balance;
}

.hero__lead {
    font-size: clamp(1rem, 1.5vw + 0.85rem, 1.08rem);
    color: var(--gray-700);
    margin: 0 0 2rem;
    max-width: 36rem;
    line-height: 1.65;
}

.hero__cta-arrow {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.hero__cta:hover .hero__cta-arrow {
    transform: translateX(4px);
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero__stars {
    color: #e8b337;
    letter-spacing: 0.05em;
    font-size: 1rem;
}

.hero__trust-text {
    font-size: 0.9rem;
    color: var(--gray-500);
}

@media (max-width: 900px) {
    .hero__content {
        text-align: center;
    }

    .hero__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        width: 100%;
        max-width: 22rem;
        box-sizing: border-box;
        margin-inline: auto;
    }

    .hero__trust {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1.75rem;
        text-align: center;
    }

    .hero__trust-text {
        max-width: 18rem;
        line-height: 1.45;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: clamp(2.5rem, 6.5vw + 1rem, 4rem);
    }

    .hero__title {
        font-size: clamp(1.4rem, 5.5vw + 0.4rem, 1.85rem);
        line-height: 1.18;
        margin-bottom: 1.25rem;
    }

    .hero__lead {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 380px) {
    .hero__title {
        font-size: 1.35rem;
    }

    .hero__cta {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 0.95rem;
    }
}

.hero__visual {
    min-width: 0;
}

.hero__frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(93, 44, 208, 0.15);
    background: var(--white);
}

.hero__frame img {
    width: 100%;
    height: auto;
}

.hero__stats {
    background: var(--purple);
    color: var(--white);
    padding: clamp(1.5rem, 4vw, 2rem) 0;
    margin-top: clamp(1.25rem, 3vw, 2rem);
}

.hero__stats-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
    align-items: start;
}

@media (max-width: 768px) {
    .hero__stats-inner {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .hero__stat {
        padding: 0 0.25rem;
    }
}

.hero__stat-value {
    display: block;
    font-size: clamp(1.45rem, 3.5vw + 0.5rem, 2rem);
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.hero__stat-label {
    font-size: clamp(0.82rem, 1.5vw + 0.65rem, 0.9rem);
    opacity: 0.92;
    line-height: 1.45;
    max-width: 22rem;
    margin-inline: auto;
}

/* Sections generic */
.section {
    padding: 4rem 0;
}

.section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    text-align: center;
    margin: 0 0 1rem;
    color: var(--gray-900);
}

.section__title--left {
    text-align: left;
}

.section__title--light {
    color: var(--white);
}

.section__subtitle {
    text-align: center;
    color: var(--gray-500);
    margin: 0 auto 2.5rem;
    max-width: 36rem;
}

.section__subtitle--light {
    color: rgba(255, 255, 255, 0.75);
}

.section__intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-700);
    margin: 0 auto 2rem;
    max-width: 40rem;
}

.section__closing {
    text-align: center;
    font-size: 1.05rem;
    color: var(--gray-700);
    margin: 2.5rem 0 0;
}

.section__intro--impact {
    margin-bottom: 2.75rem;
}

.section__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.75rem;
}

/* Problema — grade estilo impactsection */
.section--problem {
    background: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
    max-width: 920px;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

.impact-item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    text-align: left;
}

.impact-item__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(93, 44, 208, 0.25);
}

.impact-item__icon--a {
    background: var(--purple);
}

.impact-item__icon--b {
    background: var(--purple-2);
}

.impact-item__icon--c {
    background: linear-gradient(145deg, var(--purple-2), var(--green));
}

.impact-item__icon--d {
    background: #3d2a7a;
}

.impact-item__title {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
}

.impact-item__desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--gray-500);
}

/* Solução */
.section--solution {
    background: var(--gray-100);
}

.solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 900px) {
    .solution {
        grid-template-columns: 1fr;
    }
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple-2);
    margin: 0 0 0.75rem;
}

.solution__text {
    color: var(--gray-700);
    margin: 0 0 1rem;
}

.solution__sub {
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--gray-900);
}

.checklist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.checklist li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.65rem;
    color: var(--gray-900);
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
}

/* Solução — gráfico único */
.solution-chart-card {
    max-width: 560px;
    margin-inline: auto;
}

.solution-chart-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.solution-chart-card__head .mock-card__label--bold {
    margin: 0;
}

.solution-chart-card__kpi {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--gray-900);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(61, 252, 148, 0.22);
    border: 1px solid rgba(61, 252, 148, 0.5);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .solution-chart-card__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .solution-chart-card__kpi {
        white-space: normal;
    }
}

.line-chart--large .line-chart__y {
    font-size: 0.72rem;
    padding: 0.35rem 0;
}

.line-chart--large .line-chart__svg {
    height: auto;
    min-height: 200px;
    max-height: 280px;
    aspect-ratio: 21 / 10;
}

.line-chart__x--spread {
    font-size: 0.72rem;
    margin-top: 0.5rem;
}

.mock-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.mock-card__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
    margin: 0 0 0.75rem;
}

.mock-card__label--bold {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gray-900);
}

.line-chart {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.line-chart__y {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--gray-500);
    padding: 0.25rem 0;
    flex-shrink: 0;
}

.line-chart__plot {
    flex: 1;
    min-width: 0;
}

.line-chart__svg {
    width: 100%;
    height: 120px;
    display: block;
}

.line-chart__x {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--gray-500);
    margin-top: 0.35rem;
}

/* Benefícios */
.section--benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

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

@media (max-width: 560px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card--wide {
    grid-column: 1 / -1;
}

.benefit-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    border-color: rgba(93, 44, 208, 0.2);
    box-shadow: var(--shadow);
}

.benefit-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(93, 44, 208, 0.1);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--purple);
}

.benefit-card__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-700);
}

/* Como funciona — layout tipo comofunciona2 (hero + cards) */
.section--how {
    background: linear-gradient(180deg, #f3f1f9 0%, var(--white) 45%, var(--gray-100) 100%);
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.how-it__intro {
    margin-bottom: 2.25rem;
}

.how-it__lede {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.how-it__showcase {
    margin-bottom: 0;
}

.how-it__frame {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 24px 60px rgba(93, 44, 208, 0.12), 0 4px 20px rgba(0, 0, 0, 0.06);
}

.how-it__frame img {
    width: 100%;
    height: auto;
    display: block;
}

.how-it__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
    max-width: 1040px;
    margin: 0 auto 3rem;
}

@media (max-width: 900px) {
    .how-it__cards {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

/* Funil em 2×2 (4 passos) */
.how-it__cards--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
}

@media (max-width: 600px) {
    .how-it__cards--4 {
        grid-template-columns: 1fr;
    }
}

.how-card {
    position: relative;
    padding: 1.75rem 1.5rem 1.6rem;
    border-radius: calc(var(--radius) + 2px);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.how-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    background: var(--white);
    border: 2px solid rgba(93, 44, 208, 0.25);
    box-shadow: 0 4px 14px rgba(93, 44, 208, 0.12);
}

.how-card__title {
    margin: 0 0 0.65rem;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.3;
}

.how-card__text {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.how-card--featured {
    background: linear-gradient(160deg, var(--purple) 0%, var(--purple-2) 100%);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(93, 44, 208, 0.35);
    transform: scale(1.02);
    z-index: 1;
}

.how-card--featured .how-card__title {
    color: var(--white);
}

.how-card--featured .how-card__text {
    color: rgba(255, 255, 255, 0.92);
}

.how-card__icon--light {
    color: var(--purple);
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.how-card__icon--emoji {
    font-size: 1.35rem;
    line-height: 1.1;
    font-family: inherit;
}

@media (max-width: 900px) {
    .how-card--featured {
        transform: none;
        order: -1;
    }
}

/* Planos */
.section--pricing {
    background: var(--white);
    padding-bottom: 5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 3.5rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

/* Dois planos lado a lado (LP) */
.pricing-grid--duo {
    max-width: 960px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

@media (max-width: 800px) {
    .pricing-grid--duo {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
}

/* LP Notifique — oferta (clean / compacto) */
.section--pricing.lp-offer-section {
    background: var(--gray-100);
    padding-block: clamp(2.75rem, 5vw, 3.75rem) clamp(3.5rem, 6vw, 4.75rem);
}

.lp-offer-section .pricing-grid.pricing-grid--offer {
    margin-bottom: 0;
}

.pricing-grid--offer {
    max-width: 920px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(1rem, 2.4vw, 1.5rem);
    overflow: visible;
}

@media (max-width: 880px) {
    .pricing-grid--offer {
        grid-template-columns: 1fr;
        max-width: min(400px, 100%);
        gap: 1.25rem;
    }

    .pricing-grid--offer .price-card--vip {
        order: -1;
    }
}

.lp-offer-section .price-card {
    position: relative;
    overflow: hidden;
    text-align: left;
    align-items: stretch;
    border-radius: 18px;
    padding: clamp(1.5rem, 3.2vw, 1.85rem);
    border: 1px solid var(--gray-200);
    background: var(--white);
    box-shadow:
        0 1px 2px rgba(26, 21, 37, 0.04),
        0 10px 28px rgba(26, 21, 37, 0.05);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.price-card--diy.price-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 2px 4px rgba(26, 21, 37, 0.04),
        0 14px 36px rgba(26, 21, 37, 0.07);
}

.lp-offer-section .price-card--vip.price-card {
    border-color: rgba(93, 44, 208, 0.22);
    box-shadow:
        0 2px 4px rgba(93, 44, 208, 0.06),
        0 14px 40px rgba(93, 44, 208, 0.1);
}

.lp-offer-section .price-card--vip.price-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), #8360e9);
}

.lp-offer-card__head {
    margin-bottom: 1rem;
}

.lp-offer-section .price-card .price-card__name {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--gray-900);
    margin: 0.55rem 0 0.35rem;
}

.lp-offer-section .price-card__sublead {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray-600);
    margin: 0;
}

/* Tags / selo */
.lp-offer-section .price-card__tag {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    margin: 0;
    padding: 0.3rem 0.65rem;
    border-radius: 7px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.lp-offer-section .price-card__tag--discount {
    background: rgba(34, 154, 109, 0.12);
    color: rgb(28 116 84);
}

.lp-offer-section .price-card__tag--vip {
    background: rgba(93, 44, 208, 0.09);
    color: var(--purple-2);
}

.price-card--vip .price-card__pick {
    position: absolute;
    top: 0.95rem;
    right: 0.95rem;
    z-index: 2;
    display: inline-block;
    padding: 0.28rem 0.6rem;
    border-radius: 6px;
    background: var(--purple);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

/* Lista */
.lp-offer-section .price-card .checklist {
    margin: 0 0 1.25rem;
    align-self: stretch;
}

.lp-offer-section .checklist.checklist--offer li {
    line-height: 1.45;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.lp-offer-section .checklist.checklist--offer li:last-child {
    margin-bottom: 0;
}

.lp-offer-section .checklist li::before {
    color: rgb(34 154 109);
}

/* Card 1 — preço único */
.price-card__price-block {
    margin: 0 0 1.25rem;
    padding: 1rem 1.1rem 1.05rem;
    border-radius: 12px;
    background: var(--gray-100);
    text-align: center;
}

.price-card__price-block .price-card__was {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.price-card__price-block .price-card__amount {
    margin: 0.1rem 0 0.4rem;
    font-size: clamp(1.7rem, 3.8vw, 2rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.price-card__price-block .price-card__period {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0;
}

.price-card__price-block .price-card__muted {
    margin: 0;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.price-card__price-block .price-card__muted strong {
    color: var(--purple);
    font-weight: 700;
}

/* Card 2 — duas linhas alinhadas */
.price-lines {
    margin: 0 0 0.9rem;
    padding: 0.95rem 1.1rem;
    border-radius: 12px;
    background: var(--gray-100);
    display: grid;
    gap: 0.6rem;
}

.price-lines__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.price-lines__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin: 0;
}

.price-lines__hint {
    font-weight: 500;
    color: var(--gray-500);
    font-size: 0.8em;
    margin-left: 0.15rem;
}

.price-lines__hint::before {
    content: " · ";
}

.price-lines__value {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-900);
    text-align: right;
    white-space: nowrap;
}

.price-lines__split {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 0;
}

.price-lines__value .price-card__was {
    display: inline;
    margin: 0 0.4rem 0 0;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.price-lines__value strong {
    font-weight: 800;
    color: var(--gray-900);
}

.price-lines__value .price-card__period {
    font-size: 0.78em;
    font-weight: 600;
    color: var(--gray-500);
    margin-left: 0.1rem;
}

/* Linha de fechamento */
.lp-offer-section .price-card__today {
    margin: 0 0 1.1rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--gray-600);
    text-align: center;
}

.lp-offer-section .price-card__today strong {
    color: var(--purple);
    font-weight: 700;
}

.price-card__foot {
    margin-top: auto;
    width: 100%;
}

.btn--outline {
    background: var(--white);
    color: var(--purple);
    border: 2px solid var(--purple);
    box-shadow: none;
}

.btn--outline:hover {
    filter: none;
    background: rgba(93, 44, 208, 0.08);
    transform: translateY(-1px);
}


.price-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.price-card--featured {
    border: 2px solid var(--purple);
    box-shadow: 0 12px 40px rgba(93, 44, 208, 0.25);
    transform: scale(1.02);
    z-index: 1;
}

@media (max-width: 900px) {
    .price-card--featured {
        transform: none;
    }
}

.price-card__breakdown .price-card__was {
    margin-bottom: 0.2rem;
}

.price-card__breakdown .price-card__amount,
.price-card__amount--inline {
    font-size: clamp(1.25rem, 2.4vw, 1.65rem);
    margin: 0.15rem 0 0;
}

.price-card__breakdown .price-card__period {
    font-size: inherit;
}

.price-card__tag {
    display: inline-block;
    align-self: center;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(93, 44, 208, 0.12);
    color: var(--purple-2);
    margin-bottom: 1rem;
}

.price-card__tag--discount {
    background: rgba(61, 252, 148, 0.2);
    color: var(--gray-900);
}

.price-card__name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--purple);
    margin: 0 0 0.75rem;
}

.price-card__amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 0.5rem;
}

.price-card__period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
}

.price-card__note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.price-card__was {
    margin: 0 0 0.35rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.price-card__was del {
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.lp-offer-resumo {
    max-width: 40rem;
    margin: 0 auto 1.5rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gray-700);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.lp-subhead-anchor {
    text-align: center;
    margin: 1.5rem auto 0.5rem;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    font-weight: 800;
    color: var(--gray-900);
}

.lp-benefits--tight {
    margin-top: 1.25rem;
}

.lp-oferta__lede {
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

.lp-oferta__what {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 1rem;
    font-weight: 800;
    font-size: clamp(1rem, 1.15vw, 1.05rem);
    color: var(--purple);
}

.final-cta .lp-cta__fineprint {
    margin-top: 1rem;
    margin-bottom: 0;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card__icon--emoji {
    font-size: 1.45rem;
    line-height: 1;
    background: var(--white);
    border: 2px solid rgba(93, 44, 208, 0.2);
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 700px) {
    .pricing-features {
        grid-template-columns: 1fr;
    }
}

.pricing-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.pricing-feature__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.pricing-feature__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--purple);
    margin: 0 0 0.35rem;
}

.pricing-feature__text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-700);
}

/* Depoimentos — fundo claro */
.section--testimonials {
    background: linear-gradient(180deg, #faf8ff 0%, var(--white) 55%, var(--gray-100) 100%);
    padding: 4.5rem 0;
}

.testimonials-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 960px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

.testimonial-card--light {
    position: relative;
    height: 100%;
    background: var(--white);
    border-radius: calc(var(--radius) + 2px);
    padding: 1.75rem 1.6rem 1.6rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 12px 40px rgba(93, 44, 208, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card--light:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(93, 44, 208, 0.12);
}

.testimonial-card--featured {
    border-color: rgba(93, 44, 208, 0.35);
    box-shadow: 0 16px 48px rgba(93, 44, 208, 0.15);
}

.testimonial-card__rating {
    color: #e8b337;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.testimonial-card--light .testimonial-card__quote {
    margin: 0 0 1.5rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--gray-700);
    font-style: normal;
}

.testimonial-card--light .testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
}

.testimonial-card--light .testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--purple-2));
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(93, 44, 208, 0.3);
}

.testimonial-card--light .testimonial-card__name {
    font-style: normal;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
    font-size: 0.98rem;
}

.testimonial-card__role {
    display: block;
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-top: 0.15rem;
    font-weight: 500;
}

/* CTA final */
.section--final-cta {
    background: linear-gradient(180deg, #151022 0%, var(--dark-bg) 100%);
    padding: 5rem 0;
    text-align: center;
}

.final-cta__title {
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.5rem;
    max-width: 36rem;
    line-height: 1.25;
}

.final-cta__micro {
    margin: 1.25rem 0 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

/* LP Notifique — CTA final: fundo, parceria, botão, hierarquia */
.section--final-cta.lp-final-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(4.5rem, 10vw, 6.5rem) 0;
    background:
        radial-gradient(ellipse 100% 85% at 50% -35%, rgba(93, 44, 208, 0.42) 0%, transparent 55%),
        radial-gradient(ellipse 75% 50% at 100% 100%, rgba(61, 252, 148, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 65% 50% at 0% 85%, rgba(93, 44, 208, 0.18) 0%, transparent 45%),
        linear-gradient(180deg, #0c0a14 0%, #080713 50%, #06050d 100%);
}

.lp-final-cta__glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 75% at 50% 35%, #000 15%, transparent 75%);
    opacity: 0.4;
}

.lp-final-cta__box {
    position: relative;
    z-index: 1;
    max-width: 40rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.lp-partner-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.75rem;
    padding: 0.5rem 1.15rem 0.5rem 1.25rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.lp-partner-ribbon__a {
    color: rgba(200, 190, 255, 0.98);
}

.lp-partner-ribbon__b {
    color: rgba(120, 250, 190, 0.98);
}

.lp-partner-ribbon__x {
    color: rgba(255, 255, 255, 0.38);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

.section--final-cta.lp-final-cta .final-cta__title {
    max-width: 40rem;
    margin-bottom: 1.35rem;
    line-height: 1.22;
    text-wrap: balance;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 36px rgba(0, 0, 0, 0.4);
}

.section--final-cta.lp-final-cta .lp-final-cta__lede {
    margin: 0 0 2.25rem;
    font-size: clamp(0.95rem, 1.6vw, 1.06rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 34rem;
}

.section--final-cta.lp-final-cta .lp-final-cta__lede strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.section--final-cta.lp-final-cta .lp-final-cta__btn {
    font-weight: 800;
    padding: 1.05rem 1.9rem;
    border-radius: 12px;
    box-shadow:
        0 0 0 1px rgba(61, 252, 148, 0.45),
        0 4px 20px rgba(0, 0, 0, 0.35),
        0 10px 40px rgba(61, 252, 148, 0.4),
        0 0 60px -10px rgba(61, 252, 148, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.section--final-cta.lp-final-cta .lp-final-cta__btn:hover {
    transform: translateY(-2px) scale(1.01);
    filter: brightness(1.08);
    box-shadow:
        0 0 0 1px rgba(61, 252, 148, 0.55),
        0 6px 24px rgba(0, 0, 0, 0.4),
        0 14px 50px rgba(61, 252, 148, 0.5),
        0 0 68px -6px rgba(61, 252, 148, 0.55);
}

.section--final-cta.lp-final-cta .lp-cta__fineprint {
    margin-top: 1.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.5;
    letter-spacing: 0.02em;
}

@media (max-width: 480px) {
    .section--final-cta.lp-final-cta .lp-final-cta__btn {
        width: 100%;
        max-width: 22rem;
    }
}

/* Rodapé — LP (parceria, linha de luz) */
.lp-page .footer--lp-minimal {
    position: relative;
    padding: 2.25rem 0 2.5rem;
    background: linear-gradient(180deg, #06050d 0%, #040308 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-page .footer--lp-minimal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(61, 252, 148, 0.35) 30%, rgba(93, 44, 208, 0.35) 70%, transparent);
    opacity: 0.8;
    pointer-events: none;
}

.footer--lp-minimal .lp-notifique__footer {
    align-items: center;
    text-align: center;
    gap: 0.95rem;
}

.lp-notifique__footer-line {
    margin: 0;
    max-width: 26rem;
    font-size: 0.8rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.48);
    font-weight: 500;
}

.lp-notifique__footer-line strong {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

/* Responsivo — seções e CTAs centralizados */
@media (max-width: 900px) {
    .section__title--left {
        text-align: center;
    }

    .solution__copy {
        text-align: center;
    }

    .solution__copy .checklist {
        display: inline-block;
        text-align: left;
        margin-inline: auto;
    }

    .impact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .impact-item__icon {
        margin-bottom: 0.25rem;
    }

    .benefit-card {
        text-align: center;
    }

    .benefit-card__icon {
        margin-left: auto;
        margin-right: auto;
    }

    .how-it__intro {
        text-align: center;
    }

    .pricing-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pricing-feature__icon {
        margin-bottom: 0.35rem;
    }

    .testimonial-card--light {
        text-align: center;
    }

    .testimonial-card--light .testimonial-card__footer {
        justify-content: center;
    }

    main section .btn:not(.btn--block):not(.hero__cta) {
        margin-inline: auto;
    }

    .section__cta-wrap {
        width: 100%;
    }

    .section__cta-wrap .btn {
        width: 100%;
        max-width: 22rem;
    }

    .final-cta .final-cta__btn {
        margin-inline: auto;
    }
}

/* Footer */
.footer {
    background: #080713;
    color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 800;
    color: var(--white);
}

.footer__brand img {
    display: block;
    height: 36px;
    width: auto;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.footer__nav a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer__nav a:hover {
  color: var(--green);
  text-decoration: none;
}

.footer__nav--contact {
  margin-top: 0.25rem;
}

.footer__nav--contact a[href*="instagram"]:hover {
  color: #e4405f;
}

.footer__copy {
    margin: 0;
    font-size: 0.85rem;
}

.footer--lp-minimal {
    padding: 1.75rem 0 2rem;
}

.footer--lp-minimal .footer__inner {
    gap: 0.75rem;
}

/* Página legal — Política de Privacidade */
.page-legal {
    background: var(--white);
}

.legal {
    padding: 2.5rem 0 4rem;
}

.legal__article {
    max-width: 720px;
}

.legal__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.legal__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.2;
}

.legal__prose {
    text-align: left;
}

.legal__prose p {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-700);
}

.legal__prose p:last-child {
    margin-bottom: 0;
}

.legal__back {
    margin: 2.5rem 0 0;
    text-align: center;
}

.legal__back a {
    font-weight: 600;
    color: var(--purple);
}

.legal__back a:hover {
    color: var(--purple-2);
}

/* LPs (VSL, campanhas) */
body.lp-page {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

body.lp-page--no-header main section[id],
body.lp-page--no-header .footer {
    scroll-margin-top: 0.75rem;
}

.lp-page .section__title--left {
    text-align: left;
}

@media (max-width: 900px) {
    .lp-page .section__title--left {
        text-align: center;
    }

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

    .lp-partner__bullets {
        text-align: left;
    }

    .lp-partner__card {
        margin-inline: auto;
        max-width: 26rem;
        width: 100%;
    }
}

.lp-vsl--hero {
    background: var(--white);
    padding-top: 0;
}

/* Faixa de logo no topo da VSL (mesma linguagem visual do header, sem links) */
.lp-vsl__masthead {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
}

.lp-vsl__masthead-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--header-h);
    padding: 0.35rem 0;
}

.lp-vsl__logo {
    display: block;
    height: 42px;
    width: auto;
    flex-shrink: 0;
}

.lp-vsl__inner {
    max-width: 52rem;
    margin-inline: auto;
    text-align: center;
    padding-top: clamp(1.75rem, 4vw, 2.75rem);
    padding-bottom: 0.25rem;
}

.lp-vsl__title {
    font-size: clamp(1.5rem, 3.2vw, 2.15rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin: 0 0 1rem;
    text-wrap: balance;
}

.lp-vsl__lede {
    margin-bottom: 2rem;
}

.lp-vsl__player-wrap {
    max-width: 100%;
    margin: 0 auto 1.5rem;
}

.lp-vsl__cta-pretext {
    text-align: center;
    color: var(--gray-700);
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    font-weight: 600;
    line-height: 1.55;
    margin: 0 auto 1rem;
    max-width: 36rem;
}

/* LP — texto de apoio abaixo do CTA (oferta / garantia) */
.lp-vsl__cta-guarantee {
    text-align: center;
    color: var(--gray-600);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 600;
    line-height: 1.5;
    margin: 0.5rem auto 0;
    max-width: 36rem;
}

.lp-vsl--hero .section__cta-wrap {
    margin-top: 0;
}

.vsl-embed {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(93, 44, 208, 0.15);
    background: #0a0812;
    aspect-ratio: 16 / 9;
}

.vsl-embed iframe,
.vsl-embed__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vsl-embed--video {
    background: #000;
}

.vsl-embed__video {
    object-fit: contain;
    display: block;
    background: #000;
}

.vsl-embed--empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(160deg, var(--gray-100) 0%, var(--white) 50%, rgba(93, 44, 208, 0.06) 100%);
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
    min-height: 200px;
}

.vsl-embed__empty-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-900);
}

.vsl-embed__empty-text {
    margin: 0;
    max-width: 28rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--gray-500);
    word-wrap: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.vsl-embed__empty-text code {
    padding: 0.1rem 0.35rem;
    border-radius: 6px;
    background: rgba(93, 44, 208, 0.08);
    color: var(--purple-2);
    word-break: break-all;
    font-size: clamp(0.7rem, 0.2vw + 0.65rem, 0.8rem);
}

.lp-vsl__cta-arrow {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.btn:hover .lp-vsl__cta-arrow {
    transform: translateX(4px);
}

/* LP — parceria e cupom */
.lp-vsl--partner {
    background: linear-gradient(180deg, #151022 0%, var(--dark-bg) 100%);
    color: var(--white);
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.lp-vsl--partner .eyebrow {
    color: rgba(61, 252, 148, 0.95);
}

.lp-partner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.5rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    min-width: 0;
}

@media (max-width: 900px) {
    .lp-partner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

.lp-partner__eyebrow {
    margin-bottom: 0.5rem;
}

.lp-partner__text {
    margin: 0 0 1.25rem;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.lp-partner__text strong {
    color: var(--white);
    font-weight: 700;
}

.lp-partner__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-partner__bullets li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    line-height: 1.5;
}

.lp-partner__bullets li span[aria-hidden="true"] {
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-weight: 800;
}

.lp-partner__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lp-partner__tag {
    display: inline-block;
    margin: 0 0 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-900);
    background: linear-gradient(90deg, var(--green), #6ee8a8);
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
}

.lp-partner__discount {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
}

.lp-partner__highlight {
    color: var(--green);
    font-weight: 900;
}

.lp-partner__card-note {
    margin: 0 0 1.35rem;
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}

/* LP — responsivo (mobile-first, toques, tipografia e vazamentos) */
.lp-page main {
    min-width: 0;
}

.lp-page .lp-vsl--hero .eyebrow {
    margin-top: 0.15rem;
}

@media (min-width: 901px) {
    .lp-page .lp-vsl--partner .lp-partner__copy {
        min-width: 0;
    }
}

@media (max-width: 900px) {
    .lp-page .section--benefits .section__title {
        padding-inline: 0.15rem;
    }

    .lp-page .lp-vsl--partner .lp-partner__tag {
        margin-left: auto;
        margin-right: auto;
    }

    .lp-page .lp-vsl--partner .lp-partner__bullets {
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-page .lp-vsl--partner .section__title--left {
        max-width: 36rem;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-page .lp-vsl--partner .lp-partner__text {
        max-width: 36rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .lp-page .section {
        padding: 2.5rem 0;
    }

    .lp-page .section--benefits {
        padding-bottom: 2.75rem;
    }

    .lp-page .lp-vsl--partner {
        padding: 2.5rem 0 3rem;
    }

    .lp-page .lp-vsl__inner {
        padding-top: clamp(1.35rem, 4.5vw, 2rem);
    }

    .lp-page .lp-vsl__masthead-inner {
        min-height: 4.25rem;
        padding: 0.4rem 0;
    }

    .lp-page .lp-vsl__logo {
        height: 36px;
    }

    .lp-page .lp-vsl__title {
        font-size: clamp(1.28rem, 5.2vw + 0.5rem, 1.9rem);
        line-height: 1.18;
    }

    .lp-page .lp-vsl__lede {
        font-size: clamp(0.92rem, 0.4vw + 0.86rem, 1rem);
        margin-bottom: 1.5rem;
    }

    .lp-page .vsl-embed--empty {
        min-height: 0;
        aspect-ratio: 16 / 9;
        padding: 1.25rem 0.9rem;
        gap: 0.4rem;
    }

    .lp-page .vsl-embed__empty-title {
        font-size: 1rem;
    }

    .lp-page .vsl-embed__empty-text {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .lp-page .vsl-embed__empty-text code {
        font-size: 0.68rem;
        display: block;
        margin-top: 0.5rem;
        line-height: 1.4;
    }

    .lp-page .lp-vsl--partner .section__title {
        font-size: clamp(1.2rem, 4.2vw + 0.4rem, 1.7rem);
        line-height: 1.2;
    }

    .lp-page .lp-partner__text {
        font-size: 0.98rem;
    }

    .lp-page .lp-partner__discount {
        font-size: clamp(1.15rem, 3.5vw, 1.35rem);
    }

    .lp-page .footer--lp-minimal {
        padding: 1.75rem 0 max(1.5rem, env(safe-area-inset-bottom, 0));
    }
}

@media (max-width: 400px) {
    .lp-page .container {
        width: min(100% - 1.25rem, var(--max));
    }

    .lp-page .lp-vsl__title {
        font-size: 1.22rem;
    }

    .lp-page .section--benefits .section__title {
        font-size: 1.28rem;
    }
}

/* CTAs: área de toque mínima (~48px) em telas pequenas */
@media (max-width: 900px) {
    .lp-page .section__cta-wrap {
        width: 100%;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-page .section__cta-wrap .btn--lg,
    .lp-page .lp-partner__card .btn {
        min-height: 48px;
    }

    .lp-page .lp-partner__card .btn--block {
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-page .lp-vsl__cta-arrow {
        transition: none;
    }

    .lp-page .btn:hover .lp-vsl__cta-arrow {
        transform: none;
    }
}