/* ==========================================================================
   NADA. — estilos
   ========================================================================== */

@font-face {
    font-family: "Caprasimo";
    src: url("../fonts/caprasimo-400.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Bricolage Grotesque";
    src: url("../fonts/bricolage-500.woff2") format("woff2");
    font-weight: 400 500;
    font-display: swap;
}
@font-face {
    font-family: "Bricolage Grotesque";
    src: url("../fonts/bricolage-700.woff2") format("woff2");
    font-weight: 600 700;
    font-display: swap;
}

:root {
    --pink: #e94e72;
    --pink-hot: #f23358;
    --pink-cta: #fa376d;
    --pink-soft: #f56d8b;
    --rose: #e36674;
    --magenta: #c2094a;
    --cream: #fff2e8;
    --cream-2: #fef7e6;
    --cream-3: #fff7e5;
    --blush: #f9d9dd;
    --peach: #f5cec8;
    --mint: #bbe6e4;
    --purple: #9b5de5;
    --cyan: #2beae4;
    --green: #4ee3bb;
    --good: #16b84f;
    --sky: #b3eeff;
    --yellow: #fffd37;

    --font-heading: "Caprasimo", Georgia, serif;
    --font-body: "Bricolage Grotesque", system-ui, -apple-system, "Segoe UI", sans-serif;

    --container: 1440px;
    --gutter: clamp(16px, 2.8vw, 40px);
    --radius: 12px;
    --header-h: 70px;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }
body {
    margin: 0;
    background: var(--cream);
    color: var(--pink);
    font: 500 16px/1.4 var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }

.sr-only {
    position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--pink); color: var(--cream); padding: 8px 16px; }
.skip-link:focus { left: 8px; top: 8px; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 760px; }
.text-center { text-align: center; }
.bg-cream { background: var(--cream); }
.bg-blush { background: var(--blush); }
.bg-mint { background: var(--mint); }

.section { position: relative; padding: clamp(56px, 7vw, 96px) 0; }
.section--tight { padding-top: clamp(24px, 4vw, 56px); }
.section:has(> .divider) { padding-bottom: calc(clamp(56px, 7vw, 96px) + 40px); }

/* Tipografia ------------------------------------------------------------ */
.h1, .h2, .h3, .hero__title, .product__title, .feature__title, .pain-card h2, .founder__sign {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: .98;
    letter-spacing: 0;
}
.h1 { font-size: clamp(44px, 6vw, 72px); }
.h2 { font-size: clamp(34px, 4.3vw, 60px); margin-bottom: 16px; }
.h3 { font-size: clamp(24px, 2.4vw, 32px); margin-bottom: 12px; }

