/* ===== REVTILE — neón sobre oscuro (colores de la mascota) ===== */
:root {
  --bg: #07080d;
  --bg-soft: #0d0f17;
  --surface: #131624;
  --ink: #f7f8fa;
  --ink-dim: #9aa2b5;
  --red: #e41c34;            /* rojo neón principal */
  --red-soft: #ff4d5e;
  --teal: #2de2e6;           /* petróleo neón de la mascota */
  --teal-deep: #35626b;
  --lime: #a6e22e;           /* verde de la etiqueta ON */
  --glow-lime: 0 0 18px rgba(166, 226, 46, 0.45), 0 0 46px rgba(166, 226, 46, 0.2);
  --gold: #ffc24b;           /* dorado de lanzamientos */
  --glow-gold: 0 0 18px rgba(255, 194, 75, 0.45), 0 0 46px rgba(255, 194, 75, 0.2);
  --whatsapp: #25d366;
  --glow-red: 0 0 18px rgba(228, 28, 52, 0.55), 0 0 46px rgba(228, 28, 52, 0.28);
  --glow-teal: 0 0 18px rgba(45, 226, 230, 0.45), 0 0 46px rgba(45, 226, 230, 0.2);
  --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; } /* que ningún display del CSS le gane al atributo hidden */

html { scroll-behavior: smooth; overflow-x: hidden; }

::selection { background: var(--red); color: #fff; }

/* scrollbar propia (webkit) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2f45; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* grano de película sobre todo el sitio */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body {
  background:
    radial-gradient(1100px 700px at 85% -10%, rgba(228, 28, 52, 0.12), transparent 60%),
    radial-gradient(900px 700px at -10% 35%, rgba(45, 226, 230, 0.07), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h2, h3 { font-family: 'Inter', sans-serif; letter-spacing: -0.5px; }

.nav__logo, .hero__giant, .benefit__value, .product__price {
  font-family: 'Unbounded', sans-serif;
}

.section-title, .final__title { letter-spacing: -1.2px; }

img { max-width: 100%; }

.accent { color: var(--red); }

.neon-text {
  color: var(--red);
  text-shadow: var(--glow-red);
}

/* ===== Blobs animados de fondo ===== */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.blob--red {
  width: 520px;
  height: 520px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(228, 28, 52, 0.3), transparent 72%);
}

.blob--teal {
  width: 460px;
  height: 460px;
  bottom: -160px;
  left: -140px;
  background: radial-gradient(circle, rgba(45, 226, 230, 0.2), transparent 70%);
}

section, .ticker, .nav, .footer { position: relative; z-index: 1; }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 8, 13, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav__logo {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 17px;
}

.nav__dot { color: var(--red); text-shadow: var(--glow-red); }

.nav__links { display: flex; gap: 26px; }

.nav__links a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--red);
  box-shadow: var(--glow-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

/* hamburguesa (solo móvil) */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Menú móvil a pantalla completa ===== */
.mobmenu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(7, 8, 13, 0.96);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 34px 46px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  overflow: hidden;
}

.mobmenu.is-open { opacity: 1; visibility: visible; }

.mobmenu__links { display: flex; flex-direction: column; gap: 8px; }

.mobmenu__link {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(26px, 7.5vw, 34px);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.mobmenu__link i {
  font-style: normal;
  font-size: 13px;
  color: var(--red);
  text-shadow: var(--glow-red);
}

.mobmenu__link:active { color: var(--red); }

.mobmenu__cta { margin-top: 34px; }

.mobmenu__mascot {
  position: absolute;
  right: -46px;
  bottom: -30px;
  width: 180px;
  height: auto; /* sin esto, el atributo height de la imagen la estira */
  opacity: 0.16;
  transform: rotate(-8deg);
  pointer-events: none;
}

.nav__cta {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 99px;
  background: var(--red);
  box-shadow: var(--glow-red);
  transition: transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(228, 28, 52, 0.8), 0 0 60px rgba(228, 28, 52, 0.4);
}

/* ===== Botones ===== */
/* sin transición de transform: los botones se mueven con GSAP (efecto magnético) */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 34px;
  border-radius: 99px;
  transition: box-shadow 0.25s, border-color 0.25s;
  text-align: center;
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--glow-red);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 26px rgba(228, 28, 52, 0.8), 0 0 70px rgba(228, 28, 52, 0.4);
}

.btn--ghost {
  color: var(--ink);
  border: 1.5px solid rgba(45, 226, 230, 0.5);
}

.btn--ghost:hover {
  border-color: var(--teal);
  box-shadow: var(--glow-teal);
}

.btn--big { font-size: 17px; padding: 19px 46px; }

.btn--full { display: block; width: 100%; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero__eyebrow {
  display: inline-block;
  color: var(--teal);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(45, 226, 230, 0.4);
  border-radius: 99px;
  background: rgba(45, 226, 230, 0.06);
  box-shadow: 0 0 20px rgba(45, 226, 230, 0.12) inset;
  margin-bottom: 8px;
}

.hero__stage {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero__giant {
  font-size: clamp(60px, 13.5vw, 190px);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  display: flex;
  user-select: none;
  white-space: nowrap;
}

.hero__giant span {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.22);
}

.hero__giant span.neon {
  color: var(--red);
  -webkit-text-stroke: 0;
  text-shadow: var(--glow-red);
  animation: neonFlicker 4.5s infinite;
}

@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.35; }
  94% { opacity: 1; }
  96% { opacity: 0.55; }
  97% { opacity: 1; }
}

/* metadatos editoriales sobre las letras */
.hero__meta {
  width: min(92vw, 980px);
  display: flex;
  justify-content: space-between;
  color: var(--ink-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* letras interactivas: se encienden al pasar el mouse / dedo */
.hero__giant span {
  transition: color 0.25s, text-shadow 0.25s;
  cursor: default;
}

.hero__giant span.lit {
  color: var(--red);
  -webkit-text-stroke: 0;
  text-shadow: var(--glow-red);
}

.hero__baseline {
  width: min(92vw, 980px);
  height: 2px;
  margin: 10px 0 30px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2) 12%, rgba(255, 255, 255, 0.2) 62%, var(--red) 62%, var(--red) 78%, transparent 78%);
  transform-origin: left center;
}

/* dúo de tarros + sello giratorio */
.hero__duo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(20px, 5vw, 70px);
}

/* sin transición CSS de transform aquí: GSAP anima estos elementos y
   una transición encima retrasa/arrastra sus movimientos */
.duo__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.duo__item img {
  position: relative;
  z-index: 1;
  height: clamp(150px, 22vw, 235px);
  width: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 40px rgba(166, 226, 46, 0.14));
}

.duo__item--mt img { filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 40px rgba(45, 226, 230, 0.14)); }

