:root {
    --ink: #15201c;
    --muted: #5f6964;
    --line: #dbe3dd;
    --paper: #f6f3ea;
    --soft: #eef4f1;
    --green: #0f6b52;
    --green-dark: #084332;
    --gold: #f0b23f;
    --gold-dark: #b97913;
    --blue: #1f5f8b;
}

* {
    box-sizing: border-box;
}

body {
    color: var(--ink);
    background: #fffdf7;
    font-family: Inter, Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

h1, h2, h3 {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: 0;
}

h1 {
    max-width: 920px;
    font-size: clamp(2.5rem, 5vw, 5.6rem);
    line-height: .95;
    margin: 18px 0 22px;
}

h2 {
    font-size: clamp(2rem, 3.6vw, 3.8rem);
    line-height: 1;
    margin: 10px 0 18px;
}

h3 {
    font-size: 1.35rem;
}

.uk-button {
    border-radius: 6px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.uk-button-primary {
    background: linear-gradient(180deg, #ffc85d 0%, var(--gold) 52%, var(--gold-dark) 100%);
    color: #1d1607;
    border: 1px solid rgba(255, 236, 164, .58);
    box-shadow: 0 16px 34px rgba(240, 178, 63, .34), inset 0 1px 0 rgba(255,255,255,.35);
}

.uk-button-primary:hover {
    background: linear-gradient(180deg, #ffd77e 0%, #f6bd4f 52%, #c98818 100%);
    color: #1d1607;
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(240, 178, 63, .48), inset 0 1px 0 rgba(255,255,255,.45);
}

.uk-button-large {
    min-height: 64px;
    padding: 0 38px;
    font-size: 1.08rem;
    line-height: 64px;
}

.cta-main,
.cta-checkout {
    position: relative;
    overflow: hidden;
    font-weight: 900;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 76px;
    padding: 12px 42px;
    line-height: 1.1;
    border-radius: 10px;
    outline: 3px solid rgba(255, 200, 93, .24);
    outline-offset: 4px;
}

.cta-main span,
.cta-checkout span {
    display: block;
    font-size: 1.12rem;
}

.cta-main small,
.cta-checkout small {
    display: block;
    color: rgba(29, 22, 7, .78);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
}

.cta-main::after,
.cta-checkout::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -35%;
    width: 28%;
    height: 180%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
    transform: rotate(18deg);
    transition: left .6s ease;
}

.cta-main:hover::after,
.cta-checkout:hover::after {
    left: 120%;
}

.cta-pulse {
    animation: ctaPulse 2.6s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 16px 34px rgba(240, 178, 63, .34), inset 0 1px 0 rgba(255,255,255,.35);
    }
    50% {
        box-shadow: 0 20px 54px rgba(240, 178, 63, .56), 0 0 0 6px rgba(240, 178, 63, .10), inset 0 1px 0 rgba(255,255,255,.45);
    }
}

.uk-button-secondary {
    background: var(--green);
}

.uk-button-default {
    border-color: rgba(255,255,255,.5);
    color: #fff;
}

.topbar {
    background: var(--green-dark);
    color: #e8f5ef;
    padding: 10px 0;
    font-size: .95rem;
}

.hero {
    min-height: 92vh;
    padding: 30px 0 70px;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(7, 36, 31, .96), rgba(16, 91, 72, .86)),
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero h1,
.hero h2,
.hero .brand {
    color: #fff;
}

.urgency-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 9px 0;
    color: #fff;
    background: #8e231d;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 8px 26px rgba(53, 10, 7, .25);
}

.urgency-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 20px;
}

.urgency-message strong,
.urgency-message span {
    display: block;
}

.urgency-message strong {
    color: #fff;
    font-size: .96rem;
}

.urgency-message span {
    color: #ffe8a6;
    font-size: .82rem;
    font-weight: 800;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 6px;
}

.countdown > span {
    display: grid;
    min-width: 46px;
    min-height: 45px;
    place-items: center;
    padding: 4px 6px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 5px;
    background: rgba(0,0,0,.16);
}

.countdown b,
.countdown small {
    display: block;
    line-height: 1;
}

.countdown b {
    color: #fff;
    font-size: 1rem;
}

.countdown small {
    color: #ffd976;
    font-size: .58rem;
    font-weight: 900;
    text-transform: uppercase;
}

.countdown i {
    color: #ffd976;
    font-style: normal;
    font-weight: 900;
}

.urgency-bar.offer-expired {
    background: #5f2925;
}

.hero h1 {
    font-size: clamp(2.5rem, 4.6vw, 4.8rem);
    line-height: .98;
    overflow-wrap: anywhere;
}

.brand {
    font-size: 1.08rem;
}

