/* ============================================================
   VELMORA — Liquid Glass Landing
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }

:root {
  /* Glassmorphism — versão "líquida/cristalina" com tinte aqua */
  --glass-fill:        rgba(255, 255, 255, 0.08);
  --glass-fill-hover:  rgba(255, 255, 255, 0.18);
  --glass-fill-strong: rgba(255, 255, 255, 0.16);
  --glass-fill-soft:   rgba(255, 255, 255, 0.40);
  --glass-tint-aqua:   rgba(111, 205, 222, 0.06);  /* sutil tinte aquático */
  --glass-border:      rgba(255, 255, 255, 0.55);
  --glass-border-focus:rgba(43, 165, 192, 0.55);
  --glass-blur:        blur(32px) saturate(180%);
  --glass-blur-light:  blur(18px) saturate(160%);

  /* Highlight = reflexo no topo da pílula (efeito gel/molhado) */
  --highlight:         inset 0 1px 0 rgba(255, 255, 255, 0.70);
  --highlight-strong:  inset 0 1.5px 0 rgba(255, 255, 255, 0.90), inset 0 -1px 0 rgba(255, 255, 255, 0.15);
  --highlight-aqua:    inset 0 1px 0 rgba(255, 255, 255, 0.85), inset 0 -1px 0 rgba(111, 205, 222, 0.20);

  /* Sombras */
  --shadow-sm:         0 4px 16px rgba(20, 25, 60, 0.08);
  --shadow-md:         0 8px 32px rgba(20, 25, 60, 0.10);
  --shadow-lg:         0 16px 48px rgba(20, 25, 60, 0.14);
  --shadow-xl:         0 24px 64px rgba(20, 25, 60, 0.18);

  --radius-pill:   50px;
  --radius-card:   24px;
  --radius-card-lg:32px;
  --radius-btn:    16px;
  --radius-input:  50px;
  --radius-badge:  8px;

  /* Velmora palette */
  --primary-purple: #2BA5C0;
  --primary-blue:   #1E7A93;
  --primary-teal:   #00C9A7;
  --primary-cyan:   #00B4D8;
  --primary-orange: #FF7A1A;
  --primary-amber:  #FFB300;
  --primary-pink:   #FF4D8D;
  --primary-rose:   #E91E63;

  /* Product gradients */
  --grad-tangerina: linear-gradient(155deg, #FFB347 0%, #FF7A1A 60%, #E84800 100%);
  --grad-morango:   linear-gradient(155deg, #FF85A1 0%, #FF4D6A 55%, #C7104E 100%);
  --grad-capsula:   linear-gradient(155deg, #3A2A6E 0%, #1B1140 55%, #0A0625 100%);

  --grad-purple:  linear-gradient(145deg, #6FCDDE 0%, #2BA5C0 60%, #1E7A93 100%);
  --grad-teal:    linear-gradient(145deg, #2EE0BB, #00C9A7 60%, #00B4D8);
  --grad-orange:  linear-gradient(145deg, #FFA040, #FF7A1A 60%, #E04D00);
  --grad-iridesc: linear-gradient(135deg,
    rgba(43, 165, 192,.35),
    rgba(111, 205, 222,.28),
    rgba(0, 201, 167,.22),
    rgba(140, 220, 235,.18));

  /* Texto */
  --text-primary:   rgba(15, 20, 40, 0.92);
  --text-secondary: rgba(15, 20, 40, 0.60);
  --text-tertiary:  rgba(15, 20, 40, 0.40);
  --text-on-dark:   rgba(255, 255, 255, 0.95);

  /* Background — base ligeiramente azulada para casar com o vidro aqua */
  --bg-page:    #e3edf2;

  --spring:        cubic-bezier(0.34, 1.56, 0.64, 1);
  --spring-soft:   cubic-bezier(0.34, 1.20, 0.64, 1);
  --ease-out-fast: cubic-bezier(0.20, 0.00, 0.00, 1);
  --ease-smooth:   cubic-bezier(0.45, 0.05, 0.15, 1.00);

  --font: 'Inter', -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
}

body {
  font-family: var(--font);
  background: var(--bg-page);
  background-image:
    radial-gradient(ellipse 60% 50% at 10% 5%,  rgba(43, 165, 192,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 15%, rgba(111, 205, 222,.22) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 60%, rgba(0, 201, 167,.20) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(140, 220, 235,.22) 0%, transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   GLASS UTILS
   ============================================================ */
/* ============================================================
   GLASS UTILS — Liquid Glass (cristalino, com reflexo aqua)
   Cada .glass usa 3 camadas sobrepostas:
   1. Background: tinte aqua + branco translúcido + gradiente sutil
   2. backdrop-filter: blur + saturate (refração + cor)
   3. Borda branca de alto brilho + inset-shadow simulando refração
   ============================================================ */
.glass {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.04) 60%, rgba(111,205,222,.06) 100%),
    var(--glass-fill);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow:
    var(--highlight-aqua),
    0 1px 0 rgba(255,255,255,.45) inset,           /* rim light extra fino */
    0 -1px 1px rgba(43,165,192,.08) inset,          /* tinte azul no rim inferior */
    var(--shadow-md);
}
.glass-strong {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.08) 60%, rgba(111,205,222,.10) 100%),
    var(--glass-fill-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow:
    var(--highlight-strong),
    0 -1px 1px rgba(43,165,192,.12) inset,
    var(--shadow-lg);
}
.glass-soft {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.38) 100%);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow:
    var(--highlight-strong),
    0 -1px 1px rgba(43,165,192,.10) inset,
    var(--shadow-sm);
}
.glass-dark {
  background: rgba(15, 20, 40, 0.78);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    inset 0 -1px 1px rgba(43,165,192,.10),
    var(--shadow-xl);
  color: var(--text-on-dark);
}

/* Reflexo especular animado — sweep diagonal sutil em cards principais */
.glass::after,
.glass-soft::after,
.glass-strong::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,.18) 48%,
    rgba(255,255,255,.30) 50%,
    rgba(255,255,255,.18) 52%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}
.glass:hover::after,
.glass-soft:hover::after,
.glass-strong:hover::after {
  opacity: 0.55;
  animation: glass-shine 1.4s ease-out;
}
@keyframes glass-shine {
  0%   { transform: translateX(-30%) skewX(-12deg); opacity: 0; }
  40%  { opacity: 0.55; }
  100% { transform: translateX(30%) skewX(-12deg); opacity: 0; }
}

/* Garante que conteúdo fique acima do reflexo */
.glass > *, .glass-soft > *, .glass-strong > * { position: relative; z-index: 1; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 1180px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 22px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--highlight-strong), 0 8px 32px rgba(20,25,60,.10);
}
.nav__logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.nav__logo-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  /* Slight horizontal nudge to align with the "V" of "Velmora" */
}
.nav__logo-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.nav__logo-mark {
  /* Auto-width baseado em altura — proporção ~1.26:1 (W×H = 333×265 após crop) */
  height: 38px;
  width: auto;
  object-fit: contain;
  /* Sombra dourada sutil para destacar sobre o vidro */
  filter:
    drop-shadow(0 2px 6px rgba(180, 130, 40, 0.30))
    drop-shadow(0 1px 1px rgba(0, 0, 0, 0.08));
  flex-shrink: 0;
  /* Alinhamento ótico com a tipografia (V tem peso superior maior) */
  margin-top: 1px;
}
.nav__links {
  display: flex; gap: 6px;
  list-style: none;
}
.nav__links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.nav__links a:hover { color: var(--text-primary); background: rgba(255,255,255,.5); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.005em;
  border-radius: var(--radius-pill);
  padding: 13px 24px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.16s var(--spring),
    box-shadow 0.18s ease,
    background 0.20s ease;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  text-decoration: none;
}
.btn:hover  { transform: scale(1.04); }
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--grad-purple);
  color: #fff;
  box-shadow: 0 8px 24px rgba(43, 165, 192,.40), var(--highlight-strong);
}
.btn-primary:hover  { box-shadow: 0 14px 38px rgba(43, 165, 192,.55), var(--highlight-strong); }

