/* =============================================
   LÉVESSY — Premium CSS v2
   Clean sections, no waves, SVG icons
   ============================================= */

:root {
    --green: #1e3a27;
    --green-mid: #2a5038;
    --green-light: #eaf1ec;
    --green-xlight: #f2f7f3;
    --orange: #e06418;
    --orange-hover: #c8570f;
    --orange-light: #fef3eb;
    --orange-mid: #f07830;
    --cream: #faf7f2;
    --cream-dark: #f2ece3;
    --white: #ffffff;
    --text: #1a2414;
    --text-mid: #4a3f2f;
    --text-muted: #8a7a68;
    --border: rgba(30, 58, 39, .10);
    --border-light: rgba(30, 58, 39, .06);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

    --hero-size: clamp(2.25rem, 6vw, 4.5rem);
    --h2-size: clamp(1.85rem, 4vw, 2.75rem);
    --h3-size: clamp(1.5rem, 3vw, 2.125rem);
    --body-lg: clamp(1rem, 1.25vw, 1.125rem);

    --py: clamp(4.5rem, 12vw, 10rem);
    --px: clamp(1.25rem, 5vw, 3rem);
    --max: 1440px;
    --narrow: 960px;

    --r-xs: 8px;
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 32px;
    --r-xl: 48px;
    --r-2xl: 64px;
    --r-pill: 999px;

    --shadow-sm: 0 4px 12px rgba(30, 58, 39, .05);
    --shadow-md: 0 12px 32px rgba(30, 58, 39, .08);
    --shadow-lg: 0 24px 64px rgba(30, 58, 39, .12);
    --shadow-xl: 0 40px 100px rgba(30, 58, 39, .18);
    --shadow-orange: 0 8px 32px rgba(224, 100, 24, .35);

    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ─── RESET ──────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    scroll-padding-top: 110px;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
}

body.nav-open {
    overflow: hidden;
    touch-action: none;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="n"><feTurbulence baseFrequency=".9" numOctaves="3"/></filter><rect width="400" height="400" filter="url(%23n)" opacity=".04"/></svg>');
    pointer-events: none;
    z-index: 9999;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(42rem 30rem at 8% 0%, rgba(224, 100, 24, 0.10), transparent 65%),
        radial-gradient(38rem 28rem at 92% 14%, rgba(30, 58, 39, 0.10), transparent 70%);
    opacity: 0.65;
    animation: ambient-shift 14s ease-in-out infinite alternate;
}

@keyframes ambient-shift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(0, -1.5%, 0) scale(1.04);
    }
}

img {
    display: block;
    max-width: 100%
}

a {
    text-decoration: none;
    color: inherit
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit
}

section[id] {
    scroll-margin-top: 110px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 10px;
}

.container {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.narrow {
    max-width: var(--narrow);
    margin-inline: auto
}

.center {
    text-align: center
}

.mx-auto {
    display: block;
    margin-inline: auto
}

.mt-2xl {
    margin-top: clamp(3rem, 5vw, 4.5rem)
}

/* ─── LABEL / EYEBROW ────────────── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-light);
    border: 1.5px solid rgba(224, 100, 24, .18);
    padding: .45em 1.1em;
    border-radius: var(--r-pill);
    margin-bottom: 1.75rem;
}

.eyebrow-green {
    color: var(--green);
    background: var(--green-light);
    border-color: rgba(30, 58, 39, .14)
}

.eyebrow-white {
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .18)
}

/* ─── HEADINGS ───────────────────── */
.h1 {
    font-family: var(--font-display);
    font-size: var(--hero-size);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -.03em;
    color: var(--green)
}

.h2 {
    font-family: var(--font-display);
    font-size: var(--h2-size);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.025em;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.h2 em,
.h1 em {
    font-style: italic;
    color: var(--orange)
}

.h2-light {
    color: var(--white)
}

.sub {
    font-size: var(--body-lg);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 54ch;
    margin-bottom: 3rem;
}

.sub-light {
    color: rgba(255, 255, 255, .7)
}

/* ─── BUTTONS ────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .9375rem;
    padding: .875em 2em;
    border-radius: var(--r-pill);
    transition: all .22s var(--ease);
    white-space: nowrap;
    text-decoration: none;
}

/* Crealoo-style: pill + circle arrow */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.375rem;
    min-height: 64px;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 12px 40px rgba(224, 100, 24, .50);
    transition: all .25s var(--ease);
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    animation: cta-pulse 3s ease-in-out infinite;
    position: relative;
    isolation: isolate;
}

@keyframes cta-pulse {

    0%,
    100% {
        box-shadow: 0 12px 48px rgba(224, 100, 24, .45);
    }

    50% {
        box-shadow: 0 12px 60px rgba(224, 100, 24, .65), 0 0 0 12px rgba(224, 100, 24, .08);
    }
}

.btn-cta-text {
    padding: .9em 1.1em .9em 1.6em;
    line-height: 1;
    flex: 1;
    text-align: center;
}

.btn-cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 6px 6px 6px 0;
    margin-left: auto;
    flex-shrink: 0;
    transition: background .22s var(--ease), transform .22s var(--ease);
}

.btn-cta::before,
.btn-buy::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg,
            transparent 22%,
            rgba(255, 255, 255, 0.26) 48%,
            transparent 72%);
    transform: translateX(-135%);
    transition: transform .85s var(--ease);
    z-index: 0;
}

.btn-cta>*,
.btn-buy>* {
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    background: var(--orange-hover);
    box-shadow: 0 10px 40px rgba(224, 100, 24, .42);
    transform: translateY(-2px);
}

.btn-cta:hover .btn-cta-icon {
    background: rgba(255, 255, 255, .34);
    transform: rotate(-45deg);
}

.btn-cta:hover::before,
.btn-cta:focus-visible::before,
.btn-buy:hover::before,
.btn-buy:focus-visible::before {
    transform: translateX(135%);
}

.btn-cta-green {
    background: var(--green);
    box-shadow: 0 6px 32px rgba(30, 58, 39, .30);
}

.btn-cta-green:hover {
    background: var(--green-mid);
    box-shadow: 0 10px 40px rgba(30, 58, 39, .38);
}

