/* =============================================
   LEVESSY — 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(1.6rem, 3.2vw, 2.45rem);
    --h2-size: clamp(1.5rem, 3.5vw, 2.25rem);
    --h3-size: clamp(1.25rem, 2.5vw, 1.75rem);
    --body-lg: clamp(1rem, 1.15vw, 1.05rem);

    --py: clamp(2.25rem, 6vw, 4.5rem);
    --px: clamp(1.25rem, 5vw, 3rem);
    --max: 1280px;
    --narrow: 920px;

    --r-xs: 8px;
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 20px;
    --r-xl: 32px;
    --r-2xl: 40px;
    --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);
}

@media (max-width: 1366px) {
    :root {
        --max: 1140px;
        --py: clamp(2rem, 5.5vw, 3.75rem);
    }
}

.narrow {
    max-width: var(--narrow);
    margin-inline: auto
}

.center {
    text-align: center
}

.mx-auto {
    display: block;
    margin-inline: auto
}

.mt-2xl {
    margin-top: clamp(1.8rem, 4vw, 3rem)
}

/* â”€â”€â”€ 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.25rem;
}

.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.15;
    letter-spacing: -.03em;
    color: var(--green);
    margin-bottom: 0;
}

.h2 {
    font-family: var(--font-display);
    font-size: var(--h2-size);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -.025em;
    color: var(--green);
    margin-bottom: 1.1rem;
}

.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: 2rem;
}

.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: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem var(--px);
}

.nav-inner {
    max-width: 960px;
    margin-inline: auto;
    padding: 0.5rem 0.6rem 0.5rem 2rem;
    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-xl);
    box-shadow: 0 10px 30px rgba(30, 58, 39, .08);
    transition: all .4s var(--ease);
}

@media (max-width: 1366px) {
    .nav-inner {
        max-width: 880px;
    }
}

.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: 30px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2.5rem;
}

@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: 8px;
    margin-left: auto;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 991px) {
    .nav-inner {
        padding: 0.82rem 1.55rem 0.82rem 1.7rem;
        border-radius: 34px;
    }

    .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: 24px;
    height: 2.5px;
    background: var(--green);
    border-radius: 2px;
    transform-origin: center;
    transition: none;
}

.nav-burger.open span:nth-child(1) {
    transform: none;
}

.nav-burger.open span:nth-child(2) {
    opacity: 1;
}

.nav-burger.open span:nth-child(3) {
    transform: none;
}

.nav-mobile {
    position: fixed;
    top: 5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    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;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transform-origin: top center;
    transition: none;
}

.nav-mobile.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
}

.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);
    opacity: 1;
    transform: none;
    transition: background-color .2s var(--ease);
}

.nav-mobile a:last-of-type {
    border-bottom: none;
}

.nav-mobile.open a {
    opacity: 1;
    transform: translateY(0);
}

.nav-mobile.open a:nth-child(1) { transition-delay: 0s; }
.nav-mobile.open a:nth-child(2) { transition-delay: 0s; }
.nav-mobile.open a:nth-child(3) { transition-delay: 0s; }
.nav-mobile.open a:nth-child(4) { transition-delay: 0s; }
.nav-mobile.open a:nth-child(5) { transition-delay: 0s; }

.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.4rem 1.15rem 1.15rem;
        border-radius: 32px;
    }

    .nav-mobile a {
        font-size: 1rem;
        padding: 0.95rem 0.9rem;
    }
}

/* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--cream);
    padding-top: 5rem;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1025px) {
    .hero {
        padding-top: 6.5rem;
    }
}

.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); margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.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); margin-bottom: 2.5rem;
}

.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: 980px;
    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: transparent;
    padding: var(--py) 0;
    border-top: none;
    overflow: visible;
}

.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)
}

/* â”€â”€â”€ PROBLEM GRID COMPACT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.problem-grid-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.problem-item-side {
    flex: 1 1 300px;
    max-width: 400px;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border-light);
    transition: all 0.3s var(--ease);
}

.problem-item-side:hover {
    transform: translateY(-3px);
    border-color: var(--orange-mid);
    box-shadow: var(--shadow-md);
}

.problem-icon-sm {
    width: 48px;
    height: 48px;
    background: var(--orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon-sm svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
}

.problem-text-sm {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .problem-item-side {
        max-width: 100%;
    }
}

.problem-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange-mid);
}

.problem-card .p-card-img {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.problem-card .p-card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.problem-card:hover .p-card-img img {
    transform: scale(1.05);
}

.problem-card .p-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.problem-card .p-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* â”€â”€â”€ 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: var(--r-xl);
    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: var(--r-xl);
    }

    .phase-new.reverse {
        direction: ltr;
    }

    .phase-new.reverse .phase-new-visual {
        order: -1;
    }

    .phase-new-content {
        align-items: center;
    }

    .phase-new-visual {
        aspect-ratio: 1/1.2;
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
    }

    .ing-grid-new {
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 1.25rem;
    }

    .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.45;
}

.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: 32px;
    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: 2.5rem 0;
}

.manifesto-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--r-lg);
    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: 2.5rem 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-side {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    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%;
    height: auto;
    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); margin-bottom: 2.5rem;
}

.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 SHOWCASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.products-section {
    background: var(--green);
    padding: var(--py) 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    position: relative;
    overflow: hidden;
}

.product-showcase {
    display: flex;
    max-width: 1100px;
    margin-inline: auto;
    background: var(--white);
    border-radius: var(--r-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.ps-left {
    flex: 1.2;
    background: var(--cream);
    padding: clamp(2.5rem, 5vw, 4.5rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    justify-content: center;
}

.ps-right {
    flex: 1;
    background: var(--white);
    padding: clamp(2.5rem, 5vw, 4.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border-light);
    position: relative;
}

/* Decoration for ps-left */
.ps-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 0% 0%, rgba(224, 100, 24, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Info Side */
.ps-badge {
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.2rem;
    border-radius: var(--r-pill);
    width: fit-content;
}

.ps-main-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.ps-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: transform .6s var(--ease);
}