.btn-teal {
  background: var(--grad-teal);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,201,167,.40), var(--highlight-strong);
}
.btn-teal:hover  { box-shadow: 0 14px 38px rgba(0,201,167,.50), var(--highlight-strong); }

.btn-orange {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,122,26,.45), var(--highlight-strong);
}
.btn-orange:hover  { box-shadow: 0 14px 38px rgba(255,122,26,.55), var(--highlight-strong); }

.btn-secondary {
  background: rgba(255,255,255,0.55);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,.65);
  color: var(--text-primary);
  box-shadow: var(--highlight-strong), var(--shadow-sm);
}
.btn-secondary:hover { background: rgba(255,255,255,0.75); }

/* ============================================================
   BUY CTA — high-conversion green
   Emerald-to-lime gradient + continuous soft glow + hover shimmer.
   Pulse draws the eye without being annoying; shimmer rewards hover.
   ============================================================ */
.btn-buy {
  position: relative;
  background:
    linear-gradient(145deg, #3CDB6E 0%, #1FB459 45%, #0E8A3F 100%);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.005em;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow:
    0 10px 28px rgba(26, 175, 80, 0.45),
    0 2px 6px rgba(14, 138, 63, 0.30),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -2px 6px rgba(0, 0, 0, 0.12);
  text-shadow: 0 1px 0 rgba(8, 80, 36, 0.40);
  overflow: hidden;
  isolation: isolate;
  animation: buy-pulse 2.6s var(--ease-smooth) infinite;
}
.btn-buy::before {
  /* Hover shimmer — diagonal light sweep */
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.45) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left 0.65s var(--ease-smooth);
  z-index: 0;
}
.btn-buy::after {
  /* Subtle top gel highlight */
  content: '';
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 45%;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,0));
  pointer-events: none;
  z-index: 0;
}
.btn-buy > * { position: relative; z-index: 1; }
.btn-buy:hover {
  background: linear-gradient(145deg, #45E47A 0%, #22C55E 45%, #128A48 100%);
  box-shadow:
    0 16px 42px rgba(34, 197, 94, 0.60),
    0 4px 10px rgba(14, 138, 63, 0.35),
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -2px 8px rgba(0, 0, 0, 0.14);
  animation-play-state: paused;
}
.btn-buy:hover::before { left: 130%; }
.btn-buy:active {
  transform: scale(0.96);
  box-shadow:
    0 4px 12px rgba(26, 175, 80, 0.35),
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -1px 3px rgba(0, 0, 0, 0.12);
  animation-play-state: paused;
}
.btn-buy:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(34, 197, 94, 0.30),
    0 16px 42px rgba(34, 197, 94, 0.55),
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -2px 8px rgba(0, 0, 0, 0.14);
}
.btn-buy .btn-buy__arrow {
  display: inline-flex;
  transition: transform 0.30s var(--spring);
}
.btn-buy:hover .btn-buy__arrow { transform: translateX(4px); }

@keyframes buy-pulse {
  0%, 100% {
    box-shadow:
      0 10px 28px rgba(26, 175, 80, 0.45),
      0 2px 6px rgba(14, 138, 63, 0.30),
      inset 0 1px 0 rgba(255,255,255,.55),
      inset 0 -2px 6px rgba(0, 0, 0, 0.12);
  }
  50% {
    box-shadow:
      0 14px 38px rgba(34, 197, 94, 0.62),
      0 3px 8px rgba(14, 138, 63, 0.36),
      inset 0 1px 0 rgba(255,255,255,.60),
      inset 0 -2px 6px rgba(0, 0, 0, 0.12);
  }
}

/* Reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  .btn-buy { animation: none; }
  .btn-buy::before { display: none; }
}

.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-xl { padding: 19px 38px; font-size: 16px; }

/* Ripple */
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  pointer-events: none;
  transform: scale(0);
  animation: ripple-expand 0.6s ease-out forwards;
}
@keyframes ripple-expand {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-badge);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-purple { background: rgba(43, 165, 192,.15); color: #0E6E85; border: 1px solid rgba(43, 165, 192,.25); }
.badge-teal   { background: rgba(0,201,167,.15);  color: #008e76; border: 1px solid rgba(0,201,167,.25); }
.badge-orange { background: rgba(255,122,26,.15); color: #cc4400; border: 1px solid rgba(255,122,26,.25); }
.badge-pink   { background: rgba(255,77,141,.15); color: #c2185b; border: 1px solid rgba(255,77,141,.25); }
.badge-best   { background: var(--grad-orange);   color: #fff; border: 1px solid rgba(255,255,255,.4); box-shadow: 0 4px 14px rgba(255,122,26,.40); }
.badge-value  { background: var(--grad-teal);     color: #fff; border: 1px solid rgba(255,255,255,.4); box-shadow: 0 4px 14px rgba(0,201,167,.40); }

/* ============================================================
   SECTION
   ============================================================ */
.section { padding: 90px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 14px;
}
.h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-wrap: balance;
}
.h2 em {
  font-style: normal;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.55;
  text-wrap: pretty;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 130px 0 70px;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__copy .badge { margin-bottom: 20px; }
.hero__title {
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(110deg, #2BA5C0 0%, #FF4D8D 50%, #FF7A1A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.55;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-secondary);
}
.hero__trust span { display: flex; align-items: center; gap: 8px; }
.hero__trust svg { color: var(--primary-teal); flex-shrink: 0; }

/* Hero visual — 3 bottles */
.hero__visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__halo {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: var(--grad-iridesc);
  filter: blur(40px);
  opacity: 0.7;
  z-index: 0;
}
.hero__bottles {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  height: 100%;
  width: 100%;
}
.hero__bottle-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s var(--spring-soft);
  cursor: pointer;
}
.hero__bottle-wrap:nth-child(1) { transform: translateY(20px) rotate(-6deg); margin-right: -30px; z-index: 1; }
.hero__bottle-wrap:nth-child(2) { transform: translateY(-10px); z-index: 3; }
.hero__bottle-wrap:nth-child(3) { transform: translateY(20px) rotate(6deg); margin-left: -30px; z-index: 1; }
.hero__bottle-wrap:nth-child(1):hover { transform: translateY(10px) rotate(-6deg) scale(1.06); }
.hero__bottle-wrap:nth-child(2):hover { transform: translateY(-20px) scale(1.06); }
.hero__bottle-wrap:nth-child(3):hover { transform: translateY(10px) rotate(6deg) scale(1.06); }

.hero__bottle-label {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Bottle SVG sizing (legacy — kept for compatibility) */
.bottle { width: 150px; height: auto; filter: drop-shadow(0 30px 40px rgba(20,25,60,.25)); }
.bottle--lg { width: 180px; }

/* Real product photo — square PNGs.
   Default: no width (so inline width="..." attribute from JS is respected).
   Hero / contextual overrides set explicit widths below. */
.bottle--photo {
  display: block;
  height: auto;
  filter: drop-shadow(0 24px 30px rgba(20, 25, 60, .35));
  pointer-events: none;
  user-select: none;
  object-fit: contain;
}
.hero__bottles .bottle--photo { width: 215px; }
.hero__bottles .bottle--photo-lg { width: 200px; }

/* Hero stats */
.hero__stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  padding: 22px 20px;
  border-radius: var(--radius-card);
  text-align: left;
}
.stat__num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.stat:nth-child(2) .stat__num { background: var(--grad-teal); -webkit-background-clip: text; background-clip: text; }
.stat:nth-child(3) .stat__num { background: var(--grad-orange); -webkit-background-clip: text; background-clip: text; }
.stat:nth-child(4) .stat__num { background: linear-gradient(145deg, #FF85A1, #C7104E); -webkit-background-clip: text; background-clip: text; }
.stat__label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-card);
  overflow: hidden;
  transition:
    border-radius 0.45s var(--spring-soft),
    transform     0.40s var(--spring-soft),
    box-shadow    0.30s ease;
}
.benefit:hover {
  border-radius: var(--radius-card-lg);
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--highlight-strong), var(--shadow-xl);
}
.benefit__icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative;
  transition: border-radius 0.45s var(--spring-soft), transform 0.40s var(--spring-soft);
  box-shadow: 0 8px 22px rgba(20,25,60,.18), var(--highlight-strong);
}
.benefit:hover .benefit__icon { border-radius: 28px; transform: rotate(-6deg) scale(1.08); }
.benefit__icon svg { width: 26px; height: 26px; color: #fff; }
.benefit__icon--purple { background: var(--grad-purple); }
.benefit__icon--teal   { background: var(--grad-teal); }
.benefit__icon--orange { background: var(--grad-orange); }
.benefit__icon--pink   { background: var(--grad-morango); }
.benefit__icon--blue   { background: linear-gradient(145deg, #1E7A93, #00B4D8); }
.benefit__icon--amber  { background: linear-gradient(145deg, #FFD93D, #FF8C00); }
.benefit__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.benefit__desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================================
   SHOP
   ============================================================ */
.shop__tabs {
  display: inline-flex;
  margin: 0 auto 40px;
  padding: 5px;
  border-radius: var(--radius-pill);
  position: relative;
  gap: 0;
}
.shop__tabs-wrap { display: flex; justify-content: center; }
.shop__tab {
  position: relative;
  z-index: 1;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: var(--font);
  transition: color 0.25s ease, transform 0.15s var(--spring);
  display: inline-flex; align-items: center; gap: 8px;
}
.shop__tab:hover  { color: var(--text-primary); }
.shop__tab.is-active { color: #fff; }
.shop__tab-indicator {
  position: absolute;
  top: 5px; left: 5px;
  height: calc(100% - 10px);
  border-radius: var(--radius-pill);
  background: var(--grad-purple);
  box-shadow: 0 6px 18px rgba(43, 165, 192,.40), var(--highlight-strong);
  transition: left 0.40s var(--spring-soft), width 0.40s var(--spring-soft);
  z-index: 0;
}

.shop__panel { display: none; }
.shop__panel.is-active { display: block; animation: fadeIn 0.4s var(--ease-smooth); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   INDIVIDUAL FLOW
   ============================================================ */
.flow {
  padding: 40px;
  border-radius: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.flow__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}
.flow__step {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.55);
  font-size: 13px; font-weight: 600;
  color: var(--text-tertiary);
  transition: all 0.35s var(--spring-soft);
}
.flow__step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  color: var(--text-tertiary);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  transition: all 0.35s var(--spring-soft);
}
.flow__step.is-active {
  background: rgba(255,255,255,0.85);
  border-color: rgba(43, 165, 192,.30);
  color: var(--text-primary);
  box-shadow: 0 6px 18px rgba(43, 165, 192,.18);
}
.flow__step.is-active .flow__step-num {
  background: var(--grad-purple);
  color: #fff;
  box-shadow: 0 3px 10px rgba(43, 165, 192,.45);
}
.flow__step.is-done .flow__step-num {
  background: var(--grad-teal); color: #fff;
}
.flow__step.is-done { color: var(--text-secondary); }
.flow__arrow {
  color: var(--text-tertiary);
  font-size: 14px;
}

.flow__panel {
  animation: slideIn 0.4s var(--spring-soft);
}
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.flow__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-align: center;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.flow__hint {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 30px;
}

/* Choice cards */
.choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.choice {
  position: relative;
  padding: 24px 22px;
  border-radius: 22px;
  cursor: pointer;
  background: rgba(255,255,255,0.50);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255,255,255,0.55);
  box-shadow: var(--highlight-strong), var(--shadow-sm);
  transition: all 0.30s var(--spring-soft);
  text-align: center;
  overflow: hidden;
}
.choice:hover {
  transform: translateY(-4px);
  box-shadow: var(--highlight-strong), var(--shadow-lg);
  border-color: rgba(43, 165, 192,.30);
}
.choice.is-selected {
  border-color: var(--primary-purple);
  background: rgba(255,255,255,0.75);
  box-shadow: 0 0 0 4px rgba(43, 165, 192,.15), var(--highlight-strong), var(--shadow-md);
}
.choice__check {
  position: absolute;
  top: 14px; right: 14px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad-purple);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.30s var(--spring);
  box-shadow: 0 4px 12px rgba(43, 165, 192,.40);
}
.choice.is-selected .choice__check { opacity: 1; transform: scale(1); }
.choice__visual {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.choice__visual .bottle--photo { max-height: 130px; }
.choice__visual .bottle { width: 110px; filter: drop-shadow(0 20px 24px rgba(20,25,60,.20)); }
.choice__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.choice__sub {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Quantity choices */
.choices--qty {
  /* Breathing room above so floating "Mais Vendido / Melhor Valor" badges aren't clipped */
  margin-top: 16px;
}
.choices--qty .choice {
  padding: 28px 20px;
  text-align: center;
  /* Override .choice's overflow:hidden so the top-badge can extend above the card */
  overflow: visible;
}
.choices--qty .choice__qty-visual {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.choices--qty .choice__qty-visual .bottle--photo { max-height: 130px; }
.choices--qty .choice__qty-num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.choices--qty .choice:nth-child(2) .choice__qty-num { background: var(--grad-orange); -webkit-background-clip: text; background-clip: text; }
.choices--qty .choice:nth-child(3) .choice__qty-num { background: var(--grad-teal); -webkit-background-clip: text; background-clip: text; }
.choices--qty .choice__qty-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.choices--qty .choice__price {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.choices--qty .choice__price-each {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}
.choices--qty .choice__price-old {
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: line-through;
  margin-bottom: 10px;
}
.choice__top-badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 2;
}

/* Summary bar */
.summary {
  margin-top: 28px;
  padding: 22px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: var(--highlight-strong), var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideUp 0.45s var(--spring-soft);
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.summary__detail { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }
.summary__product { font-size: 17px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.summary__price-wrap { text-align: right; }
.summary__price-old { font-size: 13px; color: var(--text-tertiary); text-decoration: line-through; }
.summary__price { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--text-primary); }
.summary__actions { display: flex; gap: 10px; align-items: center; }

.flow__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  font-family: var(--font);
  margin-bottom: 20px;
}
.flow__back:hover { background: rgba(255,255,255,.5); color: var(--text-primary); }

/* ============================================================
   COMBOS
   ============================================================ */
.combos__group { margin-bottom: 48px; }
.combos__group-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 22px; flex-wrap: wrap;
}
.combos__group-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.combos__group-sub {
  font-size: 14px;
  color: var(--text-secondary);
}
.combos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.combo {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1.5px solid rgba(255,255,255,0.55);
  box-shadow: var(--highlight-strong), var(--shadow-sm);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.35s var(--spring-soft),
    box-shadow 0.30s ease,
    border-radius 0.45s var(--spring-soft);
}
.combo:hover {
  transform: translateY(-6px);
  box-shadow: var(--highlight-strong), var(--shadow-lg);
  border-radius: 28px;
}
.combo.is-selected {
  border-color: var(--primary-purple);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 0 0 4px rgba(43, 165, 192,.15), var(--highlight-strong), var(--shadow-md);
}
.combo__check {
  position: absolute; top: 14px; right: 14px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.6);
  transition: all 0.30s var(--spring);
  box-shadow: 0 4px 12px rgba(43, 165, 192,.40);
}
.combo.is-selected .combo__check { opacity: 1; transform: scale(1); }
.combo__save {
  position: absolute; top: 14px; left: 14px;
  background: var(--grad-orange);
  color: #fff;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255,122,26,.40);
}
.combo__visual {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px 0 12px;
}
.combo__visual .bottle--photo { max-height: 110px; flex-shrink: 1; min-width: 0; }
.combo__visual .bottle { width: 70px; filter: drop-shadow(0 14px 18px rgba(20,25,60,.20)); }
.combo__visual .bottle:not(:first-child) { margin-left: -14px; }
.combo__items {
  display: flex; flex-direction: column; gap: 6px;
  margin: 14px 0 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.40);
  border: 1px solid rgba(255,255,255,0.50);
  border-radius: 14px;
}
.combo__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-primary); font-weight: 500;
}
.combo__item-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.combo__item-dot--tang { background: var(--grad-tangerina); }
.combo__item-dot--mor  { background: var(--grad-morango); }
.combo__item-dot--cap  { background: var(--grad-capsula); }
.combo__pricing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.combo__price-block { display: flex; flex-direction: column; }
.combo__price-old {
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: line-through;
  line-height: 1;
}
.combo__price {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}
.combo__econ {
  font-size: 11px;
  font-weight: 700;
  color: #008e76;
  background: rgba(0,201,167,.15);
  border: 1px solid rgba(0,201,167,.25);
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--highlight-strong), var(--shadow-sm);
}
.testimonial__stars {
  display: flex; gap: 2px; margin-bottom: 14px;
  color: #FFB300;
}
.testimonial__quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 18px;
  font-weight: 500;
  text-wrap: pretty;
}
.testimonial__author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow: var(--highlight-strong), 0 4px 12px rgba(20,25,60,.15);
}
.testimonial__name { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.testimonial__loss { font-size: 12px; color: var(--text-secondary); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  padding: 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(43, 165, 192,.18), rgba(0,201,167,.14));
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid rgba(255,255,255,.55);
  box-shadow: var(--highlight-strong), var(--shadow-lg);
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.guarantee__seal {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--grad-purple);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 16px 48px rgba(43, 165, 192,.45), inset 0 2px 0 rgba(255,255,255,.5);
  position: relative;
}
.guarantee__seal::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px dashed rgba(255,255,255,.45);
  border-radius: 50%;
}
.guarantee__seal-num { font-size: 64px; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.guarantee__seal-day { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }
.guarantee__title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.guarantee__desc {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  text-wrap: pretty;
}

/* ============================================================
   NUTRITION FACTS — informação nutricional oficial
   ============================================================ */
.nutrition {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 44px 36px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.nutrition__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(15,20,40,.10);
}
.nutrition__title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}
.nutrition__portion {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: right;
  line-height: 1.55;
}
.nutrition__portion-num {
  font-weight: 800;
  color: var(--text-primary);
  font-size: 15px;
}

/* Table */
.nutrition__table-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.55);
  margin-bottom: 22px;
}
.nutrition__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.nutrition__table thead {
  background: rgba(43, 165, 192,.10);
}
.nutrition__table th {
  padding: 12px 18px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-purple);
  border-bottom: 1px solid rgba(43, 165, 192,.15);
}
.nutrition__th-amount,
.nutrition__th-vd { text-align: right; }
.nutrition__table td {
  padding: 13px 18px;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(15,20,40,.06);
}
.nutrition__table td:nth-child(2),
.nutrition__table td:nth-child(3) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.nutrition__table td strong {
  font-weight: 800;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 16px;
}
.nutrition__table tbody tr:last-child td { border-bottom: none; }
.nutrition__table tbody tr:hover {
  background: rgba(255,255,255,.35);
}

