/* ────────────────────────────────────────────────────────────────
   BASE HEALTH — STYLES (mobile-first)
   Ordem: Reset → Layout → Header → Hero → Ciclo → Ativos AM/PM
          → Kit Card → Mood → Footer → Anim utilities
──────────────────────────────────────────────────────────────── */

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--base-bg);
  color: var(--base-ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ── Grão sutil global (textura premium, aria-hidden) ──────────── */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ── Container ─────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }

/* ── HEADER ────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  padding: var(--s-4) 0;
  background: linear-gradient(to bottom, rgba(244,241,236,0.95), rgba(244,241,236,0.6));
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--base-line);
  transition: background var(--dur-med) var(--ease-out), padding var(--dur-med) var(--ease-out), border-color var(--dur-med);
}
.header[data-scrolled="true"] {
  padding: var(--s-3) 0;
  background: rgba(244,241,236,0.92);
  border-bottom-color: var(--base-line-strong);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}
.header__brand { display: inline-flex; align-items: center; min-height: 48px; }
.header__brand img { height: 28px; width: auto; }
.header__nav { display: none; }

@media (min-width: 880px) {
  .header__nav {
    display: flex;
    gap: var(--s-8);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: var(--fs-sm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .header__nav a {
    color: var(--base-ink-2);
    position: relative;
    padding: var(--s-2) 0;
    transition: color var(--dur-fast) var(--ease-out);
  }
  .header__nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 1px;
    background: var(--brand-deep);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-med) var(--ease-out);
  }
  .header__nav a:hover::after,
  .header__nav a:focus-visible::after { transform: scaleX(1); }
}

.header__actions { display: flex; align-items: center; gap: var(--s-2); }
.icon-btn {
  width: 48px; height: 48px;
  display: inline-grid; place-items: center;
  border-radius: var(--r-pill);
  color: var(--base-ink-2);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  position: relative;
}
.icon-btn:hover { background: rgba(12,12,10,0.06); }
.icon-btn svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: 8px; right: 8px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--base-ink);
  color: var(--base-surface);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 10px; font-weight: 600;
  display: grid; place-items: center;
  line-height: 1;
}

/* Menu mobile */
.menu-btn[aria-expanded="true"] .icon-bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .icon-bar:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .icon-bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.icon-bar {
  display: block; width: 18px; height: 1.5px;
  background: currentColor;
  margin: 4px 0;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast);
  transform-origin: center;
}
@media (min-width: 880px) { .menu-btn { display: none; } }

.mobile-drawer {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--base-bg);
  z-index: calc(var(--z-header) - 1);
  padding: var(--s-8) var(--gutter);
  transform: translateY(-100%);
  transition: transform var(--dur-med) var(--ease-out);
  visibility: hidden;
}
.mobile-drawer[data-open="true"] {
  transform: translateY(0);
  visibility: visible;
}
.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.mobile-drawer a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-lg);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--base-line);
}
@media (min-width: 880px) { .mobile-drawer { display: none; } }

/* ────────────────────────────────────────────────────────────────
   HERO V2 — inspirado no template Webflow "for:human" (BYQ Studio)
   Estrutura: top split column (label+H1 | texto+CTAs)
              + parallax visual com 3 features overlaid
──────────────────────────────────────────────────────────────── */
.hero-v2 {
  position: relative;
  padding-top: 100px;
  padding-bottom: 0;
  background: var(--base-bg);
  isolation: isolate;
  z-index: 2;
}

/* ── Top split ─────────────────────────────────────────────────── */
.hero-v2__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  padding-top: var(--s-12);
  padding-bottom: var(--s-16);
  align-items: end;
}
@media (min-width: 880px) {
  .hero-v2__top {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-16);
    padding-top: var(--s-16);
    padding-bottom: var(--s-20);
  }
}

/* Label master — pill com ícone */
.label-master {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(12, 12, 10, 0.04);
  border: 1px solid var(--base-line);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--base-ink-2);
  width: max-content;
}
.label-master--light {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.label-icon {
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  color: var(--brand-deep);
}
.label-master--light .label-icon { color: var(--am-400); }

/* Numeração de etapa dentro do label (parallax do hero) */
.label-step {
  font-weight: 600;
  color: var(--am-400);
  padding-right: var(--s-2);
  border-right: 1px solid rgba(255,255,255,0.3);
  line-height: 1;
}

/* Headline gigante */
.hero-v2__headline {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.text-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-3xl);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--base-ink);
  margin: 0;
  text-transform: none;
}
.text-h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--brand-deep);
}

/* Coluna direita */
.hero-v2__right {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.text-large {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(16px, 1.1vw + 10px, 21px);
  line-height: 1.5;
  color: var(--base-ink-2);
  margin: 0;
  max-width: 38ch;
}
.hero-v2__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

/* CTAs */
.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 var(--s-8);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), box-shadow var(--dur-med), border-color var(--dur-fast);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.cta-main:hover { transform: translateY(-1px); }
.cta-main--primary {
  background: var(--base-ink);
  color: var(--base-surface);
  box-shadow: 0 12px 28px -10px rgba(12,12,10,0.3);
}
.cta-main--primary:hover {
  background: var(--base-ink-2);
  box-shadow: 0 18px 38px -12px rgba(12,12,10,0.4);
}
.cta-main--outline {
  background: transparent;
  color: var(--base-ink);
  border-color: var(--base-ink);
}
.cta-main--outline:hover {
  background: var(--base-ink);
  color: var(--base-surface);
}

/* ── PARALLAX MASTER (template BYQ for:human) ────────────────────
   Container alto (300vh). Vídeo é sticky no topo, ficando "pinado"
   enquanto o usuário rola. As 3 features são empilhadas (cada 100vh)
   e cada uma faz fade in→fade out conforme passa pelo centro da
   viewport. */
.parallax-master {
  position: relative;
  width: 100%;
}

.video-parallax {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  z-index: 0;
}
.video-parallax__el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  will-change: transform;
}
.video-parallax__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(12,12,10,0.55) 0%,
      rgba(12,12,10,0.30) 30%,
      rgba(12,12,10,0.40) 70%,
      rgba(12,12,10,0.65) 100%);
}

/* Texto sobreposto: cada feature ocupa 100vh e fica acima do vídeo
   por z-index, mas como o vídeo é sticky, ele permanece visível enquanto
   o texto rola por cima. */