/* Botões ---------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 46px; padding: 12px 28px;
    border-radius: 999px;
    font-family: var(--font-heading); font-size: 16px; text-transform: uppercase; letter-spacing: .02em;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--block { width: 100%; }
.btn--lg { min-height: 50px; padding: 12px 34px; font-size: 18px; }
.btn--sm { min-height: 44px; padding: 10px 22px; }
.btn--pink { background: var(--pink); color: var(--cream); }
.btn--pink:hover { box-shadow: 0 6px 0 var(--magenta); }
.btn--hot { background: var(--pink-cta); color: var(--cream); }
.btn--hot:hover { box-shadow: 0 6px 0 var(--magenta); }
.btn--purple { background: var(--purple); color: #fff; }
.btn--purple:hover { box-shadow: 0 6px 0 #6f35b8; }
.btn--soft { background: var(--pink-soft); color: var(--cream); }
.btn--cream { background: var(--cream); color: var(--pink); }

.round-btn {
    display: inline-grid; place-items: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--pink); color: var(--cream);
    transition: transform .2s var(--ease), opacity .2s;
}
.round-btn .icon { width: 20px; height: 20px; }
.round-btn:hover { transform: scale(1.1); }
.round-btn:disabled { opacity: .35; cursor: default; transform: none; }

.icon { width: 24px; height: 24px; flex: none; }
.icon-btn { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; transition: background-color .2s; }
.icon-btn:hover { background: rgba(255, 255, 255, .15); }

/* Estrelas -------------------------------------------------------------- */
.stars { display: inline-flex; gap: 6px; vertical-align: middle; }
.stars svg { width: 18px; height: 18px; }
.stars--yellow svg { fill: var(--yellow); stroke: #e8c200; stroke-width: .6; }
.stars--lg { gap: 14px; margin-bottom: 18px; }
.stars--lg svg { width: 42px; height: 42px; }
.rating { display: flex; align-items: center; gap: 10px; font-size: 18px; flex-wrap: wrap; }
.rating--center { justify-content: center; }

/* Stickers -------------------------------------------------------------- */
.sticker {
    position: absolute; width: var(--size); height: var(--size);
    transform: rotate(var(--rot)); pointer-events: none; z-index: 3;
}
.sticker svg { width: 100%; height: 100%; overflow: visible; }
.sticker__text {
    position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
    font-family: var(--font-heading); color: var(--fg);
    font-size: calc(var(--size) * .16); line-height: .95;
    transform: rotate(var(--trot, 0deg));
}
.spin-slow svg { animation: spin 22s linear infinite; }
.float { animation: float 5s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float {
    0%, 100% { transform: rotate(var(--rot)) translateY(0); }
    50% { transform: rotate(calc(var(--rot) + 4deg)) translateY(-10px); }
}

/* Formas recortadas ----------------------------------------------------- */
.shaped { position: relative; }
.shaped__clip { width: 100%; height: 100%; }
.shaped__clip > img, .shaped__clip > video { width: 100%; height: 100%; object-fit: cover; }
.shaped__outline { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }

/* Divisores ------------------------------------------------------------- */
.divider { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 2; pointer-events: none; }
.divider svg { width: 100%; }
.divider--curve svg { height: clamp(40px, 7vw, 100px); }
.divider--wavy svg { height: clamp(24px, 3.5vw, 51px); }
.divider--flip svg { transform: scaleX(-1); }

/* Marquee --------------------------------------------------------------- */
.marquee { overflow: hidden; display: flex; user-select: none; }
.marquee__track { display: flex; flex: none; animation: marquee var(--speed, 30s) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; flex: none; align-items: center; }
.marquee__item { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; }
.marquee__sep { flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

.marquee--announcement { background: var(--cream); color: var(--pink); height: 36px; font-size: 14px; --speed: 60s; }
.marquee--announcement .marquee__group { gap: 14px; padding-right: 14px; }
.marquee--announcement .marquee__sep { font-size: 16px; }
.announcement { display: block; position: relative; z-index: 51; }

.marquee--big { background: var(--pink); color: var(--cream-2); padding: 6px 0; --speed: 40s; }
.marquee--big .marquee__group { gap: 24px; padding-right: 24px; }
.marquee--big .marquee__item { font-family: var(--font-heading); font-size: clamp(22px, 2.4vw, 32px); }
.marquee--big .marquee__sep { width: 18px; height: 18px; }
.spin { animation: spin 6s linear infinite; }

.marquee--icons { background: var(--pink); color: var(--cream-2); padding: 10px 0; font-size: 15px; --speed: 35s; }
.marquee--icons .marquee__group { gap: clamp(40px, 9vw, 140px); padding-right: clamp(40px, 9vw, 140px); }
.marquee__icon { display: grid; place-items: center; width: 32px; height: 32px; border: 1.3px solid currentColor; border-radius: 50%; }
.marquee__icon .icon { width: 18px; height: 18px; }

/* Header ---------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--pink); color: var(--cream); transition: box-shadow .3s; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(194, 9, 74, .18); }
.site-header__inner {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    height: var(--header-h); max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter);
}
.site-header__nav ul { display: flex; gap: 20px; }
.site-header__nav a { font-size: 16px; position: relative; padding: 4px 0; }
.site-header__nav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: currentColor;
    transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.site-header__nav a:hover::after, .site-header__nav a[aria-current]::after { transform: scaleX(1); }
.site-header__logo img { width: 136px; height: auto; transition: transform .3s var(--ease); }
.site-header__logo:hover img { transform: rotate(-3deg) scale(1.04); }
.site-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
.site-header__actions .btn { margin-left: 12px; }
.site-header__burger { display: none; }
.cart-btn { position: relative; }
.cart-btn__count {
    position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px;
    border-radius: 9px; background: var(--cream); color: var(--pink);
    font-size: 11px; font-weight: 700; line-height: 18px; text-align: center;
}
.cart-btn.bump { animation: bump .5s var(--ease); }
@keyframes bump { 30% { transform: scale(1.25); } 60% { transform: scale(.92); } }

/* Hero ------------------------------------------------------------------ */
.hero { position: relative; min-height: min(800px, calc(100vh - 106px)); display: flex; align-items: center; overflow: hidden; background: #f6b6b8; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__content { position: relative; z-index: 2; display: flex; justify-content: flex-end; padding-top: 60px; padding-bottom: 120px; }
.hero__text { width: min(520px, 100%); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; color: var(--pink-hot); }
.hero__title { font-size: clamp(44px, 5vw, 60px); color: var(--pink-hot); }
.hero__sub { font-size: 19px; }
.hero__sticker { top: 18%; left: 5%; }

/* Dores + embalagem ----------------------------------------------------- */
.highlights__grid { display: grid; grid-template-columns: 1fr minmax(0, 500px) 1fr; gap: clamp(24px, 5vw, 110px); align-items: center; }
.highlights__col { display: flex; flex-direction: column; gap: 40px; }
.highlights__col:last-child { padding-top: 0; }
.pain-card {
    background: var(--cream); border: 2px solid var(--pink); border-radius: var(--radius);
    padding: 22px 24px; text-align: center; box-shadow: 6px 6px 0 var(--pink);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pain-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--pink); }
.pain-card h2 { font-size: clamp(22px, 1.8vw, 26px); margin-bottom: 10px; }
.highlights__media { position: relative; }
.arch { border-radius: 999px 999px 0 0; overflow: hidden; aspect-ratio: 500 / 665; background: #bfe8fb; }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.highlights__sticker { top: -2%; right: -2%; }

/* Vídeo + texto --------------------------------------------------------- */
.video-text__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.video-text__media .shaped { aspect-ratio: 1; }
.video-text__text { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.video-text__text .h2 { font-size: clamp(30px, 3vw, 40px); margin: 0; }
.video-text__text p { margin-bottom: 12px; }

/* Avaliações ------------------------------------------------------------ */
.reviews { padding-top: 24px; }
.reviews--full { padding-top: clamp(56px, 7vw, 96px); }
.reviews--full .carousel { margin-top: 32px; }
.carousel { position: relative; }
.carousel__track {
    display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
    padding: 20px var(--gutter) 28px; scroll-padding: 0 var(--gutter);
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide { flex: none; scroll-snap-align: start; }
.carousel__nav { display: flex; justify-content: flex-end; gap: 8px; margin-top: 8px; }

.reviews__track { align-items: flex-start; }
.reviews__track .carousel__slide { width: clamp(250px, 21vw, 280px); }
.reviews__track .carousel__slide:nth-child(3n+2) { margin-top: 14px; }
.reviews__track .carousel__slide:nth-child(3n) { margin-top: 28px; }
.review-card {
    background: var(--cream-2); border: 2px solid var(--purple); border-radius: var(--radius);
    padding: 20px 20px 22px; text-align: center; color: var(--rose);
    box-shadow: 6px 6px 0 var(--purple);
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    transition: transform .3s var(--ease);
}
.review-card:hover { transform: rotate(-1.5deg) translateY(-4px); }
.review-card__img { width: 100px; height: 130px; object-fit: cover; border: 2px solid var(--purple); border-radius: 10px; }
.review-card__stars { letter-spacing: 4px; font-size: 18px; }
.review-card__text { font-size: 16px; line-height: 1.4; }
.review-card__name { font-family: var(--font-heading); font-style: normal; font-size: 16px; }
.reviews--full .reviews__track .carousel__slide { width: clamp(270px, 24vw, 320px); }

/* Fundadora ------------------------------------------------------------- */
.founder { color: var(--magenta); }
.founder__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.founder__grid--reverse .founder__media { order: -1; }
.founder__text p { margin-bottom: 20px; }
.founder__text .h2 { margin-bottom: 24px; }
.founder__sign { font-size: 24px; margin-top: 40px; }
.founder__media { position: relative; }
.founder__media .shaped { aspect-ratio: 1; max-width: 640px; margin-left: auto; }
.founder__sticker { bottom: 4%; right: 2%; }

/* Diferenciais ---------------------------------------------------------- */
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; padding-bottom: 20px; }
.feature { text-align: center; }
.feature__media { position: relative; padding: 22px 0 0 22px; margin-bottom: 28px; }
.feature__media .shaped { aspect-ratio: 1; transition: transform .45s var(--ease); }
.feature:hover .feature__media .shaped { transform: rotate(-3deg) scale(1.03); }
.feature__num { top: 0; left: 0; }
.feature__num .sticker__text { font-size: 18px; }
.feature__title { font-size: clamp(20px, 1.8vw, 24px); margin-bottom: 10px; }

/* Produto --------------------------------------------------------------- */
.product { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6.5vw, 96px); align-items: start; }
.product__media { display: grid; grid-template-columns: 92px 1fr; grid-template-rows: auto 1fr auto; column-gap: 20px; row-gap: 8px; position: sticky; top: calc(var(--header-h) + 24px); }
.product__thumbs-up, .product__thumbs-down { grid-column: 1; justify-self: center; }
.product__thumbs { grid-column: 1; display: flex; flex-direction: column; gap: 10px; max-height: 500px; overflow-y: auto; scrollbar-width: none; scroll-behavior: smooth; }
.product__thumbs::-webkit-scrollbar { display: none; }
.product__thumb { flex: none; width: 92px; height: 92px; padding: 2px; opacity: .75; transition: opacity .2s, transform .2s; }
.product__thumb span { display: block; width: 100%; height: 100%; background: var(--pink); padding: 2px; }
.product__thumb img { width: 100%; height: 100%; object-fit: cover; clip-path: url(#clip-flower8); }
.product__thumb.is-active, .product__thumb:hover { opacity: 1; transform: scale(1.04); }
.product__main { grid-column: 2; grid-row: 1 / 4; position: relative; }
.product__slides { position: relative; aspect-ratio: 1; border: 2px solid var(--pink); border-radius: var(--radius); overflow: hidden; background: var(--peach); touch-action: pan-y; }
.product__slides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .45s var(--ease); }
.product__slides img.is-active { opacity: 1; }
.product__dots { display: none; justify-content: center; gap: 8px; margin-top: 12px; }
.product__dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--peach); }
.product__dots button.is-active { background: var(--pink); }
.product__sticker { top: -9%; right: -3%; }
.product__sticker .sticker__text { font-size: 19px; }

.product__info { display: flex; flex-direction: column; gap: 20px; padding-top: 10px; }
.product__title { font-size: clamp(36px, 3.4vw, 48px); line-height: .95; }
.product__price { font-size: 22px; display: flex; align-items: baseline; gap: 8px; }
.product__shipping { font-size: 14px; opacity: .8; }
.product__colors { border: 0; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pill { position: relative; cursor: pointer; }
.pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.pill span {
    display: grid; place-items: center; height: 46px; border-radius: 999px;
    font-family: var(--font-heading); font-size: 16px; transition: background-color .2s, color .2s;
}
.pill:hover span { background: rgba(233, 78, 114, .1); }
.pill input:checked + span { background: var(--pink); color: var(--cream); }
.pill input:focus-visible + span { outline: 2px solid var(--purple); outline-offset: 2px; }

.bundles { background: var(--peach); border-radius: 16px; padding: 40px 24px; display: grid; grid-template-columns: repeat(3, minmax(0, 138px)); justify-content: center; gap: 18px; }
.bundle {
    position: relative; min-height: 112px; padding: 12px 8px;
    border: 2px solid #e35f73; border-radius: 6px; background: var(--cream-3); color: #c65c69;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1); transition: transform .2s var(--ease), background-color .2s, color .2s;
}
.bundle:hover { transform: translateY(-3px); }
.bundle__label { font-size: 22px; font-weight: 600; }
.bundle__price, .bundle__note { font-size: 15px; font-weight: 600; line-height: 1.2; }
.bundle--best { border-color: var(--good); }
.bundle__tag { position: absolute; top: -20px; left: -2px; right: -2px; background: var(--good); color: #fff; font-size: 14px; font-weight: 600; padding: 2px 0; border-radius: 4px 4px 0 0; }
.bundle.is-active { background: var(--purple); border-color: var(--purple); color: #fff; }

.tabs__list { display: flex; gap: 16px; border-bottom: 0; margin-bottom: 20px; flex-wrap: wrap; }
.tabs__btn { padding: 4px 0; font-size: 16px; text-transform: uppercase; border-bottom: 2px solid transparent; transition: border-color .2s; }
.tabs__btn.is-active { border-color: currentColor; }
.tabs__panel p + p { margin-top: 12px; }
.tabs__panel:not([hidden]) { animation: fadeUp .35s var(--ease); }

/* Creators -------------------------------------------------------------- */
.creators { overflow: hidden; }
.creators__head { position: relative; margin-bottom: 40px; }
.creators__head p { font-size: 17px; }
.creators__sticker-left { top: -40px; left: 5%; }
.creators__sticker-left .sticker__text { font-size: 22px; }
.creators__sticker-right { position: absolute; top: -40px; right: 10%; width: 130px; height: 130px; }
.creators__sticker-right .sticker { top: 0; left: 0; }
.creators__sparkle { top: 20px !important; left: 30px !important; }

.coverflow { position: relative; }
.coverflow__stage { position: relative; height: 520px; }
.coverflow__item {
    position: absolute; top: 50%; left: 50%; width: 286px; height: 510px;
    border-radius: 14px; overflow: hidden; background: #d9a6ad;
    transform: translate(-50%, -50%); transition: transform .6s var(--ease), opacity .6s, filter .6s;
    cursor: pointer; box-shadow: 0 10px 30px rgba(194, 9, 74, .12);
}
.coverflow__item video { width: 100%; height: 100%; object-fit: cover; }
.coverflow__play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
    background: rgba(255, 255, 255, .35); color: #fff; backdrop-filter: blur(4px); transition: opacity .3s;
}
.coverflow__play .icon { width: 18px; height: 18px; }
.coverflow__shop, .coverflow__mute {
    position: absolute; bottom: 14px; width: 36px; height: 36px; display: grid; place-items: center; color: #fff;
    opacity: 0; transition: opacity .3s;
}
.coverflow__shop { left: 14px; }
.coverflow__mute { right: 14px; }
.coverflow__item.is-active .coverflow__shop, .coverflow__item.is-active .coverflow__mute { opacity: 1; }
/* invisíveis nos vídeos laterais: não podem receber clique nem foco */
.coverflow__item:not(.is-active) .coverflow__shop, .coverflow__item:not(.is-active) .coverflow__mute { visibility: hidden; }
.coverflow__item.is-playing .coverflow__play { opacity: 0; }
.coverflow__nav { display: flex; justify-content: center; gap: 16px; margin-top: 16px; }
.coverflow__nav button { width: 30px; height: 30px; display: grid; place-items: center; background: #fff; color: #111; border-radius: 4px; transition: transform .2s; }
.coverflow__nav button:hover { transform: scale(1.1); }
.coverflow__nav .icon { width: 18px; height: 18px; }

/* Texto curvo ----------------------------------------------------------- */
.curved-text { position: relative; padding-bottom: clamp(50px, 7vw, 110px); overflow: hidden; }
.curved-text svg { width: 100%; height: 200px; }
.curved-text text { font-family: var(--font-heading); font-size: 34px; fill: var(--pink); }

/* FAQ ------------------------------------------------------------------- */
.faq .h2 { margin-bottom: 36px; }
.faq__list { border-top: 2px solid var(--pink); }
.faq__item { border-bottom: 2px solid var(--pink); }
.faq__item summary {
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 24px 0; cursor: pointer; font-size: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { width: 20px; height: 20px; transition: transform .35s var(--ease); }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__answer { overflow: hidden; }
.faq__answer p { padding: 0 32px 24px 0; }

/* Comparativo ----------------------------------------------------------- */
.compare p { font-size: 18px; }
.compare__wrap { position: relative; margin-top: 40px; }
.compare__table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--cream-2); border: 2px solid var(--pink); border-radius: 16px; overflow: hidden; box-shadow: 8px 8px 0 var(--pink); }
.compare__table th, .compare__table td { padding: 18px 16px; text-align: center; border-bottom: 1.5px solid rgba(233, 78, 114, .3); }
.compare__table tbody tr:last-child > * { border-bottom: 0; }
.compare__table thead th { font-family: var(--font-heading); font-weight: 400; font-size: 20px; }
.compare__table tbody th { text-align: left; font-weight: 600; }
.compare__table .compare__nada { background: var(--pink); color: var(--cream); }
.compare__table thead .compare__nada img { width: 90px; margin: 0 auto; }
.compare .yes, .compare .no { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; }
.compare .yes { background: var(--cream); color: var(--good); }
.compare .no { background: rgba(233, 78, 114, .12); color: var(--pink); }
.compare .yes .icon, .compare .no .icon { width: 18px; height: 18px; stroke-width: 2.5; }
.compare__sticker { right: -60px; bottom: -60px; }
.compare__sticker .sticker__text { font-size: 18px; }

/* Como usar ------------------------------------------------------------- */
.how { color: var(--magenta); }
.how__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.how__media { position: relative; }
.how__media .shaped { aspect-ratio: 1; }
.how__sticker-1 { top: -30px; right: 0; }
.how__sticker-2 { bottom: -20px; left: -20px; }
.how__sticker-1 .sticker__text, .how__sticker-2 .sticker__text { font-size: 18px; }
.how__lead { font-size: 18px; margin-bottom: 28px; }
.how__steps { display: grid; gap: 18px; counter-reset: step; }
.how__steps li { background: var(--cream-2); border: 2px solid var(--magenta); border-radius: var(--radius); padding: 16px 20px; box-shadow: 5px 5px 0 var(--magenta); }
.how__steps h3 { font-family: var(--font-heading); font-weight: 400; font-size: 20px; margin-bottom: 4px; }

/* Banner ---------------------------------------------------------------- */
.banner { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.banner--page { min-height: 520px; }
.banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to left, rgba(120, 8, 42, .72) 0%, rgba(120, 8, 42, .45) 45%, rgba(120, 8, 42, 0) 75%); }
.banner__content { position: relative; z-index: 2; display: flex; justify-content: flex-end; padding-bottom: 60px; }
.banner__text { width: min(520px, 100%); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; color: var(--cream); }
.banner__text .hero__title { color: var(--cream); }
.banner__text .rating { justify-content: center; }
.banner__sticker { top: 12%; left: 6%; }
.banner__sticker .sticker__text { font-size: 24px; }

/* Sobre ----------------------------------------------------------------- */
.about-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-hero__text { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; font-size: 18px; max-width: 520px; }
.about-hero__media { position: relative; height: 480px; }
.about-hero__img { position: absolute; width: 58%; aspect-ratio: 3 / 4; object-fit: cover; border: 2px solid var(--pink); border-radius: 200px 200px 16px 16px; box-shadow: 8px 8px 0 var(--pink); }
.about-hero__img--1 { left: 0; top: 0; transform: rotate(-4deg); }
.about-hero__img--2 { right: 0; bottom: 0; transform: rotate(5deg); border-radius: 16px 16px 200px 200px; }
.shapes-gallery__slide { width: clamp(220px, 24vw, 340px); }
.shapes-gallery__slide .shaped { aspect-ratio: 1; }

/* Contato / formulários ------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 6px; font-size: 15px; }
.field em { font-style: normal; }
.field input, .field textarea {
    width: 100%; padding: 14px 16px; background: var(--cream-2); color: var(--pink);
    border: 2px solid var(--pink); border-radius: 10px; outline: none; transition: box-shadow .2s;
}
.field input:focus, .field textarea:focus { box-shadow: 4px 4px 0 var(--pink); }
.field input::placeholder, .field textarea::placeholder { color: rgba(233, 78, 114, .5); }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--magenta); background: #ffe6ea; }
.contact-form { margin-top: 12px; justify-items: start; }
.contact-form .field, .contact-form .form__row { width: 100%; }
.form__msg { font-size: 15px; min-height: 1.2em; }
.form__msg.is-ok { color: var(--good); }
.form__msg.is-error { color: var(--magenta); }
.cta-contact p { margin-bottom: 24px; font-size: 18px; }

/* Políticas ------------------------------------------------------------- */
.policy__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.policy__tabs a { padding: 8px 16px; border: 2px solid var(--pink); border-radius: 999px; font-size: 14px; }
.policy__tabs a[aria-current] { background: var(--pink); color: var(--cream); }
.rte { line-height: 1.6; color: var(--magenta); }
.rte p, .rte ul, .rte ol { margin-bottom: 14px; }
.rte ul { list-style: disc; padding-left: 20px; }
.rte ol { list-style: decimal; padding-left: 20px; }
.rte a { text-decoration: underline; }
.rte hr { border: 0; border-top: 1.5px solid var(--pink); margin: 24px 0; }

/* 404 ------------------------------------------------------------------- */
.not-found .container { display: flex; flex-direction: column; align-items: center; gap: 20px; min-height: 50vh; justify-content: center; }
.not-found__sticker { position: relative; }

/* Footer ---------------------------------------------------------------- */
.site-footer { position: relative; background: var(--pink); color: var(--cream-2); padding-top: clamp(80px, 9vw, 130px); overflow: hidden; }
.site-footer > .divider { top: -1px; bottom: auto; transform: rotate(180deg); }
.site-footer__grid { display: grid; grid-template-columns: 1.1fr .55fr .55fr 1fr; gap: 40px; }
.site-footer__about p { max-width: 420px; margin-bottom: 36px; }
.site-footer__social { display: flex; gap: 16px; }
.site-footer__social .icon { width: 20px; height: 20px; }
.site-footer__social a { display: block; transition: transform .2s; }
.site-footer__social a:hover { transform: scale(1.15); }
.site-footer__links { display: grid; gap: 10px; align-content: start; }
.site-footer__links a:hover { text-decoration: underline; }
.site-footer__newsletter h2 { font-family: var(--font-heading); font-weight: 400; font-size: 24px; margin-bottom: 16px; }
.newsletter { display: grid; gap: 10px; }
.newsletter input { width: 100%; height: 48px; padding: 0 16px; background: transparent; border: 1px solid var(--cream-2); color: var(--cream-2); outline: none; }
.newsletter input::placeholder { color: var(--cream-2); opacity: .9; }
.newsletter input:focus { box-shadow: inset 0 0 0 1px var(--cream-2); }
.site-footer .form__msg.is-ok, .site-footer .form__msg.is-error { color: var(--cream-2); }
.site-footer__copy { margin-top: 48px; font-size: 14px; }
.site-footer__logos { margin-top: 40px; padding-bottom: 40px; overflow: hidden; }
/* padding = gap, para as duas metades terem a mesma largura e o loop não pular */
.site-footer__logos-track { display: flex; gap: 50px; padding-right: 50px; width: max-content; animation: marquee 50s linear infinite; }
.site-footer__logos img { width: 220px; flex: none; opacity: .6; filter: brightness(0) saturate(100%) invert(88%) sepia(9%) saturate(771%) hue-rotate(314deg) brightness(101%) contrast(92%); }

/* Drawers / modais ------------------------------------------------------ */
.drawer, .modal { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.drawer.is-open, .modal.is-open { visibility: visible; }
.drawer__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, .45); opacity: 0; transition: opacity .35s; }
.is-open .drawer__overlay { opacity: 1; }
.drawer__panel {
    position: absolute; top: 0; bottom: 0; width: min(420px, 92vw);
    background: var(--cream); display: flex; flex-direction: column;
    transition: transform .45s var(--ease);
}
.drawer--right .drawer__panel { right: 0; transform: translateX(100%); }
.drawer--left .drawer__panel { left: 0; transform: translateX(-100%); background: var(--pink); color: var(--cream); }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__panel:focus, .modal__panel:focus { outline: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1.5px solid rgba(233, 78, 114, .25); }
.drawer--left .drawer__head { border-color: rgba(255, 255, 255, .25); }
.drawer__nav { display: grid; padding: 12px 20px; }
.drawer__nav a, .drawer__nav button { text-align: left; font-family: var(--font-heading); font-size: 28px; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .2); }
.drawer__social { display: flex; gap: 18px; padding: 24px 20px; margin-top: auto; }

.cart__title { font-family: var(--font-heading); font-weight: 400; font-size: 26px; }
.cart__shipping { padding: 14px 20px; font-size: 14px; }
.cart__bar { height: 8px; border-radius: 4px; background: var(--peach); margin-top: 8px; overflow: hidden; }
.cart__bar span { display: block; height: 100%; width: 0; background: var(--pink); border-radius: 4px; transition: width .5s var(--ease); }
.cart__items { flex: 1; overflow-y: auto; padding: 0 20px; }
.cart-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1.5px solid rgba(233, 78, 114, .2); animation: fadeUp .35s var(--ease); }
.cart-item img { width: 76px; height: 76px; object-fit: cover; border-radius: 10px; border: 1.5px solid var(--pink); }
.cart-item__title { font-weight: 700; font-size: 15px; line-height: 1.25; }
.cart-item__meta { font-size: 13px; opacity: .85; margin-top: 2px; }
.cart-item__price { font-weight: 700; text-align: right; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--pink); border-radius: 999px; margin-top: 10px; }
.qty button { width: 30px; height: 30px; display: grid; place-items: center; }
.qty .icon { width: 14px; height: 14px; }
.qty span { min-width: 22px; text-align: center; font-weight: 700; font-size: 14px; }
.cart-item__remove { margin-top: 10px; opacity: .7; }
.cart-item__remove .icon { width: 18px; height: 18px; }
.cart-item__remove:hover { opacity: 1; }
.cart__empty { flex: 1; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 18px; padding: 20px; text-align: center; }
.cart.is-empty .cart__empty { display: flex; }
.cart.is-empty .cart__items, .cart.is-empty .cart__foot, .cart.is-empty .cart__shipping { display: none; }
.cart__foot { padding: 18px 20px 22px; border-top: 1.5px solid rgba(233, 78, 114, .25); display: grid; gap: 10px; }
.cart__total { display: flex; justify-content: space-between; font-size: 18px; }
.cart__note { font-size: 13px; opacity: .8; }