.hero__floor {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 44px;
  background: radial-gradient(ellipse at center, rgba(228, 28, 52, 0.4), rgba(45, 226, 230, 0.1) 55%, transparent 75%);
  filter: blur(18px);
  z-index: 0;
}

.duo__tag {
  margin-top: 14px;
  font-family: 'Unbounded', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  padding: 7px 14px;
  background: rgba(19, 22, 36, 0.7);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.duo__tag::after { content: ' →'; }

.duo__item--on .duo__tag { border-color: rgba(166, 226, 46, 0.55); }
.duo__item--on .duo__tag::after { color: var(--lime); }
.duo__item--mt .duo__tag { border-color: rgba(45, 226, 230, 0.55); }
.duo__item--mt .duo__tag::after { color: var(--teal); }

.duo__item--on:hover .duo__tag { border-color: var(--lime); box-shadow: var(--glow-lime); }
.duo__item--mt:hover .duo__tag { border-color: var(--teal); box-shadow: var(--glow-teal); }

/* insignia de la iguana con halo de neón que respira (rojo ↔ petróleo) */
.duo__seal {
  position: relative;
  align-self: center;
  width: clamp(74px, 8.5vw, 100px);
  aspect-ratio: 1;
  flex-shrink: 0;
  border-radius: 50%;
  animation: sealGlow 4.5s ease-in-out infinite;
}

@keyframes sealGlow {
  0%, 100% { box-shadow: 0 0 16px rgba(228, 28, 52, 0.45), 0 0 40px rgba(228, 28, 52, 0.18); }
  50% { box-shadow: 0 0 16px rgba(45, 226, 230, 0.45), 0 0 40px rgba(45, 226, 230, 0.18); }
}

.duo__seal-mascot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.hero__sub {
  color: var(--ink-dim);
  font-size: 18px;
  line-height: 1.65;
  margin: 30px 0 32px;
}

.hero__sub strong { color: var(--ink); }

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__badges {
  margin-top: 34px;
  color: var(--ink-dim);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
}

.hero__scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--red);
  box-shadow: var(--glow-red);
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== Ticker ===== */
.ticker {
  overflow: hidden;
  background: var(--red);
  box-shadow: 0 0 30px rgba(228, 28, 52, 0.45);
  padding: 13px 0;
  transform: rotate(-1.2deg);
  margin: 10px -20px 0;
  width: calc(100% + 40px);
}

.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: tickerMove 22s linear infinite;
}

.ticker__track span {
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Secciones genéricas ===== */
.section-eyebrow {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 0 14px rgba(45, 226, 230, 0.35);
}

.section-eyebrow b {
  font-family: 'Unbounded', sans-serif;
  color: var(--red);
  text-shadow: var(--glow-red);
  margin-right: 10px;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 54px;
}

/* ===== Productos ===== */
.products { padding: 130px 24px 140px; }

.products__inner { max-width: 1160px; margin: 0 auto; }

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}

.product {
  position: relative;
  background: linear-gradient(170deg, var(--surface) 0%, rgba(13, 15, 23, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.product::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(166, 226, 46, 0.7);
}

.product--mt::before {
  background: var(--teal);
  box-shadow: 0 0 16px rgba(45, 226, 230, 0.7);
}

.product:hover {
  transform: translateY(-8px);
  border-color: rgba(166, 226, 46, 0.55);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow-lime);
}

.product--mt:hover {
  border-color: rgba(45, 226, 230, 0.55);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow-teal);
}

.product__badges {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 8px 15px;
  border-radius: 99px;
}

.badge--off {
  background: var(--red);
  color: #fff;
  box-shadow: var(--glow-red);
  animation: badgePulse 2.2s ease-in-out infinite;
  font-size: 14px;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 12px rgba(228, 28, 52, 0.45); }
  50% { box-shadow: 0 0 24px rgba(228, 28, 52, 0.8); }
}

.badge--ship {
  background: rgba(45, 226, 230, 0.1);
  color: var(--teal);
  border: 1px solid rgba(45, 226, 230, 0.55);
}

.badge--soon {
  background: rgba(255, 194, 75, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 194, 75, 0.6);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: soonPulse 2.4s ease-in-out infinite;
}

@keyframes soonPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 194, 75, 0.25); }
  50% { box-shadow: 0 0 22px rgba(255, 194, 75, 0.6); }
}

/* tarjeta de lanzamiento (próximamente) */
.product--soon::before {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(255, 194, 75, 0.7);
}

.product--soon:hover {
  border-color: rgba(255, 194, 75, 0.55);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow-gold);
}

.product--soon .product__photo {
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 194, 75, 0.12), transparent 65%);
}

.product--soon .product__brand { color: var(--gold); }

.product__tease {
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.product__tease b { color: var(--gold); }

.btn--gold {
  background: var(--gold);
  color: #1d1405;
  box-shadow: var(--glow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 26px rgba(255, 194, 75, 0.8), 0 0 70px rgba(255, 194, 75, 0.4);
}

.product__photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 64px 30px 0;
  height: 350px;
  background: radial-gradient(ellipse at 50% 100%, rgba(166, 226, 46, 0.12), transparent 65%);
}

.product--mt .product__photo {
  background: radial-gradient(ellipse at 50% 100%, rgba(45, 226, 230, 0.11), transparent 65%);
}

.product__photo img {
  max-height: 300px;
  width: auto;
  position: relative;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.7));
  transition: transform 0.4s ease;
}

.product:hover .product__photo img { transform: scale(1.05) translateY(-8px) rotate(-1deg); }

.product__info { padding: 30px 32px 36px; }

.live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-dim);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.live b { color: var(--ink); }

.live__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34e07a;
  box-shadow: 0 0 0 0 rgba(52, 224, 122, 0.6);
  animation: livePulse 1.8s ease-out infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 224, 122, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(52, 224, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 224, 122, 0); }
}