.ps-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ps-title-row {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.ps-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--green);
    line-height: 1.45;
    font-weight: 900;
}



.ps-description {
    color: var(--text-mid);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.ps-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.ps-features li {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--green-xlight);
    border-radius: var(--r-md);
    border: 1px solid var(--border-light);
}

.ps-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    font-size: 1rem;
}

.ps-shipping-left {
    background: var(--green-light);
    color: var(--green);
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    width: fit-content;
    margin: 1rem 0;
}

.ps-feature-text strong {
    display: block;
    color: var(--green);
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.ps-feature-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ps-extra-info {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: 1.5rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--border);
}

.ps-info-item {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-sm);
}

/* Pricing Side */
.ps-pricing-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.ps-offer-label {
    font-weight: 800;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--orange);
    display: block;
}

.ps-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ps-old-price {
    text-decoration: line-through;
    color: #e02424;
    font-size: 1.15rem;
    font-weight: 600;
}

.ps-new-price {
    font-family: var(--font-display);
    color: var(--green);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.ps-symbol {
    font-size: 1.65rem;
    font-weight: 800;
    margin-top: 0.75rem;
}

.ps-value {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.ps-cents {
    font-size: 1.65rem;
    font-weight: 800;
    margin-top: 0.75rem;
}

.ps-installments {
    color: var(--text-mid);
    font-size: 1.125rem;
}

.ps-installments strong {
    color: var(--orange);
    font-weight: 800;
}

.btn-cta-ps {
    width: 100%;
    margin-top: 0.5rem;
}

.ps-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .product-showcase {
        flex-direction: column;
        border-radius: var(--r-xl);
        max-width: 500px;
    }
    
    .ps-left, .ps-right {
        padding: 3rem 1.5rem;
        flex: none;
        border-left: none;
    }
    
    .ps-right {
        order: -1; /* Image and price first on mobile */
        border-bottom: 1px solid var(--border-light);
    }

    .ps-title { font-size: 2rem; text-align: center; }
    .ps-description { text-align: center; }
    .ps-badge { margin-inline: auto; }
    .ps-value { font-size: 4.5rem; }
    .ps-extra-info { justify-content: center; }
}

.p-card {
    background: var(--white);
    border-radius: var(--r-xl);
    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(--white);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    padding: 0.6rem 1.5rem;
    border-radius: var(--r-pill);
    border: 2px solid var(--orange);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    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.65rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1.45;
    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(3rem, 5vw, 4.5rem) 0;
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.guarantee-inner {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    max-width: 1080px;
    margin-inline: auto;
    background: var(--white);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    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: 0.5rem;
    line-height: 1.2;
}

@media (min-width: 769px) {
    .guarantee-text h2 {
        white-space: nowrap;
    }
}

.guarantee-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.55
}

.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 clamp(5rem, 9vw, 7rem);
    border-top: 1px solid var(--border-light);
}

.faq-section {
    background: var(--white);
    padding: var(--py) 0 clamp(5rem, 9vw, 7rem);
    position: relative;
    overflow: visible;
}

.faq-content-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.78fr);
    max-width: min(1180px, 100%);
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

@media (max-width: 1024px) {
    .faq-content-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.faq-header-new {
    position: relative;
    margin-bottom: 2rem;
}

.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;
    width: 100%;
    max-width: 760px;
    justify-self: end;
}

.faq-right {
    width: 100%;
    max-width: 520px;
    justify-self: start;
}

.faq-title-inline {
    white-space: nowrap;
    font-size: clamp(1.45rem, 2.75vw, 2.45rem);
    line-height: 1.15;
}

.faq-whatsapp-cta {
    margin-top: 1rem;
}

.faq-nutri-btn {
    background: #25D366;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
}

.faq-visual-new {
    position: relative;
    height: 100%;
    min-height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-img-square {
    width: 94%;
    margin-inline: auto;
    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: 0.85rem;
}

.faq-item {
    background: var(--green-xlight);
    border: 1px solid rgba(30, 58, 39, 0.05);
    border-radius: 20px;
    padding: 0.9rem 1.4rem;
    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: 0.9rem;
    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: 26px;
    height: 26px;
    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: clamp(2rem, 4vw, 3rem) 0 clamp(5.5rem, 9vw, 7.5rem);
    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 1.75rem;
    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: 2rem;
    padding-top: 3.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: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    font-weight: 700;
    font-size: 1rem;
    background: var(--orange);
    color: var(--white);
    min-height: 64px;
    padding: 0;
    border-radius: var(--r-pill);
    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;
    position: relative;
    isolation: isolate;
}

.btn-mobile-sticky:active {
    background: var(--orange-hover)
}

.btn-mobile-sticky .btn-cta-text {
    padding: .9em 1.1em .9em 1.5em;
}

.btn-mobile-sticky .btn-cta-icon {
    width: 58px;
    height: 58px;
    margin: 3px 3px 3px 0;
    background: rgba(255, 255, 255, .22);
}

.btn-mobile-sticky::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-mobile-sticky > * {
    position: relative;
    z-index: 1;
}

.btn-mobile-sticky svg {
    transition: transform .2s var(--ease)
}

.btn-mobile-sticky:hover {
    background: var(--orange-hover);
    box-shadow: 0 10px 40px rgba(224, 100, 24, .42);
}

.btn-mobile-sticky:hover .btn-cta-icon {
    background: rgba(255, 255, 255, .34);
    transform: rotate(-45deg);
}

.btn-mobile-sticky:hover::before,
.btn-mobile-sticky:focus-visible::before {
    transform: translateX(135%);
}

/* â”€â”€â”€ 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] {
    /* Resolvendo bug Elementor: Removido o opacity: 0 para manter o conteÃºdo visÃ­vel */
    opacity: 1;
    transform: none;
}