.btn-cta-problem {
    transform: scale(0.9);
}

.btn-cta-problem .btn-cta-text {
    font-size: 1.125rem;
}

.btn-lg {
    font-size: 1.0625rem;
    padding: 1em 2.4em
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(224, 100, 24, .38)
}

.btn-primary:active {
    transform: translateY(0)
}

.btn-green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(30, 58, 39, .25)
}

.btn-green:hover {
    background: var(--green-mid);
    transform: translateY(-2px)
}

.btn-white {
    background: var(--white);
    color: var(--green);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12)
}

.btn-white:hover {
    transform: translateY(-2px);
    background: var(--cream)
}

.btn-ghost {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--border);
    padding: .8em 1.8em
}

.btn-ghost:hover {
    border-color: var(--green);
    background: var(--green-xlight)
}

.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .35);
    padding: .8em 1.8em;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-family: var(--font-body);
    font-size: .9375rem;
    transition: all .22s var(--ease);
    white-space: nowrap;
}

.btn-ghost-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .1)
}

.btn svg {
    flex-shrink: 0;
    transition: transform .2s var(--ease)
}

.btn:hover svg {
    transform: translateX(3px)
}

/* ─── NAV — Floating Island ─────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem var(--px);
    transition: padding .5s var(--ease);
}

.nav-inner {
    max-width: 1000px;
    margin-inline: auto;
    padding: 1rem 1rem 1rem 2.5rem;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(30, 58, 39, .08);
    border-radius: var(--r-pill);
    box-shadow: 0 10px 30px rgba(30, 58, 39, .08);
    transition: all .4s var(--ease);
}

.nav.scrolled {
    padding-top: 1rem;
}

.nav.scrolled .nav-inner {
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 20px 50px rgba(30, 58, 39, .12);
    border-color: rgba(30, 58, 39, .12);
}

.nav-logo img {
    height: 34px;
    width: auto;
    transition: transform .3s var(--ease);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin-left: auto;
    margin-right: 2rem;
}

@media (max-width: 1024px) {

    .nav-links,
    .btn-nav {
        display: none !important;
    }

    .nav-inner {
        padding: 0.6rem 0.6rem 0.6rem 1.75rem;
        max-width: calc(100% - 2rem);
    }
}

.nav-links a {
    font-size: .8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-mid);
    transition: color .3s var(--ease);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--orange);
    transition: width .3s var(--ease);
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    font-size: .875rem;
    font-weight: 700;
    background: var(--orange);
    color: var(--white);
    padding: .85em 2rem;
    border-radius: var(--r-pill);
    transition: all .2s var(--ease);
    box-shadow: 0 2px 12px rgba(224, 100, 24, .30);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .4rem;
    flex-shrink: 0;
}

.btn-nav:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(224, 100, 24, .38)
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 991px) {
    .nav-inner {
        padding: 0.75rem 1.25rem;
    }

    .nav-links,
    .btn-nav {
        display: none;
        /* Hide on mobile/tablet to show burger */
    }

    .nav-burger {
        display: flex;
        /* Show burger on mobile/tablet */
    }
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: .25s
}

.nav-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.nav-burger.open span:nth-child(2) {
    opacity: 0
}

.nav-burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.nav-mobile {
    position: fixed;
    top: 5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(30, 58, 39, 0.15);
    z-index: 999;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-mobile a:last-of-type {
    border-bottom: none;
}

.btn-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.btn-mobile-cta svg {
    margin-left: auto;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .nav-mobile {
        top: calc(4.8rem + env(safe-area-inset-top));
        left: 1rem;
        right: 1rem;
        max-height: calc(100dvh - 7rem - env(safe-area-inset-top));
        overflow-y: auto;
        padding: 1.25rem;
        border-radius: 24px;
    }

    .nav-mobile a {
        font-size: 1rem;
        padding: 0.85rem 0.75rem;
    }
}

/* ─── HERO ───────────────────────── */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--cream);
    padding-top: 6rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1025px) {
    .hero {
        padding-top: 8rem;
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 5rem;
        padding-bottom: 2rem;
        text-align: center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        justify-items: center;
    }

    .hero-content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        order: 2;
        justify-content: center;
        padding-top: 1.5rem;
        width: 100%;
    }

    .hero-product {
        margin-inline: auto;
        max-width: 480px;
        /* Prevent overscaling on tablet */
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-desc {
        margin-inline: auto;
    }
}

.hero-title {
    font-size: var(--hero-size);
    line-height: .95;
    letter-spacing: -.04em;
    margin-bottom: 2rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    display: block;
    margin-top: .1em;
}

.hero-title-break {
    display: block;
}

.hero-desc {
    font-size: clamp(.9375rem, 1.3vw, 1.0625rem);
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 46ch
}

.hero-desc strong {
    color: var(--green)
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted)
}

.trust-row-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.5rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--green-mid);
}

.trust-row-hero span {
    gap: 0.55rem;
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(30, 58, 39, 0.12);
    background: rgba(255, 255, 255, 0.68);
    min-height: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.trust-row-hero svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.trust-row span {
    display: flex;
    align-items: center;
    gap: .4rem
}

.trust-row svg {
    color: var(--orange);
    width: 18px;
    height: 18px;
}

.proof-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: .875rem 1.25rem;
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

.proof-faces {
    display: flex
}

.proof-faces img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    margin-right: -9px
}

.proof-count {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: .625rem;
    font-weight: 800;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.proof-info {
    font-size: .8125rem;
    color: var(--text-muted);
    line-height: 1.4;
    padding-left: .25rem
}

.proof-stars {
    color: #F59E0B;
    font-size: .875rem;
    letter-spacing: .04em;
    margin-bottom: .15rem
}

.proof-info strong {
    color: var(--green)
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Alinha a imagem colada à direita */
    padding-top: 0;
}

.hero-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 100, 24, .10) 0%, rgba(250, 200, 100, .05) 50%, transparent 70%);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-product {
    position: relative;
    z-index: 1;
    width: 100%;
    /* Ajustado para imagem natural */
    max-width: 720px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-right: 0;
    mix-blend-mode: multiply;
    /* Ajustado blend para a nova imagem */
    filter: drop-shadow(0 30px 50px rgba(30, 58, 39, 0.18));
    transition: transform 0.6s var(--ease);
}