.product__brand {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product--mt .product__brand { color: var(--teal); }

.product__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.product__specs { list-style: none; margin-bottom: 24px; }

.product__specs li {
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.95;
  padding-left: 22px;
  position: relative;
}

.product__specs li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.product__pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.product__prices {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.product__price-old {
  color: var(--ink-dim);
  font-size: 17px;
  position: relative;
}

/* línea de tachado animada (se activa con .struck) */
.product__price-old::after {
  content: '';
  position: absolute;
  left: -3px;
  right: -3px;
  top: 52%;
  height: 2.5px;
  background: var(--red);
  box-shadow: 0 0 8px rgba(228, 28, 52, 0.8);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1) 0.45s;
}

.product.struck .product__price-old::after { transform: scaleX(1); }

.product__price { font-size: 32px; font-weight: 700; }

.product__price small {
  font-size: 14px;
  color: var(--ink-dim);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.product__save {
  font-size: 13px;
  font-weight: 800;
  color: var(--teal);
  border: 1px dashed rgba(45, 226, 230, 0.6);
  border-radius: 99px;
  padding: 7px 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 16px rgba(45, 226, 230, 0.15);
}

.product__serving {
  margin: -8px 0 20px;
  color: var(--ink-dim);
  font-size: 13.5px;
}

.product__serving b { color: var(--teal); font-weight: 800; }

.product__more {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--ink-dim);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.product__more::after { content: ' →'; }

.product__more:hover { color: var(--ink); }

/* ===== Beneficios ===== */
.benefits { padding: 140px 24px; }

.benefits__inner { max-width: 1160px; margin: 0 auto; }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.benefit:hover { transform: translateY(-6px); }

.benefit--red { border-top: 3px solid var(--red); }
.benefit--teal { border-top: 3px solid var(--teal); }

.benefit--red:hover { box-shadow: 0 18px 44px rgba(228, 28, 52, 0.2); border-color: rgba(228, 28, 52, 0.4); }
.benefit--teal:hover { box-shadow: 0 18px 44px rgba(45, 226, 230, 0.16); border-color: rgba(45, 226, 230, 0.4); }

.benefit__value {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
}

.benefit--red .benefit__value { color: var(--red); text-shadow: 0 0 22px rgba(228, 28, 52, 0.5); }
.benefit--teal .benefit__value { color: var(--teal); text-shadow: 0 0 22px rgba(45, 226, 230, 0.4); }

.benefit__unit { font-size: 24px; }

.benefit__title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }

.benefit__text { color: var(--ink-dim); font-size: 14px; line-height: 1.6; }

/* ===== Confianza ===== */
.trust {
  padding: 140px 24px;
  background: linear-gradient(180deg, transparent, rgba(53, 98, 107, 0.12) 30%, rgba(53, 98, 107, 0.12) 70%, transparent);
}

.trust__inner { max-width: 1160px; margin: 0 auto; }

.trust__lead {
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
  margin: -30px 0 44px;
}

.trust__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: linear-gradient(160deg, rgba(45, 226, 230, 0.07) 0%, rgba(19, 22, 36, 0.8) 60%);
  border: 1px solid rgba(45, 226, 230, 0.3);
  border-radius: var(--radius);
  padding: 38px 30px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: var(--glow-teal);
}

.card__icon { margin-bottom: 22px; color: var(--teal); }

.card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card__title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }

.card__text { color: var(--ink-dim); font-size: 15px; line-height: 1.65; }

/* ===== Galería de sellos ===== */
.gallery { margin-top: 48px; }

.gallery__hint {
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  text-shadow: 0 0 14px rgba(45, 226, 230, 0.3);
}

.gallery__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(228, 28, 52, 0.6) transparent;
}