.modal { display: grid; place-items: center; padding: 16px; }
.modal__panel {
    position: relative; width: min(560px, 100%); background: var(--cream); border: 2px solid var(--pink); border-radius: 18px;
    padding: 32px; box-shadow: 8px 8px 0 var(--pink);
    opacity: 0; transform: translateY(20px) scale(.97); transition: opacity .35s, transform .35s var(--ease);
}
.modal.is-open .modal__panel { opacity: 1; transform: none; }
.modal__panel--small { width: min(420px, 100%); }
.modal__panel p { margin-bottom: 18px; }
.modal__close { position: absolute; top: 10px; right: 10px; }
.modal__close:hover { background: rgba(233, 78, 114, .1); }

.search-modal { place-items: start center; padding-top: 12vh; }
.search-modal .modal__panel { padding: 0; overflow: hidden; }
.search-modal__form { display: flex; align-items: center; gap: 10px; padding: 10px 12px 10px 18px; border-bottom: 2px solid var(--pink); }
.search-modal__form input { flex: 1; border: 0; background: none; outline: none; font-size: 18px; height: 44px; }
.search-modal__form input::placeholder { color: rgba(233, 78, 114, .55); }
.search-modal__results { max-height: 50vh; overflow-y: auto; }
.search-modal__results a { display: block; padding: 14px 18px; border-bottom: 1px solid rgba(233, 78, 114, .15); }
.search-modal__results a:hover, .search-modal__results a:focus { background: var(--blush); outline: none; }
.search-modal__results strong { display: block; }
.search-modal__results small { display: block; opacity: .8; font-size: 13px; }
.search-modal__results mark { background: var(--yellow); color: inherit; }
.search-modal__results .empty { padding: 18px; opacity: .8; }

