@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
    --ink: #2a1409;
    --ink-soft: #5b463b;
    --muted: #806f65;
    --paper: #fffaf4;
    --cream: #f6eadf;
    --cream-strong: #ead7c8;
    --white: #ffffff;
    --red: #ef233c;
    --red-dark: #c9172b;
    --gold: #e5a500;
    --green: #205a45;
    --border: rgba(42, 20, 9, .12);
    --shadow: 0 18px 45px rgba(42, 20, 9, .12);
    --radius: 8px;
    --font-headings: 'Oswald', Impact, sans-serif;
    --font-body: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    line-height: 1.55;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, .brand, .offer-price strong, .summary-total strong {
    font-family: var(--font-headings);
    letter-spacing: 0;
    line-height: 1.05;
}
h1, h2, h3, p { overflow-wrap: anywhere; }

.container {
    width: min(100% - 32px, 1120px);
    margin-inline: auto;
}
.narrow { width: min(100% - 32px, 820px); }

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: var(--radius);
    padding: 14px 20px;
    color: var(--white);
    background: var(--red);
    box-shadow: 0 12px 25px rgba(239, 35, 60, .24);
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
}
.btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-large { min-height: 58px; font-size: 1.05rem; }
.btn-block { width: 100%; }
button:focus-visible, input:focus-visible, textarea:focus-visible, a:focus-visible {
    outline: 3px solid rgba(229, 165, 0, .7);
    outline-offset: 3px;
}

.trust-pill, .eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(239, 35, 60, .09);
    color: var(--red-dark);
    font-size: .73rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.eyebrow { margin-bottom: 14px; }

.sales-hero {
    padding: 18px 0 42px;
    background:
        linear-gradient(180deg, rgba(255,250,244,.94), rgba(246,234,223,.96)),
        radial-gradient(circle at top right, rgba(229,165,0,.18), transparent 34%);
}
.hero-shell {
    display: grid;
    gap: 22px;
}
.hero-copy h1 {
    margin: 14px 0 12px;
    max-width: 720px;
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    text-transform: uppercase;
}
.hero-copy p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1rem;
}
.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.hero-proof span {
    border-radius: 999px;
    padding: 8px 10px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--ink);
    font-size: .78rem;
    font-weight: 700;
}
.hero-product {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}
.hero-product img {
    width: 100%;
    aspect-ratio: 4 / 3.25;
    object-fit: cover;
    object-position: center;
}
.hero-price-card {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: min(178px, calc(100% - 20px));
    padding: 11px 12px;
    border-radius: var(--radius);
    color: var(--white);
    background: rgba(42, 20, 9, .92);
    box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.hero-price-card small,
.hero-price-card span { display: block; font-size: .72rem; color: #f5dfca; }
.hero-price-card strong {
    display: block;
    margin: 2px 0;
    color: var(--gold);
    font-family: var(--font-headings);
    font-size: 1.85rem;
    line-height: .95;
}
.hero-action {
    display: grid;
    gap: 14px;
}
.quick-benefits {
    display: grid;
    gap: 8px;
}
.quick-benefits span,
.included-list span,
.audience-list span {
    position: relative;
    padding-left: 24px;
    font-size: .94rem;
    font-weight: 650;
}
.quick-benefits span::before,
.included-list span::before,
.audience-list span::before,
.summary-security p::before {
    content: "";
    position: absolute;
    left: 0;
    top: .42em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: inset 0 0 0 3px var(--paper);
}
.secure-row, .microcopy {
    margin: 0;
    color: var(--muted);
    font-size: .84rem;
    text-align: center;
}

.section { padding: 52px 0; }
.section-heading {
    width: min(760px, 100%);
    margin: 0 auto 28px;
    text-align: center;
}
.section-heading .eyebrow { margin-inline: auto; }
.section-heading h2,
.split-story h2,
.product-showcase h2,
.content-intro h2,
.offer-card h2,
.final-cta h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.8rem, 8vw, 2.65rem);
    text-transform: uppercase;
}
.section-heading p,
.split-story p,
.product-showcase p,
.final-cta p {
    margin: 14px 0 0;
    color: var(--ink-soft);
    font-size: 1rem;
}

