:root {
    --ink: #0a0603;
    --ink-2: #171010;
    --wine: #6c1e21;
    --wine-deep: #4d1518;
    --wine-bright: #8a2a2e;
    --gold: #e0c47b;
    --gold-soft: #c9a85f;
    --paper: #f6f3ee;
    --paper-2: #ece6db;
    --line: rgba(224, 196, 123, .28);
    --text-light: #efe9df;
    --text-mute: #b7ab98;
    --text-dark: #241c16;
    --text-dark-mute: #5f564c;
    --maxw: 1180px;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Mulish", system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    background: var(--ink);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%
}

/* eyebrow / labels */
.eyebrow {
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: .7em;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
    opacity: .7
}

.eyebrow.center::before {
    display: none
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: .005em
}

h2.display {
    font-size: clamp(2rem, 4.4vw, 3.2rem)
}

p.lead {
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    color: var(--text-mute)
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6em;
    font-family: var(--sans);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .01em;
    padding: 16px 30px;
    border-radius: 2px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background: var(--wine);
    color: #fdeee9;
    border-color: var(--wine-bright)
}

.btn-primary:hover {
    background: var(--wine-bright);
    transform: translateY(-2px)
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border-color: var(--line)
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(224, 196, 123, .06)
}

.btn-block {
    width: 100%
}

/* ---------- HEADER ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    transition: background .3s ease, padding .3s ease, box-shadow .3s ease, border-color .3s ease;
    padding: 18px 0;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(10, 6, 3, .92);
    backdrop-filter: blur(10px);
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.brand img {
    height: 34px;
    width: auto
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px
}

.nav-links a.lnk {
    font-size: .86rem;
    font-weight: 600;
    color: var(--text-mute);
    letter-spacing: .02em;
    transition: color .2s
}

.nav-links a.lnk:hover {
    color: var(--gold)
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px
}

.nav-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold)
}

.nav-wa svg {
    width: 18px;
    height: 18px
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--gold);
    cursor: pointer;
    padding: 6px
}

.menu-toggle svg {
    width: 26px;
    height: 26px
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 150px 0 80px;
    background:
        radial-gradient(120% 90% at 85% 0%, rgba(108, 30, 33, .32), transparent 60%),
        linear-gradient(180deg, #0c0705, #0a0603);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: center
}

.hero-copy .eyebrow {
    margin-bottom: 22px
}

.hero h1 {
    font-size: clamp(2.3rem, 5vw, 3.7rem);
    color: #fff;
    margin-bottom: 22px
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500
}

.hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.16rem);
    color: var(--text-mute);
    max-width: 33em;
    margin-bottom: 26px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 11px 18px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(224, 196, 123, .08), transparent);
}

.hero-badge .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(224, 196, 123, .18)
}

.hero-badge span {
    font-size: .92rem;
    font-weight: 600;
    color: var(--gold)
}

.hero-badge b {
    color: #fff;
    font-weight: 800
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 26px
}

.hero-trust li {
    list-style: none;
    font-size: .82rem;
    color: var(--text-mute);
    display: flex;
    align-items: center;
    gap: 8px
}

.hero-trust li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    flex: none
}

/* hero media */
.hero-media {
    position: relative
}

.hero-media .frame {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .55);
}

.hero-media .frame img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center top
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid var(--gold);
    border-radius: 3px;
    z-index: 0;
    opacity: .5;
}

.hero-media .frame {
    z-index: 1
}

/* hero form card */
.lead-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 24px;
    margin-top: 30px;
    backdrop-filter: blur(4px);
}

.lead-card h3 {
    font-size: 1.45rem;
    color: #fff;
    margin-bottom: 4px
}

.lead-card .sm {
    font-size: .85rem;
    color: var(--text-mute);
    margin-bottom: 16px
}

.field {
    margin-bottom: 12px
}

.field label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 5px
}

.field input {
    width: 100%;
    padding: 13px 14px;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(224, 196, 123, .22);
    border-radius: 2px;
    color: #fff;
    font-family: var(--sans);
    font-size: .95rem;
    transition: border-color .2s;
}

.field input::placeholder {
    color: #6f6557
}

.field input:focus {
    outline: none;
    border-color: var(--gold)
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 14px 0 16px
}

.consent input {
    margin-top: 3px;
    accent-color: var(--wine);
    flex: none
}

.consent label {
    font-size: .74rem;
    color: var(--text-mute);
    line-height: 1.5
}

.consent a {
    color: var(--gold);
    text-decoration: underline
}

.form-foot {
    font-size: .72rem;
    color: var(--text-mute);
    text-align: center;
    margin-top: 12px
}

/* ---------- CREDIBILITY STRIP ---------- */
.strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--ink-2)
}

.strip ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 0;
    list-style: none;
    padding: 22px 0
}

.strip li {
    padding: 0 28px;
    font-size: .86rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--text-light);
    position: relative
}

.strip li+li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: var(--line)
}

.strip li span {
    color: var(--gold)
}

/* ---------- SECTION BASE ---------- */
.section {
    padding: 96px 0
}