.hero-product:hover {
    transform: translateY(-4px) scale(1.02);
}


.float-tag {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .88);
    border: 1.5px solid rgba(30, 58, 39, .10);
    border-radius: var(--r-pill);
    padding: .55em 1.1em;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--green);
    box-shadow: 0 4px 20px rgba(30, 58, 39, .10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.float-tag svg {
    color: var(--orange)
}

.tag-1 {
    top: 5%;
    left: 2%;
}

.tag-2 {
    bottom: 15%;
    left: 4%;
}

.tag-3 {
    top: 45%;
    right: 2%;
}

@media (max-width: 640px) {
    .float-tag {
        display: none;
        /* Hide cluttered tags on small screens */
    }
}

/* ─── MARQUEE — Premium Pill Style ── */
.marquee-section {
    background: var(--orange);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.marquee-track {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    gap: 1rem;
}

.marquee-inner {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    min-width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-section:hover .marquee-inner {
    animation-play-state: paused;
}

.marquee-inner span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--white);
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.18);
    border-radius: var(--r-pill);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.marquee-inner span.accent {
    background: rgba(255, 255, 255, 0.28);
    color: var(--white);
    font-weight: 800;
}

.marquee-inner svg {
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

/* ─── METRICS — verde escuro ─── */
.metrics-section {
    background: var(--green);
    padding: var(--py) 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.metrics-section .section-label {
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .8);
    border-color: rgba(255, 255, 255, .1);
}

.metrics-section .h2 {
    color: var(--white);
}

.metrics-section .sub {
    color: rgba(255, 255, 255, .7);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

.metric-card {
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-xl);
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: transform .25s var(--ease), box-shadow .25s;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, .06), transparent);
    pointer-events: none;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .12);
}

.metric-card.featured {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 8px 32px rgba(224, 100, 24, .40);
}

.metric-card.featured .metric-num,
.metric-card.featured .metric-label {
    color: var(--white)
}

.metric-num {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: .5rem;
    display: block;
}

.metric-card.featured .metric-num {
    color: var(--white);
}

.metric-label {
    font-size: .8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .01em
}



/* ─── PROBLEM — cream warm ───── */
.problem-section {
    background: var(--cream-dark);
    padding: var(--py) 0;
    border-top: 1px solid rgba(30, 58, 39, .07);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin: 1.75rem 0
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    font-size: .9375rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.check-dot {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange-light);
    border: 1.5px solid rgba(224, 100, 24, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.check-dot svg {
    color: var(--orange)
}

.problem-bridge {
    background: var(--green);
    color: var(--white);
    padding: 1.75rem 2rem;
    border-radius: var(--r-xl);
    margin-top: 1.25rem;
}

.problem-bridge p {
    font-size: .9375rem;
    line-height: 1.7;
    margin-bottom: .75rem
}

.problem-bridge p:last-child {
    margin: 0
}

.bridge-accent {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--orange)
}

.photo-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

@media (max-width: 1024px) {
    .photo-mosaic {
        grid-template-columns: 1fr;
    }

    .mosaic-main img {
        height: 280px;
    }

    .mosaic-sub {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .mosaic-sub-item img {
        height: 180px;
    }
}

.mosaic-main {
    position: relative;
    grid-row: 1/3
}

.mosaic-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--r-xl)
}

.mosaic-sub {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.mosaic-sub-item {
    position: relative;
    flex: 1
}

.mosaic-sub-item img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    border-radius: var(--r-lg)
}

.photo-pill {
    position: absolute;
    bottom: .75rem;
    left: .75rem;
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .35em .9em;
    border-radius: var(--r-pill);
    backdrop-filter: blur(8px);
}

.pill-before {
    background: rgba(255, 255, 255, .85);
    color: var(--text-muted)
}

.pill-after {
    background: var(--orange);
    color: var(--white)
}

/* ─── SOLUTION BANNER ────────────── */
.solution-section {
    background: var(--green);
    padding: clamp(4rem, 7vw, 7rem) 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.solution-section .h2 {
    color: var(--white)
}

.solution-section .h2 em {
    color: var(--orange)
}

/* ─── HOW IT WORKS ───────────────── */
.how-section {
    background: var(--cream);
    padding: var(--py) 0;
    border-top: 1px solid var(--border-light);
}

.phase-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .5em 1.25em;
    border-radius: var(--r-pill);
    margin-bottom: 2rem;
}

.phase-badge-orange {
    background: var(--orange-light);
    color: var(--orange);
    border: 1.5px solid rgba(224, 100, 24, .2)
}

.phase-badge-green {
    background: var(--green-light);
    color: var(--green);
    border: 1.5px solid rgba(30, 58, 39, .14)
}

.phase-badge svg {
    flex-shrink: 0
}

.how-section {
    position: relative;
    overflow: hidden;
}

.phase-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(30, 58, 39, 0.08);
    border-radius: 48px;
    padding: clamp(2rem, 5vw, 4rem);
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

@media (max-width: 1024px) {
    .phase-new {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 2.5rem 1.5rem;
        border-radius: 32px;
    }

    .phase-new.reverse {
        direction: ltr;
    }

    .phase-new.reverse .phase-new-visual {
        order: -1;
    }

    .phase-new-content {
        align-items: center;
        /* Center everything including the badge */
    }

    .phase-new-visual {
        aspect-ratio: 1/1.2;
        /* Taller images as requested */
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
    }

    .ing-grid-new {
        grid-template-columns: 1fr;
        /* 1 per line for readability */
        width: 100%;
    }

    .phase-new-badge {
        margin-inline: auto;
    }
}

.phase-new.reverse {
    direction: rtl;
}

.phase-new.reverse>* {
    direction: ltr;
}

.phase-new-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1/1.1;
    box-shadow: var(--shadow-xl);
}

.phase-new-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.phase-new:hover .phase-new-bg {
    transform: scale(1.05);
}

.phase-new-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 39, 0.5), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
}

.phase-new-prod {
    width: 50%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    transition: all 0.8s var(--ease);
}