.problem-section, .audience-section { background: var(--white); }
.split-story {
    display: grid;
    gap: 26px;
}
.pain-cards {
    display: grid;
    gap: 12px;
}
.pain-cards article {
    padding: 18px;
    border-left: 4px solid var(--red);
    border-radius: var(--radius);
    background: var(--paper);
}
.pain-cards strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.02rem;
}
.pain-cards p { margin: 0; color: var(--muted); font-size: .92rem; }

.visual-proof {
    background: var(--ink);
    color: var(--white);
}
.visual-proof .section-heading h2,
.visual-proof .section-heading p { color: var(--white); }
.comparison-grid {
    display: grid;
    gap: 16px;
}
.comparison-card {
    overflow: hidden;
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
}
.comparison-card img {
    width: 100%;
    aspect-ratio: 4 / 3.2;
    object-fit: cover;
}
.comparison-card.weak img { object-position: center; filter: saturate(.85); }
.comparison-card p {
    margin: 0;
    padding: 14px 16px 18px;
    color: var(--ink-soft);
    font-size: .92rem;
}
.comparison-label {
    padding: 13px 16px;
    color: var(--white);
    background: var(--red);
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}
.comparison-card.strong .comparison-label { background: var(--green); }

.solution-section, .offer-section { background: var(--cream); }
.examples-section {
    background: var(--paper);
}
.example-gallery {
    display: grid;
    gap: 14px;
}
.example-card {
    overflow: hidden;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 14px 34px rgba(42,20,9,.08);
}
.example-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.example-card div {
    padding: 14px 16px 16px;
}
.example-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--red-dark);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}
.example-card h3 {
    margin: 0;
    font-size: 1.18rem;
    text-transform: uppercase;
}
.product-showcase {
    display: grid;
    gap: 28px;
    align-items: center;
}
.mockup-card {
    overflow: hidden;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.mockup-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.included-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.modules-section, .faq-section { background: var(--paper); }
.content-intro {
    display: grid;
    gap: 24px;
    align-items: center;
    margin-bottom: 34px;
}
.content-intro h2 {
    margin: 0;
    max-width: 760px;
    text-transform: uppercase;
}
.content-intro p {
    margin: 14px 0 0;
    max-width: 680px;
    color: var(--ink-soft);
}
.module-grid, .bonus-grid, .steps-grid {
    display: grid;
    gap: 14px;
}
.module-grid article,
.steps-grid article,
.bonus-grid article,
.plan-card {
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
}
.module-grid article {
    padding: 18px;
}
.module-grid span,
.bonus-grid span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--red-dark);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}
.module-grid h3,
.bonus-grid h3,
.steps-grid h3 {
    margin: 0 0 8px;
    font-size: 1.18rem;
    text-transform: uppercase;
}
.module-grid p,
.bonus-grid p,
.steps-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.process-section { background: var(--white); }
.trust-section {
    background: var(--white);
}
.trust-panel {
    display: grid;
    gap: 24px;
    padding: 24px;
    border-radius: 18px;
    background: var(--ink);
    color: var(--white);
}
.trust-panel h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.7rem, 7vw, 2.55rem);
    text-transform: uppercase;
}
.trust-panel p {
    margin: 12px 0 0;
    color: rgba(255,255,255,.74);
}
.trust-cards {
    display: grid;
    gap: 10px;
}
.trust-cards article {
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
}
.trust-cards strong {
    display: block;
    color: var(--gold);
    font-size: 1rem;
}
.trust-cards p {
    margin: 6px 0 0;
    color: rgba(255,255,255,.72);
    font-size: .9rem;
}
.steps-grid article {
    padding: 20px;
}
.steps-grid b {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--gold);
    font-family: var(--font-headings);
}