/* Footnote */
.nutrition__footnote {
  margin-bottom: 28px;
}
.nutrition__footnote p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 6px;
}
.nutrition__footnote p:last-child { margin-bottom: 0; }

/* Details */
.nutrition__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px dashed rgba(15,20,40,.12);
}
.nutrition__detail-block {
  padding: 18px 20px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 16px;
  position: relative;
}
.nutrition__detail-block:first-child {
  grid-column: 1 / -1;
}
.nutrition__detail-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 8px;
}
.nutrition__detail-block p {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.55;
}
.nutrition__detail-block em {
  font-style: italic;
  color: var(--text-secondary);
}
.nutrition__tag {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 12px;
  background: linear-gradient(145deg, rgba(34,197,94,.18), rgba(0,201,167,.12));
  border: 1px solid rgba(34,197,94,.30);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0E8A3F;
}

@media (max-width: 720px) {
  .nutrition { padding: 28px 22px 24px; }
  .nutrition__heading { flex-direction: column; align-items: flex-start; }
  .nutrition__portion { text-align: left; }
  .nutrition__table th,
  .nutrition__table td { padding: 10px 12px; font-size: 13px; }
  .nutrition__details { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER COMPANY BLOCK
   ============================================================ */
.footer__company {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 26px;
  margin-bottom: 22px;
  background: rgba(255,255,255,.40);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  box-shadow: var(--highlight-strong), var(--shadow-sm);
}
.footer__company-block h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}
.footer__company-block p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.footer__company-block p strong {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 13.5px;
  display: inline-block;
  margin-bottom: 2px;
}
.footer__company-block a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  padding: 0;
  display: inline;
  transition: color .2s ease;
}
.footer__company-block a:hover {
  color: #0E6E85;
  text-decoration: underline;
}
.footer__regulatory {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  background: rgba(15,20,40,.05);
  border: 1px solid rgba(15,20,40,.08);
  border-radius: 6px;
}