.section.light {
    background: var(--paper);
    color: var(--text-dark)
}

.section.light .eyebrow {
    color: var(--wine)
}

.section.light .eyebrow::before {
    background: var(--wine)
}

.section.light h2 {
    color: var(--ink)
}

.section.light p.lead {
    color: var(--text-dark-mute)
}

.sec-head {
    max-width: 46rem;
    margin-bottom: 48px
}

.sec-head .eyebrow {
    margin-bottom: 18px
}

.sec-head h2 {
    margin-bottom: 16px
}

/* ---------- PROBLEM ---------- */
.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center
}

.split .ph {
    position: relative;
    border-radius: 3px;
    overflow: hidden
}

.split .ph img {
    width: 100%;
    height: 480px;
    object-fit: cover
}

.split .ph.framed::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 0, 0, .06)
}

.pain {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(36, 28, 22, .12)
}

.pain:last-child {
    border-bottom: 0
}

.pain .pn {
    font-family: var(--serif);
    font-size: 1.9rem;
    color: var(--wine);
    line-height: 1;
    flex: none;
    width: 40px
}

.pain h3 {
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 5px
}

.pain p {
    font-size: .96rem;
    color: var(--text-dark-mute)
}

/* ---------- URGENCY ---------- */
.urgency {
    background:
        radial-gradient(100% 120% at 50% 0%, rgba(108, 30, 33, .5), transparent 55%),
        linear-gradient(180deg, #120a08, #0a0603);
    text-align: center;
}

.urgency .wrap {
    max-width: 780px
}

.urgency .eyebrow {
    margin-bottom: 22px
}

.urgency h2 {
    font-size: clamp(2rem, 4.3vw, 3rem);
    color: #fff;
    margin-bottom: 20px
}

.urgency h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500
}

.urgency p {
    color: var(--text-mute);
    font-size: 1.08rem;
    max-width: 40em;
    margin: 0 auto 14px
}

.urgency .note {
    font-size: .78rem;
    color: var(--gold-soft);
    margin-top: 18px;
    font-style: italic
}

/* ---------- PROCESS ---------- */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 10px
}

.step {
    position: relative;
    padding-top: 26px;
    border-top: 2px solid var(--wine)
}

.step .num {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--wine);
    letter-spacing: .05em;
    display: block;
    margin-bottom: 14px
}

.step h3 {
    font-size: 1.22rem;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.15
}

.step p {
    font-size: .92rem;
    color: var(--text-dark-mute)
}

.process-foot {
    margin-top: 46px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap
}

/* ---------- WHY / DIFERENCIAIS ---------- */
.why {
    background: linear-gradient(180deg, #0a0603, #0e0807)
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden
}

.card {
    background: var(--ink);
    padding: 34px 28px;
    transition: background .3s
}

.card:hover {
    background: var(--ink-2)
}

.card .ic {
    width: 38px;
    height: 38px;
    color: var(--gold);
    margin-bottom: 18px
}

.card .ic svg {
    width: 100%;
    height: 100%
}

.card h3 {
    font-size: 1.28rem;
    color: #fff;
    margin-bottom: 8px
}

.card p {
    font-size: .92rem;
    color: var(--text-mute)
}

/* ---------- OBJECTION ---------- */
.objection .split {
    grid-template-columns: 1.1fr .9fr
}

/* .objection .qbox {} */

.objection .qmark {
    font-family: var(--serif);
    font-size: 3.4rem;
    color: var(--wine);
    line-height: .7;
    display: block;
    margin-bottom: 6px
}

.objection h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    color: var(--ink);
    margin-bottom: 18px;
    font-style: italic
}

.objection p {
    font-size: 1.05rem;
    color: var(--text-dark-mute);
    margin-bottom: 16px
}

.objection p strong {
    color: var(--wine)
}

/* ---------- OFFER ---------- */
.offer {
    background:
        radial-gradient(120% 130% at 50% -10%, rgba(108, 30, 33, .65), transparent 60%),
        linear-gradient(180deg, var(--wine-deep), #1a0c0b);
    text-align: center;
    position: relative;
}

.offer-box {
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid var(--gold);
    border-radius: 5px;
    padding: 54px 40px;
    background: rgba(10, 6, 3, .4);
    position: relative;
}

.offer .eyebrow {
    color: var(--gold);
    margin-bottom: 20px
}

.offer .eyebrow::before {
    background: var(--gold)
}

.offer h2 {
    font-size: clamp(2.1rem, 4.6vw, 3.2rem);
    color: #fff;
    margin-bottom: 18px
}

.offer h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500
}

.offer p {
    color: #e9dccd;
    max-width: 36em;
    margin: 0 auto 30px;
    font-size: 1.05rem
}

.offer .small {
    font-size: .78rem;
    color: var(--gold-soft);
    margin-top: 18px
}

/* ---------- AUTHORITY ---------- */
.authority .split {
    grid-template-columns: .8fr 1.2fr;
    align-items: center
}

.authority .ph img {
    height: 560px;
    object-position: center 18%
}

