:root{
  --raspberry:#be123c;
  --watermelon:#fb7185;

  --bg:#ffffff;
  --ink:#0e1420;
  --muted:#5b6675;
  --silver:#eef1f5;
  --silver2:#f6f7fb;
  --line:#dfe4ea;
  --lime:#b7e000;
  --lime2:#9bd400;
  --radius:22px;
  --shadow: 0 10px 30px rgba(14,20,32,.08);
  --shadow2: 0 6px 18px rgba(14,20,32,.08);
  --max: 1120px;
  --flavor-accent: var(--lime);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:var(--bg);
  line-height:1.35;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px;}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(223,228,234,.7);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.08em;
}
.brand-badge{
  width:34px;height:34px;border-radius:10px;
  background: linear-gradient(135deg, var(--silver), white);
  border:1px solid var(--line);
  display:grid;place-items:center;
  box-shadow: var(--shadow2);
  font-size:12px;
}
.brand span{font-size:14px}
.navlinks{display:flex; gap:18px; align-items:center; color:var(--muted); font-weight:600; font-size:14px}
.navlinks a{padding:8px 10px;border-radius:999px}
.navlinks a:hover{background:var(--silver2); color:var(--ink)}
.navcta{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:white;
  font-weight:700;
  box-shadow: var(--shadow2);
}
.btn:hover{transform: translateY(-1px)}
.btn-primary{
  background: linear-gradient(135deg, var(--lime), var(--lime2));
  border-color: rgba(0,0,0,.05);

  animation: genkiPulse 2.2s ease-in-out infinite;
}
.btn-primary:hover{filter:saturate(1.06)}
.btn-ghost{
  background: rgba(255,255,255,.7);
}

.hero{
  padding:44px 0 22px;
}
.hero-stage{
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 42px 42px 34px;
  border-radius: var(--radius);
  background: #ffffff;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  isolation:isolate;
}
.hero-copy{
  padding:34px;
  border-radius: var(--radius);
  background: transparent;
  border:0;
  box-shadow:none;
}
.hero-copy-overlay{
  position: relative;
  z-index: 3;
  max-width: min(660px, 49%);
  padding: 18px 0 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.hero-stage::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.92) 28%, rgba(255,255,255,.74) 42%, rgba(255,255,255,.28) 56%, rgba(255,255,255,0) 70%);
}
.h1{
  font-size: clamp(36px, 4.5vw, 54px);
  line-height:1.02;
  letter-spacing:-.02em;
  margin:0 0 14px;
  max-width: 13.2ch;
}
.lead{
  font-size: clamp(15px, 1.35vw, 17px);
  color:var(--muted);
  margin:0 0 18px;
  max-width: 38ch;
}
.lead strong{
  display:block;
}
.mini{
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 18px;
}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin: 18px 0 22px}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:white;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.dot{width:10px;height:10px;border-radius:99px;background:var(--lime)}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.hero-note{
  display: inline-block;
  margin-top: 10px;
  max-width: 480px;
  background: rgba(247,249,240,.92);
  backdrop-filter: blur(8px);
  border-color: rgba(183,224,0,.28);
}
.hero-media{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:0;
  background: transparent;
  box-shadow: none;
  min-height: 420px;
}
.hero-media-overlay{
  position: absolute;
  inset: 0;
  min-height: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  pointer-events: none;
  z-index:1;
}
.hero-media picture,
.hero-media img{
  display:block;
  width:100%;
  height:100%;
}
.hero-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 64% 54%;
  transform: none;
}
/* Iconitos en el header de la tabla comparativa */
.th-ico{
  display:inline-flex;
  width:18px; height:18px;
  margin-left:8px;
  vertical-align:middle;
  color: rgba(12, 18, 28, .55);
}
.th-ico svg{width:100%; height:100%}