.parallax-text {
  position: relative;
  z-index: 2;
  /* O parallax-text fica acima do video-parallax mas o sticky do vídeo
     puxa o vídeo junto. Subimos o texto inteiro pra empilhar com o vídeo
     usando margin negativa: -100vh = vídeo + textos compartilham scroll. */
  margin-top: -100vh;
  margin-top: -100svh;
}

.home-c-video-feature {
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* fade dinâmico controlado pelo JS via CSS var */
  --feature-progress: 0;
  opacity: var(--feature-progress);
  transform: translateY(calc((1 - var(--feature-progress)) * 24px));
  will-change: opacity, transform;
  transition: opacity 80ms linear, transform 80ms linear;
}

.parallax-text__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  color: #fff;
  text-align: center;
  align-items: center;
  max-width: 920px;
}
.parallax-text__inner .label-master {
  margin: 0 auto;
}

.text-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw + 12px, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance; /* quando quebrar (mobile), quebra equilibrado */
}
.text-h2--light {
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.45);
}

.parallax-text__desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--fs-md);
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  margin: 0;
  max-width: 50ch;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

/* Reduce motion — pula efeito de transform/opacity dinâmico */
@media (prefers-reduced-motion: reduce) {
  .home-c-video-feature {
    --feature-progress: 1 !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .parallax-text {
    margin-top: 0;
  }
  .video-parallax {
    position: relative;
    height: 60vh;
  }
}

/* ── HERO ANTIGO (mantido como fallback) ──────────────────────── */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: var(--s-16);
  background: var(--base-bg);
  isolation: isolate;
  z-index: 2;
  display: none; /* desligado — substituído por .hero-v2 */
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .hero__grid { aspect-ratio: 16 / 8; gap: var(--s-3); } }
@media (min-width: 1024px) { .hero__grid { aspect-ratio: 16 / 7; } }

.hero__panel {
  position: relative;
  overflow: hidden;
  background: #2a2520;
}
.hero__panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.06);
  transition: transform 1.4s var(--ease-out);
}
.hero__panel::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%);
}
.hero.is-ready .hero__panel img { transform: scale(1); }

.hero__headline {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  z-index: 2;
  pointer-events: none;
}
.hero__headline h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: #fff;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  /* Sombra leve pra contraste em qualquer foto */
  text-shadow: 0 4px 28px rgba(0,0,0,0.55);
  max-width: 18ch;
}
.hero__headline h1 .accent {
  display: inline-block;
  background: linear-gradient(180deg, transparent 60%, rgba(170,159,139,0.5) 60%);
}

.hero__sub {
  text-align: center;
  color: var(--base-mute);
  font-size: var(--fs-md);
  font-family: var(--font-sans);
  margin-top: var(--s-6);
  max-width: 56ch;
  margin-inline: auto;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
  margin-top: var(--s-8);
}

/* ── BOTÕES ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 52px;
  padding: 0 var(--s-8);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), box-shadow var(--dur-med);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--base-ink);
  color: var(--base-surface);
  box-shadow: 0 12px 28px -10px rgba(12,12,10,0.3);
}
.btn--primary:hover { background: var(--base-ink-2); box-shadow: 0 18px 38px -12px rgba(12,12,10,0.4); }
.btn--secondary {
  background: transparent;
  color: var(--base-ink);
  border: 1.5px solid var(--base-ink);
}
.btn--secondary:hover { background: var(--base-ink); color: var(--base-surface); }
.btn--am {
  background: var(--am-500);
  color: var(--am-ink);
  box-shadow: 0 12px 28px -8px rgba(232,185,35,0.55);
}
.btn--am:hover { background: var(--am-400); }
.btn--pm {
  background: var(--pm-500);
  color: var(--pm-ink);
}
.btn--pm:hover { background: var(--pm-400); }
.btn--large { min-height: 60px; padding: 0 var(--s-10); font-size: var(--fs-base); }
.btn--block { width: 100%; }

.btn .arrow {
  transition: transform var(--dur-fast) var(--ease-out);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ── EYEBROW (label de seção) ──────────────────────────────────── */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--brand-deep);
}

/* ── SECTION ───────────────────────────────────────────────────── */
.section {
  padding: var(--s-20) 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 880px) { .section { padding: var(--s-24) 0; } }

.section__head {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-bottom: var(--s-12);
}
.section__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-2xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  margin: 0;
  text-transform: uppercase;
  color: var(--base-ink);
  max-width: 22ch;
}
.section__head p {
  color: var(--base-mute);
  font-size: var(--fs-md);
  max-width: 56ch;
  margin: 0;
}

/* ── CICLO COMPLETO (AM + PM) — statement + cards + marquee ────── */
.cycle-v2 {
  background: #000;
  overflow: hidden;
}

.cycle-v2__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.cycle-v2 .eyebrow { color: rgba(255,255,255,0.78); }
.cycle-v2 .eyebrow::before { background: rgba(255,255,255,0.78); }
.cycle-v2__intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw + 10px, 68px);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  color: #fff;
  margin: var(--s-4) 0 var(--s-5);
  max-width: 22ch;
}
.cycle-v2__intro p {
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 1.2vw + 10px, 23px);
  max-width: 52ch;
  margin: 0 0 var(--s-8);
}
/* CTA invertido — botão escuro sumiria no fundo preto */
.cycle-v2 .btn--primary {
  background: var(--base-surface);
  color: var(--base-ink);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.5);
}
.cycle-v2 .btn--primary:hover {
  background: var(--brand-tint);
  box-shadow: 0 18px 38px -12px rgba(0,0,0,0.6);
}

.cycle-v2__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
  max-width: 880px;
  margin: var(--s-16) auto 0;
}
@media (max-width: 767px) {
  .cycle-v2__cards { grid-template-columns: 1fr; }
}
.cycle-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-12);
  background: var(--base-surface);
  border-radius: var(--r-md);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
}
.cycle-card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: var(--r-sm);
}
@media (max-width: 767px) {
  .cycle-card__icon { width: 48px; height: 48px; }
}
.cycle-card__icon svg { width: 28px; height: 28px; }
.cycle-card--am   .cycle-card__icon { background: var(--am-50);     color: var(--am-600); }
.cycle-card--pm   .cycle-card__icon { background: var(--pm-50);     color: var(--pm-400); }
.cycle-card--base .cycle-card__icon { background: var(--brand-tint); color: var(--brand-deep); }
.cycle-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--base-ink);
  margin: 0 0 var(--s-1);
}
.cycle-card p {
  font-size: var(--fs-base);
  color: var(--base-mute);
  line-height: var(--lh-normal);
  margin: 0;
}