body.js-enhanced [data-reveal].revealed {
    opacity: 1;
    transform: none;
}

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 {
    /* Resolvendo bug Elementor: Removido o opacity: 0 para manter o conteÃºdo visÃ­vel */
    opacity: 1;
    transform: none;
    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: none;
}

/* â”€â”€â”€ 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: 580px;
        width: calc(100% - 1.5rem);
        min-height: 52px;
        padding: 0.4rem 0.5rem 0.4rem 1.4rem;
        border-radius: var(--r-xl);
    }

    .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
    }



    .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,
.how-card-main 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: transparent;
    padding: var(--py) 0;
    overflow: visible;
}

.center-head {
    text-align: center;
    margin-bottom: 2.25rem;
}

.problem-carousel-container {
    width: 100%;
    padding: 1.5rem 0 3rem;
    position: relative;
}

.problem-swiper {
    padding: 0 var(--px) 36px !important;
    overflow: visible !important;
}

.problem-card {
    height: auto !important;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--r-xl);
    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.45;
    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.65rem;
    }
}

@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: break-word;
    word-break: normal;
    hyphens: none;
}

.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: 48px;
        height: 48px;
        margin: 4px;
    }

    .trust-row-hero,
    .trust-row-testi {
        width: 100%;
        max-width: 400px;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0;
        background: transparent;
        border: none;
    }

    .trust-row-hero span,
    .trust-row-testi span {
        width: 100%;
        background: var(--white);
        border: 1px solid var(--border-light);
        padding: 0.6rem 1rem;
        border-radius: 12px;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
    }

    .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: 0;
        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: 60px;
        padding: 0.7rem 1.35rem 0.7rem 1.5rem;
        border-radius: 36px;
    }

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

    .nav-burger {
        padding: 7px;
    }

    .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;
    }
}

/* â”€â”€â”€ BEFORE/AFTER SIDE GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ba-grid-side {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.results-section .results-container {
    max-width: min(1280px, 94vw);
}

@media (max-width: 991px) {
    .ba-grid-side {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ba-grid-side {
        grid-template-columns: 1fr;
    }
}

/* â”€â”€â”€ PRODUCTS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.products-section {
    background: var(--green);
    padding: var(--py) 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.products-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(224, 100, 24, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.products-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(224, 100, 24, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.products-section .container {
    position: relative;
    z-index: 2;
}

.h2-light {
    color: var(--white);
}

/* â”€â”€â”€ KITS GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.kits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    align-items: stretch;
}

.kit-card {
    background: var(--white);
    border-radius: 32px;
    padding: 1.7rem 1.35rem;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-light);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.kit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--orange-mid);
}

.kit-card.featured {
    border: 2px solid var(--orange);
    transform: none;
    z-index: 2;
}

.kit-card.featured:hover {
    transform: translateY(-8px);
}

.kit-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--r-pill);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 20px rgba(224, 100, 24, 0.3);
}

.kit-visual {
    margin-bottom: 0.9rem;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

.kit-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transform: none;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    display: block;
}

.kit-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kit-title {
    font-family: var(--font-display);
    font-size: clamp(1.28rem, 1.7vw, 1.75rem);
    font-weight: 800;
    color: var(--green);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
    text-wrap: balance;
}

.kit-desc {
    font-size: clamp(0.84rem, 0.95vw, 0.94rem);
    color: var(--text-muted);
    line-height: 1.34;
    margin: 0 auto 0.9rem;
    max-width: 31ch;
    min-height: 4.2em;
    text-wrap: pretty;
}

.kit-price-box {
    margin-top: auto;
    margin-bottom: 0.75rem;
}

.kit-old-price {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.kit-new-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--green);
    font-family: var(--font-display);
    line-height: 1;
}

.kit-symbol {
    font-size: 1rem;
    font-weight: 800;
    margin-top: 0.5rem;
    margin-right: 0.2rem;
}

.kit-value {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.kit-cents {
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

.kit-install {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-top: 0.5rem;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 0.98rem;
    background: var(--orange);
    color: var(--white);
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--ease);
    margin-bottom: 0;
    box-shadow: 0 10px 25px rgba(224, 100, 24, 0.2);
}

.btn-buy:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(224, 100, 24, 0.3);
}

.kit-shipping {
    font-size: 0.75rem;
    font-weight: 800;
    color: #2a5038;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .kits-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 4.5rem;
    }
    
    .kit-card.featured {
        transform: scale(1);
    }
}
/* --- BEFORE/AFTER LABEL FIX --------- */
.ba-grid-side {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .ba-grid-side {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ba-grid-side {
        grid-template-columns: 1fr;
    }
}

.ba-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 5;
    background: linear-gradient(180deg, #f7f2ea 0%, #efe8dc 100%);
    padding: 0.65rem;
}

.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
    border-radius: 14px;
    background: #f7f2ea;
    transition: transform 0.4s ease;
}

.ba-card:hover img {
    transform: scale(1.02);
}

.results-slider-dots {
    display: none;
}

.problem-slider-dots {
    display: none;
}