.gallery__item {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.gallery__item:hover {
  border-color: rgba(45, 226, 230, 0.55);
  transform: translateY(-4px);
}

.gallery__item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.gallery__item figcaption {
  padding: 14px 16px;
  color: var(--ink-dim);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ===== Cómo comprar ===== */
.how { padding: 140px 24px; }

.how__inner { max-width: 1160px; margin: 0 auto; }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step:hover { border-color: rgba(228, 28, 52, 0.45); box-shadow: 0 14px 40px rgba(228, 28, 52, 0.12); }

.step__num {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 18px;
  background: var(--red);
  box-shadow: var(--glow-red);
  padding: 7px 14px;
  border-radius: 99px;
}

.step__title { font-size: 21px; font-weight: 700; margin-bottom: 10px; }

.step__text { color: var(--ink-dim); font-size: 15px; line-height: 1.65; }

/* ===== FAQ ===== */
.faq { padding: 140px 24px; }

.faq__inner { max-width: 800px; margin: 0 auto; }

.faq__list { display: flex; flex-direction: column; gap: 12px; }

.faq__item {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq__item[open] {
  border-color: rgba(228, 28, 52, 0.6);
  box-shadow: 0 10px 34px rgba(228, 28, 52, 0.12);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding-right: 52px;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  text-shadow: var(--glow-red);
  font-size: 23px;
  font-weight: 400;
  transition: transform 0.25s;
}

.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq__item p {
  padding: 0 24px 22px;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== CTA final ===== */
.final {
  padding: 150px 24px 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final__glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 560px;
  background: radial-gradient(circle, rgba(228, 28, 52, 0.22) 0%, rgba(45, 226, 230, 0.08) 45%, transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}

.final__inner { position: relative; }

.final__mascot {
  width: min(230px, 52vw);
  height: auto; /* sin esto, el atributo height de la imagen la estira */
  margin-bottom: 26px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(228, 28, 52, 0.2));
}

.final__title {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 40px;
}

.final__note {
  color: var(--ink-dim);
  font-size: 14px;
  margin-top: 24px;
  letter-spacing: 0.5px;
}

/* ===== Redes sociales ===== */
.social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.social__link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.social__link svg { width: 22px; height: 22px; }

.social__link:hover {
  transform: translateY(-4px);
  color: var(--red);
  border-color: var(--red);
  box-shadow: var(--glow-red);
}

/* ===== Footer profesional ===== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--bg-soft);
  padding: 60px 24px 0;
  color: var(--ink-dim);
  font-size: 14px;
}

.footer__grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer__logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer__tag { line-height: 1.65; max-width: 300px; margin-bottom: 20px; }

.footer__social-row { display: flex; gap: 12px; }

.footer__social-row .social__link { width: 42px; height: 42px; }

.footer__social-row .social__link svg { width: 19px; height: 19px; }

.footer__title {
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__col { display: flex; flex-direction: column; gap: 10px; }

.footer__col a, .footer__col span {
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}

.footer__col a:hover { color: var(--ink); }

.footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px 0 26px;
  text-align: center;
  font-size: 12.5px;
}

.footer__note { margin-top: 6px; color: #6b7288; font-size: 11.5px; }

/* ===== Barra de compra fija ===== */
.buybar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 160%);
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(19, 22, 36, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 99px;
  padding: 10px 12px 10px 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
  max-width: calc(100vw - 20px);
}

.buybar.is-visible { transform: translate(-50%, 0); }

.buybar__info { display: flex; align-items: center; gap: 12px; }

.buybar__thumbs { display: flex; align-items: flex-end; }

.buybar__thumbs img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.buybar__thumbs img + img { margin-left: -12px; }

.buybar__text { display: flex; flex-direction: column; line-height: 1.3; white-space: nowrap; }

.buybar__text b { font-size: 14px; }

.buybar__text span { font-size: 11.5px; color: var(--ink-dim); }

.buybar__btn { padding: 11px 24px; font-size: 14px; white-space: nowrap; }

/* cuando la barra está visible, el botón flotante se esconde (misma función) */
body.buybar-on .wa-float { opacity: 0 !important; pointer-events: none !important; }

/* ===== Botón flotante de WhatsApp ===== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.25s;
}

.wa-float.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wa-float svg { width: 31px; height: 31px; }

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6);
}

/* ===== Estados de animación (JS los activa) ===== */
.reveal { opacity: 0; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .nav__inner { padding: 12px 20px; }

  /* secciones: aire proporcional a la pantalla, no el de PC */
  .products, .benefits, .trust, .how, .faq { padding: 84px 20px; }
  .section-title { margin-bottom: 36px; }

  .hero { padding: 104px 20px 48px; min-height: 100svh; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 2px; padding: 7px 14px; }
  .hero__giant { font-size: clamp(48px, 15.8vw, 104px); letter-spacing: 0.5px; }
  .hero__meta { font-size: 9px; letter-spacing: 2px; }
  .hero__baseline { margin: 6px 0 20px; }
  .hero__duo { gap: 12px; padding: 0 16px; }
  .duo__item img { height: clamp(82px, 21vw, 112px); }
  .duo__item .hero__floor { bottom: 24px; height: 28px; }
  .duo__tag { font-size: 8.5px; padding: 5px 9px; letter-spacing: 0.8px; margin-top: 9px; white-space: nowrap; }
  .duo__seal { width: 54px; }
  .hero__sub { font-size: 15.5px; margin: 26px 0 24px; }
  .hero__actions { flex-direction: column; width: 100%; max-width: 340px; }
  .hero__actions .btn { width: 100%; padding: 15px 20px; }
  .hero__badges { margin-top: 24px; font-size: 11.5px; }

  .ticker { padding: 10px 0; }
  .ticker__track span { font-size: 11px; }

  .products__grid { grid-template-columns: 1fr; gap: 22px; }
  .product__photo { height: 250px; padding-top: 70px; }
  .product__photo img { max-height: 210px; }
  .product__info { padding: 24px 22px 28px; }
  .product__name { font-size: 20px; }
  .product__price { font-size: 27px; }
  .product__specs li { font-size: 13.5px; }
  .badge { font-size: 11px; padding: 7px 12px; }
  .badge--off { font-size: 12.5px; }

  .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .benefit { padding: 22px 18px; }
  .benefit__value { font-size: 30px; margin-bottom: 12px; }
  .benefit__unit { font-size: 18px; }
  .benefit__title { font-size: 15px; }
  .benefit__text { font-size: 13px; }

  .trust__lead { font-size: 15px; margin: -16px 0 32px; }
  .trust__cards { grid-template-columns: 1fr; gap: 14px; }
  .card { padding: 26px 22px; }
  .card__icon { font-size: 26px; margin-bottom: 14px; }
  .card__title { font-size: 18px; }
  .card__text { font-size: 14px; }

  .gallery { margin-top: 36px; }
  .gallery__item { flex: 0 0 min(260px, 74vw); }
  .gallery__item img { height: 185px; }

  .steps { grid-template-columns: 1fr; gap: 14px; }
  .step { padding: 24px 22px; }
  .step__title { font-size: 18px; }

  .faq__item summary { font-size: 15px; padding: 17px 46px 17px 18px; }
  .faq__item summary::after { right: 18px; }
  .faq__item p { font-size: 14px; padding: 0 18px 18px; }

  .final { padding: 90px 20px 84px; }
  .final__mascot { width: min(170px, 44vw); }
  .btn--big { font-size: 15.5px; padding: 17px 36px; }

  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 28px; height: 28px; }

  .buybar { bottom: 10px; gap: 10px; padding: 8px 10px 8px 14px; width: calc(100vw - 20px); justify-content: space-between; }
  .buybar__thumbs img { height: 36px; }
  .buybar__text b { font-size: 12.5px; white-space: normal; }
  .buybar__text span { font-size: 10.5px; white-space: normal; }
  .buybar__btn { padding: 11px 18px; font-size: 13px; }

  .blob { opacity: 0.35; }
}

@media (max-width: 480px) {
  .benefits__grid { grid-template-columns: 1fr 1fr; }
  .product__pricing { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ===== Páginas de producto ===== */
.pp .hero { min-height: auto; padding-bottom: 30px; }

/* palabras de 8 letras (OPTIMUM/PLATINUM) necesitan un punto menos */
.pp .hero__giant { font-size: clamp(40px, 12vw, 200px); }

.pp-back {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
}

.pp-back:hover { color: var(--ink); }

/* acento petróleo para MuscleTech */
.pp--teal .hero__giant span.neon {
  color: var(--teal);
  text-shadow: var(--glow-teal);
  animation: none;
}

.pp--teal .hero__baseline {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2) 12%, rgba(255, 255, 255, 0.2) 62%, var(--teal) 62%, var(--teal) 78%, transparent 78%);
}

/* acento verde lima para Optimum Nutrition */
.pp--green .hero__giant span.neon {
  color: var(--lime);
  text-shadow: var(--glow-lime);
  animation: none;
}

.pp--green .hero__baseline {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2) 12%, rgba(255, 255, 255, 0.2) 62%, var(--lime) 62%, var(--lime) 78%, transparent 78%);
}

.pp--green .pp-jar img {
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 55px rgba(166, 226, 46, 0.14));
}

.pp--green .product__brand { color: var(--lime); }

/* acento dorado para lanzamientos */
.pp--gold .hero__giant span.neon {
  color: var(--gold);
  text-shadow: var(--glow-gold);
  animation: none;
}

.pp--gold .hero__baseline {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2) 12%, rgba(255, 255, 255, 0.2) 62%, var(--gold) 62%, var(--gold) 78%, transparent 78%);
}

.pp--gold .pp-jar img {
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 55px rgba(255, 194, 75, 0.14));
}

.pp--gold .product__brand { color: var(--gold); }

.pp-jar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pp-jar img {
  position: relative;
  z-index: 1;
  height: clamp(240px, 32vw, 370px);
  width: auto;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 55px rgba(228, 28, 52, 0.16));
}

.pp--teal .pp-jar img {
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 55px rgba(45, 226, 230, 0.14));
}

.pp-jar .hero__floor { bottom: -4px; width: 105%; }

.pp-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  max-width: 780px;
  width: 100%;
}

.pp-stat { padding: 20px 30px; text-align: center; }