.phase-new:hover .phase-new-prod {
    transform: translateY(-10px) scale(1.04);
}

.phase-new-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phase-new-badge {
    display: inline-flex;
    padding: 0.6rem 1.2rem;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--r-pill);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    width: fit-content;
}

.phase-new-badge.badge-green {
    background: var(--green);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.phase-new-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: var(--green);
    line-height: 1.1;
}

.phase-new-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.ing-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.ing-card-new {
    background: var(--cream);
    border: 1px solid rgba(30, 58, 39, 0.05);
    padding: 1.5rem;
    border-radius: 24px;
    transition: all 0.3s var(--ease);
}

.ing-card-new:hover {
    background: var(--white);
    transform: translateY(-5px);
    border-color: var(--orange-mid);
    box-shadow: var(--shadow-md);
}

.ing-card-icon {
    font-size: 1.25rem;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.ing-card-new strong {
    display: block;
    font-size: 0.95rem;
    color: var(--green);
    margin-bottom: 0.25rem;
}

.ing-card-new span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}



/* ─── MANIFESTO SECTION ──────────── */
.manifesto-section {
    position: relative;
    padding: var(--py) 0;
    overflow: hidden;
}

.manifesto-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.manifesto-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.manifesto-section .container {
    position: relative;
    z-index: 2;
}

.manifesto-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.manifesto-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: transform .4s var(--ease);
}

.manifesto-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.manifesto-num {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--orange);
    line-height: 1;
}

.manifesto-text {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.manifesto-text strong {
    display: block;
    font-size: 1.15rem;
    color: var(--green);
    margin-bottom: 0.4rem;
}

.manifesto-quote {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--green);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.manifesto-quote span {
    display: block;
    margin-top: 1rem;
    font-size: 0.45em;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: normal;
    color: var(--orange);
}

@media (max-width: 768px) {
    .manifesto-list {
        grid-template-columns: 1fr;
    }

    .manifesto-item {
        padding: 2rem;
    }
}

/* ─── TESTIMONIALS ───────────────── */
.testi-section {
    background: var(--white);
    padding: var(--py) 0;
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.testi-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(224, 100, 24, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(30, 58, 39, 0.03) 0%, transparent 50%);
    pointer-events: none;
}


.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 640px) {
    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }
}

.ba-card {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    transition: all .4s var(--ease);
    border: 1px solid var(--border-light);
}

.ba-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-mid);
}

.ba-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--r-xl) - 0.5rem);
}

.ba-badge {
    display: none;
}

.ba-result-label {
    text-align: center;
    font-weight: 800;
    color: var(--green);
    background: var(--cream-dark);
    padding: 1.125rem 1rem;
    font-size: 1rem;
    margin-top: 1rem;
    border-radius: var(--r-md);
    letter-spacing: -0.01em;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all .4s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-mid);
}

.review-card.featured {
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 12px 40px rgba(30, 58, 39, 0.2);
}

.review-stars {
    display: flex;
    gap: .2rem
}

.review-stars svg {
    color: #F59E0B
}

.review-card.featured .review-stars svg {
    color: #FCD34D
}

.review-quote {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.65;
    font-style: italic;
    flex: 1;
}

.review-card.featured .review-quote {
    color: rgba(255, 255, 255, .78)
}

.review-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 16px rgba(30, 58, 39, .12);
    flex-shrink: 0
}

.review-author strong {
    display: block;
    font-size: .875rem;
    font-weight: 700;
    color: var(--green)
}

.review-card.featured .review-author strong {
    color: var(--white)
}

.review-author span {
    font-size: .75rem;
    color: var(--text-muted)
}

.review-card.featured .review-author span {
    color: rgba(255, 255, 255, .45)
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: .15rem
}

.verified svg {
    color: var(--orange)
}

/* ─── PRODUCTS ───────────────────── */
.products-section {
    background: var(--green);
    padding: var(--py) 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
    /* Garante que os cards tenham a mesma altura */
    margin-bottom: 4rem;
}

@media (max-width: 1200px) {
    .product-cards {
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .product-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .product-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
        gap: 2.5rem;
    }
}

.p-card {
    background: var(--white);
    border-radius: 48px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    position: relative;
    border: 1px solid var(--border-light);
    transition: all .5s var(--ease);
}

.p-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--orange-mid);
}

.p-card.p-featured {
    background: linear-gradient(165deg, var(--orange) 0%, #D65510 100%);
    box-shadow: 0 30px 60px rgba(224, 100, 24, 0.35);
    border: none;
    z-index: 10;
}

.p-card.p-featured::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 70%);
    pointer-events: none;
}

@media (min-width: 1025px) {
    .p-card.p-featured {
        transform: scale(1.05);
    }

    .p-card.p-featured:hover {
        transform: scale(1.05) translateY(-12px);
    }
}

.p-badge-featured {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.6rem 1.5rem;
    border-radius: var(--r-pill);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 20;
    white-space: nowrap;
}

.p-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-light);
    border: 1.5px solid rgba(224, 100, 24, .18);
    padding: .4em 1em;
    border-radius: var(--r-pill);
    width: fit-content;
    align-self: center;
    margin-bottom: 1.5rem;
    /* Descola do conteúdo abaixo */
}

.p-card.p-featured .p-badge {
    color: var(--white);
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .2)
}

.p-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
    /* Descola do título abaixo */
}

.p-card.p-featured .p-img-wrap {
    background: transparent;
}

.p-img-wrap img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transform: scale(1.15);
    transition: transform 0.4s var(--ease);
}

.p-card:hover .p-img-wrap img {
    transform: scale(1.22) translateY(-5px);
}

.p-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1.1;
    margin: 0;
}

.p-card.p-featured .p-name {
    color: var(--white)
}

.p-sub {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--text-muted)
}

.p-card.p-featured .p-sub {
    color: rgba(255, 255, 255, .65)
}

.p-desc {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.65
}

.p-card.p-featured .p-desc {
    color: rgba(255, 255, 255, .72)
}

.p-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 0.5rem;
}

