/* ===================== HELENA MORETTI · Nutricionista ===================== */
:root {
    --bg: #ffffff;
    --cream: #f6f8f3;
    --sage: #e9f1e5;
    --green-soft: #e6f3ea;
    --green: #1f8a54;
    --green-d: #15703f;
    --ink: #15271c;
    --body: #56625a;
    --citrus: #ef9f3a;
    --line: #e8ece4;
    --display: 'Fraunces', Georgia, serif;
    --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --max: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    background: var(--bg);
    color: var(--body);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--green);
    color: #fff;
}

h1,
h2,
h3 {
    color: var(--ink);
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.05;
}

.h2 {
    font-size: clamp(1.9rem, 4.4vw, 3.2rem);
    max-width: 18ch;
}

.kicker {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}

.kicker--w {
    color: #bfe6cc;
}

.sec-head {
    max-width: var(--max);
    margin: 0 auto clamp(2.4rem, 5vw, 3.6rem);
}

.sec-head--center {
    text-align: center;
}

.sec-head--center .h2 {
    margin-inline: auto;
}

.sec-sub {
    margin-top: 1rem;
    max-width: 48ch;
}

.sec-head--center .sec-sub {
    margin-inline: auto;
}

section {
    position: relative;
    z-index: 1;
    padding: clamp(3.5rem, 8vw, 7rem) clamp(1.2rem, 5vw, 3rem);
}

/* ===================== DECORATIVO ===================== */
.blobs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .5;
    will-change: transform;
}

.blob--1 {
    width: 40vw;
    height: 40vw;
    top: -8%;
    right: -6%;
    background: #cfe9d6;
}

.blob--2 {
    width: 34vw;
    height: 34vw;
    bottom: 6%;
    left: -8%;
    background: #f3e3c4;
}

.blob--3 {
    width: 26vw;
    height: 26vw;
    top: 44%;
    left: 52%;
    background: #dcefe0;
    opacity: .35;
}

/* cursor */
.cur {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border-radius: 50%;
    background: var(--green);
    mix-blend-mode: multiply;
    pointer-events: none;
    opacity: .0;
    transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease), opacity .3s, background .3s;
    will-change: transform;
}

body.cur-on .cur {
    opacity: .85;
}

body.cur-grow .cur {
    width: 56px;
    height: 56px;
    margin: -28px 0 0 -28px;
    background: var(--citrus);
}

@media (hover:none),
(pointer:coarse) {
    .cur {
        display: none;
    }
}

/* ===================== BOTÕES ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .85rem 1.5rem;
    border-radius: 999px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform .25s var(--ease), background .3s var(--ease), color .3s, border-color .3s, box-shadow .3s;
    will-change: transform;
}

.btn__i {
    width: 19px;
    height: 19px;
}

.btn--lg {
    padding: 1.05rem 1.9rem;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
    justify-content: center;
}

.btn--green {
    background: var(--green);
    color: #fff;
    box-shadow: 0 12px 26px -12px rgba(31, 138, 84, .7);
}

.btn--green:hover {
    background: var(--green-d);
    box-shadow: 0 16px 32px -12px rgba(31, 138, 84, .8);
}

.btn--ghost {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
}

.btn--ghost:hover {
    border-color: var(--green);
    color: var(--green);
}

.btn--cream {
    background: #fff;
    color: var(--green-d);
}

.btn--cream:hover {
    transform: translateY(-2px);
}

/* ===================== NAV ===================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
    transition: background .4s var(--ease), box-shadow .4s, padding .4s;
}

.nav.scrolled {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(150%) blur(14px);
    box-shadow: 0 1px 0 var(--line);
    padding-top: .8rem;
    padding-bottom: .8rem;
}

.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1;
}

.nav__brand small {
    display: block;
    font-family: var(--sans);
    font-weight: 500;
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--green);
    margin-top: .25rem;
}

.nav__leaf {
    display: grid;
    place-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    flex: none;
}

.nav__leaf svg {
    width: 21px;
    height: 21px;
}

.nav__links {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav__links a {
    font-weight: 500;
    font-size: .95rem;
    color: var(--ink);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--green);
    transition: width .35s var(--ease);
}

.nav__links a:hover::after {
    width: 100%;
}

@media (max-width:900px) {
    .nav__links {
        display: none;
    }
}

@media (max-width:560px) {
    .nav__cta {
        display: none;
    }
}

/* ===================== HERO ===================== */
.hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
    max-width: var(--max);
    margin: 0 auto;
    padding-top: clamp(7rem, 13vw, 9.5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--green-d);
    background: var(--green-soft);
    padding: .5rem .9rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(31, 138, 84, .18);
}