@media (max-width: 720px) {
  .footer__company {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ============================================================
   SPECIALIST — Luh Barros card
   ============================================================ */
.section--specialist { padding-bottom: 0; }

.specialist {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 48px 48px;
  border-radius: 32px;
  text-align: center;
  overflow: hidden;
}
.specialist__halo {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      rgba(34,197,94,.22) 0%,
      rgba(43, 165, 192,.16) 40%,
      transparent 70%);
  filter: blur(40px);
  opacity: .85;
  pointer-events: none;
  z-index: 0;
}
.specialist > *:not(.specialist__halo) { position: relative; z-index: 1; }

/* Photo */
.specialist__photo-wrap {
  position: relative;
  width: 132px; height: 132px;
  margin: 0 auto 22px;
}
.specialist__photo {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,.85);
  box-shadow:
    0 0 0 1px rgba(43, 165, 192,.20),
    0 14px 40px rgba(20,25,60,.18),
    0 4px 12px rgba(34,197,94,.15);
}
.specialist__online {
  position: absolute;
  bottom: 6px; right: 6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #34D759, #16A34A);
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(34,197,94,.50);
}
.specialist__online::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,.45);
  animation: specialist-ping 2s ease-out infinite;
}
@keyframes specialist-ping {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.specialist__name {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.1;
}

.specialist__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(145deg, rgba(34,197,94,.18), rgba(0,201,167,.12));
  border: 1px solid rgba(34,197,94,.35);
  color: #0E8A3F;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 4px 14px rgba(34,197,94,.10);
}
.specialist__badge svg { color: #16A34A; flex-shrink: 0; }

.specialist__tagline {
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto 12px;
  font-weight: 500;
  text-wrap: balance;
}
.specialist__region {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 26px;
}
.specialist__region svg { color: var(--text-tertiary); }

.specialist__cta {
  margin: 0 auto;
  gap: 8px;
  /* Compact CTA — não-elástico, largura mínima sensata */
  padding: 12px 22px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1;
}
.specialist__cta svg { flex-shrink: 0; width: 17px; height: 17px; }

/* ── Contact + social pills (shared chassis) ── */
.specialist__contacts,
.specialist__socials {
  display: grid;
  /* Auto-fit pra adaptar entre 1 e 2 colunas conforme a viewport */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  max-width: 540px;
  margin: 28px auto 0;
  width: 100%;
}
.specialist__contacts { margin-top: 28px; }
.specialist__socials  { margin-top: 12px; margin-bottom: 24px; }

.specialist__pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  text-decoration: none;
  box-shadow: var(--highlight-strong), var(--shadow-sm);
  min-width: 0; /* permite encolher o texto sem quebrar layout */
  transition:
    transform 0.20s var(--spring-soft),
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.specialist__pill:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255,255,255,.75);
  box-shadow: var(--highlight-strong), var(--shadow-lg);
}
.specialist__pill:active { transform: scale(0.97); }