.p-tags span {
    font-size: .625rem;
    font-weight: 800;
    padding: .4em 1em;
    border-radius: var(--r-pill);
    background: var(--green-light);
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.p-card.p-featured .p-tags span {
    background: rgba(255, 255, 255, .15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* p-benefits list */
.p-benefits {
    list-style: none;
    margin: 0.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    width: 100%;
}

.p-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-mid);
}

.p-card.p-featured .p-benefits li {
    color: rgba(255, 255, 255, 0.9);
}

.p-benefits li svg {
    color: var(--orange);
    flex-shrink: 0;
}

.p-card.p-featured .p-benefits li svg {
    color: var(--white);
}

.p-price {
    margin-top: auto;
    padding-top: 1rem;
    width: 100%;
}

.p-price-main {
    font-family: var(--font-display);
    font-size: 3.75rem;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.p-price-main sup {
    font-size: 1.15rem;
    margin-top: 0.6rem;
    margin-right: 0.1rem;
}

.p-price-main span {
    font-size: 1.25rem !important;
    margin-top: 0.5rem;
}

.p-card.p-featured .p-price-main {
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.p-price-inst {
    font-size: .8125rem;
    color: var(--text-muted);
    margin-top: .5rem;
    font-weight: 600;
}

.p-card.p-featured .p-price-inst {
    color: rgba(255, 255, 255, .75);
}

/* btn-buy — Crealoo style */
.btn-buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    font-weight: 800;
    font-size: 1.125rem;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--r-pill);
    transition: all .25s var(--ease);
    box-shadow: 0 8px 32px rgba(224, 100, 24, .35);
    margin-top: 1rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.btn-buy-label {
    padding: 1.125rem 0;
    flex: 1;
    text-align: center;
    line-height: 1;
    padding-left: 54px;
    /* compensate for circle to perfect center */
}

.btn-buy-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 5px 5px 0;
    flex-shrink: 0;
    transition: background .22s, transform .22s var(--ease);
}

.btn-buy:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(224, 100, 24, .45);
}

.btn-buy:hover .btn-buy-circle {
    background: rgba(255, 255, 255, .25);
    transform: rotate(-45deg);
}

.p-card.p-featured .btn-buy {
    background: var(--green);
    box-shadow: 0 6px 28px rgba(30, 58, 39, .25);
}

.p-card.p-featured .btn-buy:hover {
    background: var(--green-mid);
    box-shadow: 0 10px 36px rgba(30, 58, 39, .35);
}

.p-card.p-featured .btn-buy-circle {
    background: rgba(255, 255, 255, .15);
}



.bundle-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.bundle-icon svg {
    color: rgba(255, 255, 255, .85)
}

.bundle-text {
    flex: 1;
    font-size: .9375rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.5
}

.bundle-text strong {
    color: var(--white)
}

.btn-bundle {
    flex-shrink: 0;
    font-weight: 700;
    font-size: .875rem;
    white-space: nowrap;
    background: var(--white);
    color: var(--green);
    padding: .75em 1.5em;
    border-radius: var(--r-pill);
    transition: all .2s var(--ease);
}

.btn-bundle:hover {
    transform: translateY(-2px);
    background: var(--cream)
}

.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 5rem);
    margin-top: 6rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    font-weight: 600;
}

.trust-item svg {
    color: var(--orange);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-bar {
        gap: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
}

/* ─── GUARANTEE ──────────────────── */
.guarantee-section {
    background: var(--cream-dark);
    padding: clamp(5rem, 8vw, 7rem) 0;
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.guarantee-inner {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    max-width: 900px;
    margin-inline: auto;
    background: var(--white);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 48px;
    box-shadow: 0 30px 60px rgba(30, 58, 39, 0.06);
    border: 1px solid var(--border-light);
    position: relative;
}

.guarantee-badge-anim {
    position: relative;
    width: clamp(180px, 20vw, 240px);
    height: clamp(180px, 20vw, 240px);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gb-spin {
    position: absolute;
    inset: 0;
    animation: rotate-badge 30s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gb-spin text {
    fill: var(--green);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

@keyframes rotate-badge {
    to {
        transform: rotate(360deg);
    }
}

.gb-center {
    width: clamp(100px, 12vw, 130px);
    height: clamp(100px, 12vw, 130px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, #D65510 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(224, 100, 24, 0.3);
    position: relative;
}

.gb-center::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1.5px solid var(--orange-light);
    background: transparent;
}

.gb-center::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dotted rgba(255, 255, 255, 0.4);
    animation: rotate-badge 10s linear infinite reverse;
}

.guarantee-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--green);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.guarantee-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7
}

.guarantee-text strong {
    color: var(--green);
    font-weight: 800;
}


@media (max-width: 768px) {
    .guarantee-inner {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 3rem 2rem;
    }

    .guarantee-text h2 {
        font-size: 1.75rem;
    }
}

/* ─── FAQ ────────────────────────── */
.faq-section {
    background: var(--white);
    padding: var(--py) 0;
    border-top: 1px solid var(--border-light);
}

.faq-section {
    background: var(--white);
    padding: var(--py) 0;
    position: relative;
    overflow: hidden;
}

.faq-content-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .faq-content-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.faq-header-new {
    position: relative;
    margin-bottom: 3rem;
}

.faq-watermark {
    position: absolute;
    top: -2.5rem;
    left: -1rem;
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 900;
    color: var(--green);
    opacity: 0.03;
    pointer-events: none;
    line-height: 1;
}

.faq-left {
    position: relative;
    z-index: 2;
}

.faq-visual-new {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-img-square {
    width: 80%;
    aspect-ratio: 4 / 5;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 8px solid var(--white);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.faq-img-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-img-float {
    position: absolute;
    bottom: -5%;
    right: -10%;
    width: 65%;
    aspect-ratio: 1;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--white);
    transform: translate(15%, 15%);
    animation: floatB 7s ease-in-out infinite;
    z-index: 2;
}

.faq-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1025px) {
    .faq-img-float {
        display: none;
    }
}

@media (max-width: 1024px) {
    .faq-visual-new {
        min-height: 400px;
        margin-top: 2rem;
    }

    .faq-img-square {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .faq-visual-new {
        min-height: 350px;
        margin-top: 2rem;
    }

    .faq-img-float {
        transform: translate(5%, 5%);
        width: 75%;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--green-xlight);
    border: 1px solid rgba(30, 58, 39, 0.05);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    transition: all 0.3s var(--ease);
}

@media (max-width: 640px) {
    .faq-item {
        padding: 1.25rem 1rem;
    }
}

.faq-item:hover {
    background: var(--white);
    border-color: var(--orange-mid);
    box-shadow: var(--shadow-md);
}

.faq-item.open {
    border-color: rgba(224, 100, 24, .28)
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green);
    font-family: var(--font-body);
    transition: color .2s;
}

.faq-q span {
    flex: 1;
}

.faq-q:hover {
    color: var(--orange)
}

.faq-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    transition: transform .3s var(--ease), background .2s, color .2s;
}

.faq-item.open .faq-chevron {
    transform: rotate(45deg);
    /* It is a plus icon, rotating 45deg makes it an X */
    color: var(--orange);
    background: var(--green-xlight);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), opacity 0.4s;
    opacity: 0;
}