/* Marquee de imagens — loop infinito para a esquerda */
.cycle-v2__marquee {
  margin-top: var(--s-20);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: cycle-marquee 50s linear infinite;
}
@keyframes cycle-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}
.marquee__set {
  display: flex;
  flex: none;
  gap: var(--s-2);
  padding-right: var(--s-2); /* fecha o loop: cada set inclui o gap final */
}
.marquee__item {
  position: relative;
  flex: none;
  width: 530px;
  height: 512px;
  border-radius: var(--r-md);
  overflow: hidden;
}
.marquee__item > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%; /* sobra vertical para o parallax */
  object-fit: cover;
  transform: translateY(-10%);
  will-change: transform;
}
.marquee__item--product {
  display: grid;
  place-items: center;
  background: var(--brand-tint);
}
.marquee__item--product > img {
  position: static;
  width: 72%;
  height: auto;
  object-fit: contain;
  transform: none;
}
.marquee__tag {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  z-index: 2;
  background: var(--base-surface);
  color: var(--base-ink);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .marquee__item { width: 260px; height: 340px; }
}
@media (max-width: 767px) {
  .marquee__item { width: 220px; height: 300px; }
}
@media (max-width: 479px) {
  .marquee__item { width: 200px; height: 240px; }
}

/* ── ATIVOS — ACCORDION TABS (AM) — split: cards expansíveis | painel ── */
.actives-tabs {
  background: var(--base-surface);
  color: var(--base-ink);
  overflow: hidden;
  --actives-accent: var(--am-500);
  --actives-accent-soft: rgba(232,185,35,0.14);
  --actives-glow: rgba(232,185,35,0.32);
}
.actives-tabs--pm {
  /* um tom acima do branco — creme do site */
  background: var(--base-bg);
  --actives-accent: var(--pm-400);
  --actives-accent-soft: rgba(42,56,102,0.10);
  --actives-glow: rgba(107,120,168,0.36);
}
.actives-tabs--pm .actives-tabs__label { color: var(--pm-400); }
.actives-tabs--pm .ingredient-tab__icon { color: var(--pm-ink); }
.actives-tabs--pm .actives-tabs__media {
  background:
    radial-gradient(80% 65% at 50% 72%, var(--actives-glow), transparent 72%),
    linear-gradient(180deg, #1b2040 0%, #0d1024 100%);
}

.actives-tabs__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-6);
  max-width: none;
  margin-bottom: var(--s-12);
}
.actives-tabs__label {
  display: inline-flex;
  align-items: center;
  padding: 5px var(--s-3);
  border-radius: var(--r-pill);
  background: var(--actives-accent-soft);
  color: var(--am-600);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}
.actives-tabs__head h2 {
  color: var(--base-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw + 10px, 68px);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  margin: 0;
}
.actives-tabs__head h2 { text-wrap: balance; }
.actives-tabs__h2sub {
  display: block;
  margin-top: 14px;
  font-size: clamp(16px, 1.2vw + 10px, 23px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  color: var(--base-ink-2);
}
@media (min-width: 880px) { .actives-tabs__h2sub { white-space: nowrap; } }

.actives-tabs__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  align-items: stretch;
}
@media (min-width: 880px) {
  .actives-tabs__layout { grid-template-columns: 1fr 1.3fr; gap: var(--s-8); }
  /* PM: grid invertido — foto à esquerda, cards à direita */
  .actives-tabs--pm .actives-tabs__layout { grid-template-columns: 1.3fr 1fr; }
  .actives-tabs--pm .actives-tabs__media { order: -1; }
}

/* Coluna esquerda: pilha de cards-acordeão */
.actives-tabs__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.ingredient-tab {
  border-radius: var(--r-md);
  background: var(--base-surface-2);
  border: 1px solid var(--base-line);
  transition: background var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.ingredient-tab.is-active {
  background: var(--base-surface);
  border-color: var(--base-line-strong);
  box-shadow: var(--shadow-md);
}

.ingredient-tab__toggle {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  width: 100%;
  padding: var(--s-5) var(--s-6);
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--base-ink);
  text-align: left;
  font: inherit;
}

.ingredient-tab__icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--actives-accent);
  color: var(--am-ink);
  display: grid;
  place-items: center;
  transition: transform var(--dur-med) var(--ease-spring);
}
.ingredient-tab__toggle:hover .ingredient-tab__icon { transform: scale(1.08); }
.ingredient-tab__icon svg {
  width: 22px; height: 22px;
}

.ingredient-tab__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-md);
  letter-spacing: var(--tracking-snug);
}

/* Corpo expansível — truque 0fr → 1fr */
.ingredient-tab__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-med) var(--ease-out);
}
.ingredient-tab.is-active .ingredient-tab__body { grid-template-rows: 1fr; }
.ingredient-tab__body-inner { overflow: hidden; }
.ingredient-tab__body-inner p {
  margin: 0;
  /* alinha o texto com o título (ícone 44px + gap) */
  padding: 0 var(--s-6) var(--s-6) calc(var(--s-6) + 44px + var(--s-5));
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  color: var(--base-mute);
}

.actives-tabs__cta {
  margin-top: var(--s-4);
  align-self: flex-start;
}

/* Coluna direita: painel visual com glow */
.actives-tabs__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
  padding: var(--s-10);
  border-radius: var(--r-md);
  overflow: hidden;
  background:
    radial-gradient(80% 65% at 50% 72%, var(--actives-glow), transparent 72%),
    linear-gradient(180deg, #25221a 0%, #121110 100%);
}
@media (max-width: 879px) { .actives-tabs__media { min-height: 380px; } }

/* Variante foto: imagem lifestyle cobrindo o painel inteiro */
.actives-tabs__media--photo { padding: 0; }
.actives-tabs__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.actives-tabs__visuals {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.actives-tabs__visual {
  position: absolute;
  width: min(60%, 340px);
  opacity: 0;
  transform: scale(0.94);
  filter: brightness(0) invert(1);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.actives-tabs__visual.is-active {
  opacity: 0.1;
  transform: scale(1);
}

.actives-tabs__product {
  position: relative;
  width: min(64%, 400px);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.55));
}

