:root {
    --lp-navy: #0f214e;
    --lp-navy-deep: #0b1738;
    --lp-blue: #1ea8ff;
    --lp-blue-strong: #00b8ff;
    --lp-text: #1e2b4b;
    --lp-muted: #667597;
    --lp-border: rgba(15, 33, 78, .1);
    --lp-bg-soft: #f4f8fc;
    --lp-white: #ffffff;
}

html { scroll-behavior: smooth; }
body.landing-body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--lp-text);
    background: #fff;
}

.lp-flash {
    padding: 14px 0;
    font-weight: 700;
}
.lp-flash-error {
    background: #fff2f2;
    color: #8c1d1d;
}
.container {
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border: 0;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: .22s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-blue-strong));
    box-shadow: 0 14px 34px rgba(30, 168, 255, .26);
}
.btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(255,255,255,.04);
}
.btn-outline-primary {
    color: var(--lp-navy);
    border: 1px solid rgba(15, 33, 78, .16);
    background: #fff;
}

.btn-whatsapp {
    color: #fff;
    background: #1fac59;
    box-shadow: 0 14px 32px rgba(31, 172, 89, .22);
}
.btn-whatsapp:hover {
    background: #189b4d;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #1fac59;
    box-shadow: 0 14px 34px rgba(7, 35, 21, .25);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    background: #189b4d;
    box-shadow: 0 18px 40px rgba(7, 35, 21, .3);
}
.whatsapp-float svg {
    width: 33px;
    height: 33px;
    fill: #fff;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--lp-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.section-heading.center {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}
.section-heading h2,
.lp-intro-section h2,
.training-copy h2,
.final-cta-box h2 {
    margin: 0 0 14px;
    color: var(--lp-navy);
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.08;
}
.section-heading p,
.lp-intro-section p,
.training-copy p,
.final-cta-box p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 18px;
    line-height: 1.7;
}
.lp-section { padding: 84px 0; }
.alt-bg { background: var(--lp-bg-soft); }

.lp-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(12px);
    background: rgba(11, 23, 56, .92);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
}
.lp-brand img { display: block; height: 54px; width: auto; }
.lp-nav { display: flex; align-items: center; gap: 26px; }
.lp-nav a,
.lp-mobile-menu a {
    color: rgba(255,255,255,.84);
    text-decoration: none;
    font-weight: 700;
}
.lp-nav a:hover,
.lp-mobile-menu a:hover { color: #fff; }
.lp-actions { display: flex; align-items: center; gap: 12px; }
.lp-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}
.lp-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
}
.lp-mobile-menu {
    display: none;
    padding: 0 20px 20px;
    background: rgba(11, 23, 56, .98);
}
.lp-mobile-menu.is-open { display: grid; gap: 14px; }