.faq-item.open .faq-a {
    max-height: 800px;
    /* Allow more space for mobile text wrapping */
    margin-top: 1rem;
    opacity: 1;
}

.faq-a p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
}

/* ─── FINAL CTA ──────────────────── */
.final-section {
    background: var(--white);
    padding: var(--py) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-blob-a {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -120px;
    right: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 100, 24, .09) 0%, transparent 70%);
    pointer-events: none;
    will-change: transform;
}

.final-blob-b {
    position: absolute;
    width: 380px;
    height: 380px;
    bottom: -80px;
    left: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 58, 39, .07) 0%, transparent 70%);
    pointer-events: none;
    will-change: transform;
}

.final-inner {
    position: relative;
    z-index: 1
}

.final-title {
    margin-bottom: 1.25rem
}

.final-desc {
    font-size: var(--body-lg);
    color: var(--text-muted);
    max-width: 46ch;
    margin: 0 auto 2.5rem;
    line-height: 1.7
}

.final-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .final-trust {
        flex-direction: column;
        gap: 1rem;
    }
}

.final-trust span {
    display: flex;
    align-items: center;
    gap: .4rem
}

.final-trust svg {
    color: var(--orange);
    width: 18px;
    height: 18px;
}

/* ─── FOOTER ─────────────────────── */
.footer {
    background: var(--green);
    border-top-left-radius: 64px;
    border-top-right-radius: 64px;
    margin-top: -64px;
    position: relative;
    z-index: 5;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-top: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        margin-top: -40px;
        text-align: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-brand,
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col a {
        justify-content: center;
    }
}

.footer-logo-img {
    height: 36px;
    width: auto;
    margin-bottom: 1rem
}

.footer-brand p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .45);
    max-width: 26ch;
    line-height: 1.6
}

.footer-col h4 {
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 1.25rem
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: .625rem;
    transition: color .2s
}

.footer-col a:hover {
    color: var(--white)
}

.footer-col a svg {
    color: var(--orange);
    flex-shrink: 0
}

.footer-bottom {
    padding: 1.625rem var(--px);
    text-align: center
}

.footer-bottom p {
    font-size: .75rem;
    color: rgba(255, 255, 255, .28);
    line-height: 1.7
}

.footer-bottom a {
    color: rgba(255, 255, 255, .45);
    transition: color .2s
}

.footer-bottom a:hover {
    color: var(--white)
}

/* ─── MOBILE STICKY ──────────────── */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: .75rem var(--px);
    background: rgba(250, 247, 242, .96);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 20px rgba(30, 58, 39, .1);
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
}

.btn-mobile-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    font-weight: 700;
    font-size: .9375rem;
    background: var(--orange);
    color: var(--white);
    padding: .9em;
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-orange);
    transition: background .2s;
}

.btn-mobile-sticky:active {
    background: var(--orange-hover)
}

.btn-mobile-sticky svg {
    transition: transform .2s var(--ease)
}

/* ─── ANIMATIONS ─────────────────── */
@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translateY(0) rotate(-.5deg)
    }

    50% {
        transform: translateY(-8px) rotate(.5deg)
    }
}

.float-anim {
    animation: float 5.5s ease-in-out infinite
}

.float-anim-b {
    animation: floatB 7s ease-in-out infinite
}

.delay-1 {
    animation-delay: 1s
}

.delay-2 {
    animation-delay: 2s
}

@keyframes pulse-ring {

    0%,
    100% {
        box-shadow: var(--shadow-orange)
    }

    60% {
        box-shadow: 0 6px 32px rgba(224, 100, 24, .5), 0 0 0 8px rgba(224, 100, 24, .12)
    }
}

.pulse-cta {
    animation: pulse-ring 2.5s ease-in-out infinite
}