.actives-tabs__caption {
  position: absolute;
  left: var(--s-5);
  bottom: var(--s-5);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-pill);
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ── STORIES — prova social (carrossel de vídeos 9:16) ─────────── */
.stories {
  background: var(--base-surface);
  color: var(--base-ink);
  overflow: hidden;
  margin: var(--s-5) var(--s-5);
  border-radius: var(--r-xl);
}
.stories__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-6);
  max-width: none;
  margin-bottom: var(--s-10);
}
.stories__label {
  display: inline-flex;
  align-items: center;
  padding: 5px var(--s-3);
  border-radius: var(--r-pill);
  background: rgba(12,12,10,0.06);
  color: var(--base-mute);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}
.stories__head h2 {
  color: var(--base-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw + 10px, 68px);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  margin: 0;
}
.stories__head p {
  margin: 0;
  color: var(--base-mute);
  font-size: clamp(16px, 1.2vw + 10px, 23px);
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 880px) { .stories__head p { white-space: nowrap; } }

.stories__carousel { position: relative; }
.stories__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* full-bleed: o track ocupa a largura total da tela */
  padding: var(--s-2) 0 var(--s-4);
}
.stories__viewport::-webkit-scrollbar { display: none; }
.stories__track {
  list-style: none;
  margin: 0;
  padding: 0 max(calc((100vw - 2 * var(--s-5) - var(--container)) / 2 + var(--gutter)), var(--gutter));
  display: flex;
  gap: var(--s-5);
  width: max-content;
}

.story { scroll-snap-align: center; }
.story__frame {
  position: relative;
  width: min(300px, 75vw);
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--base-ink);
}
.story__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Scrim para legibilidade do texto sobre o vídeo */
.story__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.62) 0%, transparent 32%,
    transparent 48%, rgba(0,0,0,0.82) 100%);
  pointer-events: none;
}
.story__frame > :not(.story__video) { z-index: 1; }

.story__progress {
  position: absolute;
  top: 10px; left: 12px; right: 12px;
  height: 3px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.3);
  overflow: hidden;
}
.story__progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: #fff;
}

.story__top {
  position: absolute;
  top: 22px; left: 12px; right: 12px;
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.story__avatar {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.35);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
}
.story__who { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.story__who strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.story__who small {
  font-size: 11px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.story__tag {
  position: absolute;
  left: 12px; bottom: 14px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--am-500);
  color: var(--am-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: none;
}
.story__quote {
  position: absolute;
  left: 12px; right: 12px; bottom: 14px;
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}

/* Botão de play cobre o card inteiro; glyph some quando tocando */
.story__play {
  position: absolute;
  inset: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: #fff;
  display: grid;
  place-items: center;
}
.story__play-glyph {
  width: 56px; height: 56px;
  border-radius: var(--r-pill);
  background: rgba(0,0,0,0.4);
  border: 1.5px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding-left: 3px; /* compensa o triângulo */
  transition: transform var(--dur-med) var(--ease-spring), opacity var(--dur-fast);
}
.story__play:hover .story__play-glyph { transform: scale(1.1); }
.story__frame.is-playing .story__play-glyph { opacity: 0; }
.story__frame.is-playing:hover .story__play-glyph { opacity: 1; }

/* Setas abaixo do carrossel */
.stories__controls {
  display: flex;
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.stories__nav {
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--base-line-strong);
  background: var(--base-surface);
  color: var(--base-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.stories__nav:hover {
  background: var(--base-ink);
  border-color: var(--base-ink);
  color: #fff;
}

/* ── ATIVOS V2 (split headline + grid | imagem) ──────────────────
   Ainda usado nas páginas de produto am.html / pm.html
   (variantes PM em shot.css). */
.actives-v2 {
  background: var(--base-ink-2); /* cinza quase preto */
  color: #fff;
  overflow: hidden;
}
.actives-v2__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  align-items: stretch;
}
@media (min-width: 880px) {
  .actives-v2__inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 7vw, 120px);
  }
}

.actives-v2__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-12);
  max-width: 580px;
}
.actives-v2__headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-6);
}
.actives-v2__label {
  display: inline-flex;
  align-items: center;
  padding: 5px var(--s-3);
  border-radius: var(--r-pill);
  background: rgba(232,185,35,0.14);
  color: var(--am-400);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}
.actives-v2__headline h2 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-2xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  margin: 0;
}

.actives-v2__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--s-4);
  row-gap: var(--s-10);
}
.ingredient-v2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
}
.ingredient-v2__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 -1px 0 0 rgba(255,255,255,0.14), 0 1px 0 0 rgba(255,255,255,0.06);
}
.ingredient-v2__icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}
.ingredient-v2__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-base);
  color: #fff;
}
.ingredient-v2__benefit {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.62);
  line-height: var(--lh-snug);
  margin-top: 2px;
}

.actives-v2__media {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  overflow: hidden;
  padding: var(--s-10);
  min-height: clamp(380px, 56vw, 700px);
}
.actives-v2__media--am {
  background:
    radial-gradient(80% 65% at 50% 72%, rgba(232,185,35,0.32), transparent 72%),
    linear-gradient(180deg, #25221a 0%, #121110 100%);
}
.actives-v2__media img {
  width: min(74%, 440px);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.55));
}
@media (max-width: 879px) {
  .actives-v2__media { min-height: 380px; }
  .actives-v2__grid { row-gap: var(--s-8); column-gap: var(--s-3); }
  .ingredient-v2__icon { width: 40px; height: 40px; }
  .ingredient-v2__icon img { width: 22px; height: 22px; }
}

/* ── KIT V2 — carrossel de versões (dark premium) ──────────────── */
.kit-v2 {
  background: #000;
  overflow: hidden;
}
.kit-v2__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-5);
  margin-bottom: var(--s-12);
}
.kit-v2__label {
  display: inline-flex;
  align-items: center;
  padding: 5px var(--s-3);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}
.kit-v2__head h2 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw + 10px, 68px);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.kit-v2__head p {
  color: rgba(255,255,255,0.65);
  font-size: clamp(16px, 1.2vw + 10px, 23px);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  max-width: 52ch;
}

/* Carrossel */
.kit-carousel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
/* Viewport: janela visível do carrossel. O track é movido por
   transform via JS (loop infinito com clones, ativo sempre central). */