.specialist__pill svg {
  width: 38px; height: 38px;
  padding: 9px;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(20,25,60,.18), inset 0 1px 0 rgba(255,255,255,.4);
}

/* Variants */
.specialist__pill--phone svg {
  background: linear-gradient(145deg, #2EE0BB 0%, #00C9A7 50%, #00917A 100%);
}
.specialist__pill--email svg {
  background: linear-gradient(145deg, #6FCDDE 0%, #2BA5C0 50%, #1E7A93 100%);
}
.specialist__pill--instagram svg {
  background: linear-gradient(135deg, #FBE18A 0%, #F76B6B 22%, #DA1E62 46%, #C7257D 65%, #7E3FCB 87%, #4B5DDC 100%);
}
.specialist__pill--facebook svg {
  background: linear-gradient(145deg, #1877F2, #0A4FA5);
}

.specialist__pill-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1.15;
  min-width: 0; /* permite que pill-handle ellipsize */
  flex: 1;
}
.specialist__pill-net {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}
.specialist__pill-handle {
  font-size: 11.5px;
  color: var(--text-secondary);
  font-weight: 500;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.specialist__trust {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(15,20,40,.08);
  flex-wrap: wrap;
}
.specialist__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
}
.specialist__trust-item svg { color: var(--primary-teal); flex-shrink: 0; }

@media (max-width: 640px) {
  .specialist { padding: 40px 22px 32px; }
  .specialist__name { font-size: 26px; }
  .specialist__halo { width: 360px; height: 360px; top: -90px; }
  .specialist__photo-wrap { width: 116px; height: 116px; }
  .specialist__tagline { font-size: 15.5px; }
  .specialist__contacts,
  .specialist__socials {
    grid-template-columns: 1fr; /* 1 pílula por linha em mobile */
    max-width: 360px;
    gap: 10px;
  }
  .specialist__pill { padding: 9px 14px 9px 9px; gap: 11px; }
  .specialist__pill svg { width: 34px; height: 34px; padding: 8px; }
  .specialist__pill-net { font-size: 13px; }
  .specialist__pill-handle { font-size: 11px; }
  .specialist__cta { padding: 11px 18px; font-size: 13px; }
  .specialist__trust { gap: 16px 18px; }
  .specialist__trust-item { font-size: 11.5px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-radius: 18px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.50);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--highlight-strong), var(--shadow-sm);
  overflow: hidden;
  transition: border-radius 0.3s var(--spring-soft);
}
.faq__item.is-open { border-radius: 24px; }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font);
  font-size: 15.5px; font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  letter-spacing: -0.005em;
}
.faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--glass-fill-soft);
  border: 1px solid rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-purple);
  flex-shrink: 0;
  transition: transform 0.35s var(--spring-soft), background 0.25s ease;
}
.faq__item.is-open .faq__icon {
  background: var(--grad-purple);
  color: #fff;
  transform: rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-smooth), padding 0.3s ease;
  padding: 0 24px;
}
.faq__item.is-open .faq__a {
  max-height: 600px;
  padding: 0 24px 22px;
}
.faq__a p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: 80px;
  padding: 60px 0 30px;
  background: rgba(255,255,255,0.50);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid rgba(255,255,255,.55);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 0;
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--text-primary); }
.footer__brand-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 340px;
}
.footer__disclaimer {
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(15,20,40,.04);
  border: 1px solid rgba(15,20,40,.08);
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  text-wrap: pretty;
}
.footer__disclaimer strong { color: var(--text-primary); font-weight: 700; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(15,20,40,.08);
  font-size: 12.5px;
  color: var(--text-tertiary);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__pay {
  display: flex; gap: 8px; align-items: center;
}
.footer__pay-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(15,20,40,.08);
  color: var(--text-secondary);
}