[data-reveal] {
    opacity: 1;
    transform: none;
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

body.js-enhanced [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
}

body.js-enhanced [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

body.motion-enhanced .metric-card,
body.motion-enhanced .problem-card,
body.motion-enhanced .review-card,
body.motion-enhanced .p-card,
body.motion-enhanced .trust-item,
body.motion-enhanced .faq-item {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    transition:
        opacity .72s var(--ease),
        transform .72s var(--ease);
    transition-delay: var(--stagger, 0ms);
}

body.motion-enhanced .metric-card.is-inview,
body.motion-enhanced .problem-card.is-inview,
body.motion-enhanced .review-card.is-inview,
body.motion-enhanced .p-card.is-inview,
body.motion-enhanced .trust-item.is-inview,
body.motion-enhanced .faq-item.is-inview {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ─── RESPONSIVE ─────────────────── */
@media(max-width:1024px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .review-grid {
        grid-template-columns: 1fr 1fr
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-main {
        grid-template-columns: 1fr 1fr
    }

    .footer-brand {
        grid-column: 1/-1
    }
}

@media(max-width:768px) {

    .nav {
        padding-top: calc(env(safe-area-inset-top) + 0.6rem);
        padding-right: 0.75rem;
        padding-bottom: 0;
        padding-left: 0.75rem;
    }

    .nav-inner {
        max-width: none;
        width: 100%;
        min-height: 62px;
        padding: 0.55rem 0.7rem 0.55rem 1rem;
        border-radius: 20px;
    }

    .nav-logo img {
        height: clamp(30px, 8vw, 36px);
        max-width: 56vw;
        object-fit: contain;
    }

    .nav-burger {
        width: 42px;
        height: 42px;
        padding: 0;
        gap: 4px;
        justify-content: center;
        align-items: center;
    }

    .nav-burger span {
        width: 20px;
    }

    .nav-links,
    .btn-nav {
        display: none
    }

    .nav-burger {
        display: flex
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title,
    .hero-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        order: -1
    }

    .hero-desc,
    .proof-strip {
        margin-inline: auto
    }

    .hero-actions {
        justify-content: center
    }

    .trust-row {
        justify-content: center
    }

    .hero-product {
        max-height: 260px
    }

    .float-tag {
        display: none
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .problem-grid {
        grid-template-columns: 1fr
    }

    .photo-mosaic {
        max-width: 400px;
        margin-inline: auto
    }

    .phase-grid,
    .phase-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr
    }

    .results-grid {
        grid-template-columns: 1fr
    }

    .review-grid {
        grid-template-columns: 1fr
    }

    .product-cards {
        grid-template-columns: 1fr;
        max-width: 420px
    }

    .kit-bundle {
        flex-direction: column;
        text-align: center
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr
    }

    .guarantee-inner {
        flex-direction: column;
        text-align: center
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .footer-brand {
        grid-column: auto
    }

    .mobile-sticky {
        display: block
    }

    main {
        padding-bottom: 76px
    }
}

@media(max-width:480px) {
    .ba-card {
        flex: 0 0 170px
    }

    .trust-grid {
        grid-template-columns: 1fr
    }
}

/* ====== ELEMENTOS DECORATIVOS ====== */
.hero-blob-1 {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 100, 24, .08) 0%, transparent 70%);
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.hero-blob-2 {
    position: absolute;
    bottom: 15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 39, .06) 0%, transparent 70%);
    border-radius: 60% 40% 40% 60% / 50% 60% 40% 50%;
    filter: blur(80px);
    z-index: 0;
    will-change: transform;
}

.section-green {
    position: relative;
    background: var(--green);
}

.section-green::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="n"><feTurbulence baseFrequency=".9" numOctaves="3"/></filter><rect width="400" height="400" filter="url(%23n)" opacity=".04"/></svg>');
    opacity: .15;
    pointer-events: none;
    z-index: 1;
}

.h2 {
    position: relative;
}

.h2::before {
    display: none;
}

section img {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(30, 58, 39, .08);
}

.hero img,
.hero-visual img {
    border-radius: 0;
    box-shadow: none;
}

/* ====== OVERRIDES DE ESPAÇAMENTO E GRID ====== */
p+p {
    margin-top: 1.25rem;
}

.hero-copy {
    max-width: 100%;
    text-align: left;
}

.hero-actions {
    justify-content: flex-start;
}

.hero-visual {
    margin-top: 0;
}

.review-grid,
.ba-scroll {
    gap: 2rem;
}

.ing-list {
    gap: 3rem 2rem;
}

.trust-grid {
    gap: 2.5rem;
}

/* ====== URGENCY E SETAS ====== */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(224, 100, 24, .1);
    color: var(--orange);
    font-size: .8125rem;
    font-weight: 700;
    padding: .6em 1.2em;
    border-radius: var(--r-pill);
    border: 1.5px solid rgba(224, 100, 24, .2);
    margin-bottom: 1rem;
    animation: urgency-shake 2s ease-in-out infinite;
}

@keyframes urgency-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-2px);
    }

    75% {
        transform: translateX(2px);
    }
}

.arrow-down {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    opacity: .3;
    animation: bounce 2s ease-in-out infinite;
    color: var(--text-muted);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ====== OFFER BADGE ====== */
.offer-badge {
    position: absolute;
    top: 6rem;
    right: var(--px);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--orange);
    color: var(--white);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .6em 1.4em;
    border-radius: var(--r-pill);
    box-shadow: 0 6px 24px rgba(224, 100, 24, .35);
    z-index: 10;
    animation: offer-pulse 2.5s ease-in-out infinite;
}

@keyframes offer-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

/* ====== COUNTDOWN BAR ====== */
.countdown-bar {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--orange);
    color: var(--white);
    font-size: .875rem;
    font-weight: 600;
    padding: .65em 1.5em;
    border-radius: var(--r-pill);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 18px rgba(224, 100, 24, .30);
    animation: countdown-glow 2s ease-in-out infinite;
}

.countdown-bar strong {
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    letter-spacing: .04em;
}

@keyframes countdown-glow {

    0%,
    100% {
        box-shadow: 0 4px 18px rgba(224, 100, 24, .30);
    }

    50% {
        box-shadow: 0 4px 28px rgba(224, 100, 24, .50), 0 0 0 6px rgba(224, 100, 24, .08);
    }
}

/* ====== PROBLEM SLIDER PREMIUM ====== */
.problem-section {
    background: var(--cream);
    padding: var(--py) 0;
    overflow: hidden;
}

.center-head {
    text-align: center;
    margin-bottom: 4rem;
}

.problem-carousel-container {
    width: 100%;
    padding: 2rem 0 5rem;
    position: relative;
}

.problem-swiper {
    padding: 0 var(--px) 60px !important;
    overflow: visible !important;
}

.problem-card {
    height: auto !important;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all .4s var(--ease);
    border: 1px solid var(--border-light);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--orange-mid);
}

.p-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.p-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.problem-card:hover .p-card-img img {
    transform: scale(1.08);
}

.p-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.p-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.p-card-body p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* Swiper Nav Overrides */
.problem-swiper .swiper-button-next,
.problem-swiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    color: var(--orange);
    box-shadow: var(--shadow-md);
    transition: all .3s var(--ease);
    top: 50%;
    transform: translateY(-50%);
}

.problem-swiper .swiper-button-prev {
    left: 10px;
}

.problem-swiper .swiper-button-next {
    right: 10px;
}

.problem-swiper .swiper-pagination {
    bottom: 6px !important;
}