.hero__h {
    font-size: clamp(2.5rem, 6vw, 4.3rem);
    margin-bottom: 1.4rem;
}

.hero__h .l {
    display: block;
    overflow: hidden;
}

.hero__p {
    max-width: 44ch;
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0 1.6rem;
}

.hero__trust {
    font-size: .9rem;
    color: var(--body);
}

.hero__trust b {
    color: var(--ink);
}

.stars {
    display: inline-flex;
    gap: 1px;
    color: var(--citrus);
    vertical-align: middle;
    margin-right: .4rem;
}

.stars svg {
    width: 16px;
    height: 16px;
}

/* hero media */
.hero__media {
    position: relative;
}

.hero__photo {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 56% 44% 58% 42% / 48% 50% 50% 52%;
    box-shadow: 0 40px 70px -34px rgba(21, 39, 28, .45);
    aspect-ratio: 1/1;
}

html.motion .hero__photo[data-blob-shape] {
    animation: morph 14s var(--ease) infinite;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 56% 44% 58% 42% / 48% 50% 50% 52%;
    }

    33% {
        border-radius: 44% 56% 42% 58% / 56% 44% 56% 44%;
    }

    66% {
        border-radius: 52% 48% 50% 50% / 42% 58% 42% 58%;
    }
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== modelo 3D no hero ===== */
.hero__photo--3d {
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    animation: none !important;
}

.hero__photo--3d::before {
    content: '';
    position: absolute;
    inset: 3%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 54%, rgba(31, 138, 84, .22), rgba(239, 159, 58, .12) 46%, transparent 70%);
    filter: blur(8px);
    z-index: 0;
}

.hero__mv {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: transparent;
    --poster-color: transparent;
    --progress-bar-color: #1f8a54;
    --progress-mask: transparent;
}

.hero__mvhint {
    position: absolute;
    left: 50%;
    bottom: 2%;
    transform: translateX(-50%);
    z-index: 4;
    padding: .36rem .8rem;
    border-radius: 99px;
    background: rgba(20, 40, 28, .5);
    color: #fff;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: -.01em;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    pointer-events: none;
    opacity: 0;
    animation: mvhint 6s ease 1.6s forwards;
}

@keyframes mvhint {
    0% { opacity: 0; }
    12% { opacity: .9; }
    82% { opacity: .9; }
    100% { opacity: 0; }
}

.hero__ring {
    position: absolute;
    inset: -6% -6% auto auto;
    width: 38%;
    z-index: 3;
    transform: rotate(-90deg);
}

.ring__bg,
.ring__fg {
    fill: none;
    stroke-width: 7;
    stroke-linecap: round;
}

.ring__bg {
    stroke: var(--green-soft);
}

.ring__fg {
    stroke: var(--green);
    stroke-dasharray: 327;
    stroke-dashoffset: 327;
}

.hero__leaf {
    position: absolute;
    z-index: 3;
    color: var(--green);
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-content: center;
    box-shadow: 0 14px 30px -14px rgba(21, 39, 28, .4);
}

.hero__leaf svg {
    width: 26px;
    height: 26px;
}

.hero__leaf--1 {
    width: 58px;
    height: 58px;
    bottom: 8%;
    left: -5%;
}

.hero__leaf--2 {
    width: 44px;
    height: 44px;
    top: 6%;
    left: 8%;
    color: var(--citrus);
}

.hero__badge {
    position: absolute;
    z-index: 4;
    right: -3%;
    bottom: 12%;
    background: #fff;
    border-radius: 16px;
    padding: .9rem 1.1rem;
    box-shadow: 0 20px 40px -18px rgba(21, 39, 28, .45);
    max-width: 165px;
}

.hero__badge b {
    display: block;
    font-family: var(--display);
    font-size: 1.7rem;
    color: var(--green);
    line-height: 1;
}

.hero__badge span {
    font-size: .76rem;
    color: var(--body);
}