.promo__panel { text-align: center; background: var(--blush); }
.promo__panel .h3 { padding: 0 20px; }

.toast {
    position: fixed; left: 50%; bottom: 24px; z-index: 200; transform: translate(-50%, calc(100% + 40px)); visibility: hidden;
    max-width: calc(100% - 32px); background: var(--purple); color: #fff; padding: 14px 22px; border-radius: 14px;
    font-weight: 600; box-shadow: 0 10px 30px rgba(0, 0, 0, .2); transition: transform .45s var(--ease); text-align: center;
}
.toast.is-visible { transform: translate(-50%, 0); visibility: visible; }

/* Animações de entrada -------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0ms); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .about-hero__img.reveal.is-in.about-hero__img--1 { transform: rotate(-4deg); }
.js .about-hero__img.reveal.is-in.about-hero__img--2 { transform: rotate(5deg); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .js .reveal { opacity: 1; transform: none; }
}

/* Responsivo ------------------------------------------------------------ */
@media (max-width: 1100px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .highlights__grid { grid-template-columns: 1fr 1fr; }
    .highlights__media { grid-column: 1 / -1; grid-row: 1; max-width: 460px; margin: 0 auto; width: 100%; }
    .compare__sticker { right: -10px; bottom: -70px; }
}

@media (max-width: 900px) {
    :root { --header-h: 60px; }
    .site-header__inner { grid-template-columns: 1fr auto 1fr; }
    .site-header__nav, .hide-mobile { display: none !important; }
    .site-header__burger { display: inline-grid; }
    .site-header__logo img { width: 104px; }

    .video-text__grid, .founder__grid, .how__grid, .about-hero__grid { grid-template-columns: 1fr; }
    .founder__grid--reverse .founder__media { order: 0; }
    .founder__media .shaped { margin: 0 auto; }

    .product { grid-template-columns: 1fr; }
    .product__media { position: static; grid-template-columns: 1fr; }
    .product__thumbs, .product__thumbs-up, .product__thumbs-down { display: none; }
    .product__main { grid-column: 1; grid-row: auto; }
    .product__dots { display: flex; }
    .product__sticker { top: -30px; right: -6px; --size: 110px !important; }
    .product__sticker .sticker__text { font-size: 15px; }

    /* Tablet: foto em cima e texto embaixo (lado a lado o texto cobria a modelo) */
    .hero { display: block; min-height: 0; background: #f4b3bb; }
    .hero__bg { position: relative; height: 62vw; }
    .hero__bg img { object-position: 30% top; }
    .hero__bg::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 28%; background: linear-gradient(to bottom, rgba(244, 179, 187, 0), #f4b3bb); }
    .hero__content { justify-content: center; padding-top: 32px; padding-bottom: 100px; }
    .hero__sticker { --size: 120px !important; top: 6vw; left: auto; right: 5%; }

    .coverflow__stage { height: 440px; }
    .coverflow__item { width: 230px; height: 410px; }
}

@media (max-width: 749px) {
    .hero { display: block; min-height: 0; background: #f4b3bb; }
    .hero__bg { position: relative; height: auto; aspect-ratio: 801 / 1088; }
    .hero__bg img { object-position: center top; }
    .hero__bg::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 28%; background: linear-gradient(to bottom, rgba(244, 179, 187, 0), #f4b3bb); }
    .hero__content { justify-content: center; padding-top: 32px; padding-bottom: 90px; }
    .hero__text { gap: 14px; }
    .hero__title { font-size: 42px; }
    .hero__sub { font-size: 16px; }
    .hero__sticker { --size: 96px !important; top: 100vw; left: auto; right: 4%; }
    .rating { font-size: 15px; justify-content: center; }

    .highlights__grid { grid-template-columns: 1fr; gap: 24px; }
    .highlights__col { gap: 24px; }
    .highlights__sticker { --size: 100px !important; right: 0; }

    .features__grid { grid-template-columns: 1fr; gap: 40px; max-width: 360px; }
    .bundles { padding: 32px 10px 20px; gap: 8px; grid-template-columns: repeat(3, 1fr); }
    .bundle { min-height: 100px; }
    .bundle__label { font-size: 18px; }
    .bundle__price, .bundle__note { font-size: 13px; }
    .bundle__tag { font-size: 11px; top: -18px; }

    .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .site-footer__logos img { width: 140px; }
    .form__row { grid-template-columns: 1fr; }
    .compare__table th, .compare__table td { padding: 12px 8px; font-size: 14px; }
    .compare__table thead th { font-size: 15px; }
    .compare__table thead .compare__nada img { width: 60px; }
    .compare__sticker { --size: 96px !important; bottom: -64px; }
    .compare__sticker .sticker__text { font-size: 13px; }
    .creators__sticker-left { --size: 90px !important; top: -60px; left: 0; }
    .creators__sticker-left .sticker__text { font-size: 14px; }
    .creators__sticker-right { transform: scale(.6); top: -70px; right: -20px; }
    .creators__head { padding-top: 40px; }
    .about-hero__media { height: 380px; }
    .banner { min-height: 520px; align-items: flex-start; }
    .banner::before { background: rgba(120, 8, 42, .55); }
    .banner__bg { object-position: 20% center; }
    .banner__content { justify-content: center; padding-top: 40px; }
    .banner__sticker { --size: 90px !important; top: auto; bottom: 16%; }
    .modal__panel { padding: 28px 20px; }
    .curved-text text { font-size: 44px; }
}