.nav-cta {
    color: #fff;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 780px;
    color: #eaf2ed;
    font-size: 1.25rem;
    line-height: 1.55;
}

.author-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-top: 18px;
    color: #fff;
}

.author-line strong {
    color: var(--gold);
}

.author-line span {
    color: #dceae4;
}

.hero-actions {
    gap: 18px;
    margin: 32px 0 24px;
}

.hero-actions .uk-button-primary {
    min-height: 84px;
    padding: 14px 48px;
    font-size: 1.16rem;
    line-height: 1.1;
}

.hero .uk-button-text {
    color: #fff;
}

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

.trust-row span {
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    padding: 8px 12px;
    color: #eef8f3;
    background: rgba(255,255,255,.08);
}

.book-mockup {
    width: min(100%, 390px);
    margin-left: auto;
    margin-bottom: 0;
}

.book-mockup img {
    display: block;
    width: 100%;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 8px;
    box-shadow: 0 28px 84px rgba(0,0,0,.42);
}

.book-mockup figcaption {
    margin-top: 12px;
    color: #dceae4;
    font-size: .9rem;
    text-align: center;
}

.authority-band {
    padding: 48px 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.authority-layout {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    max-width: 1050px;
}

.authority-initials {
    display: grid;
    place-items: center;
    width: 96px;
    aspect-ratio: 1;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    background: var(--green-dark);
    font-size: 1.45rem;
    font-weight: 900;
}

.authority-layout h2 {
    margin: 5px 0 12px;
    font-size: clamp(1.7rem, 3vw, 2.75rem);
    line-height: 1.08;
}

.authority-layout p {
    max-width: 900px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.strip {
    background: var(--green-dark);
    color: #fff;
    padding: 24px 0;
}

.strip strong {
    display: block;
    color: var(--gold);
    font-size: 2.1rem;
}

.strip span {
    color: #e3eee9;
}

.normative-update {
    padding: 58px 0;
    background: #fffdf7;
    border-bottom: 1px solid var(--line);
}

.normative-head {
    max-width: 880px;
    margin-bottom: 24px;
}

.normative-head h2 {
    margin-top: 8px;
    font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.normative-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.normative-card {
    min-height: 178px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
    box-shadow: 0 18px 42px rgba(15, 54, 42, .08);
}

.normative-card strong,
.normative-card span {
    display: block;
}

.normative-card strong {
    color: var(--green-dark);
    font-size: 1.28rem;
    line-height: 1.2;
}

.normative-card span {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.55;
}

.section {
    padding: 90px 0;
}

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

.muted {
    background: var(--soft);
}

.objections-section {
    border-top: 1px solid var(--line);
    background: #fffdf7;
}

.objections-list {
    max-width: 980px;
    border-top: 1px solid var(--line);
}

.objections-list details {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.objections-list summary {
    color: var(--green-dark);
    cursor: pointer;
    font-size: 1.12rem;
    font-weight: 900;
}

.objections-list p {
    max-width: 850px;
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.info-card,
.checkout-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.info-card {
    min-height: 100%;
    padding: 30px;
}

.info-card p {
    color: var(--muted);
    line-height: 1.65;
}

.info-card a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 6px;
    color: #1d1607;
    background: #f4c56a;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(201, 148, 50, .20);
}

.info-card a:hover {
    color: #1d1607;
    background: #ffd77e;
    text-decoration: none;
}

.cta-band {
    padding: 44px 0;
    background: #172521;
}

.cta-band h2 {
    color: #fff;
    max-width: 760px;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.check-list,
.mini-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li,
.mini-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    color: var(--muted);
    line-height: 1.6;
}

.check-list li::before,
.mini-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background: var(--gold);
}

.metric-box {
    border-left: 8px solid var(--gold);
    padding: 26px 30px;
    background: var(--paper);
}

.metric-box strong {
    display: block;
    font-size: clamp(3.4rem, 8vw, 6rem);
    line-height: .9;
    color: var(--green-dark);
}

.metric-box span {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.dark {
    background: #101b18;
    color: #e8f2ed;
}

.dark h2,
.dark strong {
    color: #fff;
}

.reason {
    min-height: 170px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(255,255,255,.05);
}

.reason strong,
.reason span {
    display: block;
}

.reason span {
    margin-top: 12px;
    color: #cbd8d2;
}

.checkout-section {
    background: var(--paper);
}

.checkout-card {
    padding: clamp(24px, 5vw, 48px);
    box-shadow: 0 24px 70px rgba(11, 48, 38, .16);
}

.price-offer {
    margin: 14px 0 18px;
    padding: 18px 20px;
    border: 1px solid #eadfca;
    border-radius: 8px;
    background: #fff8e8;
}

.price-offer span,
.price-offer strong,
.price-offer small {
    display: block;
}

.price-offer span {
    color: var(--muted);
    font-weight: 800;
}

.price-offer s {
    color: #8a4b18;
}

.price-offer strong {
    margin-top: 4px;
    color: var(--green-dark);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1;
}

.price-offer small {
    margin-top: 8px;
    color: var(--gold-dark);
    font-weight: 900;
}

.payment-method-fixed {
    padding: 16px 18px;
    border: 1px solid #cdd8d2;
    border-radius: 8px;
    background: #f7faf8;
}

.payment-method-fixed span,
.payment-method-fixed strong,
.payment-method-fixed small {
    display: block;
}

.payment-method-fixed span {
    color: var(--muted);
    font-size: .85rem;
    font-weight: 800;
}

.payment-method-fixed strong {
    margin-top: 4px;
    color: var(--green-dark);
    font-size: 1.16rem;
}

.payment-method-fixed small {
    margin-top: 4px;
    color: var(--muted);
}

.checkout-card button[type="submit"] {
    min-height: 86px;
    font-size: 1.16rem;
    line-height: 1.1;
}

.uk-input,
.uk-select {
    height: 50px;
    border-radius: 6px;
    border-color: #cdd8d2;
}

.uk-form-label {
    color: var(--ink);
    font-weight: 800;
}

.form-note {
    margin-bottom: 0;
    color: var(--muted);
    text-align: center;
    font-size: .92rem;
}

.checkout-reassurance {
    margin-top: 10px;
    color: var(--green-dark);
    font-size: .95rem;
    font-weight: 800;
    text-align: center;
}

.installment-field {
    margin-top: 10px;
}

.installment-field[hidden] {
    display: none !important;
}

.footer {
    padding: 28px 0;
    color: #d8e8e0;
    background: var(--green-dark);
}

.pix-page {
    min-height: 100vh;
    padding: 48px 0;
    display: flex;
    align-items: center;
}

.pix-shell {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 24px;
    align-items: stretch;
}

.pix-copy,
.pix-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(11, 48, 38, .12);
}

.pix-copy {
    padding: clamp(28px, 5vw, 54px);
}

.pix-copy h1 {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.pix-copy p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.65;
}

.pix-card {
    padding: 24px;
}

.pix-amount {
    margin-bottom: 18px;
    padding: 16px;
    border-radius: 8px;
    background: #fff8e8;
}

.pix-amount span,
.pix-amount strong {
    display: block;
}

.pix-amount span {
    color: var(--muted);
    font-weight: 800;
}

.pix-amount strong {
    color: var(--green-dark);
    font-size: 2.6rem;
    line-height: 1;
}

.pix-qr {
    display: block;
    width: min(100%, 320px);
    margin: 0 auto 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.pix-payload {
    min-height: 128px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-size: .86rem;
}

.pix-status {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    margin: 16px 0 20px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--green-dark);
    background: #edf5f1;
    font-weight: 900;
}

.pix-status.paid {
    color: #1d1607;
    background: #f4c56a;
}

.pix-secondary {
    border-color: var(--green-dark);
    color: var(--green-dark);
}

@media (max-width: 959px) {
    .urgency-layout {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }

    .urgency-layout .cta-boost {
        display: none;
    }

    .countdown {
        justify-content: center;
    }

    .countdown > span {
        min-width: 42px;
        min-height: 40px;
    }
    .hero {
        min-height: auto;
        padding-top: 22px;
    }

    .hero nav {
        gap: 12px;
    }

    .hero [class*="uk-width"] {
        min-width: 0;
        max-width: 100%;
    }

    .hero .eyebrow {
        display: block;
        max-width: 100%;
        overflow-wrap: anywhere;
        line-height: 1.45;
        white-space: normal;
    }

    .hero h1 {
        font-size: clamp(2.15rem, 10vw, 3rem);
        line-height: 1;
    }

    .hero-copy {
        font-size: 1.08rem;
    }

    .nav-cta {
        min-height: 38px;
        padding: 0 14px;
        line-height: 38px;
        white-space: nowrap;
    }

    .author-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .book-mockup {
        margin: 35px 0 0;
        width: min(100%, 520px);
    }

    .authority-layout {
        grid-template-columns: 1fr;
    }

    .authority-initials {
        width: 76px;
    }

    .section {
        padding: 64px 0;
    }

    .normative-grid {
        grid-template-columns: 1fr;
    }

    .pix-shell {
        grid-template-columns: 1fr;
    }

    .hero-actions .uk-button-primary,
    .checkout-card button[type="submit"] {
        width: 100%;
        min-height: 62px;
        padding: 0 20px;
        line-height: 62px;
    }
}