.kit-carousel__viewport {
  overflow: hidden;
  padding: var(--s-2) 0 var(--s-6);
  touch-action: pan-y;   /* drag horizontal nosso, scroll vertical nativo */
  cursor: grab;
  -webkit-user-select: none;
          user-select: none;
  /* fade nas bordas: o peek dos vizinhos parece intencional, não cortado */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.kit-carousel__viewport[data-dragging] { cursor: grabbing; }
.kit-carousel__track {
  display: flex;
  gap: var(--s-4);
  will-change: transform;
}

/* Slides fora do centro: recuados e esmaecidos (foco no ativo) */
.kit-slide {
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.kit-slide.is-dimmed {
  opacity: 0.45;
  transform: scale(0.96);
  cursor: pointer; /* clicar num card lateral o centraliza */
}

/* Card de produto — mesma linguagem dos cards das seções novas */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 min(100%, 460px);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #131312;
  border: 1px solid rgba(255,255,255,0.08);
}
.product-card__tag {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  z-index: 2;
  background: var(--base-surface);
  color: var(--base-ink);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}
.product-card__visual {
  display: grid;
  /* linha definida = 100% do content-box; sem isso o max-height:100%
     da imagem não resolve e PNGs verticais (AM/PM) estouram sobre o texto */
  grid-template-rows: 100%;
  place-items: center;
  height: 320px;
  padding: var(--s-10) var(--s-8) var(--s-6);
  overflow: hidden;
}
.product-card--kit .product-card__visual {
  background: radial-gradient(80% 70% at 50% 78%, rgba(170,159,139,0.35), transparent 72%);
}
.product-card--am .product-card__visual {
  background: radial-gradient(80% 70% at 50% 78%, rgba(232,185,35,0.30), transparent 72%);
}
.product-card--pm .product-card__visual {
  background: radial-gradient(80% 70% at 50% 78%, rgba(107,120,168,0.32), transparent 72%);
}
.product-card__visual img {
  max-width: 78%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 48px rgba(0,0,0,0.6));
  transition: transform var(--dur-slow) var(--ease-out);
}
.product-card:hover .product-card__visual img { transform: translateY(-6px); }

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--s-4);
  padding: var(--s-6) var(--s-6) var(--s-8);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.product-card__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.product-card__desc {
  color: rgba(255,255,255,0.62);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  margin: 0;
}
.product-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  color: #fff;
  margin: 0;
  line-height: 1;
}
.product-card__price .cents { font-size: 0.6em; }
.product-card__installments {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-xs);
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.72); /* texto 12px: folga acima de 4.5:1 */
  margin-top: var(--s-2);
}
.product-card__perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  padding: 0;
  margin: 0;
}
.product-card__perks li {
  padding: 5px 10px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.product-card__cta { margin-top: auto; }
.product-card--kit .product-card__cta {
  background: var(--base-surface);
  color: var(--base-ink);
}
.product-card--kit .product-card__cta:hover { background: var(--brand-tint); }

/* Navegação sobre fundo preto */
.kit-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.38); /* >= 3:1 sobre #000 — WCAG 1.4.11 */
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast) var(--ease-out);
}
.kit-carousel__nav:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-50%) scale(1.06);
}
.kit-carousel__nav--prev { left: var(--s-2); }
.kit-carousel__nav--next { right: var(--s-2); }
@media (max-width: 991px) {
  .kit-carousel__nav { display: none; } /* mobile/tablet: swipe */
}
.kit-carousel__dots {
  display: flex;
  justify-content: center;
  gap: var(--s-2);
  margin-top: var(--s-3);
}
/* Alvo de toque 32×32 (área clicável), indicador desenhado no ::before.
   Ativo vira pílula — estado não depende só de cor (WCAG 1.4.1). */
.kit-carousel__dot {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: var(--r-pill);
  background: transparent;
  cursor: pointer;
}
.kit-carousel__dot::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.35);
  transition: width var(--dur-med) var(--ease-out), background var(--dur-fast);
}
.kit-carousel__dot:hover::before { background: rgba(255,255,255,0.7); }
.kit-carousel__dot[aria-current="true"]::before {
  width: 24px;
  background: #fff;
}

/* ── MOOD ──────────────────────────────────────────────────────── */
.mood {
  background: var(--base-bg);
  padding-bottom: var(--s-24);
}
.mood__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 640px) { .mood__grid { grid-template-columns: 1fr 1.4fr 1fr; gap: var(--s-4); } }

.mood__panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #1a1a17;
}
.mood__panel img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.mood__panel:hover img { transform: scale(1.04); }
.mood__panel--center {
  background: #2a2520;
}
.mood__panel--center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mood__quote {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  padding: var(--gutter);
  z-index: 2;
}
.mood__quote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
}
.mood__quote p span { display: block; }

/* ── FOOTER (card escuro arredondado + marquee) ────────────────── */
.footer {
  background: var(--base-bg);
  padding: var(--s-5) var(--s-5) var(--s-5);
  position: relative;
  z-index: 2;
}
.footer__card {
  background: var(--base-ink);
  color: rgba(255,255,255,0.7);
  border-radius: var(--r-xl);
  padding: var(--s-20) 0 var(--s-8);
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
}
@media (min-width: 880px) {
  .footer__grid {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: var(--s-16);
  }
}

/* Menu grande à esquerda */
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-2);
}
.footer__navlink {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  color: #fff;
  transition: opacity var(--dur-fast) var(--ease-out);
}
a.footer__navlink:hover { opacity: 0.7; }
.footer__navrow {
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
}
.footer__navtags { display: flex; gap: var(--s-2); }
.footer__navtags a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.85);
  transition: opacity var(--dur-fast) var(--ease-out);
}
.footer__navtags a:hover { opacity: 0.7; }

/* Blocos de contato 2×2 à direita */
.footer__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-10) var(--s-12);
  align-content: start;
}
.footer__block h3 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 var(--s-4);
}
.footer__block p { margin: 0; }
.footer__block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-1);
}
.footer__block a {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  display: inline-block;
  padding: 2px 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.footer__block a:hover { opacity: 0.7; }
.footer__inline { display: flex; flex-wrap: wrap; gap: var(--s-1); }
.footer__address {
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: var(--lh-normal);
  letter-spacing: var(--tracking-snug);
  color: rgba(255,255,255,0.85);
}

/* Marquee do logo — CSS puro, pausa no hover */
.footer__marquee {
  display: block;
  overflow: hidden;
  margin: var(--s-20) 0 var(--s-8);
}
.footer__marquee-track {
  display: flex;
  width: max-content;
  animation: footer-marquee 30s linear infinite;
}
.footer__marquee:hover .footer__marquee-track { animation-play-state: paused; }
.footer__marquee-group {
  display: flex;
  align-items: center;
  gap: var(--s-12);
  padding-right: var(--s-12);
  flex-shrink: 0;
}
.footer__marquee-group img {
  display: block;
  width: min(52vw, 680px);
  opacity: 0.95;
}
@keyframes footer-marquee {
  to { transform: translateX(-50%); }
}

/* Barra legal */
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color .2s ease;
}
.footer__credit img { height: 16px; width: auto; display: block; opacity: .55; transition: opacity .2s ease; }
.footer__credit:hover { color: rgba(255,255,255,0.8); }
.footer__credit:hover img { opacity: .95; }