.hero-section {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    display: grid;
    align-items: center;
    isolation: isolate;
}
.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}
.hero-bg {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}
.hero-overlay {
    background:
        linear-gradient(90deg, rgba(9, 21, 49, .92) 0%, rgba(9, 21, 49, .78) 40%, rgba(9, 21, 49, .68) 100%),
        linear-gradient(180deg, rgba(9, 21, 49, .25) 0%, rgba(9, 21, 49, .84) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 100px;
    color: #fff;
}
.hero-content h1 {
    max-width: 910px;
    margin: 0;
    color: #fff;
    font-family: "Raleway", Inter, Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.02;
    text-shadow: 0 7px 24px rgba(0,0,0,.18);
}
.hero-content h1 span {
    color: var(--lp-blue-strong);
}
.hero-subtitle {
    max-width: 780px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.88);
    font-size: 22px;
    line-height: 1.65;
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

/* Seção de vídeo e resultado */
.results-video-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(30, 168, 255, .12), transparent 32%),
        linear-gradient(135deg, #f2f8ff 0%, #ffffff 58%, #f5f9fd 100%);
}
.results-video-section::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 58px solid rgba(30, 168, 255, .06);
    pointer-events: none;
}
.results-video-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}
.result-video-card {
    overflow: hidden;
    border: 1px solid rgba(15, 33, 78, .1);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(15, 33, 78, .12);
}
.result-video-shell {
    display: grid;
    place-items: center;
    min-height: 560px;
    padding: 20px;
    background:
        radial-gradient(circle at 50% 22%, rgba(30, 168, 255, .22), transparent 38%),
        linear-gradient(145deg, #081733 0%, #102c5d 100%);
}
.result-video-shell video {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 560px;
    border-radius: 18px;
    background: #07142e;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
}
.result-video-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    color: var(--lp-muted);
    font-size: 14px;
    font-weight: 700;
}
.result-video-caption span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lp-blue);
    box-shadow: 0 0 0 5px rgba(30, 168, 255, .12);
}
.result-copy h2 {
    margin: 0 0 22px;
    color: var(--lp-navy);
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: 1.04;
}
.result-copy h2 strong {
    display: inline-block;
    color: var(--lp-blue);
    font-weight: 950;
    white-space: nowrap;
}
.result-copy p {
    margin: 0 0 16px;
    color: var(--lp-muted);
    font-size: 18px;
    line-height: 1.7;
}
.result-limit-callout {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 26px 0;
}
.result-limit-callout span {
    width: 5px;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--lp-blue), var(--lp-blue-strong));
}
.result-limit-callout strong {
    color: var(--lp-navy);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.1;
}
.result-copy .btn {
    margin-top: 2px;
}
.btn-result-journey {
    color: #fff;
    background: linear-gradient(135deg, #159447 0%, #25d366 100%);
    box-shadow: 0 14px 34px rgba(31, 172, 89, .25);
}
.btn-result-journey:hover {
    background: linear-gradient(135deg, #117d3b 0%, #20bf59 100%);
    box-shadow: 0 17px 38px rgba(31, 172, 89, .31);
}

.intro-grid,
.training-grid,
.final-cta-box {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
    align-items: center;
}
.intro-highlight-card,
.training-panel {
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--lp-border);
    border-radius: 24px;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    box-shadow: 0 18px 46px rgba(15, 33, 78, .07);
}
.intro-highlight-item,
.training-panel-item {
    padding: 18px 18px 16px;
    border: 1px solid rgba(15,33,78,.08);
    border-radius: 18px;
    background: #fff;
}
.intro-highlight-item strong,
.training-panel-item strong {
    display: block;
    margin-bottom: 7px;
    color: var(--lp-navy);
    font-size: 17px;
}
.intro-highlight-item span,
.training-panel-item span {
    color: var(--lp-muted);
    line-height: 1.55;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.faq-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: center;
}
.faq-figure {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.faq-figure img {
    display: block;
    width: 100%;
    max-width: 340px;
    height: auto;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.benefit-card,
.faq-card,
.step-card {
    padding: 26px 24px;
    border: 1px solid var(--lp-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 33, 78, .05);
}

.benefit-card {
    height: 100%;
    box-sizing: border-box;
}
.benefit-card h3,
.faq-card h3,
.step-card h3 {
    margin: 0 0 10px;
    color: var(--lp-navy);
    font-size: 20px;
    line-height: 1.25;
}
.benefit-card p,
.faq-card p,
.step-card p {
    margin: 0;
    color: var(--lp-muted);
    line-height: 1.7;
}

.benefit-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 16px;
    color: var(--lp-blue-strong);
    background: linear-gradient(180deg, rgba(30,168,255,.12), rgba(30,168,255,.04));
    border: 1px solid rgba(30,168,255,.18);
    font-size: 23px;
    font-weight: 900;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.step-medal {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin-bottom: 14px;
}
.step-medal-ribbon {
    display: flex;
    align-items: stretch;
    gap: 3px;
    height: 18px;
}
.step-medal-ribbon span {
    display: block;
    width: 16px;
    height: 18px;
    background: linear-gradient(135deg, #1763b9 0%, #24a3ff 100%);
    box-shadow: 0 4px 8px rgba(18, 66, 142, .12);
}
.step-medal-ribbon span:first-child {
    clip-path: polygon(0 0, 100% 0, 84% 100%, 16% 100%);
    border-radius: 2px 2px 5px 5px;
}
.step-medal-ribbon span:last-child {
    clip-path: polygon(0 0, 100% 0, 84% 100%, 16% 100%);
    border-radius: 2px 2px 5px 5px;
}
.step-medal-circle {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-size: 17px;
    line-height: 1;
    font-weight: 900;
    background: linear-gradient(135deg, #1763b9 0%, #24a3ff 100%);
    box-shadow: 0 8px 16px rgba(15, 33, 78, .10);
}
.step-medal-circle::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 1.5px dashed rgba(255,255,255,.55);
}
.step-medal-circle::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.20);
}
.check-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}
.check-list li {
    position: relative;
    padding-left: 32px;
    color: var(--lp-text);
    line-height: 1.6;
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-blue-strong));
    box-shadow: inset 0 0 0 4px rgba(255,255,255,.7);
}
.final-cta-box {
    padding: 34px;
    border: 1px solid var(--lp-border);
    border-radius: 28px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
    box-shadow: 0 18px 48px rgba(15, 33, 78, .07);
}
.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}
.final-cta-note {
    margin-top: 14px !important;
    color: var(--lp-navy) !important;
    font-weight: 700;
}