.bonus-section {
    background: var(--green);
    color: var(--white);
}
.section-heading.light h2 { color: var(--white); }
.bonus-grid article {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.18);
    color: var(--white);
}
.bonus-grid span { color: var(--gold); }
.bonus-grid p { color: rgba(255,255,255,.78); }

.audience-list {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 12px;
    background: var(--cream);
}
.audience-list span { display: block; }

.social-proof-section {
    background: var(--white);
}
.social-proof-grid {
    display: grid;
    gap: 14px;
}
.social-proof-card {
    overflow: hidden;
    border-radius: 14px;
    background: var(--paper);
    border: 1px solid var(--border);
    box-shadow: 0 14px 34px rgba(42,20,9,.08);
}
.social-proof-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
}
.social-proof-empty {
    max-width: 680px;
    margin: 0 auto;
    padding: 22px;
    border-radius: 14px;
    background: var(--paper);
    border: 1px dashed rgba(42,20,9,.24);
    text-align: center;
}
.social-proof-empty strong {
    display: block;
    color: var(--ink);
    font-family: var(--font-headings);
    font-size: 1.35rem;
    text-transform: uppercase;
}
.social-proof-empty p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: .95rem;
}

.offer-grid {
    display: grid;
    gap: 24px;
    align-items: center;
}
.offer-visual {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.offer-visual img {
    width: 100%;
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
}
.offer-card h2 { margin-bottom: 18px; }
.plan-card {
    padding: 18px;
    box-shadow: 0 14px 32px rgba(42,20,9,.08);
}
.plan-card.recommended { border: 2px solid var(--red); }
.plan-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}
.plan-top span {
    border-radius: 999px;
    padding: 6px 9px;
    color: var(--white);
    background: var(--red);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}
.plan-top b { font-size: .9rem; color: var(--ink-soft); }
.plan-card ul {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.plan-card li {
    position: relative;
    padding-left: 22px;
    color: var(--ink-soft);
    font-size: .94rem;
}
.plan-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}
.offer-price {
    margin: 18px 0;
    padding: 16px 0;
    border-block: 1px solid var(--border);
}
.offer-price span {
    display: block;
    color: var(--muted);
    font-size: .9rem;
}
.offer-price strong {
    display: block;
    margin-top: 3px;
    color: var(--red);
    font-size: clamp(2.6rem, 16vw, 4rem);
}

.faq-list {
    display: grid;
    gap: 10px;
}
.faq-list details {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
}
.faq-list summary {
    position: relative;
    min-height: 58px;
    padding: 18px 48px 18px 16px;
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
    list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red);
    font-size: 1.5rem;
}
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p {
    margin: 0;
    padding: 0 16px 18px;
    color: var(--muted);
    font-size: .94rem;
}

.final-cta {
    padding: 58px 0;
    text-align: center;
    color: var(--white);
    background: var(--ink);
}
.final-cta .trust-pill { margin-inline: auto; background: rgba(229,165,0,.16); color: var(--gold); }
.final-cta h2 {
    margin: 16px auto 12px;
    max-width: 820px;
    color: var(--white);
}
.final-cta p {
    max-width: 640px;
    margin-inline: auto;
    color: rgba(255,255,255,.78);
}
.final-cta .btn { width: 100%; margin-top: 22px; }
.final-cta small {
    display: block;
    margin-top: 12px;
    color: rgba(255,255,255,.68);
}