.problem-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(30, 58, 39, 0.25);
    opacity: 1;
}

.problem-swiper .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 999px;
    background: var(--orange);
}

@media (max-width: 768px) {

    .problem-swiper .swiper-button-next,
    .problem-swiper .swiper-button-prev {
        display: none;
        /* Rely on drag/touch for mobile */
    }
}

/* Problem Footer Bar — Premium Look */
.problem-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--orange) 0%, #D65510 100%);
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(2rem, 6vw, 5rem);
    border-radius: 40px;
    gap: clamp(2rem, 8vw, 6rem);
    box-shadow: 0 25px 60px rgba(224, 100, 24, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.problem-footer-bar::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.problem-footer-bar::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-bar-text {
    flex: 1;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.footer-bar-text p:first-child {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    opacity: 0.95;
    line-height: 1.5;
}

.footer-bar-text p:last-child {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
}

.footer-bar-cta {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .problem-footer-bar {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2.5rem;
        border-radius: 32px;
    }

    .footer-bar-text {
        width: 100%;
    }

    .footer-bar-text p:last-child {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {

    .problem-swiper .swiper-button-next,
    .problem-swiper .swiper-button-prev {
        display: none;
    }
}

/* ─── SCROLL TO TOP PROGRESS ─── */
.scroll-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(30, 58, 39, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--green);
    transform: translateY(-4px);
}

.progress-ring {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg);
}

.progress-ring__circle {
    stroke-dasharray: 125.6;
    /* 2 * PI * 20 */
    stroke-dashoffset: 125.6;
    transition: stroke-dashoffset 0.1s linear;
}

.st-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s var(--ease);
}

.scroll-top-btn:hover .st-icon {
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .scroll-top-btn {
        right: 16px;
        bottom: 84px;
        /* Above mobile sticky */
    }
}

/* ====== MOBILE FIXES ====== */
.hero-copy,
.hero-desc,
.footer-bar-text p,
.faq-a p,
.p-card-body p {
    overflow-wrap: anywhere;
    word-break: normal;
}

.final-title-break {
    display: block;
}

@media (max-width: 768px) {
    .container {
        padding-inline: clamp(1rem, 4vw, 1.25rem);
    }

    .hero-title-break,
    .final-title-break {
        display: inline;
    }

    .hero {
        min-height: auto;
        padding-top: 6.6rem;
    }

    .hero-copy {
        padding-top: 0.75rem;
    }

    .hero-actions {
        width: 100%;
        gap: 0.75rem;
    }

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

    .hero-actions .btn-cta {
        width: 100%;
        justify-content: space-between;
    }

    .btn-cta {
        font-size: 1rem;
        min-height: 56px;
    }

    .btn-cta-text {
        padding: 0.8em 1.1em 0.8em 1.25em;
    }

    .btn-cta-icon {
        width: 52px;
        height: 52px;
        margin: 4px 4px 4px 0;
    }

    .trust-row-hero {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0.55rem;
        padding: 0.75rem;
        border-radius: 16px;
    }

    .trust-row-hero span {
        width: auto;
        white-space: normal;
        font-size: 0.95rem;
        line-height: 1.3;
        border-radius: 11px;
    }

    .nav-burger {
        min-width: 42px;
        min-height: 42px;
        justify-content: center;
    }

    .problem-swiper {
        padding: 0 1rem 56px !important;
    }

    .problem-footer-bar {
        padding: 1.5rem 1.1rem;
        gap: 1.25rem;
        border-radius: 22px;
    }

    .footer-bar-text p:first-child {
        font-size: 0.96rem;
    }

    .footer-bar-text p:last-child {
        font-size: 1.2rem;
        line-height: 1.32;
    }

    .footer-bar-cta {
        width: 100%;
    }

    .btn-cta-problem {
        width: 100%;
        transform: none;
    }

    .btn-cta-problem .btn-cta-text {
        font-size: 1rem;
    }

    .product-cards {
        max-width: 100%;
    }

    .p-card {
        border-radius: 28px;
        padding: 2rem 1.2rem;
    }

    .p-badge-featured {
        width: calc(100% - 2rem);
        max-width: 260px;
        text-align: center;
    }

    .faq-watermark {
        font-size: clamp(3.8rem, 16vw, 5.2rem);
        top: -1.2rem;
        left: 0;
    }

    .faq-left,
    .faq-header-new {
        text-align: center;
    }

    .faq-header-new .eyebrow {
        margin-inline: auto;
    }

    .faq-header-new .h2 {
        margin-inline: auto;
        max-width: 18ch;
    }

    .faq-watermark {
        left: 50%;
        transform: translateX(-50%);
    }

    .faq-visual-new {
        min-height: auto;
        margin-top: 0.25rem;
        padding-bottom: 0.75rem;
    }

    .faq-img-square {
        width: 100%;
        max-width: 360px;
        aspect-ratio: 4 / 5;
        border-radius: 24px;
        border-width: 5px;
    }

    .faq-img-float {
        width: 52%;
        right: 0;
        bottom: -2%;
        transform: none;
        border-radius: 20px;
        border-width: 4px;
    }

    .mobile-sticky {
        padding: .6rem var(--px) calc(.6rem + env(safe-area-inset-bottom));
    }

    main {
        padding-bottom: calc(90px + env(safe-area-inset-bottom));
    }

    .scroll-top-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav {
        padding-top: calc(env(safe-area-inset-top) + 0.45rem);
        padding-right: 0.6rem;
        padding-left: 0.6rem;
    }

    .nav-inner {
        min-height: 56px;
        padding: 0.5rem 0.55rem 0.5rem 0.82rem;
        border-radius: 18px;
    }

    .nav-logo img {
        height: 30px;
        max-width: 58vw;
    }

    .hero-title {
        line-height: 1.02;
    }

    .hero-product {
        max-width: 100%;
        max-height: 240px;
    }

    .problem-swiper {
        padding-inline: 0.75rem !important;
    }

    .faq-img-float {
        display: none;
    }

    .trust-row-hero span {
        font-size: 0.9rem;
        padding: 0.68rem 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    body::after {
        animation: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee-inner {
        animation: none !important;
    }
}