.lp-footer {
    padding: 24px 0;
    border-top: 1px solid rgba(15,33,78,.08);
    background: var(--lp-navy-deep);
}
.lp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.74);
    font-size: 14px;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(7, 15, 35, .72);
}
.modal-backdrop.is-open { display: flex; }
.lp-modal {
    position: relative;
    width: min(860px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 32px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(7,15,35,.34);
}
.lp-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--lp-navy);
    background: rgba(15,33,78,.06);
    font-size: 26px;
    cursor: pointer;
}
.lp-modal-header h2 {
    margin: 0 0 14px;
    color: var(--lp-navy);
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.14;
}
.lp-modal-header p {
    margin: 0 0 12px;
    color: var(--lp-muted);
    line-height: 1.7;
}
.lp-form { margin-top: 22px; }
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.lp-form label > span {
    display: block;
    margin-bottom: 8px;
    color: var(--lp-navy);
    font-weight: 800;
}
.lp-form input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(15,33,78,.14);
    border-radius: 14px;
    color: var(--lp-text);
    background: #fff;
    font: inherit;
    box-sizing: border-box;
}
.lp-form input:focus {
    outline: none;
    border-color: rgba(30,168,255,.7);
    box-shadow: 0 0 0 4px rgba(30,168,255,.12);
}
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
}
.checkbox-row input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}
.checkbox-row span {
    margin: 0 !important;
    color: var(--lp-muted) !important;
    font-weight: 500 !important;
    line-height: 1.6;
}
.modal-security-note,
.modal-footnote {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #f6faff;
    color: var(--lp-muted);
    line-height: 1.65;
}

.modal-security-note {
    font-size: 14px;
}
.modal-footnote { margin-bottom: 0; }


.status-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 36px;
    border: 1px solid var(--lp-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 33, 78, .08);
}
.status-card h1 {
    margin: 0 0 14px;
    color: var(--lp-navy);
    font-size: clamp(32px, 4.4vw, 48px);
    line-height: 1.08;
}
.status-card > p {
    color: var(--lp-muted);
    font-size: 18px;
    line-height: 1.7;
}
.status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}
.status-item {
    padding: 18px 20px;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    background: #f9fbff;
}
.status-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--lp-navy);
}
.status-item span {
    color: var(--lp-muted);
}
.status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}
.status-note {
    margin-top: 18px;
    color: var(--lp-muted);
}

@media (max-width: 980px) {
    .results-video-grid {
        grid-template-columns: 1fr;
    }
    .result-video-card {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }
    .result-copy {
        max-width: 760px;
    }
}

@media (max-width: 1120px) {
    .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps-grid,
    .intro-grid,
    .training-grid,
    .final-cta-box,
    .faq-layout { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .final-cta-actions { justify-content: flex-start; }
}

@media (max-width: 920px) {
    .lp-nav,
    .lp-actions { display: none; }
    .lp-mobile-toggle { display: inline-block; }
    .hero-section { min-height: 84vh; }
    .hero-content { padding: 110px 0 80px; }
    .hero-content h1 { font-size: clamp(38px, 11vw, 58px); }
    .hero-subtitle { font-size: 19px; }
}

@media (max-width: 720px) {
    .container { width: min(100% - 28px, 1220px); }
    .lp-section { padding: 45px 0; }
    .hero-cta-group,
    .final-cta-actions { flex-direction: column; align-items: stretch; }
    .benefits-grid,
    .faq-grid,
    .steps-grid,
    .form-grid,
    .status-grid { grid-template-columns: 1fr; }
    .lp-footer-inner { flex-direction: column; text-align: center; }
    .lp-modal { padding: 26px 18px; border-radius: 24px; }
    .faq-figure img { max-width: 260px; }
    .status-card { padding: 24px 18px; }
    .result-video-shell { min-height: 440px; padding: 14px; }
    .result-video-shell video { max-height: 440px; }
    .result-video-card { border-radius: 22px; }
    .result-copy h2 { font-size: clamp(34px, 10vw, 46px); }
    .whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
}

.payment-processing {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(7, 15, 35, .78);
    backdrop-filter: blur(5px);
}

.payment-processing.is-visible {
    display: flex;
}

.payment-processing-card {
    width: min(420px, 100%);
    padding: 34px 28px;
    border-radius: 24px;
    background: #fff;
    text-align: center;
    box-shadow: 0 28px 90px rgba(7, 15, 35, .32);
}

.payment-processing-card strong {
    display: block;
    margin-top: 18px;
    color: var(--lp-navy);
    font-size: 21px;
}

.payment-processing-card p {
    margin: 10px 0 0;
    color: var(--lp-muted);
    line-height: 1.6;
}

.payment-spinner {
    display: inline-block;
    width: 52px;
    height: 52px;
    border: 5px solid rgba(30, 168, 255, .18);
    border-top-color: var(--lp-blue-strong);
    border-radius: 50%;
    animation: payment-spin .8s linear infinite;
}

[data-payment-submit]:disabled {
    cursor: wait;
    opacity: .78;
}

@keyframes payment-spin {
    to { transform: rotate(360deg); }
}