.authority h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.7rem);
    color: var(--ink);
    margin-bottom: 6px
}

.authority .role {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 22px
}

.authority p {
    font-size: 1.02rem;
    color: var(--text-dark-mute);
    margin-bottom: 16px
}

.oab-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(108, 30, 33, .3);
    border-radius: 2px;
    font-size: .85rem;
    color: var(--wine);
    font-weight: 700;
    background: rgba(108, 30, 33, .04)
}

/* ---------- TESTIMONIALS ---------- */
.testi {
    background: var(--ink-2)
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.quote {
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 30px 26px;
    background: var(--ink);
    display: flex;
    flex-direction: column
}

.quote .mk {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--wine);
    line-height: .6;
    margin-bottom: 14px
}

.quote p {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    flex: 1;
    margin-bottom: 20px
}

.quote .who {
    font-size: .9rem;
    font-weight: 700;
    color: #fff
}

.quote .role {
    font-size: .78rem;
    color: var(--gold-soft)
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid rgba(36, 28, 22, .14)
}

.faq {
    border-bottom: 1px solid rgba(36, 28, 22, .14)
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 40px 22px 0;
    position: relative;
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--ink);
    font-weight: 600
}

.faq summary::-webkit-details-marker {
    display: none
}

.faq summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--wine);
    font-family: var(--sans);
    transition: transform .25s
}

.faq[open] summary::after {
    transform: translateY(-50%) rotate(45deg)
}

.faq .ans {
    padding: 0 40px 24px 0;
    color: var(--text-dark-mute);
    font-size: .98rem
}

/* ---------- FINAL CTA ---------- */
.final {
    background: radial-gradient(110% 120% at 20% 0%, rgba(108, 30, 33, .35), transparent 55%), linear-gradient(180deg, #0a0603, #0c0705)
}

.final .hero-grid {
    align-items: center
}

.final h2 {
    font-size: clamp(2rem, 4.2vw, 3rem);
    color: #fff;
    margin-bottom: 18px
}

.final h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500
}

.final p.lead {
    margin-bottom: 24px;
    color: var(--text-mute)
}

.final .ph {
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5)
}

.final .ph img {
    height: 520px;
    width: 100%;
    object-fit: cover;
    object-position: center top
}

/* ---------- FOOTER ---------- */
footer {
    background: #070403;
    border-top: 1px solid var(--line);
    padding: 60px 0 30px
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

footer .brand img {
    height: 30px;
    margin-bottom: 18px
}

footer p,
footer a.fl {
    font-size: .9rem;
    color: var(--text-mute);
    line-height: 1.8
}

footer a.fl:hover {
    color: var(--gold)
}

.foot-h {
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px
}

.foot-row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.disclaimer {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    font-size: .74rem;
    color: #6c6051;
    line-height: 1.7;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    transition: transform .25s;
}

.wa-float:hover {
    transform: scale(1.08)
}

.wa-float svg {
    width: 32px;
    height: 32px;
    fill: #fff
}

/* ---------- MODAL ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(4, 2, 1, .78);
    backdrop-filter: blur(4px)
}

.modal.open {
    display: flex
}

.modal-box {
    max-width: 440px;
    width: 100%;
    background: linear-gradient(180deg, #15100d, #0a0603);
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 42px 34px;
    text-align: center;
    position: relative;
    animation: pop .35s ease
}

@keyframes pop {
    from {
        transform: translateY(14px) scale(.97);
        opacity: 0
    }

    to {
        transform: none;
        opacity: 1
    }
}

.modal-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--gold)
}

.modal-check svg {
    width: 30px;
    height: 30px
}

.modal-box h3 {
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 12px
}

.modal-box p {
    color: var(--text-mute);
    font-size: .98rem;
    margin-bottom: 24px
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: 0;
    color: var(--text-mute);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1
}

/* ---------- REVEAL ANIM ---------- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:980px) {

    .hero-grid,
    .split,
    .authority .split,
    .objection .split,
    .final .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero-media .frame img {
        height: 380px
    }

    .process {
        grid-template-columns: 1fr 1fr
    }

    .cards {
        grid-template-columns: 1fr 1fr
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .authority .ph img,
    .final .ph img,
    .split .ph img {
        height: 420px
    }
}

@media(max-width:680px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 78%;
        max-width: 320px;
        background: #0c0705;
        border-left: 1px solid var(--line);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 26px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform .35s ease;
        z-index: 65;
    }

    .nav-links.open {
        transform: none
    }

    .nav-links .nav-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 14px
    }

    .menu-toggle {
        display: block;
        z-index: 66
    }

    .section {
        padding: 70px 0
    }

    .hero {
        padding: 120px 0 60px
    }

    .process {
        grid-template-columns: 1fr
    }

    .cards {
        grid-template-columns: 1fr
    }

    .grid-2 {
        grid-template-columns: 1fr
    }

    .strip li {
        padding: 0 16px;
        font-size: .8rem
    }

    .strip li+li::before {
        display: none
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .offer-box {
        padding: 40px 24px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }
}