/* ============================================================
   FLOAT-IN
   ============================================================ */
.float-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s var(--spring-soft);
}
.float-item.is-visible { opacity: 1; transform: translateY(0); }
.float-stagger > *:nth-child(1) { transition-delay: 0.00s; }
.float-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.float-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.float-stagger > *:nth-child(4) { transition-delay: 0.24s; }
.float-stagger > *:nth-child(5) { transition-delay: 0.32s; }
.float-stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 40px;
  white-space: nowrap;
  pointer-events: auto;
  transform: translateY(100px);
  opacity: 0;
  transition:
    transform 0.50s var(--spring-soft),
    opacity 0.40s ease;
}
.toast.is-visible { transform: translateY(0); opacity: 1; }
.toast-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary-teal);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0,201,167,.6);
}
.toast-text {
  font-size: 14px;
  color: var(--text-on-dark);
  font-weight: 500;
}

/* ============================================================
   INGREDIENTS
   ============================================================ */
.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ingredient {
  padding: 22px 20px;
  border-radius: var(--radius-card);
  transition:
    border-radius 0.45s var(--spring-soft),
    transform     0.40s var(--spring-soft),
    box-shadow    0.30s ease;
  position: relative;
  overflow: hidden;
}
.ingredient:hover {
  border-radius: var(--radius-card-lg);
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--highlight-strong), var(--shadow-xl);
}
.ingredient__leaf {
  width: 38px; height: 38px;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(20,25,60,.18), inset 0 1px 0 rgba(255,255,255,.5);
  position: relative;
  transition: border-radius 0.45s var(--spring-soft), transform 0.40s var(--spring-soft);
}
.ingredient__leaf::after {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  filter: blur(2px);
}
.ingredient:hover .ingredient__leaf { border-radius: 22px; transform: rotate(-8deg) scale(1.06); }
.ingredient__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.ingredient__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 12px;
}
.ingredient__desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================================
   PROTOCOLO / STEPS
   ============================================================ */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.step {
  position: relative;
  padding: 28px 26px;
  border-radius: var(--radius-card);
  overflow: hidden;
  transition:
    border-radius 0.45s var(--spring-soft),
    transform     0.40s var(--spring-soft),
    box-shadow    0.30s ease;
}
.step:hover {
  border-radius: var(--radius-card-lg);
  transform: translateY(-6px) scale(1.01);
}
.step__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 8px 22px rgba(20,25,60,.20), inset 0 1px 0 rgba(255,255,255,.4);
  transition: border-radius 0.45s var(--spring-soft), transform 0.40s var(--spring-soft);
}
.step:hover .step__icon { border-radius: 22px; transform: rotate(-6deg) scale(1.06); }
.step__time {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.65);
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.step__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}
.step__dose {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary-purple);
  background: rgba(43, 165, 192,.10);
  border: 1px solid rgba(43, 165, 192,.22);
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.step__desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.step__desc strong { color: var(--text-primary); font-weight: 700; }

/* Step 1 (Drink) — orange accent for the dose pill */
.step:nth-child(1) .step__dose {
  color: #cc4400;
  background: rgba(255,122,26,.12);
  border-color: rgba(255,122,26,.22);
}
/* Step 2 (Capsule) — purple/dark accent */
.step:nth-child(2) .step__dose {
  color: var(--primary-purple);
  background: rgba(43, 165, 192,.10);
  border-color: rgba(43, 165, 192,.22);
}