.footer {
    padding: 38px 0 96px;
    color: var(--white);
    background: #1f0e06;
}
.footer-inner {
    display: grid;
    gap: 22px;
}
.footer strong {
    font-family: var(--font-headings);
    font-size: 1.35rem;
}
.footer p {
    margin: 6px 0 0;
    color: rgba(255,255,255,.62);
    font-size: .85rem;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-links a {
    color: rgba(255,255,255,.78);
    font-size: .9rem;
    text-decoration: none;
}
.footer-bottom {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.mobile-buy-bar {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    color: var(--white);
    background: rgba(42,20,9,.98);
    border-top: 2px solid var(--gold);
    text-decoration: none;
}
.mobile-buy-bar span { display: grid; line-height: 1.1; }
.mobile-buy-bar small { color: rgba(255,255,255,.7); font-size: .68rem; }
.mobile-buy-bar strong { color: var(--gold); font-size: 1.05rem; }
.mobile-buy-bar b {
    flex: 0 0 auto;
    border-radius: var(--radius);
    padding: 11px 13px;
    background: var(--red);
    font-size: .8rem;
    text-transform: uppercase;
}

/* Checkout */
.checkout-body, .payment-body { background: var(--paper); }
.checkout-header {
    color: var(--white);
    background: linear-gradient(90deg, #2a1409 0%, #3a180d 58%, #2a1409 100%);
    border-bottom: 2px solid var(--gold);
}
.checkout-header-inner {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.checkout-urgency {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.urgency-label {
    width: fit-content;
    border-radius: 999px;
    padding: 4px 8px;
    color: var(--ink);
    background: var(--gold);
    font-size: .64rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}
.checkout-urgency strong {
    color: var(--white);
    font-size: .83rem;
    line-height: 1.18;
}
.checkout-timer {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    border: 1px solid rgba(229,165,0,.5);
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
    color: var(--gold);
    font-family: var(--font-headings);
    font-size: 1.12rem;
    line-height: 1;
}
.checkout-timer span {
    min-width: 25px;
    text-align: center;
}
.checkout-timer i {
    color: rgba(255,255,255,.7);
    font-style: normal;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}
.brand-mark, .brand-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 34px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--red);
    font-family: var(--font-headings);
    font-size: .95rem;
}
.brand-icon svg { width: 22px !important; height: 22px !important; }
.secure-badge {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 800;
    text-align: right;
    line-height: 1.2;
}
.checkout-main { padding: 14px 0 48px; }
.checkout-grid {
    display: grid;
    gap: 18px;
}
.checkout-form-card, .order-summary, .payment-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(42,20,9,.06);
}
.checkout-form-card { padding: 18px; }
.checkout-form-card {
    border-top: 4px solid var(--red);
}
.checkout-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--muted);
}
.checkout-steps span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 800;
}
.checkout-steps span.active { color: var(--red); }
.checkout-steps i {
    height: 1px;
    flex: 1;
    background: var(--border);
}
.checkout-title { margin-bottom: 22px; }
.checkout-title h1 {
    margin: 10px 0 7px;
    font-size: clamp(1.45rem, 6.8vw, 2.25rem);
    line-height: 1.08;
    text-transform: uppercase;
}
.checkout-title p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
}
.checkout-offer-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 18px;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
}
.checkout-offer-strip span,
.checkout-offer-strip strong {
    display: block;
}
.checkout-offer-strip span {
    color: rgba(255,255,255,.68);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}