/* Iconitos en los pasos */
.step{position:relative
  border: 1px solid rgba(14,20,32,.08);
  background: linear-gradient(180deg,#fff,#fbfcfe);
}
.step .ico{width:20px;height:20px;color: rgba(12, 18, 28, .38)}
.step .ico svg{width:100%; height:100%}
.step .head{display:flex; align-items:center; gap:10px; margin-bottom:8px}
.step .n{margin:0; width:34px; height:34px; display:grid; place-items:center; border-radius:12px; background: var(--silver2); border:1px solid rgba(12,18,28,.10); font-weight:900}


/* FAQ (acordeón) */
.faq{
  display:grid;
  gap:10px;
}

/* un poco más de aire entre el subtítulo y la primera pregunta */
.sub + .faq{margin-top: 12px;}
.faq details{
  border:1px solid rgba(12, 18, 28, .08);
  background: var(--card);
  border-radius: 16px;
  overflow:hidden;
}
.faq summary{
  list-style:none;
  cursor:pointer;
  padding:14px 16px;
  font-weight:800;
  color: var(--ink);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.faq summary::-webkit-details-marker{display:none;}
.faq .faq-chevron{
  width:14px; height:14px;
  border-right:2px solid rgba(12,18,28,.55);
  border-bottom:2px solid rgba(12,18,28,.55);
  transform: rotate(45deg);
  transition: transform .18s ease;
  flex: 0 0 auto;
}
.faq details[open] .faq-chevron{
  transform: rotate(225deg);
}
.faq .faq-body{
  padding:0 16px 16px 16px;
  color: var(--muted);
  line-height:1.6;
}
.faq .faq-body p{margin:0;}
.hero-media:after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(600px 300px at 20% 25%, rgba(183,224,0,.14), transparent 60%),
              linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.0));
  pointer-events:none;
}