@media (max-width:860px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__p {
        margin-inline: auto;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__media {
        max-width: 440px;
        margin: 1rem auto 0;
        order: -1;
    }
}

/* ===================== MARQUEE ===================== */
.strip {
    background: var(--ink);
    color: #eef3ec;
    overflow: hidden;
    padding: .9rem 0;
    position: relative;
    z-index: 1;
}

.strip__t {
    display: flex;
    width: max-content;
    font-family: var(--display);
    font-style: italic;
    font-size: 1.1rem;
    white-space: nowrap;
}

.strip__t span {
    padding-right: 1rem;
}

html.motion .strip__t {
    animation: marq 30s linear infinite;
}

@keyframes marq {
    to {
        transform: translateX(-50%);
    }
}

/* ===================== STATS ===================== */
.stats {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.stat {
    text-align: center;
    padding: 1.6rem 1rem;
    background: var(--cream);
    border-radius: 18px;
}

.stat__n {
    font-family: var(--display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--green);
    line-height: 1;
}

.stat__l {
    display: block;
    margin-top: .6rem;
    font-size: .88rem;
    color: var(--body);
    max-width: 22ch;
    margin-inline: auto;
}

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

/* ===================== DORES ===================== */
.pain {
    max-width: var(--max);
    margin: 0 auto;
}

.pain__head {
    margin-bottom: 2.4rem;
}

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

.pcard {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.3rem 1.4rem;
    font-size: 1.02rem;
    color: var(--ink);
}

.pcard__x {
    display: grid;
    place-content: center;
    width: 26px;
    height: 26px;
    flex: none;
    border-radius: 50%;
    background: #fde8e2;
    color: #d9663f;
    font-size: .8rem;
    margin-top: .1rem;
}

.pain__turn {
    margin-top: 2rem;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--body);
    font-family: var(--display);
    max-width: 40ch;
}

.pain__turn b {
    color: var(--ink);
    font-style: italic;
}

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

/* ===================== MÉTODO ===================== */
.method {
    max-width: var(--max);
    margin: 0 auto;
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.steps__line {
    position: absolute;
    top: 30px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--line);
    z-index: 0;
}

.steps__line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
}

html.motion .steps__line::after {
    transition: transform 1.4s var(--ease);
}

.steps.drawn .steps__line::after {
    transform: scaleX(1);
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--bg);
    padding: 0 .4rem;
}

.step__n {
    font-family: var(--display);
    font-size: .8rem;
    color: var(--green);
    letter-spacing: .1em;
}

.step__ic {
    display: grid;
    place-content: center;
    width: 60px;
    height: 60px;
    margin: .6rem auto 1.1rem;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green-d);
    border: 4px solid var(--bg);
    box-shadow: 0 0 0 1px var(--line);
}

.step__ic svg {
    width: 28px;
    height: 28px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.step p {
    font-size: .92rem;
    max-width: 24ch;
    margin-inline: auto;
}

@media (max-width:780px) {
    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
    }

    .steps__line {
        display: none;
    }
}

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

/* ===================== ÁREAS ===================== */
.areas {
    max-width: var(--max);
    margin: 0 auto;
}

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

.area {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.8rem;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}

.area:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px -28px rgba(21, 39, 28, .4);
    border-color: transparent;
}

.area__ic {
    display: grid;
    place-content: center;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: var(--sage);
    color: var(--green-d);
    margin-bottom: 1.2rem;
}

.area__ic svg {
    width: 28px;
    height: 28px;
}

.area h3 {
    font-size: 1.25rem;
    margin-bottom: .5rem;
}

.area p {
    font-size: .95rem;
}

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

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

/* ===================== SOBRE ===================== */
.about {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
    max-width: var(--max);
    margin: 0 auto;
    background: var(--cream);
    border-radius: 28px;
    padding: clamp(2rem, 4vw, 3.5rem);
}

.about__media {
    position: relative;
}

.about__photo {
    overflow: hidden;
    border-radius: 50% 50% 48% 52% / 52% 48% 52% 48%;
    aspect-ratio: 4/4.3;
    box-shadow: 0 30px 60px -30px rgba(21, 39, 28, .5);
}

.about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__chip {
    position: absolute;
    right: -2%;
    bottom: 8%;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    color: var(--green-d);
    font-weight: 600;
    font-size: .82rem;
    padding: .6rem .9rem;
    border-radius: 999px;
    box-shadow: 0 16px 34px -16px rgba(21, 39, 28, .45);
}

.about__chip svg {
    width: 18px;
    height: 18px;
    color: var(--green);
}

.about__list {
    list-style: none;
    margin-top: 1.6rem;
    display: grid;
    gap: .8rem;
}

.about__list li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    color: var(--ink);
    font-size: .98rem;
}

.about__list svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex: none;
    margin-top: .15rem;
}

.about__txt p {
    max-width: 46ch;
}

@media (max-width:820px) {
    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about__media {
        max-width: 360px;
        margin: 0 auto;
    }

    .about__list li {
        text-align: left;
    }

    .about__txt p {
        margin-inline: auto;
    }
}

/* ===================== RESULTADOS ===================== */
.results {
    max-width: var(--max);
    margin: 0 auto;
}

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

.quote {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.8rem;
}

.stars--sm svg {
    width: 15px;
    height: 15px;
}