.ba-result-label {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--r-pill);
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(224, 100, 24, 0.3);
    z-index: 2;
}

.results-cta-question,
.results-cta-answer {
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
    color: var(--green);
}

.results-cta-question {
    font-size: clamp(1.12rem, 1.65vw, 1.55rem);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.55rem;
}

.results-cta-answer {
    font-size: clamp(0.92rem, 1.05vw, 1.02rem);
    line-height: 1.45;
    font-weight: 500;
    color: #4a5a4f;
    margin-bottom: 1.1rem;
}

.results-cta-minimal {
    margin-top: clamp(1.1rem, 2.2vw, 1.8rem) !important;
}

.results-cta-minimal #testi-cta {
    font-size: 1.1rem;
    min-height: 54px;
    box-shadow: 0 8px 24px rgba(224, 100, 24, 0.28);
    animation: none;
}

.results-cta-minimal #testi-cta .btn-cta-text {
    padding: 0.82em 1.05em 0.82em 1.25em;
}

.results-cta-minimal #testi-cta .btn-cta-icon {
    width: 50px;
    height: 50px;
    margin: 4px 4px 4px 0;
}

@media (max-width: 991px) {
    .ba-card {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 480px) {
    .ba-card {
        aspect-ratio: 4 / 5;
    }
}





@media (max-width: 768px) {
    .problem-grid-compact {
        grid-template-columns: 1fr;
    }
    .problem-item-side {
        padding: 1.25rem;
    }
}

/* --- RESPONSIVE HERO GRID --- */
.hero-inner-grid {
    display: grid;
    gap: 0.5rem;
    align-items: center;
    grid-template-areas: 
        "header"
        "visual"
        "footer";
}

@media (min-width: 1025px) {
    .hero-inner-grid {
        grid-template-columns: 1fr 1.15fr;
        column-gap: 5rem;
        grid-template-areas: 
            "header visual"
            "footer visual";
        text-align: left;
        padding-top: 6rem;
        align-items: center;
    }
    
    .hero-header { grid-area: header; align-self: end; text-align: left; }
    .hero-visual { grid-area: visual; justify-self: end; }
    .hero-footer { grid-area: footer; align-self: start; text-align: left; }
    
    .hero-inner-grid .eyebrow { margin-inline: 0; }
    .hero-inner-grid .hero-desc { margin-inline: 0; text-align: left; max-width: 48ch; }
    .hero-inner-grid .hero-actions { justify-content: flex-start; }
}

@media (max-width: 1024px) {
    .hero-inner-grid {
        text-align: center;
        padding-top: 2rem;
    }
    .hero-inner-grid .eyebrow { margin-inline: auto; }
    .hero-inner-grid .hero-desc { margin-inline: auto; text-align: center; }
    .hero-inner-grid .hero-actions { justify-content: center; }
    .hero-visual { padding: 1.5rem 0; }
}

@media (max-width: 1024px) {
    .h1.hero-title-small {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }
    .kits-grid {
        gap: 3.5rem !important;
    }
    .kit-card {
        padding: 2.25rem 1.25rem !important;
    }
    .kit-visual {
        height: 200px !important;
    }
}

.products-section::before, .products-section::after {
    display: none; /* Remove problematic blobs that overlap content */
}

.products-section {
    background: linear-gradient(180deg, var(--green) 0%, #162a1d 100%);
}

.kit-card {
    box-shadow: 0 10px 40px rgba(30, 58, 39, 0.08);
}

.kit-card.featured {
    box-shadow: 0 20px 60px rgba(224, 100, 24, 0.15);
}


/* --- GLOBAL LAYOUT FIX (FINAL) --- */
@media (max-width: 768px) {
    .h1 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.1 !important;
    }
    .h2 {
        font-size: 1.85rem !important;
        line-height: 1.15 !important;
    }
    .hero {
        padding-top: 5rem !important;
    }
    .hero-spacer {
        display: none !important;
    }
    .hero-copy-centered {
        margin-bottom: 2rem !important;
    }
    .hero-product {
        max-width: 500px !important;
    }
    .problem-grid-compact {
        gap: 1rem !important;
    }
    .problem-item-side {
        padding: 1rem !important;
    }
    .kits-grid {
        gap: 2.5rem !important;
        padding-top: 2rem !important;
    }
    .kit-card {
        padding: 2rem 1.25rem !important;
    }
}

.problem-icon-sm {
    background: var(--orange-light) !important;
    color: var(--orange) !important;
    font-size: 1.1rem !important;
    line-height: 1 !important;
}

.kit-title br {
    display: none; /* Avoid breaking middle-aligned titles on mobile */
}

@media (max-width: 480px) {
    .h1 { font-size: 1.75rem !important; }
    .hero-product { max-width: 320px !important; }
}


/* --- SECTION PADDING FIX --- */
.problem-section,
.how-section,
.results-section,
.guarantee-section,
.faq-section {
    padding: var(--py) 0;
}

/* --- HOW CARDS GRID --- */
.how-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 2rem;
    max-width: 1000px;
    margin-inline: auto;
}

.how-card {
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transition: transform 0.4s var(--ease);
}

.how-card:hover {
    transform: translateY(-10px);
}

.how-card-top {
    padding: 2.5rem 1.5rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 280px;
}

.how-card-day .how-card-top { 
    background: linear-gradient(0deg, rgba(235, 120, 40, 0.4), rgba(235, 120, 40, 0.4)), url('../Imagens/a4f3f953-9541-4fdd-ac03-8e56795add7c.png');
    background-size: cover;
    background-position: center;
}
.how-card-night .how-card-top { 
    background: linear-gradient(0deg, rgba(160, 200, 180, 0.4), rgba(160, 200, 180, 0.4)), url('../Imagens/Faz_uma_imagem_de_uma_mulher_feliz_segurando_esses_delpmaspu.png');
    background-size: cover;
    background-position: center;
}