.checkout-offer-strip strong {
    margin-top: 2px;
    font-family: var(--font-headings);
    font-size: 1.08rem;
    line-height: 1;
    text-transform: uppercase;
}
.checkout-offer-strip b {
    flex: 0 0 auto;
    color: var(--gold);
    font-family: var(--font-headings);
    font-size: 1.28rem;
}
.field {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
}
.field-grid {
    display: grid;
    gap: 0;
}
.field label {
    color: var(--ink);
    font-size: .85rem;
    font-weight: 800;
}
.field input {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(42,20,9,.2);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: var(--ink);
    background: var(--white);
    outline: 0;
}
.field input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(239,35,60,.1);
}
.field small {
    color: var(--muted);
    font-size: .78rem;
}
.field-error {
    min-height: 0;
    color: #c1121f !important;
    font-size: .78rem;
    font-weight: 700;
}
.field input.invalid {
    border-color: #c1121f !important;
    box-shadow: 0 0 0 4px rgba(193,18,31,.12) !important;
}
.payment-choice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin: 8px 0 16px;
    padding: 14px;
    border: 2px solid rgba(32,90,69,.3);
    border-radius: var(--radius);
    background: #f3fbf6;
}
.payment-choice b {
    grid-column: 1 / -1;
    color: var(--red);
    font-family: var(--font-headings);
    font-size: 1.65rem;
}
.payment-choice strong,
.payment-choice span { display: block; }
.payment-choice span { color: var(--muted); font-size: .82rem; }
.pix-logo {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--green);
    font-weight: 900;
}
.consent-row {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 10px;
    align-items: start;
    margin: 14px 0 18px;
    color: var(--ink-soft);
    font-size: .86rem;
}
.consent-row + .consent-error {
    display: block;
    margin: -10px 0 14px;
}
.consent-row input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--red);
}
.consent-row a { color: var(--red-dark); font-weight: 800; }
.centered-copy { text-align: center; }
.alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: var(--radius);
    background: #fff0f0;
    color: #9b101c;
    font-weight: 700;
}
.order-summary { padding: 16px; }
.summary-photo {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
}
.summary-kicker {
    color: var(--red-dark);
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
}
.order-summary h2 {
    margin: 5px 0 6px;
    font-size: 1.8rem;
    text-transform: uppercase;
}
.order-summary p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}
.summary-list {
    display: grid;
    gap: 8px;
    margin: 16px 0;
    padding: 14px 0;
    border-block: 1px solid var(--border);
}
.summary-list span,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--ink-soft);
    font-size: .9rem;
}
.summary-list b { color: var(--green); text-align: right; }
.summary-total {
    align-items: end;
    color: var(--ink);
    font-weight: 800;
}
.summary-total strong {
    color: var(--red);
    font-size: 2.15rem;
}
.summary-security {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding: 13px;
    border-radius: var(--radius);
    background: var(--paper);
}
.summary-security p {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-size: .82rem;
}

/* Payment page */
.payment-main {
    min-height: calc(100vh - 64px);
    display: grid;
    place-items: start center;
    padding: 24px 0 56px;
}
.payment-card {
    width: min(100% - 32px, 620px);
    padding: 20px;
}
.payment-card h1 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    text-transform: uppercase;
}
.pix-title {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}
.pix-logo.large {
    width: 58px;
    height: 58px;
    font-size: 1.2rem;
}
.payment-amount {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin: 18px 0;
    padding: 15px;
    border-radius: var(--radius);
    background: var(--paper);
}
.payment-amount strong {
    color: var(--red);
    font-family: var(--font-headings);
    font-size: 2rem;
}
.qr-wrap {
    width: min(240px, 100%);
    margin: 18px auto;
    padding: 12px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
}
.copy-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}
.copy-box {
    display: grid;
    gap: 10px;
}
.copy-box textarea {
    min-height: 82px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    resize: vertical;
}
.copy-box button {
    min-height: 50px;
    border: 0;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--red);
    font-family: var(--font-headings);
    font-weight: 800;
}
.waiting-status {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 18px 0;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--paper);
}
.waiting-status small { display: block; color: var(--muted); }
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(42,20,9,.12);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pix-steps {
    display: grid;
    gap: 10px;
    padding: 18px 0 0;
    margin: 18px 0 0;
    border-top: 1px solid var(--border);
    list-style: none;
}
.pix-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}
.pix-steps span {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold);
    font-weight: 900;
}
.pix-steps p { margin: 0; color: var(--muted); }
.success-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    color: var(--white);
    background: var(--green);
}
.paid-summary {
    display: grid;
    gap: 8px;
    margin: 18px 0;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--paper);
}
.paid-summary span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.legal-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 16px;
    background: var(--paper);
}
.legal-card {
    width: min(100%, 760px);
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
}
.legal-card h1 { font-size: 2.2rem; }
.legal-card h2 { margin-top: 24px; }
.legal-card p { color: var(--ink-soft); }
.legal-warning {
    padding: 14px;
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    background: #fff7dd;
}

