/* ===== 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;
  --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; }

html { scroll-behavior: smooth; }

::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, .section-title, .benefit__value, .product__price, .final__title {
  font-family: 'Unbounded', sans-serif;
}

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;
  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 ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 34px;
  border-radius: 99px;
  transition: transform 0.25s, 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; }
}

.hero__carousel {
  position: relative;
  z-index: 2;
  width: min(320px, 62vw);
  height: min(320px, 62vw);
  margin-top: 22px;
}

.hero__jar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-height: 100%;
  width: auto;
  max-width: 100%;
  opacity: 0;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 50px rgba(228, 28, 52, 0.22));
}

.hero__jar.is-active { opacity: 1; }

.hero__floor {
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(228, 28, 52, 0.45), rgba(45, 226, 230, 0.12) 55%, transparent 75%);
  filter: blur(22px);
  z-index: -1;
}

.hero__jarname {
  margin-top: 26px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  padding: 9px 20px;
  background: rgba(19, 22, 36, 0.6);
}

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

.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 {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
}

.hero__badges span {
  color: var(--ink-dim);
  font-size: 13.5px;
  font-weight: 600;
}

.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(2, 1fr);
  gap: 30px;
}

.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;
  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(--red);
  box-shadow: 0 0 16px rgba(228, 28, 52, 0.8);
}

.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(228, 28, 52, 0.55);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow-red);
}

.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% { transform: scale(1); box-shadow: 0 0 14px rgba(228, 28, 52, 0.5); }
  50% { transform: scale(1.09); box-shadow: 0 0 26px rgba(228, 28, 52, 0.9), 0 0 50px rgba(228, 28, 52, 0.4); }
}

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

.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(228, 28, 52, 0.14), 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(--red-soft);
  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);
}

/* ===== 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 { font-size: 32px; margin-bottom: 20px; }

.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);
  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 ===== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 30px 24px;
  text-align: center;
  color: var(--ink-dim);
  font-size: 13px;
}

.footer__social { margin-top: 8px; }

.footer__social a {
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__social a:hover { color: var(--red); }

/* ===== 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);
  transition: transform 0.25s, box-shadow 0.25s;
  opacity: 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(46px, 14vw, 96px); letter-spacing: 1px; }
  .hero__carousel { width: min(230px, 56vw); height: min(250px, 60vw); margin-top: 16px; }
  .hero__jarname { font-size: 11px; letter-spacing: 1px; padding: 8px 16px; margin-top: 20px; }
  .hero__sub { font-size: 15.5px; margin: 22px 0 24px; }
  .hero__actions { flex-direction: column; width: 100%; max-width: 340px; }
  .hero__actions .btn { width: 100%; padding: 15px 20px; }
  .hero__badges { gap: 10px 18px; margin-top: 26px; }
  .hero__badges span { font-size: 12px; }
  .hero__scroll-hint { display: none; }

  .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; }

  .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; }
}