.quote p {
    font-family: var(--display);
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1.4;
    margin: 1rem 0 1.2rem;
}

.quote cite {
    font-style: normal;
    font-size: .85rem;
    font-weight: 600;
    color: var(--green-d);
}

@media (max-width:820px) {
    .results__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }
}

/* ===================== PLANOS ===================== */
.plans {
    max-width: var(--max);
    margin: 0 auto;
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    align-items: stretch;
}

.plan {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 2rem 1.8rem;
    position: relative;
}

.plan--feat {
    background: var(--ink);
    border-color: var(--ink);
    transform: translateY(-8px);
    box-shadow: 0 34px 60px -30px rgba(21, 39, 28, .6);
}

.plan--feat .plan__name,
.plan--feat .plan__price {
    color: #fff;
}

.plan--feat .plan__desc,
.plan--feat .plan__list li {
    color: #c7d2c6;
}

.plan--feat .plan__price span {
    color: #9fb7a4;
}

.plan--feat .plan__list svg {
    color: #5fd190;
}

.plan__tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--citrus);
    color: #3a2606;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .35rem .8rem;
    border-radius: 999px;
}

.plan__name {
    font-size: 1.3rem;
}

.plan__price {
    font-family: var(--display);
    font-size: 2.6rem;
    color: var(--green);
    margin: .6rem 0 .2rem;
    line-height: 1;
}

.plan__price span {
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 500;
    color: var(--body);
}

.plan__desc {
    font-size: .92rem;
    margin-bottom: 1.4rem;
    min-height: 2.6em;
}

.plan__list {
    list-style: none;
    display: grid;
    gap: .7rem;
    margin-bottom: 1.8rem;
    flex: 1;
}

.plan__list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .92rem;
    color: var(--ink);
}

.plan__list svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex: none;
}

@media (max-width:860px) {
    .plans__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }

    .plan--feat {
        transform: none;
    }
}

/* ===================== FAQ ===================== */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.qa {
    border-bottom: 1px solid var(--line);
}

.qa summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 0;
    font-family: var(--display);
    font-size: 1.2rem;
    color: var(--ink);
}

.qa summary::-webkit-details-marker {
    display: none;
}

.qa__i {
    position: relative;
    width: 20px;
    height: 20px;
    flex: none;
}

.qa__i::before,
.qa__i::after {
    content: '';
    position: absolute;
    background: var(--green);
    border-radius: 2px;
}

.qa__i::before {
    top: 9px;
    left: 0;
    right: 0;
    height: 2px;
}

.qa__i::after {
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    transition: transform .3s var(--ease);
}

.qa[open] .qa__i::after {
    transform: scaleY(0);
}

.qa__b {
    overflow: hidden;
}

.qa__b p {
    padding-bottom: 1.3rem;
    max-width: 62ch;
}

/* ===================== CTA FINAL ===================== */
.close {
    max-width: var(--max);
    margin: 0 auto;
}

.close__card {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-d) 100%);
    border-radius: 30px;
    padding: clamp(2.5rem, 6vw, 5rem);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.close__card::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    top: -120px;
    right: -80px;
}

.close__h {
    color: #fff;
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    max-width: 18ch;
    margin: .4rem auto 1rem;
}

.close__p {
    color: #dbeede;
    max-width: 42ch;
    margin: 0 auto 2rem;
}

/* ===================== FOOTER ===================== */
.foot {
    max-width: var(--max);
    margin: 0 auto;
    padding: 3rem clamp(1.2rem, 5vw, 3rem) 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.foot__brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--ink);
}

.foot__brand small {
    display: block;
    font-family: var(--sans);
    font-weight: 500;
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    margin-top: .2rem;
}

.foot__made {
    font-size: .82rem;
    color: var(--body);
    max-width: 40ch;
}

.foot__made a {
    color: var(--green-d);
    font-weight: 600;
    border-bottom: 1px solid var(--green-soft);
}

/* ===================== DOCK (CTA mobile) ===================== */
.dock {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 600;
    display: none;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: 1rem;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 16px 34px -12px rgba(31, 138, 84, .8);
    transform: translateY(140%);
    transition: transform .5s var(--ease);
}

.dock.on {
    transform: none;
}

.dock .btn__i {
    width: 20px;
    height: 20px;
}

@media (max-width:560px) {
    .dock {
        display: flex;
    }
}

/* ===================== REVEAL ===================== */
html.motion [data-fx] {
    opacity: 0;
    transform: translateY(26px);
}

html.motion [data-lines] {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition-duration: .001ms !important;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: #cfe0d2;
    border-radius: 10px;
    border: 2px solid var(--cream);
}