@media (min-width: 560px) {
    .container { width: min(100% - 44px, 1120px); }
    .sales-hero { padding-top: 28px; }
    .hero-product img { aspect-ratio: 16 / 10; }
    .module-grid, .bonus-grid, .steps-grid, .trust-cards, .social-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .example-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .example-card.large { grid-column: 1 / -1; }
    .field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .payment-choice { grid-template-columns: auto minmax(0,1fr) auto; }
    .payment-choice b { grid-column: auto; font-size: 1.35rem; }
    .copy-box { grid-template-columns: 1fr auto; }
    .copy-box button { padding-inline: 22px; }
    .final-cta .btn { width: auto; min-width: 320px; }
}

@media (min-width: 860px) {
    .sales-hero { padding: 44px 0 58px; }
    .hero-shell {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
        align-items: center;
        gap: 34px 46px;
    }
    .hero-copy { grid-column: 1; }
    .hero-product { grid-column: 2; grid-row: 1 / 3; }
    .hero-product img { aspect-ratio: 4 / 5; }
    .hero-action { grid-column: 1; max-width: 560px; }
    .hero-copy h1 { font-size: clamp(3.1rem, 5.4vw, 5.1rem); }
    .hero-copy p { font-size: 1.08rem; max-width: 620px; }
    .btn-block { width: auto; }
    #hero-cta-button, #offer-cta-button { width: 100%; }
    .section { padding: 78px 0; }
    .split-story, .product-showcase, .content-intro, .offer-grid, .trust-panel {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
    .split-story { align-items: center; gap: 56px; }
    .comparison-grid { grid-template-columns: .82fr 1.18fr; align-items: stretch; }
    .comparison-card img { height: 420px; aspect-ratio: auto; }
    .example-gallery {
        grid-template-columns: 1.25fr .85fr;
        align-items: stretch;
    }
    .example-card.large {
        grid-row: span 2;
        grid-column: auto;
    }
    .example-card.large img {
        height: 100%;
        min-height: 520px;
        aspect-ratio: auto;
    }
    .example-card:not(.large) img {
        height: 220px;
        aspect-ratio: auto;
    }
    .module-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .social-proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .bonus-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer { padding-bottom: 36px; }
    .footer-inner {
        grid-template-columns: 1fr auto;
        align-items: start;
    }
    .mobile-buy-bar { display: none; }
    .checkout-main { padding: 34px 0 72px; }
    .checkout-grid {
        width: min(100% - 44px, 760px);
        grid-template-columns: 1fr;
        align-items: start;
        gap: 22px;
    }
    .checkout-form-card { padding: 34px; }
    .order-summary {
        position: static;
        padding: 20px;
    }
    .summary-photo { max-height: 220px; }
}

@media (min-width: 1080px) {
    .checkout-grid { width: min(100% - 44px, 820px); grid-template-columns: 1fr; gap: 24px; }
    .checkout-form-card { padding: 42px; }
}

@media (max-width: 374px) {
    .container, .narrow { width: min(100% - 24px, 1120px); }
    .hero-copy h1 { font-size: 1.72rem; }
    .section-heading h2,
    .split-story h2,
    .product-showcase h2,
    .content-intro h2,
    .offer-card h2,
    .final-cta h2 { font-size: 1.65rem; }
    .btn { padding-inline: 13px; font-size: .92rem; }
    .hero-price-card { width: 150px; }
    .hero-price-card strong { font-size: 1.5rem; }
    .checkout-form-card, .order-summary, .payment-card { padding: 14px; }
    .checkout-steps span { font-size: .72rem; }
    .checkout-header-inner { gap: 8px; }
    .urgency-label { font-size: .58rem; padding-inline: 7px; }
    .checkout-urgency strong { font-size: .75rem; }
    .checkout-timer { padding: 7px 8px; font-size: 1rem; }
    .checkout-timer span { min-width: 21px; }
    .checkout-title h1 { font-size: 1.38rem; }
    .checkout-title p { font-size: .86rem; }
    .checkout-offer-strip {
        gap: 8px;
        padding: 10px;
    }
    .checkout-offer-strip strong { font-size: .98rem; }
    .checkout-offer-strip b { font-size: 1.12rem; }
    .mobile-buy-bar b { padding-inline: 10px; font-size: .74rem; }
}