.how-card-visual img {
    max-width: 250px;
    height: auto;
    margin-top: 1.5rem;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.2));
}

.how-card-body {
    padding: 1.5rem 1.5rem 2rem;
    flex-grow: 1;
}

.how-card-day .how-card-body { background: #fff; }
.how-card-night .how-card-body { background: var(--green-light); }

.how-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.how-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.4;
}

.ic-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 3px;
    color: var(--orange-mid);
}

@media (max-width: 900px) {
    .how-cards-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

/* --- PROBLEM SLIDER (MODERN REPLACEMENT) --- */
.problem-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 1.25rem auto 0.35rem;
    padding: 0.35rem 0 0.2rem;
    background: transparent;
    overflow: visible;
}

.problem-slider-host {
    max-width: min(1240px, 94vw) !important;
    padding-inline: clamp(0.75rem, 2vw, 1.25rem) !important;
}

.problem-slider-container {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 0.6rem 1rem 0.9rem;
    background: transparent;
    scrollbar-width: none;
}
.problem-slider-container::-webkit-scrollbar { display: none; }

.problem-section + .results-section {
    padding-top: clamp(1.5rem, 3vw, 2.25rem);
}

.problem-netflix-item {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 320px;
    scroll-snap-align: start;
    aspect-ratio: 5 / 4;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: none;
    transition: none;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s var(--ease);
}
.slider-arrow:hover { 
    background: var(--green); 
    color: #fff; 
    transform: translateY(-50%) scale(1.1);
}
.slider-arrow.prev { left: -27px; }
.slider-arrow.next { right: -27px; }

@media (max-width: 1024px) {
    .slider-arrow { display: none; }
    .problem-netflix-item { flex: 0 0 calc(50% - 0.75rem); aspect-ratio: 5 / 4; }
}

@media (max-width: 768px) {
    .problem-slider-wrapper { padding: 0.25rem 0 0.6rem; }
    .problem-slider-container { padding: 0.5rem 0.75rem 0.7rem; }
    .problem-netflix-item { flex: 0 0 90%; min-width: 260px; aspect-ratio: 5 / 4; }
    .problem-slider-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        margin-top: 0.15rem;
    }
}

.problem-netflix-item:hover {
    transform: none;
}

.problem-netflix-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: #fff;
}

.p-item-overlay span {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}

/* --- HOW CARDS IMAGE SIZE INCREASE --- */
.how-card-visual img {
    max-width: 440px !important;
    margin-top: 0 !important;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2)) !important;
}