/* Indicador de sessão ativa no ícone de conta */
.icon-btn--account.is-logged::after {
  content: "";
  position: absolute;
  top: 9px; right: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 2px var(--base-bg);
}

/* ── STICKY MOBILE CTA ─────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  left: var(--gutter); right: var(--gutter);
  bottom: 16px;
  z-index: calc(var(--z-header) + 1);
  background: var(--base-ink);
  color: var(--base-surface);
  border-radius: var(--r-pill);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.4);
  transform: translateY(120%);
  transition: transform var(--dur-med) var(--ease-out);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  min-height: 52px;
}
.sticky-cta[data-visible="true"] { transform: translateY(0); }
.sticky-cta strong { font-weight: 700; }
.sticky-cta span { letter-spacing: 0.04em; text-transform: uppercase; font-size: 12px; }
@media (min-width: 880px) { .sticky-cta { display: none; } }

/* ── ANIMAÇÕES ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }
.reveal--delay-4 { transition-delay: 320ms; }
.reveal--delay-5 { transition-delay: 400ms; }
.reveal--delay-6 { transition-delay: 480ms; }

/* ── COMO FUNCIONA (abas por produto) ──────────────────────────── */
.howto__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4) var(--s-8);
  border-bottom: 1px solid var(--base-line);
  margin-bottom: var(--s-10);
}
.howto__nav-btn {
  appearance: none;
  background: none;
  padding: 0 0 var(--s-4);
  margin-bottom: -1px;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-snug);
  color: var(--base-mute-2);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.howto__nav-btn:hover { color: var(--base-ink); }
.howto__nav-btn.is-active { color: var(--base-ink); }
.howto__nav-btn--am.is-active { color: var(--am-600); border-bottom-color: var(--am-500); }
.howto__nav-btn--pm.is-active { color: var(--pm-500); border-bottom-color: var(--pm-500); }
.howto__nav-btn:focus-visible { outline: 2px solid var(--base-ink); outline-offset: 4px; border-radius: 3px; }

.howto__panel { display: none; }
.howto__panel.is-active {
  display: grid;
  gap: var(--s-8);
  align-items: center;
}
@media (min-width: 880px) {
  .howto__panel.is-active {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: var(--s-16);
  }
}

.howto__media {
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--base-surface-2);
}
.howto__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.howto__media:hover img { transform: scale(1.03); }

/* titulo da seçao no mesmo corpo do kit/ativos */
.howto .section__head h2 { font-size: clamp(32px, 4.2vw + 10px, 68px); text-wrap: balance; }

.howto__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 var(--s-6);
}
.howto__steps {
  list-style: none;
  margin: 0 0 var(--s-10);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}
.howto__step {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
}
.howto__step p {
  margin: 0;
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  color: var(--base-ink-2);
}
.howto__step-n {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  background: var(--base-ink);
  color: var(--base-surface);
}
.howto__panel--am .howto__step-n { background: var(--am-500); color: var(--am-ink); }
.howto__panel--pm .howto__step-n { background: var(--pm-500); color: var(--pm-ink); }
.howto__cta { align-self: flex-start; }

/* ── COMO FUNCIONA — timeline dinâmica ─────────────────────────── */
.howto__steps { position: relative; isolation: isolate; }
.howto__steps::before,
.howto__steps::after {
  content: "";
  position: absolute;
  left: 19px;            /* centro do círculo de 40px (−1px da largura da linha) */
  top: 20px;             /* centro do 1º nó */
  width: 2px;
  border-radius: 2px;
  z-index: 0;            /* linha SEMPRE atrás dos nós */
}
.howto__steps::before { bottom: 20px; background: var(--base-line-strong); } /* trilho */
.howto__steps::after  { height: calc(100% - 40px); transform-origin: top; }  /* preenchimento */
.howto__panel--am .howto__steps::after { background: var(--am-500); }
.howto__panel--pm .howto__steps::after { background: var(--pm-500); }

.howto__step   { position: relative; z-index: 1; }
.howto__step-n { position: relative; z-index: 2; }  /* nó SEMPRE acima da linha */

/* animação de entrada — JS adiciona .is-anim ao painel ativo */
.howto__panel.is-anim .howto__steps::after { animation: howtoRail 720ms var(--ease-out) 100ms both; }
.howto__panel.is-anim .howto__step { animation: howtoStepIn 520ms var(--ease-out) both; }
.howto__panel.is-anim .howto__step:nth-child(1) { animation-delay: 160ms; }
.howto__panel.is-anim .howto__step:nth-child(2) { animation-delay: 320ms; }
.howto__panel.is-anim .howto__step:nth-child(3) { animation-delay: 480ms; }
.howto__panel.is-anim .howto__cta { animation: howtoStepIn 520ms var(--ease-out) 620ms both; }

@keyframes howtoRail {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes howtoStepIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .howto__panel.is-anim .howto__steps::after,
  .howto__panel.is-anim .howto__step,
  .howto__panel.is-anim .howto__cta { animation: none; }
}

/* no mobile, as duas abas ficam lado a lado (sem empilhar) */
@media (max-width: 700px) {
  .howto__nav {
    flex-wrap: nowrap;
    gap: var(--s-4);
  }
  .howto__nav-btn {
    font-size: clamp(13px, 3.4vw, 19px);
    white-space: nowrap;
  }
  .howto__nav-btn > span { white-space: nowrap; }
}

/* ── Hero: título longo ("O seu dia depende…") — escala reduzida ── */
.hero-v2__headline .text-h1 {
  font-size: clamp(42px, 4.6vw + 12px, 88px);
  text-wrap: balance;
}
.hero-v2__headline .text-h1__sub {
  display: block;
  margin-top: 0.3em;
  font-size: 0.56em;
  line-height: 1.15;
}
/* No mobile, título do hero 20% maior (clamp base ×1.2).
   O __sub usa 0.56em → acompanha proporcionalmente. */