/* ── Recommended (Sinergia) card — premium treatment ── */
.step--recommended {
  background: linear-gradient(135deg, rgba(34,197,94,.22) 0%, rgba(0,201,167,.18) 60%, rgba(43, 165, 192,.16) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(34,197,94,.40);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.45) inset,
    0 16px 48px rgba(34,197,94,.18),
    var(--shadow-md);
  position: relative;
}
.step--recommended::before {
  /* iridescent shimmer behind */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 80% 10%, rgba(34,197,94,.35) 0%, transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(43, 165, 192,.20) 0%, transparent 50%);
  opacity: .6;
  pointer-events: none;
}
.step--recommended > * { position: relative; z-index: 1; }
.step--recommended:hover {
  border-radius: var(--radius-card-lg);
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.55) inset,
    0 22px 58px rgba(34,197,94,.30),
    var(--shadow-lg);
}
.step__rec-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(145deg, #34D759, #16A34A);
  padding: 5px 12px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(34,197,94,.45), inset 0 1px 0 rgba(255,255,255,.5);
  z-index: 2;
}
.step__icon--rec {
  background: linear-gradient(145deg, #34D759, #16A34A);
  box-shadow: 0 10px 24px rgba(34,197,94,.45), inset 0 1px 0 rgba(255,255,255,.4);
}
.step__dose--rec,
.step--recommended .step__dose {
  color: #0E8A3F !important;
  background: rgba(34,197,94,.15) !important;
  border-color: rgba(34,197,94,.30) !important;
  font-weight: 700;
}
.step--recommended .step__time {
  background: rgba(255,255,255,.65);
  border-color: rgba(255,255,255,.75);
  color: var(--text-secondary);
}

.protocolo__note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 18px;
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.protocolo__note svg {
  flex-shrink: 0;
  color: var(--primary-purple);
}
.protocolo__note strong { color: var(--text-primary); font-weight: 700; }

@media (max-width: 960px) {
  .ingredients__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: 1fr; }
  .step__rec-badge { top: 14px; right: 14px; }
}
@media (max-width: 640px) {
  .ingredients__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE — breakpoints
   Desktop large: > 1100px (default styles)
   Desktop small: 960–1100px
   Tablet:        640–960px
   Mobile:        ≤ 640px
   Small mobile:  ≤ 420px
   ============================================================ */

/* Tablet & smaller desktop */
@media (max-width: 1100px) {
  .container { padding: 0 24px; }
  .hero__title { font-size: clamp(36px, 5.4vw, 56px); }
}

/* Tablet */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav { padding: 9px 12px 9px 18px; max-width: calc(100% - 24px); }
  .hero { padding: 120px 0 50px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__copy { text-align: left; }
  .hero__visual { height: 440px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .combos__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; text-align: center; gap: 24px; padding: 32px; }
  .guarantee__seal { margin: 0 auto; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .flow { padding: 28px 22px; }
  .h2 { font-size: clamp(28px, 4vw, 40px); }
}

/* Mobile */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }

  /* Nav */
  .nav { padding: 8px 8px 8px 16px; }
  .nav__logo-name { font-size: 17px; }
  .nav__logo-mark { height: 30px; }
  .nav__logo-eyebrow { font-size: 9px; }
  .nav .btn { padding: 10px 16px; font-size: 12.5px; }

  /* Hero */
  .hero { padding: 100px 0 36px; }
  .hero__title { font-size: clamp(30px, 7vw, 38px); line-height: 1.05; }
  .hero__lede { font-size: 15.5px; line-height: 1.55; }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero__cta .btn,
  .hero__cta .btn-xl {
    width: 100%;
    padding: 15px 24px;
    font-size: 15px;
    justify-content: center;
  }
  .hero__trust {
    gap: 12px 18px;
    font-size: 12.5px;
  }
  .hero__trust span { gap: 6px; }
  .hero__visual { height: 360px; }
  .hero__halo { width: 320px; height: 320px; }
  .hero__bottles .bottle--photo { width: 165px; }
  .hero__bottles .bottle--photo-lg { width: 160px; }

  /* Hero stats — 2x2 on mobile */
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 44px; }
  .stat { padding: 16px 14px; }
  .stat__num { font-size: 26px; }
  .stat__label { font-size: 12px; }

  /* Section heads */
  .section-head { margin-bottom: 40px; }
  .h2 { font-size: clamp(26px, 6.5vw, 34px); }
  .section-sub { font-size: 15px; }

  /* Benefits & combos & ingredients & testimonials — 1 col */
  .benefits__grid,
  .combos__grid,
  .testimonials__grid { grid-template-columns: 1fr; }
  .benefit, .testimonial { padding: 22px 20px; }

  /* Shop */
  .shop__tab { padding: 10px 18px; font-size: 13px; }
  .shop__tab svg { width: 14px; height: 14px; }
  .flow { padding: 20px 16px; }
  .flow__steps { font-size: 11px; gap: 4px; }
  .flow__step { padding: 7px 11px 7px 8px; font-size: 11px; }
  .flow__step-num { width: 22px; height: 22px; font-size: 11px; }
  .flow__title { font-size: 20px; }
  .flow__hint { font-size: 13px; }
  .choices { gap: 14px; grid-template-columns: 1fr; }
  .choices--qty { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; }
  .choices--qty .choice { padding: 22px 12px; }
  .choices--qty .choice__qty-visual { height: 90px; }
  .choices--qty .choice__qty-visual .bottle--photo { max-height: 90px; }
  .choices--qty .choice__qty-num { font-size: 36px; }
  .choices--qty .choice__price { font-size: 18px; }
  .choices--qty .choice__price-old { font-size: 11px; }
  .choices--qty .choice__price-each { font-size: 11px; }
  .summary { padding: 16px 18px; flex-direction: column; align-items: stretch; gap: 14px; }
  .summary__actions { justify-content: space-between; }
  .summary__price-wrap { text-align: left; }

  /* Combos */
  .combos__group { margin-bottom: 36px; }
  .combos__group-head { gap: 6px; }
  .combos__group-title { font-size: 19px; }
  .combos__group-sub { font-size: 13px; }
  .combo { padding: 20px 18px; }
  .combo__price { font-size: 22px; }

  /* Guarantee */
  .guarantee { padding: 28px 22px; }
  .guarantee__seal { width: 150px; height: 150px; }
  .guarantee__seal-num { font-size: 48px; }
  .guarantee__title { font-size: 24px; }
  .guarantee__desc { font-size: 14.5px; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 24px; }

  /* Toast — adjust so doesn't conflict with bottom UI */
  .toast { font-size: 13px; padding: 12px 18px; }
}

/* Small mobile (older / narrow phones) */
@media (max-width: 420px) {
  .hero__bottles { gap: 0; }
  .hero__bottle-wrap:nth-child(1) { margin-right: -24px; }
  .hero__bottle-wrap:nth-child(3) { margin-left: -24px; }
  .hero__bottles .bottle--photo { width: 140px; }
  .hero__bottles .bottle--photo-lg { width: 135px; }
  .hero__title { font-size: 28px; }
  .choices--qty .choice__qty-num { font-size: 30px; }
  .choices--qty .choice__price { font-size: 16px; }
  .choices--qty .choice__qty-label { font-size: 10px; }
  .choices--qty .choice { padding: 18px 8px; }
}