.how-card-top {
    padding-top: 4.5rem !important;
    padding-bottom: 0 !important;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    z-index: 9999;
    transition: all 0.4s var(--ease);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.whatsapp-float svg {
    display: block;
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@media (max-width: 1024px) {
    .whatsapp-float {
        right: 18px;
        bottom: 84px;
        width: 58px;
        height: 58px;
    }
}

/* --- HAPPENS SECTION (HYBRID DESIGN - BRAND COLORS) --- */
.happens-section {
    padding: var(--py) 0;
    background: #fff1e6 url('../Imagens/Background laranja.png') center / cover no-repeat;
    overflow: hidden;
}

.happens-box {
    background: #fdf6f0; /* Soft beige/peach background to pop the green */
    border-radius: 30px;
    padding: clamp(1.5rem, 3.5vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
}

.happens-selfie-container {
    position: relative;
    border-radius: 20px;
    line-height: 0;
}

.selfie-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(30, 58, 39, 0.12);
    display: block;
}

.happens-stamp-badge {
    position: absolute;
    top: -34px;
    left: -34px;
    width: 152px;
    height: 152px;
    background: radial-gradient(circle at 30% 25%, #ff9b45 0%, #f07830 35%, #d85a12 100%);
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 12px 34px rgba(224, 100, 24, 0.34);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.happens-stamp-badge::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.badge-core {
    position: absolute;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #f5903f 0%, #e06418 75%);
    border: 2px solid rgba(255, 255, 255, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 8px 18px rgba(140, 50, 0, 0.32);
    animation: badge-pulse 3.2s ease-in-out infinite;
}

.badge-core-top {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    opacity: 0.92;
}

.badge-core-main {
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-top: 0.15rem;
}

@keyframes rotate-badge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.badge-text-svg {
    width: 100%;
    height: 100%;
    display: block;
    animation: rotate-badge 26s linear infinite;
}

.happens-grid-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.h-item {
    background: var(--green);
    background: linear-gradient(90deg, var(--green) 0%, #2a5038 100%);
    padding: 1.1rem 1.75rem;
    border-radius: 16px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 10px 25px rgba(30,35,39,0.1);
}

.h-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
}

.h-item-text {
    font-size: 1.05rem;
    line-height: 1.4;
}

.h-item-text strong {
    font-weight: 800;
}

.happens-right .h2-dark {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    color: var(--green);
}

.expect-quote {
    color: var(--green);
}

.expect-quote-full {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.expect-quote .quote-main {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.expect-quote .quote-sub {
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--orange);
}

@media (max-width: 900px) {
    .happens-box { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .happens-stamp-badge { left: 50%; top: -44px; transform: translateX(-50%); width: 120px; height: 120px; }
    .badge-core { width: 66px; height: 66px; }
    .badge-core-top { font-size: 0.52rem; }
    .badge-core-main { font-size: 0.72rem; }
    .h-item { text-align: left; }
    .happens-right .h2-dark { text-align: center; }
}

/* --- RESTORED HOW CARDS GRID --- */
.how-cards-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1.5rem; 
    align-items: stretch; 
    margin-top: 2.25rem; 
    max-width: 1080px; 
    margin-inline: auto; 
}

.how-card { 
    display: flex; 
    flex-direction: column; 
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f8f4ee 100%);
    box-shadow: 0 14px 36px rgba(18, 34, 24, 0.10); 
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); 
    border: none;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.how-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 22px 48px rgba(18, 34, 24, 0.14);
}

.how-card-header { 
    padding: 1rem 1.25rem; 
    text-align: center; 
    font-size: 0.92rem; 
    font-weight: 800; 
    color: #fff; 
    text-transform: uppercase; 
    letter-spacing: 0.08em; 
    line-height: 1.1; 
    border-radius: 24px 24px 0 0;
}

.phase-day .how-card-header { background: linear-gradient(90deg, #e06418, #f07830); }
.phase-night .how-card-header { background: linear-gradient(90deg, #df6a1f, #f1873f); }

.how-card-main { 
    position: relative; 
    height: clamp(320px, 38vw, 460px); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    overflow: hidden;
    padding: 0;
    background: #f1e7dc;
}

.how-card-main img { 
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    object-position: center center;
    z-index: 1;
    transition: transform 0.8s var(--ease);
    border-radius: 0;
    display: block;
}

.how-card:hover .how-card-main img {
    transform: scale(1.04);
}

.how-card-footer { 
    padding: 1.35rem 1.35rem 1.5rem; 
    flex-grow: 1; 
    background: #fff;
    position: relative;
    z-index: 3;
    border-radius: 0 0 24px 24px;
    border-top: 1px solid rgba(30, 58, 39, 0.05);
}

.how-card-kicker {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    color: var(--green);
    margin-bottom: 1.1rem;
    max-width: 28ch;
    margin-inline: auto;
}

.how-list-new { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 0.9rem; 
}

.how-list-new li { 
    font-size: 0.95rem; 
    font-weight: 500; 
    line-height: 1.48; 
    display: flex; 
    align-items: flex-start; 
    gap: 0.8rem; 
    color: var(--text-mid);
}

.how-list-new li strong {
    font-weight: 800;
    color: var(--green);
}

.how-list-new li .ic-check {
    width: 20px;
    height: 20px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    flex-shrink: 0;
    margin-top: 2px;
}

.phase-day .how-list-new li .ic-check {
    background: var(--orange-light);
    color: var(--orange);
}

/* Ajuste de contraste do bloco "Porque o kit duas fases funciona" */
.how-section.section-green#como-funciona {
    background: #183424;
}

.how-section.section-green#como-funciona .sub-light {
    color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 900px) { 
    .how-cards-grid { grid-template-columns: 1fr; gap: 1.25rem; padding: 0; } 
    .how-card-main { height: clamp(300px, 78vw, 420px); padding: 0; } 
    .how-card-footer { padding: 1.2rem 1.1rem 1.35rem; }
    .how-card-kicker { font-size: 0.96rem; max-width: none; }
    .how-list-new li { font-size: 0.92rem; }
}

/* Hero responsive cleanup */
.hero {
    min-height: auto !important;
    padding-top: clamp(7.8rem, 11vw, 9.8rem) !important;
    padding-bottom: clamp(4.2rem, 6.8vw, 6.1rem) !important;
}

.hero-inner-grid {
    width: 100%;
    gap: clamp(1rem, 2vw, 2.25rem) !important;
    padding-top: 0 !important;
}

.hero-header,
.hero-footer,
.hero-visual {
    min-width: 0;
    width: 100%;
}

@media (min-width: 1025px) {
    .hero-inner-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        grid-template-areas:
            "header visual"
            "footer visual";
        align-items: center;
        column-gap: clamp(2rem, 4vw, 4.5rem) !important;
    }

    .hero-header,
    .hero-footer {
        max-width: 34rem;
    }

    .hero-visual {
        justify-self: center !important;
        padding: 0 !important;
    }

    .hero-desc {
        max-width: 34rem;
    }

    .hero-product {
        width: min(100%, 38rem) !important;
        max-width: 38rem !important;
        height: auto;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 6.25rem !important;
        padding-bottom: 3.25rem !important;
    }

    .hero-inner-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "visual"
            "footer";
        text-align: center;
        gap: 1.25rem !important;
    }

    .hero-visual {
        padding: 0.75rem 0 0 !important;
    }

    .hero-product {
        width: min(100%, 31rem) !important;
        max-width: 31rem !important;
    }

    .hero-header,
    .hero-footer {
        max-width: 44rem;
        margin-inline: auto;
    }

    .hero .h1,
    .hero-inner-grid .hero-desc {
        margin-inline: auto;
    }

    .hero .h1 {
        max-width: 18ch;
    }

    .hero-inner-grid .hero-desc {
        max-width: 36rem;
        margin-inline: auto;
    }

    .hero-inner-grid .hero-actions {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 6.5rem !important;
        padding-bottom: 3rem !important;
    }

    .hero .h1 {
        font-size: clamp(1.95rem, 8vw, 2.5rem) !important;
        line-height: 1.12 !important;
        letter-spacing: -0.02em;
        max-width: none;
        margin-inline: auto;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 36ch;
        margin-inline: auto;
    }

    .hero-product {
        width: min(100%, 24rem) !important;
        max-width: 24rem !important;
    }

    .hero-actions .btn-cta {
        width: min(100%, 22rem);
    }

    .hero-glow {
        width: 78%;
        height: 78%;
    }
}

@media (max-width: 560px) {
    .hero {
        padding-top: 6.15rem !important;
    }

    .hero-inner-grid {
        gap: 0.9rem !important;
    }

    .hero .h1 {
        font-size: clamp(1.76rem, 9vw, 2.1rem) !important;
        max-width: none;
    }

    .hero .eyebrow {
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 0.96rem;
        max-width: 34ch;
    }

    .hero-product {
        width: min(100%, 20rem) !important;
        max-width: 20rem !important;
    }

    .hero-actions .btn-cta {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .faq-title-inline {
        white-space: normal;
        font-size: clamp(1.5rem, 6.2vw, 2rem);
    }

    .faq-nutri-btn {
        padding: 0.95rem 1rem;
        font-size: 0.95rem;
    }
}

.products-title-balance {
    max-width: 1100px;
    margin-inline: auto;
    font-size: clamp(1.35rem, 2.45vw, 2.2rem) !important;
    line-height: 1.2 !important;
}

.products-title-balance .line {
    display: block;
}

@media (min-width: 1025px) {
    .products-title-balance .line {
        white-space: nowrap;
    }
}

@media (max-width: 1024px) {
    .products-title-balance {
        max-width: 820px;
        font-size: clamp(1.2rem, 3.7vw, 1.9rem) !important;
    }
}

/* --- MOBILE PASS --- */
@media (max-width: 768px) {
    .hero {
        padding-top: 7.55rem !important;
        padding-bottom: 4rem !important;
    }

    .hero .container {
        padding-inline: 0.35rem !important;
    }

    .hero-inner-grid {
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "header"
            "visual"
            "footer" !important;
        gap: 0.85rem !important;
        text-align: center !important;
    }

    .hero-header {
        grid-area: header;
        order: 1;
        max-width: 100%;
        margin-inline: auto;
        padding: 0 0 1.15rem !important;
    }

    .hero-visual {
        grid-area: visual;
        order: 2;
        width: 100%;
        justify-self: center !important;
        padding: 1.45rem 0 1.2rem !important;
    }

    .hero-footer {
        grid-area: footer;
        order: 3;
        max-width: 100%;
        margin-inline: auto;
    }

    .hero .eyebrow {
        margin-inline: auto;
        margin-bottom: 0.9rem;
    }

    .hero .h1 {
        font-size: clamp(2.08rem, 8.2vw, 2.56rem) !important;
        line-height: 1.03 !important;
        max-width: 16ch !important;
        margin-inline: auto;
        margin-bottom: 0 !important;
        padding: 0 !important;
    }

    .hero-product {
        width: min(108%, 34rem) !important;
        max-width: 34rem !important;
        margin-inline: auto;
    }

    .hero-desc {
        max-width: 32ch !important;
        margin-inline: auto;
        text-align: center;
    }

    .hero-actions {
        justify-content: center !important;
    }

    .hero-actions .btn-cta {
        width: min(100%, 22rem);
        margin-inline: auto;
    }

    .problem-section,
    .results-section,
    .how-section,
    .happens-section,
    .products-section,
    .guarantee-section,
    .faq-section,
    .final-section {
        padding-top: clamp(2.25rem, 8vw, 3rem) !important;
    }

    .problem-section .center-head,
    .results-section .center,
    .how-section .center,
    .products-section .center {
        margin-bottom: 1.5rem !important;
    }

    .problem-slider-host {
        max-width: 100% !important;
        padding-inline: 0.35rem !important;
    }

    .problem-slider-container {
        gap: 0.9rem;
        padding: 0.4rem 0.35rem 0.55rem;
    }

    .problem-netflix-item {
        flex: 0 0 88%;
        min-width: 0;
        border-radius: 20px;
    }

    .p-item-overlay {
        padding: 1rem;
    }

    .p-item-overlay span {
        font-size: 1rem;
        line-height: 1.22;
    }

    .ba-grid-side {
        display: flex !important;
        gap: 0.85rem;
        margin-inline: -0.1rem;
        margin-bottom: 1.25rem;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0.1rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding: 0.1rem 0.1rem 0.35rem;
        grid-template-columns: none !important;
    }

    .ba-grid-side::-webkit-scrollbar {
        display: none;
    }

    .ba-card {
        flex: 0 0 min(82vw, 340px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        border-radius: 18px;
        padding: 0.45rem;
    }

    .ba-result-label {
        font-size: 0.68rem;
        bottom: 0.7rem;
        padding: 0.42rem 0.82rem;
    }

    .results-slider-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        margin-top: 0.25rem;
    }

    .results-slider-dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: rgba(120, 120, 120, 0.32);
        transition: transform .2s var(--ease), background-color .2s var(--ease), width .2s var(--ease);
        cursor: pointer;
    }

    .results-slider-dot.is-active {
        width: 20px;
        background: var(--orange);
    }

    .problem-slider-dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: rgba(120, 120, 120, 0.32);
        transition: transform .2s var(--ease), background-color .2s var(--ease), width .2s var(--ease);
        cursor: pointer;
    }

    .problem-slider-dot.is-active {
        width: 20px;
        background: var(--orange);
    }

    .how-section .center {
        margin-bottom: 1.6rem !important;
    }

    .how-cards-grid {
        gap: 1rem !important;
        margin-top: 1.25rem !important;
    }

    .how-card {
        border-radius: 20px;
    }

    .how-card-header {
        padding: 0.9rem 1rem;
        font-size: 0.82rem;
        letter-spacing: 0.06em;
        border-radius: 20px 20px 0 0;
    }

    .how-card-main {
        height: auto !important;
        aspect-ratio: 1 / 1.08;
        padding: 0 !important;
        align-items: stretch !important;
        background: #f1e7dc !important;
    }

    .how-card-main img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        transform: none !important;
    }

    .how-card-footer {
        padding: 1.05rem 1rem 1.15rem;
        border-radius: 0 0 20px 20px;
    }

    .how-card-kicker {
        font-size: 0.94rem;
        margin-bottom: 0.9rem;
    }

    .how-list-new {
        gap: 0.8rem;
    }

    .how-list-new li {
        font-size: 0.9rem;
        line-height: 1.42;
    }

    .happens-box {
        padding: 1.15rem;
        gap: 1.2rem;
        border-radius: 22px;
    }

    .happens-right .h2-dark {
        margin-bottom: 1.4rem;
    }

    .happens-grid-items {
        gap: 0.85rem;
    }

    .h-item {
        padding: 0.9rem 1rem;
        gap: 0.9rem;
        border-radius: 14px;
    }

    .products-section .center {
        margin-bottom: 2rem !important;
        padding-inline: 0 !important;
    }

    .products-title-balance {
        width: 100% !important;
        max-width: none !important;
        font-size: clamp(1.28rem, 5.2vw, 1.58rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.02em;
        margin-inline: auto;
        padding: 0 !important;
        text-wrap: balance;
    }

    .products-title-balance .line {
        display: contents;
    }

    .products-section .sub.sub-light {
        max-width: 29ch !important;
        font-size: 0.98rem !important;
        line-height: 1.5 !important;
        margin-inline: auto !important;
    }

    .kits-grid {
        max-width: 100%;
        gap: 1.5rem !important;
        padding-top: 1.25rem !important;
    }

    .kit-card {
        border-radius: 24px;
        padding: 1.35rem 1rem 1.15rem !important;
    }

    .kit-badge {
        font-size: 0.68rem;
        padding: 0.45rem 1rem;
    }

    .kit-visual {
        margin-bottom: 0.65rem;
        height: auto !important;
        min-height: 0;
        align-items: center;
        padding: 0 !important;
    }

    .kit-visual img {
        width: 100%;
        max-width: 100%;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        object-position: center center;
        filter: none;
    }

    .kit-title {
        font-size: 1.6rem;
        margin-bottom: 0.45rem;
    }

    .kit-desc {
        max-width: none;
        min-height: 0;
        margin-bottom: 0.75rem;
        font-size: 0.92rem;
        line-height: 1.4;
    }

    .kit-value {
        font-size: 3rem;
    }

    .kit-install {
        font-size: 0.88rem;
    }

    .btn-buy {
        font-size: 1rem;
        padding: 0.9rem 0.95rem;
        border-radius: 14px;
    }

    .guarantee-inner {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }

    .faq-section {
        padding-top: 2.5rem !important;
    }

    .faq-content-wrap {
        gap: 2rem !important;
    }

    .faq-header-new {
        margin-bottom: 1.35rem;
    }

    .faq-list {
        gap: 0.75rem;
    }

    .faq-q {
        padding: 1rem 1rem;
    }

    .faq-a p {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .final-section {
        padding-top: 2.4rem !important;
        padding-bottom: 6.5rem !important;
    }

    .final-desc {
        margin-bottom: 1.35rem;
    }

    .mobile-sticky {
        padding: 0.5rem 0.85rem calc(0.55rem + env(safe-area-inset-bottom));
    }

    .btn-mobile-sticky {
        min-height: 52px;
        font-size: 0.96rem;
        letter-spacing: 0.01em;
    }
}

@media (max-width: 480px) {
    .container {
        padding-inline: 0.9rem !important;
    }

    .hero {
        padding-top: 6.95rem !important;
        padding-bottom: 3.7rem !important;
    }

    .hero .container {
        padding-inline: 0.2rem !important;
    }

    .hero-visual {
        padding: 1.15rem 0 1.05rem !important;
    }

    .h1 {
        font-size: 1.74rem !important;
    }

    .hero .h1 {
        max-width: 16ch !important;
        padding: 0 !important;
    }

    .hero-product {
        width: min(112%, 28rem) !important;
        max-width: 28rem !important;
    }

    .hero-desc {
        max-width: 29ch !important;
    }

    .h2 {
        font-size: 1.65rem !important;
    }

    .problem-netflix-item {
        flex-basis: 90%;
    }

    .ba-grid-side {
        gap: 0.75rem;
        padding-bottom: 0.3rem;
    }

    .products-title-balance {
        width: 100% !important;
        max-width: none !important;
        font-size: clamp(1.16rem, 5.4vw, 1.34rem) !important;
        line-height: 1.08 !important;
        padding: 0 !important;
    }

    .products-section .center {
        padding-inline: 0 !important;
    }

    .products-section .sub.sub-light {
        max-width: 26ch !important;
        font-size: 0.94rem !important;
    }

    .ba-card {
        flex-basis: 84vw;
        max-width: 84vw;
    }

    .results-slider-dots {
        gap: 0.4rem;
        margin-top: 0.15rem;
    }

    .problem-slider-dots {
        gap: 0.4rem;
        margin-top: 0.05rem;
    }

    .how-card-main {
        height: auto !important;
        aspect-ratio: 1 / 1.06;
        padding: 0 !important;
    }

    .kit-card {
        padding: 1.2rem 0.9rem 1rem !important;
    }

    .kit-visual img {
        width: 100%;
    }

    .kit-title {
        font-size: 1.45rem;
    }

    .kit-value {
        font-size: 2.7rem;
    }

    .faq-q {
        padding: 0.92rem 0.9rem;
    }

    .final-section {
        padding-bottom: 6rem !important;
    }
}