@media (max-width: 767px) {
  .hero-v2__headline .text-h1 {
    font-size: clamp(50.4px, 5.52vw + 14.4px, 105.6px);
  }
}

/* ── Faixa de selos abaixo do hero (marquee infinito) ─────────── */
.hero-badges {
  border-top: 1px solid var(--base-line);
  border-bottom: 1px solid var(--base-line);
  background: var(--base-bg);
  overflow: hidden;
  padding: 16px 0;
  margin-top: var(--s-10);
}
.hero-badges__track {
  display: flex;
  width: max-content;
  animation: heroBadges 30s linear infinite;
}
.hero-badges:hover .hero-badges__track { animation-play-state: paused; }
.hero-badges__set {
  display: flex;
  align-items: center;
  gap: var(--s-12);
  padding-right: var(--s-12);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--base-ink-2);
}
.hero-badge__icon {
  width: 36px;
  height: 36px;
  flex: none;
  border: 1.2px solid var(--base-ink-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--base-ink-2);
}
.hero-badge__icon svg { width: 18px; height: 18px; display: block; }
@keyframes heroBadges { to { transform: translateX(-33.3333%); } }
@media (prefers-reduced-motion: reduce) { .hero-badges__track { animation: none; } }
/* cards de produto: título/imagem linkam pra página do produto */
.product-card h3 a.product-card__tlink { color: inherit; text-decoration: none; }
.product-card h3 a.product-card__tlink:hover { text-decoration: underline; text-underline-offset: 3px; }
.product-card__visual a {
  display: grid;
  grid-template-rows: 100%;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.product-card__visual a img { max-width: 78%; max-height: 100%; width: auto; object-fit: contain; object-position: center; }

/* ═══ KIT SOLO — vitrine exclusiva do Kit (pouches caem de cima) ═══ */
.kit-solo__grid { display: grid; gap: 32px; align-items: center; margin-top: var(--s-10); }
@media (min-width: 920px) {
  .kit-solo__grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
}

/* palco */
.kit-solo__stage {
  position: relative;
  height: clamp(360px, 46vw, 560px);
  border-radius: var(--r-xl);
  background:
    radial-gradient(70% 60% at 32% 72%, rgba(232,185,35,0.16), transparent 70%),
    radial-gradient(70% 60% at 72% 40%, rgba(42,56,102,0.14), transparent 70%),
    var(--base-surface-2);
  border: 1px solid var(--base-line);
  overflow: hidden;
}
.kit-solo__el { position: absolute; }
.kit-solo__pm {
  left: 6%; bottom: -2%; height: 74%; width: auto; z-index: 1;
  --r: -7deg; transform: rotate(var(--r));
}
.kit-solo__am {
  right: 10%; bottom: -3%; height: 82%; width: auto; z-index: 2;
  --r: 6deg; transform: rotate(var(--r));
}
.kit-solo__maracuja {
  left: -2%; bottom: 2%; width: 26%; height: auto; z-index: 3;
  --r: -10deg; transform: rotate(var(--r));
}
.kit-solo__limao {
  right: 2%; top: 4%; width: 20%; height: auto; z-index: 3;
  --r: 14deg; transform: rotate(var(--r));
}
.kit-solo__seeds { left: 34%; top: 4%; width: 30%; height: auto; z-index: 0; opacity: .9; --r: 0deg; }

/* queda de cima para baixo quando a seção entra na tela */
@keyframes kitDrop {
  from { opacity: 0; transform: translateY(-16vh) rotate(var(--r, 0deg)); }
  60%  { opacity: 1; }
  to   { opacity: 1; transform: translateY(0) rotate(var(--r, 0deg)); }
}
.kit-solo__grid.is-visible .kit-solo__el { animation: kitDrop 1s cubic-bezier(.22, 1.18, .36, 1) both; }
.kit-solo__grid.is-visible .kit-solo__pm       { animation-delay: .05s; }
.kit-solo__grid.is-visible .kit-solo__am       { animation-delay: .22s; }
.kit-solo__grid.is-visible .kit-solo__maracuja { animation-delay: .45s; }
.kit-solo__grid.is-visible .kit-solo__limao    { animation-delay: .58s; }
.kit-solo__grid.is-visible .kit-solo__seeds    { animation-delay: .7s; animation-duration: 1.2s; }
@media (prefers-reduced-motion: reduce) { .kit-solo__grid.is-visible .kit-solo__el { animation: none; } }

/* painel de compra */
.kit-solo__buy {
  background: #fff; border: 1px solid var(--base-line); border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 1px 2px rgba(28,23,10,.05), 0 24px 48px -28px rgba(28,23,10,.25);
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.kit-solo__tag {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--am-500); color: var(--am-ink);
  border-radius: var(--r-pill); padding: 6px 14px;
}
.kit-solo__name {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-xl); line-height: var(--lh-tight); letter-spacing: var(--tracking-tight);
}
.kit-solo__desc { margin: 0; font-size: var(--fs-md); color: var(--base-mute); line-height: var(--lh-normal); }
.kit-solo__price {
  margin: 4px 0 0; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4vw, 46px); letter-spacing: -0.02em; line-height: 1;
  display: block;
}
.kit-solo__price .cents { font-size: .55em; vertical-align: super; }
.kit-solo__installments { display: block; margin-top: 10px; font-family: var(--font-sans); font-weight: 400; font-size: 13px; color: var(--base-mute); letter-spacing: 0; }
.kit-solo__perks { list-style: none; margin: 2px 0 6px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.kit-solo__perks li {
  font-family: var(--font-display); font-weight: 500; font-size: 12px;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid var(--base-line-strong); border-radius: var(--r-pill);
  padding: 7px 14px; color: var(--base-ink-2);
}
.kit-solo__cta { margin-top: 4px; }
.kit-solo__more { font-size: 13.5px; color: var(--base-mute); text-decoration: none; align-self: center; }
.kit-solo__more:hover { color: var(--base-ink); text-decoration: underline; text-underline-offset: 3px; }

/* ═══ A CIÊNCIA — faixa de cards de ingredientes (fundo escuro) ═══ */
.ciencia { background: var(--base-ink); color: #fff; overflow: hidden; }
.ciencia__head { max-width: none; margin-bottom: var(--s-12); }
.ciencia__eyebrow { color: var(--am-400); }
.ciencia__eyebrow::before { background: var(--am-400); }
.ciencia__head h2 {
  margin: 14px 0 16px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 4.2vw + 10px, 68px); line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight); color: #fff;
}
.ciencia__head p { margin: 0; color: rgba(255,255,255,0.6); font-size: clamp(16px, 1.2vw + 10px, 23px); font-weight: 500; line-height: 1.4; max-width: 56ch; }