.section{padding:44px 0}
.section.alt{background: linear-gradient(180deg, var(--silver2), #ffffff)}
.section-header{
  display:flex; align-items:flex-end; justify-content:space-between; gap:20px;
  margin-bottom:18px;
}
.section h2{
  margin:0;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing:-.01em;
}
.section .sub{margin:6px 0 0; color:var(--muted); max-width: 70ch}
.card{
  border-radius: var(--radius);
  background:white;
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
}
.grid4{display:grid; gap:14px; grid-template-columns: repeat(4, minmax(0,1fr));}
.grid3{display:grid; gap:14px; grid-template-columns: repeat(3, minmax(0,1fr));}
.metric-card{padding:18px}
.metric-top{display:flex; align-items:center; justify-content:space-between; gap:12px}
.chem{
  width:44px;height:44px;border-radius:999px;
  border:1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, var(--silver2));
  display:grid; place-items:center;
  font-weight:900;
  color:#3b4656;
}
.metric-title{font-weight:900; font-size:16px; margin:0}
.metric-mg{font-weight:900; font-size:18px; color:#2a3442}
.metric-mg small{font-weight:800; color:var(--muted)}
.bullets{margin:14px 0 0; padding:0; list-style:none; color:#415061}
.bullets li{display:flex; gap:10px; padding:7px 0; font-weight:600; font-size:13.5px}
.tick{
  width:18px;height:18px;border-radius:6px;
  background: rgba(183,224,0,.18);
  border:1px solid rgba(183,224,0,.35);
  display:grid; place-items:center;
  flex: 0 0 18px;
}
.tick svg{width:12px;height:12px}

.note{
  margin-top:14px;
  padding:14px 16px;
  border-radius: 16px;
  background: rgba(183,224,0,.10);
  border:1px solid rgba(183,224,0,.25);
  color:#344152;
  font-weight:650;
}

.table-wrap{overflow:auto}
.compare{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  min-width: 640px;
}
.compare th, .compare td{
  padding:16px 14px;
  text-align:center;
  border-bottom:1px solid var(--line);
  font-weight:700;
}
.compare thead th{
  position: sticky; top: 0;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  z-index: 1;
  border-bottom: 1px solid var(--line);
}
.compare thead th strong{display:inline-block; padding:6px 10px; border-radius:999px; background: var(--silver2); border:1px solid var(--line)}
.compare thead th.hl strong{background: rgba(183,224,0,.12); border-color: rgba(183,224,0,.25)}
.th-ico{display:inline-flex; vertical-align:middle; margin-left:8px; opacity:.75}
.th-ico svg{width:18px;height:18px}

.compare th:first-child, .compare td:first-child{
  text-align:left;
  padding-left:18px;
}
.compare tr:last-child td{border-bottom:none}
.hl{
  background: rgba(183,224,0,.08);
}
.hl strong{color:#1b2500}
.bad{
  color: var(--muted);
  font-weight:800;
}
.legend{
  margin-top:12px;
  color:var(--muted);
  font-size:13px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.legend span{display:flex; align-items:center; gap:8px}
.swatch{width:14px;height:14px;border-radius:5px;border:1px solid var(--line); background:#fff}
.swatch.hl{background: rgba(183,224,0,.12); border-color: rgba(183,224,0,.25)}

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.step{padding:18px}
.step .n{
  width:36px;height:36px;border-radius:12px;
  background: linear-gradient(135deg, var(--silver), white);
  border:1px solid var(--line);
  display:grid; place-items:center;
  font-weight:900;
  margin-bottom:10px;
}
.step h3{margin:0 0 6px; font-size:15px}
.step p{margin:0; color:var(--muted); font-weight:650; font-size:13.5px}
.inline-cta{
  margin-top:18px;
  display:flex; gap:12px; flex-wrap:wrap; align-items:center;
}

.footer{
  padding:26px 0 38px;
  color:var(--muted);
  font-size:13px;
}
.footer hr{
  border:none;
  border-top:1px solid var(--line);
  margin:0 0 18px;
}

.whatsapp-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: #0e1420;
  text-decoration:none;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(14,20,32,.10);
  z-index: 1000;
  transition: transform .15s ease, box-shadow .15s ease;
  animation: genkiPulse 2.2s ease-in-out infinite;
}
.whatsapp-fab svg{width:22px;height:22px;display:block}
.whatsapp-fab:hover{transform: translateY(-2px); box-shadow: 0 14px 32px rgba(14,20,32,.14)}
.whatsapp-fab svg{width:26px;height:26px}

@media (max-width: 980px){
  .hero-stage{min-height: 0; padding: 34px 28px 28px}
  .hero-stage::before{display:none}
  .hero-copy-overlay{max-width: 100%; padding-top: 0; background: transparent}
  .hero-media-overlay{position: relative; inset: auto; margin-top: 18px; min-height: 360px; width: 100%; border-radius: 24px; overflow: hidden}
  .hero-media img{position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 72%}
  .hero-media{min-height: 360px}
  .grid4{grid-template-columns: repeat(2, 1fr)}
  .grid3{grid-template-columns: repeat(2, 1fr)}
  .steps{grid-template-columns: repeat(2, 1fr)}
  .navlinks{display:none}
}
@media (max-width: 520px){
  .hero-stage{min-height: 0; padding: 26px 18px 20px}
  .hero-copy{padding:26px}
  .hero-media-overlay{min-height: 420px; margin-top: 16px}
  .hero-note{max-width: 100%}
  .grid4{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
}

/* ===== Pill "Esto no es agua con sabor" ===== */
.pill-banner{
  border-radius: 999px;
  padding: 14px 18px;
  border: 1px solid rgba(12, 18, 28, .10);
  background: linear-gradient(135deg, rgba(255,255,255,.85), rgba(246,247,251,.9));
  box-shadow: var(--shadow2);
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.pill-banner-text{
  font-weight: 950;
  letter-spacing: -.01em;
  font-size: clamp(16px, 2.1vw, 20px);
}

/* ===== Rueda de sabores ===== */
.flavor-wheel{
  display:grid;
  grid-template-columns: 56px 1fr 56px;
  align-items:center;
  gap:12px;
}
.wheel-btn{
  width:56px;
  height:56px;
  border-radius: 16px;
  border: 1px solid rgba(12, 18, 28, .10);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow2);
  font-size: 28px;
  font-weight: 900;
  color: rgba(14,20,32,.72);
  cursor:pointer;
}
.wheel-btn:hover{transform: translateY(-1px)}

.wheel-stage{
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(12, 18, 28, .08);
  background: linear-gradient(180deg, #f7f8fb, #eef1f5);
  box-shadow: 0 14px 40px rgba(14,20,32,.10);
  padding: 22px 10px;
  overflow:hidden;
  touch-action: pan-y;
}
.wheel-stage::before{
  content:"";
  position:absolute;
  inset:-80px;
  background: radial-gradient(520px 260px at 50% 32%, var(--flavor-accent), transparent 60%);
  opacity: .14;
  filter: blur(28px);
  pointer-events:none;
  z-index: 0;
}
.wheel-stage::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 420px at 50% -10%, rgba(255,255,255,.90), rgba(255,255,255,0) 50%),
    radial-gradient(900px 380px at 50% 120%, rgba(14,20,32,.08), rgba(255,255,255,0) 55%);
  pointer-events:none;
  z-index: 0;
}
.wheel-track{
  position:relative;
  height: 420px;
  z-index: 1;
}
.wheel-item{
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%) scale(.78);
  opacity:.35;
  filter: saturate(.98);
  transition: transform .24s ease, opacity .24s ease;
  width:min(360px, 75vw);
  cursor:pointer;
}
.wheel-item img{
  width:100%;
  height:auto;
  display:block;
  filter: drop-shadow(0 18px 42px rgba(14,20,32,.14));
}
.wheel-item.is-left{transform: translate(calc(-50% - 210px), -50%) scale(.72); opacity:.28;}
.wheel-item.is-right{transform: translate(calc(-50% + 210px), -50%) scale(.72); opacity:.28;}
.wheel-item.is-active{transform: translate(-50%, -50%) scale(1); opacity:1;}
.wheel-item.is-off{opacity:0; pointer-events:none;}

.wheel-meta{
  margin-top: 14px;
  text-align:center;
}
.wheel-title{font-weight: 950; font-size: 18px; letter-spacing:-.01em; color: var(--flavor-accent);}
.wheel-mini{color: rgba(14,20,32,.46); font-weight: 850; font-size: 13px; margin-top: 2px;}

@media (max-width: 700px){
  .flavor-wheel{grid-template-columns: 44px 1fr 44px;}
  .wheel-btn{width:44px;height:44px;border-radius:14px;font-size:24px;}
  .wheel-track{height: 360px;}
  .wheel-item.is-left{transform: translate(calc(-50% - 150px), -50%) scale(.72);}
  .wheel-item.is-right{transform: translate(calc(-50% + 150px), -50%) scale(.72);}
}

/* ===== Video loop ===== */
.video-card{
  border-radius: var(--radius);
  border: 1px solid rgba(12, 18, 28, .08);
  background: linear-gradient(135deg, #0b0f17, #121826);
  box-shadow: var(--shadow);
  overflow:hidden;
}

/* inline note (mismo renglón, sin "pill") */
.inline-note{
  font-weight: inherit;
  color: var(--muted);
}
.loop-video{
  width:100%;
  height:auto;
  display:block;
}

/* ===== Cómo se usa (texto + imagen) ===== */
.use-block{
  text-align:center;
  padding: 18px;
  border-radius: var(--radius);
  border:1px solid rgba(12, 18, 28, .08);
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: var(--shadow2);
}
.use-kicker{
  margin: 6px 0 8px;
  font-size: 22px;
  font-weight: 950;
  letter-spacing:-.01em;
}
.use-line{
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.6;
}
.use-line + .use-line{margin-top: 6px;}
.use-image{
  width:100%;
  max-width: 980px;
  height:auto;
  display:block;
  margin: 16px auto 0;
  border-radius: 18px;
  border: 1px solid rgba(12, 18, 28, .08);
}

@keyframes genkiPulse{
  0%{transform:translateY(0) scale(1); box-shadow: 0 0 0 rgba(183,224,0,.0)}
  50%{transform:translateY(-1px) scale(1.02); box-shadow: 0 10px 28px rgba(183,224,0,.22)}
  100%{transform:translateY(0) scale(1); box-shadow: 0 0 0 rgba(183,224,0,.0)}
}

.buy-text{
  display:none;
  font-weight:900;
  letter-spacing:.02em;
}
@media (min-width: 920px){
  .whatsapp-fab{
    border-radius: 14px;
    padding: 14px 18px;
  }
  .buy-text{display:inline}
}
@media (max-width: 919px){
  .whatsapp-fab{
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 999px;
  }
}

.dot-lime{background:var(--lime)}
.dot-raspberry{background:var(--raspberry)}
.dot-watermelon{background:var(--watermelon)}
.pill-lime{border-color: rgba(183,224,0,.35)}
.pill-raspberry{border-color: rgba(190,18,60,.28)}
.pill-watermelon{border-color: rgba(251,113,133,.30)}
/* Mantengo el texto neutro para consistencia; si querés, lo tintamos leve */

.pill-note{
  display:inline-block;
  margin-left:6px;
  font-weight:800;
  color: var(--muted);
  font-size: 12px;
}

.hero-actions-center{
  align-items:center;
}
.hero-actions-center .btn-primary{
  min-width: 170px;
}
@media (max-width: 700px){
  .hero-actions{justify-content:center}
}

/* Premium flavor wheel glow */
.wheel-stage{ --wheel-glow:#b7e000; background: radial-gradient(650px 420px at 50% 55%, color-mix(in srgb, var(--wheel-glow) 18%, transparent), rgba(255,255,255,0) 60%), linear-gradient(180deg, rgba(255,255,255,.95), rgba(250,250,250,.78)); }

[data-key="hero_title"] { white-space: pre-line; }
html{
  scroll-padding-top: 90px;   /* header ~75.6px + margen */
  scroll-behavior: smooth;
}

/* En mobile el header suele ocupar más alto */
@media (max-width: 768px){
  html{ scroll-padding-top: 110px; }
}
/* =========================
   Carousel fit (desktop)
   - Reduce stage height so flavor text is visible without zoom
   - Slightly enlarge active packshot for a more premium look
   ========================= */

.wheel-stage{
  padding: 14px 10px;               /* was larger; keeps look but frees vertical space */
}

.wheel-track{
  height: clamp(320px, 34vw, 380px); /* was 420px fixed */
}

/* Slightly larger packshot */
.wheel-item{
  width: min(390px, 70vw);          /* was 360px, 75vw */
}

/* Active: subtle premium bump */
.wheel-item.is-active{
  transform: translate(-50%, -50%) scale(1.06);
}

/* Keep side items nicely framed after reducing height */
.wheel-item.is-left{
  transform: translate(calc(-50% - 190px), -50%) scale(.70);
}
.wheel-item.is-right{
  transform: translate(calc(-50% + 190px), -50%) scale(.70);
}

/* Reduce gap to the meta/text below */
.wheel-meta{
  margin-top: 10px;                 /* was 14px */
}

/* Tighter desktop fallback (common laptops) */
@media (min-width: 980px){
  .wheel-track{ height: 340px; }
  .wheel-stage{ padding: 12px 10px; }
}

@media (max-width: 700px){
  .wheel-stage{ padding: 10px 8px; }
  .wheel-track{ height: 300px; }        /* probá 280–320 según te guste */
  .wheel-item{ width: min(340px, 86vw); } /* frasco un poco más grande */
  .wheel-meta{ margin-top: 8px; }
}

/* =========================
   Comparative table — premium (Apple/Notion-like)
   ========================= */

/* Card-like wrapper */
.table-wrap{
  position: relative;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 55px rgba(14,20,32,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Softer gridlines + calmer typography */
.compare{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 640px;
}

.compare th, .compare td{
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(15,23,42,.08);
  font-weight: 650;
  color: var(--ink);
}

/* Row labels look like labels (less shouty) */
.compare th:first-child, .compare td:first-child{
  text-align: left;
  padding-left: 18px;
  font-weight: 650;
  color: var(--muted);
}

/* Sticky header with subtle glass */
.compare thead th{
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,23,42,.10);
}

/* Header pills: softer borders */
.compare thead th strong{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(246,247,251,.92);
  border: 1px solid rgba(15,23,42,.10);
}

/* Highlight column: premium glow (no neon) */
.compare th.hl, .compare td.hl{
  background: linear-gradient(180deg, rgba(183,224,0,.16), rgba(183,224,0,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.compare thead th.hl{
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(183,224,0,.07));
}

.compare thead th.hl strong{
  background: rgba(183,224,0,.14);
  border-color: rgba(183,224,0,.25);
  color: #1b2500;
}

/* Numbers: make Genki values feel “primary” */
.compare td.hl strong{
  font-weight: 800;
  letter-spacing: .1px;
}

/* Zebra rows (ultra subtle) */
.compare tbody tr:nth-child(even) td{
  background: rgba(15,23,42,.015);
}
.compare tbody tr:nth-child(even) td.hl{
  background: linear-gradient(180deg, rgba(183,224,0,.13), rgba(183,224,0,.05));
}

/* Hover (desktop only) */
@media (hover:hover) and (min-width: 900px){
  .compare tbody tr:hover td{
    background: rgba(15,23,42,.03);
  }
  .compare tbody tr:hover td.hl{
    background: linear-gradient(180deg, rgba(183,224,0,.18), rgba(183,224,0,.08));
  }
}

/* Remove last border */
.compare tr:last-child td{ border-bottom: none; }

/* Mobile cue that the table scrolls horizontally (subtle edge fades) */
@media (max-width: 700px){
  .table-wrap::before,
  .table-wrap::after{
    content:"";
    position:absolute;
    top:0; bottom:0;
    width: 26px;
    pointer-events:none;
    z-index: 5;
  }
  .table-wrap::before{
    left:0;
    background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,0));
  }
  .table-wrap::after{
    right:0;
    background: linear-gradient(270deg, rgba(255,255,255,.92), rgba(255,255,255,0));
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .table-wrap{ scroll-behavior: auto; }
}



/* ===== Premium upgrade: "pills" de fórmula (Na / K / Mg) + cards ===== */
.metric-card{
  position: relative;
  padding: 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(250,250,250,.78));
  border-color: rgba(15,23,42,.08);
  box-shadow:
    0 14px 38px rgba(15,23,42,.06),
    0 2px 10px rgba(15,23,42,.05);
}

@media (hover:hover){
  .metric-card:hover{
    transform: translateY(-2px);
    box-shadow:
      0 18px 48px rgba(15,23,42,.08),
      0 3px 14px rgba(15,23,42,.06);
  }
}

/* The "chem" round pills (Na / K / Mg) */
.chem{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background:
    radial-gradient(18px 18px at 32% 28%, rgba(255,255,255,.95), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(240,243,247,.92));
  color: #2b3646;
  letter-spacing: .2px;
  box-shadow:
    0 10px 24px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -8px 18px rgba(15,23,42,.06);
}

/* tiny glow ring when the whole block is in focus/hover */
@media (hover:hover){
  .metric-card:hover .chem{
    border-color: rgba(183,224,0,.35);
    box-shadow:
      0 12px 28px rgba(15,23,42,.10),
      0 0 0 6px rgba(183,224,0,.06),
      inset 0 1px 0 rgba(255,255,255,.70),
      inset 0 -8px 18px rgba(15,23,42,.06);
  }
}

/* Typography polish */
.metric-title{
  font-weight: 850;
  letter-spacing: .2px;
}

.metric-mg{
  font-weight: 950;
  letter-spacing: .2px;
}

.metric-mg small{
  font-weight: 800;
  color: var(--muted);
}



/* ===== Chem pills: more depth (button-like) ===== */
.chem{
  position: relative;
  border: 1px solid rgba(15,23,42,.12);
  background:
    radial-gradient(140% 140% at 28% 22%,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.78) 35%,
      rgba(15,23,42,.03) 100%);
  box-shadow:
    0 10px 24px rgba(15,23,42,.10),
    inset 0 1px 0 rgba(255,255,255,.72),
    inset 0 -10px 18px rgba(15,23,42,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.chem::after{
  content:"";
  position:absolute;
  inset: 1px;
  border-radius: 999px;
  pointer-events:none;
  background: radial-gradient(80% 60% at 32% 28%, rgba(255,255,255,.65), rgba(255,255,255,0) 70%);
  opacity: .85;
  mix-blend-mode: normal;
}

@media (hover:hover){
  .chem:hover{
    transform: translateY(-1px);
    border-color: rgba(15,23,42,.16);
    box-shadow:
      0 14px 32px rgba(15,23,42,.14),
      inset 0 1px 0 rgba(255,255,255,.78),
      inset 0 -12px 22px rgba(15,23,42,.07);
  }
  .chem:active{ transform: translateY(0px) scale(.98); }
}


/* =========================
   Fórmula cards — Premium identity (variant 1)
   ========================= */
.metric-card{
  position: relative;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border: 1px solid rgba(15,23,42,.08);
  box-shadow:
    0 14px 34px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.75);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* hairline highlight (top) */
.metric-card::before{
  content:"";
  position:absolute;
  left:14px; right:14px; top:10px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(15,23,42,.10), transparent);
  pointer-events:none;
}

/* subtle Genki accent rail */
.metric-card::after{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:3px;
  border-radius: 20px 0 0 20px;
  background: rgba(183,224,0,.18);
  opacity:.55;
  pointer-events:none;
}

.metric-top{
  display:flex;
  align-items:center;
  gap:12px;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(15,23,42,.06);
}

/* Button-like chem pill */
.chem{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:
    radial-gradient(120% 120% at 30% 25%, rgba(255,255,255,.95), rgba(255,255,255,.55) 55%, rgba(15,23,42,.03) 100%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.62));
  box-shadow:
    0 10px 20px rgba(15,23,42,.10),
    inset 0 1px 0 rgba(255,255,255,.85),
    inset 0 -10px 18px rgba(15,23,42,.05);
  display:grid;
  place-items:center;
  font-weight: 900;
  color:#3b4656;
}

.metric-title{
  font-weight: 850;
  letter-spacing: .2px;
}

.metric-mg{
  font-weight: 900;
  letter-spacing: .1px;
}

@media (hover:hover){
  .metric-card:hover{
    transform: translateY(-1px);
    border-color: rgba(15,23,42,.12);
    box-shadow:
      0 18px 44px rgba(15,23,42,.10),
      inset 0 1px 0 rgba(255,255,255,.80);
  }
  .metric-card:hover .chem{
    transform: translateY(-1px);
  }
}



/* ===== Formula ion assets (premium) ===== */
.chem-icon{
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  display: block;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}
.chem-icon{max-width:none;}

@media (max-width: 700px){
  .chem-icon{
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  display: block;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}
.chem-icon{max-width:none;}

}


/* ===== Tweaks from feedback (v21) ===== */
#uso{ padding-bottom: 22px; }
#faq{ padding-top: 26px; }

.metric-mg small{
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  margin-left: 2px;
}

.compare .cmp-sub{
  display:block;
  margin-top: 4px;
  font-weight: 700;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.1;
}


/* ===== Carousel de marca ===== */
.brand-story-section{
  padding-top: 24px;
}
.brand-story-header{
  margin-bottom: 14px;
}
.brand-story{
  position: relative;
  padding: 22px 78px 72px;
  overflow: hidden;
  background:
    radial-gradient(900px 320px at 50% -8%, rgba(183,224,0,.10), transparent 60%),
    linear-gradient(180deg, #f9fbff, #ffffff);
}
.story-viewport{
  overflow: hidden;
  border-radius: 28px;
  padding: 0;
  background: transparent;
}
.story-track{
  display: flex;
  width: 100%;
  transition: transform .55s ease;
  will-change: transform;
}
.story-slide{
  min-width: 100%;
  width: 100%;
  flex: 0 0 100%;
  display: block;
}
.story-picture,
.story-picture img{
  display:block;
  width:100%;
}
.story-slide img{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 24px;
  background: linear-gradient(180deg, #eef4fb, #f8fbff);
  box-shadow: 0 18px 44px rgba(15,23,42,.10);
}
.story-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-54%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(12,18,28,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 30px rgba(15,23,42,.14);
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.story-btn:hover{
  background:white;
  transform: translateY(-54%) scale(1.03);
  box-shadow: 0 18px 34px rgba(15,23,42,.16);
}
.story-prev{ left: 10px; }
.story-next{ right: 10px; }
.story-dots{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.story-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(15,23,42,.22);
  cursor: pointer;
  padding: 0;
  transition: transform .2s ease, background-color .2s ease, width .2s ease;
}
.story-dot.is-active{
  width: 30px;
  background: var(--lime);
}

@media (max-width: 900px){
  .brand-story{
    padding: 12px 12px 46px;
    background: linear-gradient(180deg, #f9fbff, #ffffff);
  }
  .story-viewport{
    border-radius: 20px;
  }
  .story-slide{
    display: grid;
    place-items: center;
  }
  .story-picture{
    display: block;
    width: 100%;
  }
  .story-picture img,
  .story-slide img{
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    border-radius: 18px;
    box-shadow: none;
    background: transparent;
  }
  .story-btn{
    width: 38px;
    height: 38px;
    font-size: 24px;
    transform: translateY(-50%);
  }
  .story-btn:hover{
    transform: translateY(-50%);
    box-shadow: 0 12px 24px rgba(15,23,42,.12);
  }
  .story-prev{ left: 8px; }
  .story-next{ right: 8px; }
}

@media (max-width: 640px){
  .brand-story{ padding-bottom: 42px; }
  .story-dots{ bottom: 14px; }
}