.pp-stat b {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pp-stat span {
  color: var(--ink-dim);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pp-buy { padding: 60px 24px 90px; }

.pp-buy__inner {
  max-width: 540px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 40px 34px;
  text-align: center;
}

.pp-buy__inner .product__pricing { justify-content: center; }

.pp-buy.struck .product__price-old::after { transform: scaleX(1); }

.pp-buy__inner .product__name { font-size: 26px; }

.pp-note {
  margin-top: 16px;
  color: var(--ink-dim);
  font-size: 13px;
  line-height: 1.6;
}

.pp-section { padding: 90px 24px; }

.pp-section--alt { background: var(--bg-soft); }

.pp-section__inner { max-width: 980px; margin: 0 auto; }

@media (max-width: 900px) {
  .pp .hero__giant { font-size: clamp(34px, 10.5vw, 84px); }
  .pp-jar img { height: clamp(200px, 48vw, 280px); }
  .pp-stats { margin-top: 30px; }
  .pp-stat { padding: 14px 16px; }
  .pp-stat b { font-size: 16px; }
  .pp-stat span { font-size: 10px; letter-spacing: 1px; }
  .pp-buy { padding: 40px 20px 70px; }
  .pp-buy__inner { padding: 30px 22px; }
  .pp-buy__inner .product__name { font-size: 22px; }
  .pp-section { padding: 70px 20px; }
}

/* ===== Transiciones entre páginas (View Transitions, mejora progresiva) ===== */
@view-transition { navigation: auto; }

::view-transition-old(root), ::view-transition-new(root) { animation-duration: 0.35s; }

.product--on .product__photo img { view-transition-name: jar-on; }
.product--mt .product__photo img { view-transition-name: jar-mt; }
.product--soon .product__photo img { view-transition-name: jar-on120; }
.pp--green .pp-jar img { view-transition-name: jar-on; }
.pp--teal .pp-jar img { view-transition-name: jar-mt; }
.pp--gold .pp-jar img { view-transition-name: jar-on120; }

/* ===== Brillo que sigue el cursor (solo escritorio) ===== */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  height: 380px;
  margin: -190px 0 0 -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 28, 52, 0.07), rgba(45, 226, 230, 0.03) 45%, transparent 70%);
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: screen;
}

@media (hover: none), (max-width: 900px) {
  .cursor-glow { display: none; }
}

/* ===== Galería: items de video ===== */
.gallery__item--video video {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  background: #000;
}