/* faixa horizontal com scroll-snap */
.ciencia__strip { position: relative; }
.ciencia__track {
  list-style: none; margin: 0; padding: 4px max(calc((100vw - var(--container, 1240px)) / 2 + var(--gutter, 24px)), 20px) 18px;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ciencia__track::-webkit-scrollbar { display: none; }

.ciencia__card {
  position: relative; flex: none;
  margin-right: 16px;
  width: clamp(250px, 24vw, 320px);
  aspect-ratio: 3 / 4;
  border-radius: 18px; overflow: hidden;
  scroll-snap-align: start;
  background: #333;
  transition: transform var(--dur-med) var(--ease-out);
}
.ciencia__card:hover { transform: translateY(-4px); }
.ciencia__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.ciencia__label {
  position: absolute; top: 14px; left: 14px; right: 14px; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: #2b2b28;
}
.ciencia__momento {
  font-family: var(--font-display); font-weight: 700; font-size: 10px; letter-spacing: .06em;
  border-radius: var(--r-pill); padding: 3px 8px; flex: none;
}
.ciencia__momento--am { background: var(--am-500); color: var(--am-ink); }
.ciencia__momento--pm { background: var(--pm-500); color: var(--pm-ink); }

.ciencia__overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 44px 18px 18px;
  background: linear-gradient(180deg, rgba(20,19,15,0) 0%, rgba(20,19,15,0.55) 38%, rgba(20,19,15,0.82) 100%);
  color: #fff;
}
.ciencia__overlay h3 {
  margin: 0 0 6px;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(19px, 1.8vw, 23px); line-height: 1.15; letter-spacing: -0.01em;
}
.ciencia__overlay p { margin: 0; font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,0.88); }

/* marquee automático contínuo em TODAS as larguras (pausa no hover/toque) */
.ciencia__strip { overflow: hidden; }
.ciencia__track {
  overflow: visible;
  width: max-content;
  padding: 4px 0 18px;
  scroll-snap-type: none;
  animation: cienciaMarquee 55s linear infinite;
}
.ciencia__strip:hover .ciencia__track { animation-play-state: paused; }
@keyframes cienciaMarquee { to { transform: translateX(-50%); } }
.ciencia__controls { display: flex; justify-content: center; gap: var(--s-3); margin-top: var(--s-2); }
.ciencia__nav {
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,0.28);
  background: transparent; color: #fff;
  display: grid; place-items: center; cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.ciencia__nav:hover { background: #fff; border-color: #fff; color: var(--base-ink); }
@media (prefers-reduced-motion: reduce) {
  .ciencia__track { animation: none; overflow-x: auto; width: auto; padding: 4px 20px 18px; }
  .ciencia__card--dup { display: none; }
}

/* ── Hierarquia tipográfica: TÍTULOS em Instrument Serif, resto Archivo ── */
.text-h1,
.cycle-v2__intro h2,
.actives-tabs__head h2,
.kit-v2__head h2,
.section__head h2,
.stories__head h2,
.ciencia__head h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.actives-tabs__h2sub { font-family: var(--font-sans); }

/* ── Mobile: sem estouro lateral (e-mail do rodapé + sticky CTA) ── */
.footer__block a,
.footer__block p { overflow-wrap: anywhere; }
.sticky-cta { min-width: 0; }
.sticky-cta > span:first-child {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sticky-cta strong { flex: none; white-space: nowrap; }

/* ── Rodapé no MOBILE: uma coluna, leitura limpa ──────────────── */
@media (max-width: 719px) {
  .footer__card { padding-top: var(--s-14); }
  /* blocos de contato/links em coluna única — some as quebras espremidas */
  .footer__meta { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer__block h3 { margin-bottom: 6px; }
  /* legal empilha na ordem: tagline, copyright, assinatura */
  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer__credit { margin-top: 2px; }
}

/* ── Nav do rodapé no MOBILE: mais respiro no card preto ───────── */
@media (max-width: 719px) {
  .footer__nav {
    gap: var(--s-5);
    padding: var(--s-2) 0 var(--s-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .footer__navlink {
    font-size: clamp(24px, 6.4vw, 30px);
    line-height: 1.2;
    padding: 2px 0;
  }
  .footer__navtags a { padding: 4px 2px; }
  .footer__grid { gap: var(--s-10); }
}

/* ── Depoimentos no MOBILE: peek do próximo vídeo + título inteiro ── */
@media (max-width: 719px) {
  /* título cabe nas 2 linhas planejadas ("Quem indica. Quem toma." inteira) */
  .stories__head h2 { font-size: 28px; }
  .stories__head { margin-bottom: var(--s-8); gap: var(--s-4); }
  /* card mais estreito deixa o próximo vídeo aparecer na borda: convite ao swipe */
  .story__frame { width: min(280px, 68vw); }
  .stories__viewport { scroll-padding-left: var(--gutter); }
  /* setas mais próximas do carrossel e no tamanho de toque padrão */
  .stories__controls { margin-top: var(--s-4); }
  .stories__nav { width: 44px; height: 44px; }
}

/* ── A Ciência no MOBILE: densidade e respiro calibrados ───────── */
@media (max-width: 719px) {
  /* menos espaço morto no preto: seção mais enxuta embaixo */
  .section.ciencia { padding: var(--s-16) 0 var(--s-16); }
  .ciencia__head { margin-bottom: var(--s-8); }
  .ciencia__head p { font-size: 16px; }
  /* card: texto do overlay mais leve para caber com folga */
  .ciencia__label { font-size: 13px; }
  .ciencia__overlay h3 { font-size: 19px; }
  .ciencia__overlay p { font-size: 13.5px; line-height: 1.5; }
  /* setas coladas no carrossel, tamanho de toque padrão */
  .ciencia__controls { margin-top: var(--s-1); }
  .ciencia__nav { width: 44px; height: 44px; }
}