/* ===== Combo 2 tarros ===== */
.combo {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(228, 28, 52, 0.1), rgba(45, 226, 230, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 30px 34px;
}

.combo__eyebrow {
  font-family: 'Unbounded', sans-serif;
  color: var(--red);
  text-shadow: var(--glow-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.combo__title { font-size: 22px; font-weight: 700; margin-bottom: 8px; }

.combo__sub { color: var(--ink-dim); font-size: 14.5px; line-height: 1.6; max-width: 520px; }

.combo__btn { white-space: nowrap; }

/* ===== Cupos de lanzamiento ===== */
.product__cupos {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.product__cupos::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 194, 75, 0.6);
  animation: livePulse 1.8s ease-out infinite;
}

/* ===== Calculadora ===== */
.calc { padding: 130px 24px; background: var(--bg-soft); }

.calc__inner { max-width: 760px; margin: 0 auto; }

.calc__box {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 34px;
}

.calc__tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }

.calc__tab {
  flex: 1;
  min-width: 110px;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  color: var(--ink-dim);
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 10px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.calc__tab.is-active {
  color: var(--ink);
  border-color: var(--red);
  box-shadow: var(--glow-red);
}

.calc__dose {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}

.calc__dose > span { color: var(--ink-dim); font-size: 14px; font-weight: 600; }

.calc__dose-btns { display: flex; gap: 8px; }

.calc__dosebtn {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  color: var(--ink-dim);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.calc__dosebtn.is-active {
  color: var(--ink);
  border-color: var(--teal);
  box-shadow: var(--glow-teal);
}

.calc__result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.calc__stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 20px 10px;
}

.calc__stat b {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.calc__stat span { color: var(--ink-dim); font-size: 11.5px; letter-spacing: 0.5px; }

.calc__note { color: var(--ink-dim); font-size: 13.5px; line-height: 1.6; text-align: center; }

.calc__note b { color: var(--teal); }

/* ===== Compartir con el gymbro ===== */
.final__share { margin-top: 22px; }

/* ===== Mascota chip (fondo claro) ===== */
.final__mascot { cursor: pointer; }

.mobmenu__mascot { opacity: 0.35; }

@media (max-width: 900px) {
  .calc { padding: 84px 20px; }
  .calc__box { padding: 24px 18px; }
  .calc__result { gap: 8px; }
  .calc__stat b { font-size: 20px; }
  .calc__stat span { font-size: 10px; }
  .calc__dose { flex-direction: column; align-items: flex-start; gap: 10px; }
  .combo { padding: 24px 22px; }
  .combo__title { font-size: 19px; }
  .combo__btn { width: 100%; text-align: center; }
  .gallery__item--video video { height: 185px; }
}

/* ===== Accesibilidad: foco visible al navegar con teclado ===== */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Página legal ===== */
.legal__main {
  max-width: 780px;
  margin: 0 auto;
  padding: 130px 24px 90px;
}

.legal__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
}

.legal__updated { color: var(--ink-dim); font-size: 13px; margin-bottom: 40px; }

.legal__block { margin-bottom: 40px; }

.legal__block h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal__block p, .legal__block li {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal__block ul { padding-left: 20px; }

.legal__block a { color: var(--teal); text-decoration: none; }

.legal__block a:hover { text-decoration: underline; }

.legal__block b { color: var(--ink); }

/* ===== Página 404 ===== */
.notfound { min-height: 100svh; }

.notfound__mascot {
  width: min(180px, 40vw);
  height: auto;
  margin-top: 26px;
  animation: sealGlow 4.5s ease-in-out infinite;
  border-radius: 50%;
}

/* ===== Footer en móvil ===== */
@media (max-width: 900px) {
  .footer { padding: 44px 20px 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; padding-bottom: 34px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col[aria-label="Contacto"] { grid-column: 1 / -1; }
  .legal__main { padding: 104px 20px 70px; }
}

/* ===== Testimonios (capturas de chats reales) ===== */
.testis { padding: 130px 24px; background: var(--bg-soft); }

.testis__inner { max-width: 1160px; margin: 0 auto; }

.gallery__item--chat { flex: 0 0 min(250px, 66vw); }

.gallery__item--chat img {
  height: 440px;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 900px) {
  .testis { padding: 84px 20px; }
  .gallery__item--chat { flex: 0 0 min(220px, 62vw); }
  .gallery__item--chat img { height: 390px; }
}

/* ===== Checkout (pedido.html) ===== */
.co__main { max-width: 720px; margin: 0 auto; padding: 118px 20px 80px; }

.co__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
}

.co__sub { color: var(--ink-dim); font-size: 15px; margin-bottom: 22px; }

.co__saved {
  background: rgba(45, 226, 230, 0.08);
  border: 1px solid rgba(45, 226, 230, 0.35);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--ink-dim);
  margin-bottom: 20px;
}

.co__saved button {
  background: none;
  border: none;
  color: var(--teal);
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  text-decoration: underline;
}

.co__card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 26px 22px;
  margin-bottom: 18px;
}

.co__products { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }

.co__prod {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.co__prod img { height: 108px; width: auto; }

.co__prod-name { font-size: 13px; font-weight: 600; line-height: 1.35; text-align: center; }

.co__prod-price { font-family: 'Unbounded', sans-serif; font-size: 15px; font-weight: 700; color: var(--red); }

.co__prod.is-active { border-color: var(--red); box-shadow: var(--glow-red); }

.co__qty { display: flex; align-items: center; justify-content: space-between; }

.co__qty > span { color: var(--ink-dim); font-weight: 600; font-size: 14px; }

.co__qty-ctrl { display: flex; align-items: center; gap: 16px; }

.co__qty-ctrl button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: none;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.co__qty-ctrl button:hover { border-color: var(--red); }

.co__qty-ctrl b { font-family: 'Unbounded', sans-serif; font-size: 19px; min-width: 26px; text-align: center; }

.co__combo {
  margin-top: 16px;
  background: rgba(255, 194, 75, 0.08);
  border: 1px dashed rgba(255, 194, 75, 0.5);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 13.5px;
  color: var(--ink-dim);
}

.co__combo b { color: var(--gold); }

.co__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.co__field { display: flex; flex-direction: column; gap: 6px; }

.co__field--full { grid-column: 1 / -1; }

.co__field span { font-size: 12.5px; font-weight: 600; color: var(--ink-dim); letter-spacing: 0.3px; }

.co__field input, .co__field select {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.co__field input:focus, .co__field select:focus { border-color: var(--teal); }

.co__field select option { background: var(--surface); }

.co__check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-dim);
  cursor: pointer;
}

.co__check input { width: 18px; height: 18px; accent-color: var(--red); }

.co__map-block { margin-top: 20px; }

.co__map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.co__map-head > span { font-size: 13px; font-weight: 600; color: var(--ink-dim); }

.co__map-btn {
  background: none;
  border: 1.5px solid rgba(45, 226, 230, 0.5);
  color: var(--teal);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.co__map-btn:hover { box-shadow: var(--glow-teal); }

.co__map {
  height: 260px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1;
}

.co__map-hint { margin-top: 8px; font-size: 12.5px; color: var(--ink-dim); }

.co__total {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.co__total-lines p {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-dim);
  padding: 4px 0;
}

.co__total-lines b { color: var(--ink); }

.co__verde { color: #34e07a !important; }

.co__total-final {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  padding-top: 10px !important;
  font-size: 16px !important;
}

.co__total-final b { font-family: 'Unbounded', sans-serif; font-size: 20px; }

.co__pay {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.co__pay-qr img {
  width: 170px;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.co__pay-title { font-weight: 700; font-size: 16px; margin-bottom: 6px; }

.co__pay-text { color: var(--ink-dim); font-size: 13.5px; line-height: 1.55; margin-bottom: 12px; }

.co__pay-text--small { font-size: 12px; margin: 10px 0 0; }

.co__key {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(228, 28, 52, 0.08);
  border: 1.5px solid rgba(228, 28, 52, 0.5);
  border-radius: 14px;
  padding: 12px 18px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.co__key:hover { box-shadow: var(--glow-red); }

.co__key-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 1px;
}

.co__key-copy { color: var(--red); font-size: 13px; font-weight: 700; }

.co__send { font-size: 16px; }

.co__note { margin-top: 14px; color: var(--ink-dim); font-size: 13px; line-height: 1.6; }

.co__note a { color: var(--teal); }

.co__error {
  margin-top: 14px;
  background: rgba(228, 28, 52, 0.12);
  border: 1px solid rgba(228, 28, 52, 0.5);
  border-radius: 12px;
  padding: 12px 16px;
  color: #ff8d96;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .co__grid { grid-template-columns: 1fr; }
  .co__pay { flex-direction: column; align-items: stretch; text-align: center; }
  .co__pay-qr { display: flex; justify-content: center; }
  .co__key { justify-content: center; }
  .co__map { height: 220px; }
}

/* ===== Checkout v2: multi-producto, pin propio y barra de pago ===== */
.co__products--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.co__prod { position: relative; min-width: 0; }

.co__prod--nuevo { border-color: rgba(255, 194, 75, 0.5); }

.co__nuevo {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--gold);
  color: #1d1405;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 99px;
  box-shadow: var(--glow-gold);
  animation: soonPulse 2.4s ease-in-out infinite;
}

.co__prod--nuevo.is-active { border-color: var(--gold); box-shadow: var(--glow-gold); }

.co__step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.co__step button {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: none;
  color: var(--ink);
  font-size: 17px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.co__step button:hover { border-color: var(--red); }

.co__step-val { font-family: 'Unbounded', sans-serif; font-size: 16px; min-width: 20px; text-align: center; }

.co__prod:not(.is-active) img { opacity: 0.45; filter: grayscale(0.5); }

.co__prod img { transition: opacity 0.25s, filter 0.25s; }

/* envío tachado */
#resEnvio s { color: var(--ink-dim); margin-right: 6px; }

/* pin propio del mapa (CSS puro, sin imágenes externas) */
.co__pin { background: none; border: none; }

.co__pin-dot {
  width: 26px; height: 26px;
  background: var(--red);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  margin: 0 auto;
}

.co__pin-punta {
  width: 0; height: 0;
  margin: -3px auto 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 13px solid var(--red);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
}

/* barra fija de pago */
.co__bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(13, 15, 23, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
}

.co__bar-total { display: flex; flex-direction: column; line-height: 1.2; }

.co__bar-total span { color: var(--ink-dim); font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; }

.co__bar-total b { font-family: 'Unbounded', sans-serif; font-size: 19px; }

.co__bar-btn { padding: 13px 30px; font-size: 15px; white-space: nowrap; }

.co__main { padding-bottom: 130px; }

@media (max-width: 640px) {
  .co__products--3 { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .co__prod { padding: 12px 6px; }
  .co__prod img { height: 74px; }
  .co__prod-name { font-size: 11px; }
  .co__prod-price { font-size: 12.5px; }
  .co__step { gap: 8px; }
  .co__step button { width: 30px; height: 30px; }
  .co__nuevo { font-size: 8.5px; padding: 4px 9px; right: 4px; }
}

/* enlaces del pie del checkout y combo banner: sin estilos inline (CSP) */
.footer__base--solo { border-top: none; }
.co__foot-link { color: inherit; }
.product__cupos--centrado { justify-content: center; }

/* ===== Checkout v3: titular destacado, direccion del mapa, confirmacion ===== */
.co__titular {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(52, 224, 122, 0.08);
  border: 1.5px solid rgba(52, 224, 122, 0.5);
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 14px;
}

.co__titular-check {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #34e07a;
  color: #06220f;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.co__titular-info { display: flex; flex-direction: column; gap: 2px; }

.co__titular-info small { color: var(--ink-dim); font-size: 11.5px; }

.co__titular-info b {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: #34e07a;
}

.co__map-dir {
  margin-top: 10px;
  background: rgba(45, 226, 230, 0.07);
  border: 1px dashed rgba(45, 226, 230, 0.45);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
}

.co__map-dir b { color: var(--teal); }

.co__ok {
  margin-top: 14px;
  background: rgba(52, 224, 122, 0.1);
  border: 1px solid rgba(52, 224, 122, 0.5);
  border-radius: 12px;
  padding: 12px 16px;
  color: #7ceea6;
  font-size: 14px;
  font-weight: 600;
}

/* ===== Checkout movil: pasada fina ===== */
@media (max-width: 640px) {
  .co__main { padding: 96px 14px 120px; }
  .co__title { font-size: 26px; }
  .co__sub { font-size: 14px; }
  .co__card { padding: 20px 14px; border-radius: 18px; margin-bottom: 14px; }
  /* iOS hace zoom si los inputs tienen menos de 16px */
  .co__field input, .co__field select { font-size: 16px; padding: 12px 12px; }
  .co__total { padding: 12px 12px; }
  .co__total-lines p { font-size: 13px; gap: 10px; }
  .co__total-lines p span { flex: 1; min-width: 0; }
  .co__total-final b { font-size: 18px; }
  .co__pay-qr img { width: 150px; }
  .co__key { padding: 12px 14px; gap: 10px; }
  .co__key-num { font-size: 15.5px; }
  .co__titular { padding: 12px; gap: 10px; }
  .co__titular-info b { font-size: 14px; }
  .co__send { font-size: 15px; padding: 16px 20px; }
  .co__map { height: 200px; }
  .co__map-head { flex-direction: column; align-items: stretch; }
  .co__map-btn { width: 100%; padding: 11px; }
  .co__bar { padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); }
  .co__bar-total b { font-size: 17px; }
  .co__bar-btn { padding: 12px 22px; font-size: 14px; }
  .co__saved { font-size: 12.5px; }
}

/* ===== Guias educativas ===== */
.guia .legal__block h2 { font-size: 22px; }

.guia__figura { margin: 18px 0 22px; }

.guia__figura img, .guia__figura video {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.guia__figura figcaption {
  margin-top: 10px;
  color: var(--ink-dim);
  font-size: 13px;
  font-style: italic;
}

.guia__tabla-wrap { overflow-x: auto; }

.guia__tabla {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}

.guia__tabla th, .guia__tabla td {
  padding: 11px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink-dim);
}

.guia__tabla thead th {
  color: var(--ink);
  font-weight: 700;
  background: var(--surface);
}

.guia__tabla td:first-child { color: var(--ink); font-weight: 600; }

.guia__tabla b { color: var(--gold); }

.guia__cta {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 26px;
}

.guia__cta .btn { margin-top: 6px; }

.guia__mas { margin-top: 18px; font-size: 13.5px; }

.guia__mas a { color: var(--teal); }

/* ===== Seccion Aprende (index) ===== */
.aprende { padding: 130px 24px; }

.aprende__inner { max-width: 1160px; margin: 0 auto; }

.aprende__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.aprende__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.aprende__card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 226, 230, 0.5);
  box-shadow: var(--glow-teal);
}

.aprende__tag { font-size: 12px; font-weight: 700; color: var(--teal); letter-spacing: 1px; }

.aprende__card h3 { font-size: 19px; font-weight: 700; line-height: 1.3; }

.aprende__card p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; flex: 1; }

.aprende__leer { color: var(--red); font-weight: 700; font-size: 14px; }

@media (max-width: 900px) {
  .aprende { padding: 84px 20px; }
  .aprende__grid { grid-template-columns: 1fr; gap: 14px; }
  .guia .legal__block h2 { font-size: 19px; }
}

/* ===== Checkout: método de pago (contraentrega vs anticipado) ===== */
.co__metodos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.co__metodo {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 16px 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink);
  text-align: left;
  font-family: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.co__metodo b { font-size: 15px; font-weight: 800; line-height: 1.3; }

.co__metodo-det { font-size: 13px; color: var(--ink-dim); line-height: 1.5; }

.co__metodo-tag {
  position: absolute;
  top: -11px;
  left: 14px;
  background: var(--gold);
  color: #1c1503;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.co__metodo.is-active { border-color: rgba(255, 255, 255, 0.55); }

.co__metodo--premium.is-active {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  background: rgba(255, 194, 75, 0.06);
}

.co__metodo--premium.is-active .co__metodo-det { color: var(--ink); }

/* ===== Checkout: entrega programada (Bogotá + anticipado) ===== */
.co__prog {
  background: rgba(255, 194, 75, 0.06);
  border: 1px solid rgba(255, 194, 75, 0.35);
  border-radius: 16px;
  padding: 18px 16px;
  margin-bottom: 22px;
}

.co__prog-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.co__prog-title span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-dim);
  letter-spacing: 0.3px;
}

.co__prog-sub { font-size: 13.5px; color: var(--ink-dim); margin: 8px 0 14px; line-height: 1.5; }

.co__dias {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 14px;
  -webkit-overflow-scrolling: touch;
}

.co__dia {
  flex: 0 0 auto;
  min-width: 82px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.co__dia small { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; color: var(--ink-dim); text-transform: uppercase; }

.co__dia b { font-family: 'Unbounded', sans-serif; font-size: 13px; font-weight: 700; }

.co__dia.is-active { border-color: var(--gold); box-shadow: var(--glow-gold); background: rgba(255, 194, 75, 0.08); }

.co__dia.is-active small { color: var(--gold); }

.co__field--hora { max-width: 260px; }

/* ===== Checkout: caja contraentrega ===== */
.co__ce {
  background: rgba(45, 226, 230, 0.05);
  border: 1px solid rgba(45, 226, 230, 0.3);
  border-radius: 16px;
  padding: 20px 18px;
  margin-bottom: 4px;
}

.co__ce-title { font-family: 'Unbounded', sans-serif; font-size: 15px; font-weight: 700; color: var(--teal); margin-bottom: 8px; }

.co__ce-text { font-size: 14px; color: var(--ink-dim); line-height: 1.65; }

.co__ce-text b { color: var(--ink); }

@media (max-width: 640px) {
  .co__metodos { grid-template-columns: 1fr; gap: 16px; }
  .co__field--hora { max-width: none; }
}

/* ===== Checkout: cupón ===== */
.co__cupon { display: flex; gap: 10px; margin-bottom: 8px; }

.co__cupon input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  text-transform: uppercase;
}

.co__cupon input::placeholder { text-transform: none; color: var(--ink-dim); }

.co__cupon input:focus { outline: none; border-color: var(--gold); }

.co__cupon-msg { font-size: 13.5px; margin-bottom: 14px; }

.co__cupon-msg.is-bien { color: var(--lime); }

.co__cupon-msg.is-mal { color: var(--red-soft); }

/* ===== Rastreo de pedidos ===== */
.ras__main { max-width: 640px; }

.ras__buscar { display: flex; gap: 10px; }

.ras__buscar input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--ink);
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ras__buscar input::placeholder { color: var(--ink-dim); }

.ras__buscar input:focus { outline: none; border-color: var(--teal); }

.ras__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }

.ras__id { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 800; }

.ras__fecha { color: var(--ink-dim); font-size: 13px; margin-top: 2px; }

.ras__badge {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1.5px solid;
}

.ras__badge--teal { color: var(--teal); border-color: var(--teal); background: rgba(45, 226, 230, 0.08); }
.ras__badge--lima { color: var(--lime); border-color: var(--lime); background: rgba(166, 226, 46, 0.08); }
.ras__badge--gold { color: var(--gold); border-color: var(--gold); background: rgba(255, 194, 75, 0.08); }
.ras__badge--rojo { color: var(--red-soft); border-color: var(--red-soft); background: rgba(228, 28, 52, 0.08); }

.ras__timeline { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }

.ras__paso { display: flex; gap: 16px; align-items: flex-start; position: relative; padding-bottom: 26px; }

.ras__paso:last-child { padding-bottom: 0; }

/* línea vertical entre puntos */
.ras__paso:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.ras__paso.is-hecho:not(:last-child)::before { background: var(--lime); }

.ras__punto {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: var(--bg-soft);
  margin-top: 1px;
  z-index: 1;
}

.ras__paso.is-hecho .ras__punto { border-color: var(--lime); background: var(--lime); box-shadow: var(--glow-lime); }

.ras__paso.is-actual .ras__punto { transform: scale(1.15); }

.ras__paso b { font-size: 15px; display: block; }

.ras__paso small { color: var(--ink-dim); font-size: 13px; line-height: 1.5; display: block; margin-top: 2px; }

.ras__paso:not(.is-hecho) b { color: var(--ink-dim); }

.ras__timeline.is-cancelado { opacity: 0.45; }

.ras__info {
  background: rgba(255, 194, 75, 0.07);
  border: 1px solid rgba(255, 194, 75, 0.35);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  margin-bottom: 14px;
}

.ras__info b { color: var(--gold); }

.ras__info--guia { background: rgba(45, 226, 230, 0.05); border-color: rgba(45, 226, 230, 0.3); }

.ras__info--guia b { color: var(--teal); }

.ras__guia-btn { margin-top: 10px; font-size: 13.5px; padding: 9px 16px; }

.ras__items { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 14px; font-size: 14px; color: var(--ink-dim); }

.ras__items p { margin-bottom: 4px; }

.ras__total { margin-top: 8px; color: var(--ink); }

/* ===== Panel de administración ===== */
.adm__main { max-width: 860px; }

.adm__tag { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

.adm__salir { cursor: pointer; border: none; }

.adm__login { max-width: 460px; margin: 40px auto; text-align: center; }

.adm__login-mascota { border-radius: 50%; margin-bottom: 14px; }

.adm__login-title { font-family: 'Unbounded', sans-serif; font-size: 26px; font-weight: 800; margin-bottom: 6px; }

.adm__login .co__sub { margin-bottom: 22px; }

.ras__buscar--llave input { font-family: 'Inter', sans-serif; letter-spacing: 2px; text-transform: none; font-size: 14px; }

.adm__saludo { margin-bottom: 20px; }

.adm__saludo-titulo { font-family: 'Unbounded', sans-serif; font-size: clamp(24px, 5vw, 34px); font-weight: 900; }

.adm__saludo-fecha { color: var(--ink-dim); font-size: 14px; margin-top: 4px; text-transform: capitalize; }

.adm__stat--oro b { color: var(--gold); }

.adm__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }

.adm__stat {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.adm__stat b { font-family: 'Unbounded', sans-serif; font-size: 21px; display: block; }

.adm__stat span { color: var(--ink-dim); font-size: 12.5px; }

.adm__stat--alerta b { color: var(--red-soft); }

.adm__filtros { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }

.adm__filtros select, .adm__filtros input {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.adm__filtros input[type="search"] { flex: 1; min-width: 180px; }

.adm__refrescar { padding: 10px 16px; font-size: 16px; cursor: pointer; }

.adm__vacio { color: var(--ink-dim); font-size: 14px; padding: 18px 0; text-align: center; }

.adm__pedido {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--ink-dim);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.adm__pedido--nuevo { border-left-color: var(--red); }
.adm__pedido--verificado { border-left-color: var(--gold); }
.adm__pedido--despachado { border-left-color: var(--teal); }
.adm__pedido--entregado { border-left-color: var(--lime); }
.adm__pedido--cancelado { opacity: 0.55; }

.adm__ped-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }

.adm__ped-head > b:first-child { font-family: 'Unbounded', sans-serif; font-size: 14px; }

.adm__ped-head span { color: var(--ink-dim); font-size: 12.5px; }

.adm__ped-total { margin-left: auto; color: var(--gold); }

.adm__ped-body { font-size: 13.5px; line-height: 1.7; color: var(--ink-dim); margin-bottom: 12px; }

.adm__ped-body b { color: var(--ink); }

.adm__ped-body a { color: var(--teal); text-decoration: none; }

.adm__ped-ctrl { display: flex; gap: 8px; flex-wrap: wrap; }

.adm__ped-ctrl select, .adm__ped-ctrl input {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}

.adm__ped-ctrl input[data-campo="guia"] { width: 130px; }

.adm__ped-ctrl input[data-campo="nota"] { flex: 1; min-width: 140px; }

.adm__guardar { padding: 8px 18px; font-size: 13px; }

.adm__cupon-form { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }

.adm__cupon-form input, .adm__cupon-form select {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  font-size: 13.5px;
}

.adm__cupon-form input#cuCodigo { text-transform: uppercase; }

.adm__cupon {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border: 1px dashed rgba(255, 194, 75, 0.45);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 10px;
  font-size: 13.5px;
}

.adm__cupon b { font-family: 'Unbounded', sans-serif; color: var(--gold); }

.adm__cupon span { color: var(--ink-dim); }

.adm__cupon.is-off { opacity: 0.5; border-style: solid; border-color: rgba(255, 255, 255, 0.15); }

.adm__cupon.is-off b { color: var(--ink-dim); }

.adm__cupon-toggle {
  margin-left: auto;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  padding: 5px 12px;
  cursor: pointer;
}

.adm__cupon-toggle:hover { border-color: var(--red); }

@media (max-width: 640px) {
  .adm__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .adm__stat { padding: 12px 8px; }
  .adm__stat b { font-size: 15px; }
  .adm__cupon-form { grid-template-columns: 1fr 1fr; }
  .ras__buscar { flex-direction: column; }
  .co__cupon { flex-direction: column; }
}
