/* ==========================================================================
   SUPLEMENTOS GYM - Estilos
   --------------------------------------------------------------------------
   Paleta: negro (#0A0A0B), rojo de marca (#E62E2E), blanco.
   Tipografia: Anton (titulos) + Manrope (texto).
   ========================================================================== */

/* ------------------------------------------------------------------ tokens */

:root {
  --bg: #0A0A0B;
  --bg-2: #0C0C0E;
  --surface: #121317;
  --surface-2: #17181D;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.18);
  --text: #F6F6F5;
  --muted: #A2A2A8;
  --muted-2: #77777E;
  --red: #E62E2E;
  --red-2: #FF3D3D;
  --wa: #1DA851;
  --gold: #FFC94A;
  --radius: 20px;
  --header-h: 72px;
  --font-display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ------------------------------------------------------------------ base */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }

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

:focus-visible {
  outline: 2px solid var(--red-2);
  outline-offset: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #26272C; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #333438; }

section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

/* barra de progreso de scroll */
.progress-bar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), #FF8A8A);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 120;
  pointer-events: none;
}

/* ------------------------------------------------------------------ tipografia util */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before {
  content: '//';
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0;
}

.section { padding: clamp(72px, 9vw, 126px) 0; }

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.section-title em,
.hero-title em,
.final-title em,
.promo-title em {
  font-style: normal;
  color: var(--red);
}

.section-sub {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 62ch;
}

/* ------------------------------------------------------------------ botones */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1), background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-red {
  background: var(--red);
  box-shadow: 0 14px 30px -14px rgba(230, 46, 46, 0.75);
}
.btn-red:hover {
  background: #F43B3B;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -14px rgba(230, 46, 46, 0.85);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.btn-wa { background: var(--wa); }
.btn-wa:hover { background: #22BE5C; transform: translateY(-2px); }

.btn-light { background: #0A0A0B; }
.btn-light:hover { background: #191A1F; transform: translateY(-2px); }

.btn-sm { padding: 0.68rem 1.05rem; font-size: 0.86rem; gap: 0.45rem; }
.btn-sm svg { width: 16px; height: 16px; }
.btn-lg { padding: 1.12rem 2rem; font-size: 1rem; }

/* ------------------------------------------------------------------ topbar */

.topbar {
  background: #0D0D0F;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 0.55rem;
}

.tb-icon { color: var(--red); display: grid; place-items: center; }
.tb-icon svg { width: 17px; height: 17px; }
.tb-text { color: var(--muted); font-weight: 600; letter-spacing: 0.01em; }

/* ------------------------------------------------------------------ header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s, border-color 0.35s;
}

.site-header.scrolled {
  background: rgba(10, 10, 11, 0.94);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  height: var(--header-h);
}

.brand { flex-shrink: 0; display: grid; place-items: center; }
.brand img { height: 50px; width: auto; border-radius: 10px; }

.nav { margin-inline: auto; }

.nav-list { display: flex; gap: clamp(14px, 2vw, 26px); }

.nav-list a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: #CFCFD3;
  padding: 6px 0;
  transition: color 0.25s;
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.nav-list a:hover { color: #fff; }
.nav-list a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* selector de pais */

.country-switch {
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.country-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.25s, background-color 0.25s, box-shadow 0.25s;
}

.country-btn svg { width: 21px; height: 14px; border-radius: 3px; flex-shrink: 0; }

.country-btn:hover { color: #fff; }

.country-btn.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 18px -10px rgba(230, 46, 46, 0.9);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  place-items: center;
  gap: 0;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-btn span + span { margin-top: 5px; }

body.menu-open .menu-btn span:first-child { transform: translateY(3.5px) rotate(45deg); }
body.menu-open .menu-btn span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* panel de menu movil */

.menu-panel {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 89;
  background: rgba(9, 9, 10, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 14px clamp(20px, 4vw, 32px) 26px;
  display: grid;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), opacity 0.3s, visibility 0.3s;
}

body.menu-open .menu-panel {
  transform: none;
  opacity: 1;
  visibility: visible;
}

.menu-panel a.menu-link {
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s, padding-left 0.25s;
}

.menu-panel a.menu-link:hover { color: var(--red-2); padding-left: 10px; }

.menu-panel .btn { margin-top: 18px; }

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 114%;
  z-index: 0;
  will-change: transform;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 85% 0%, rgba(230, 46, 46, 0.16), transparent 55%),
    linear-gradient(103deg, rgba(10, 10, 11, 0.97) 0%, rgba(10, 10, 11, 0.86) 40%, rgba(10, 10, 11, 0.34) 68%, rgba(10, 10, 11, 0.55) 100%),
    linear-gradient(to top, rgba(10, 10, 11, 0.98) 0%, rgba(10, 10, 11, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  padding-top: clamp(120px, 20vh, 220px);
  padding-bottom: 64px;
  width: 100%;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.9rem, 8.4vw, 7.2rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}

.hero-title .line > span { display: block; will-change: transform; }

.hero-sub {
  max-width: 540px;
  color: #CFCFD3;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 22px;
  max-width: 780px;
}

.hero-stats .stat {
  display: grid;
  gap: 2px;
  padding-right: clamp(18px, 2.6vw, 34px);
  margin-right: clamp(18px, 2.6vw, 34px);
  border-right: 1px solid var(--line);
}

.hero-stats .stat:last-child { border-right: 0; margin-right: 0; padding-right: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.video-toggle {
  position: absolute;
  right: clamp(16px, 3vw, 34px);
  bottom: 24px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 10, 11, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background-color 0.25s, border-color 0.25s, transform 0.25s;
}

.video-toggle:hover { background: rgba(230, 46, 46, 0.85); border-color: transparent; transform: scale(1.06); }
.video-toggle svg { width: 17px; height: 17px; }
.video-toggle .i-play { display: none; }
.video-toggle.is-paused .i-pause { display: none; }
.video-toggle.is-paused .i-play { display: block; }

/* ------------------------------------------------------------------ marquee */

.marquee {
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-set {
  display: flex;
  align-items: center;
  gap: 38px;
  padding-right: 38px;
}

.m-item {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E4E4E6;
  white-space: nowrap;
}

.m-sep {
  width: 8px;
  height: 8px;
  background: var(--red);
  transform: rotate(45deg);
  flex-shrink: 0;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ------------------------------------------------------------------ tarjetas genericas */

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.35s, box-shadow 0.35s, background-color 0.35s;
}

.spot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.075), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.spot:hover::before { opacity: 1; }

/* ------------------------------------------------------------------ categorias */

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

.cat-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 26px 24px;
  min-height: 224px;
}

.cat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 46, 46, 0.45);
}

.cat-icon { color: var(--red); }
.cat-icon svg { width: 27px; height: 27px; }

.cat-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cat-desc { font-size: 0.9rem; color: var(--muted); }

.cat-count {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.cat-arrow {
  position: absolute;
  top: 22px;
  right: 20px;
  color: #fff;
  opacity: 0.35;
  transition: transform 0.3s, opacity 0.3s, color 0.3s;
}

.cat-arrow svg { width: 19px; height: 19px; }
.cat-card:hover .cat-arrow { transform: translateX(5px); opacity: 1; color: var(--red-2); }

/* ------------------------------------------------------------------ catalogo */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.chip {
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.86rem;
  font-weight: 700;
  color: #C6C6CA;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}

.chip:hover { border-color: rgba(255, 255, 255, 0.32); color: #fff; transform: translateY(-1px); }

.chip.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
  gap: 18px;
}

.pcard { display: flex; flex-direction: column; }
.pcard.hidden { display: none; }

.pcard:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 54px -28px rgba(0, 0, 0, 0.75);
}

.pcard-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 26px 20px 4px;
  min-height: 252px;
  background: radial-gradient(120% 92% at 50% 6%, rgba(255, 255, 255, 0.055), transparent 58%);
}

.p-art {
  width: min(198px, 76%);
  height: auto;
  filter: drop-shadow(0 26px 26px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.pcard:hover .p-art { transform: translateY(-7px) scale(1.025); }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 0.34rem 0.6rem;
  border-radius: 7px;
}

.pcard-body {
  display: grid;
  gap: 8px;
  padding: 16px 20px 22px;
}

.pcard-rating { display: flex; align-items: center; gap: 8px; }

.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars i { display: inline-flex; opacity: 0.22; }
.stars i.on { opacity: 1; }
.stars svg { width: 13px; height: 13px; }

.pcard-rnum { font-size: 0.78rem; color: var(--muted-2); font-weight: 600; }

.pcard-name { font-size: 1.06rem; font-weight: 800; line-height: 1.35; }

.pcard-meta { font-size: 0.82rem; color: var(--muted-2); }

.pcard-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 6px;
  min-height: 34px;
}

.price-now {
  font-family: var(--font-display);
  font-size: 1.42rem;
  letter-spacing: 0.02em;
  line-height: 1;
  display: inline-block;
}

.price-was {
  font-size: 0.88rem;
  color: var(--muted-2);
  text-decoration: line-through;
  display: inline-block;
}

.price-was[hidden] { display: none; }

.price-now.flip, .price-was.flip { animation: priceFlip 0.45s cubic-bezier(0.2, 0.7, 0.3, 1); }

@keyframes priceFlip {
  from { transform: translateY(9px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

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

.catalog-note {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.link {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(230, 46, 46, 0.65);
  transition: color 0.25s, border-color 0.25s;
}

.link:hover { color: var(--red-2); border-color: var(--red-2); }

/* ------------------------------------------------------------------ promo */

.promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(30px, 4.4vw, 54px);
  border-radius: 26px;
  border: 0;
  background: linear-gradient(118deg, #E62E2E 0%, #8C1616 58%, #3E0707 100%);
}

.promo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 120% at 92% 0%, rgba(255, 255, 255, 0.16), transparent 55%);
  pointer-events: none;
}

.promo-left { display: grid; gap: 12px; position: relative; }

.promo .eyebrow { color: rgba(255, 255, 255, 0.75); }
.promo .eyebrow::before { color: #0A0A0B; }

.promo-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.7vw, 3.1rem);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  max-width: 18ch;
}

.promo-title em { color: #0A0A0B; }

.promo-sub { color: rgba(255, 255, 255, 0.88); max-width: 46ch; font-size: 0.98rem; }

.promo-right { display: grid; gap: 12px; justify-items: start; position: relative; flex-shrink: 0; }

.promo-small { font-size: 0.79rem; color: rgba(255, 255, 255, 0.72); }

/* ------------------------------------------------------------------ beneficios */

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

.benefit {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 26px 24px;
}

.benefit:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.2); }

.b-icon { color: var(--red); }
.b-icon svg { width: 26px; height: 26px; }

.b-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.b-label { font-weight: 800; font-size: 0.98rem; }

.b-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* ------------------------------------------------------------------ tiendas */

.stores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.store-card {
  display: grid;
  gap: 20px;
  align-content: start;
  padding: clamp(26px, 3vw, 38px);
}

.store-card.active {
  border-color: rgba(230, 46, 46, 0.55);
  box-shadow: 0 0 0 1px rgba(230, 46, 46, 0.22), 0 30px 60px -40px rgba(230, 46, 46, 0.5);
}

.store-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.store-num {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.3);
}

.store-tag {
  display: none;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF6B6B;
  border: 1px solid rgba(230, 46, 46, 0.45);
  background: rgba(230, 46, 46, 0.12);
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
}

.store-card.active .store-tag { display: inline-block; }

.store-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.store-country { font-size: 0.86rem; color: var(--muted); margin-top: -14px; }

.store-rows { display: grid; gap: 11px; }

.store-rows li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9rem;
  color: #C9C9CD;
  line-height: 1.5;
}

.store-rows svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

.store-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2px; }

/* ------------------------------------------------------------------ resenas */

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

.tcard { display: grid; gap: 14px; padding: 26px 24px; align-content: start; }
.tcard:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.18); }

.t-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #2B2C33, #15161A);
  border: 1px solid var(--line-2);
  color: #EDEDEF;
}

.t-name { font-weight: 800; font-size: 0.95rem; }
.t-city { font-size: 0.8rem; color: var(--muted-2); }

.t-quote {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 0.7;
  color: rgba(230, 46, 46, 0.55);
  align-self: start;
}

.t-stars .stars svg { width: 14px; height: 14px; }

.t-text { font-size: 0.94rem; color: #C9C9CD; line-height: 1.65; }

/* ------------------------------------------------------------------ cta final */

.final {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--line);
}

.final-ghost {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 12.5rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}

.final-inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.final-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.3rem, 5.8vw, 4.6rem);
  line-height: 1;
  text-transform: uppercase;
  max-width: 20ch;
}

.final-sub { color: var(--muted); max-width: 58ch; font-size: 1.02rem; }

.final-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 6px; }

.final-note { font-size: 0.84rem; color: var(--muted-2); }

/* ------------------------------------------------------------------ footer */

.site-footer {
  background: #0B0B0D;
  border-top: 1px solid var(--line);
  padding-top: clamp(48px, 6vw, 74px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  gap: clamp(28px, 4vw, 44px);
}

.f-brand img { height: 46px; width: auto; border-radius: 9px; }

.f-brand p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 34ch;
  line-height: 1.65;
}

.socials { display: flex; gap: 10px; margin-top: 18px; }

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #C9C9CD;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}

.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }

.f-col h3 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}

.f-col ul { display: grid; gap: 11px; }

.f-col a { color: #C9C9CD; font-size: 0.92rem; transition: color 0.25s; }
.f-col a:hover { color: #fff; }

.f-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #C9C9CD;
  font-size: 0.92rem;
  line-height: 1.5;
}

.f-contact svg { width: 17px; height: 17px; color: var(--red); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  margin-top: clamp(40px, 5vw, 62px);
  border-top: 1px solid var(--line);
  padding: 22px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted-2);
}

/* ------------------------------------------------------------------ flotantes */

.fab-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 95;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px -10px rgba(29, 168, 81, 0.65);
  animation: pulseWa 2.8s ease-out infinite;
  transition: transform 0.3s;
}

.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 27px; height: 27px; }

@keyframes pulseWa {
  0% { box-shadow: 0 14px 32px -10px rgba(29, 168, 81, 0.65), 0 0 0 0 rgba(29, 168, 81, 0.4); }
  70% { box-shadow: 0 14px 32px -10px rgba(29, 168, 81, 0.65), 0 0 0 17px rgba(29, 168, 81, 0); }
  100% { box-shadow: 0 14px 32px -10px rgba(29, 168, 81, 0.65), 0 0 0 0 rgba(29, 168, 81, 0); }
}

.toast {
  position: fixed;
  left: 50%;
  top: calc(var(--header-h) + 20px);
  transform: translate(-50%, -14px);
  z-index: 100;
  background: #17181D;
  border: 1px solid var(--line-2);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.8);
  max-width: calc(100vw - 40px);
  text-align: center;
}

.toast.visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ------------------------------------------------------------------ responsive */

@media (max-width: 1180px) {
  .cat-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid .tcard:last-child { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-btn { display: grid; }
  .header-cta { display: none; }
  .stores-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .t-grid { grid-template-columns: 1fr; }
  .t-grid .tcard:last-child { grid-column: auto; }
  .hero-content { padding-top: clamp(110px, 18vh, 190px); padding-bottom: 96px; }
  .final-ghost { font-size: clamp(3rem, 16vw, 6rem); }
}

@media (max-width: 620px) {
  :root { --header-h: 64px; }

  .brand img { height: 38px; }

  .hero-stats { row-gap: 18px; }

  .hero-stats .stat {
    width: 50%;
    border-right: 0;
    margin-right: 0;
    padding-right: 12px;
  }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pcard-visual { min-height: 190px; padding: 18px 12px 2px; }
  .p-art { width: min(140px, 82%); }
  .pcard-body { padding: 12px 14px 18px; gap: 6px; }
  .pcard-name { font-size: 0.95rem; }
  .price-now { font-size: 1.2rem; }
  .pcard .btn { padding: 0.58rem 0.8rem; font-size: 0.8rem; }
  .badge { font-size: 0.58rem; top: 10px; left: 10px; }

  .promo { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cb-label { display: none; }
  .country-btn { padding: 0.42rem 0.55rem; }
  .cat-grid, .benefits-grid { grid-template-columns: 1fr; }
  .cat-card { min-height: 0; }
}

/* ------------------------------------------------------------------ accesibilidad motion */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .marquee-track { animation: none; }
  .fab-wa { animation: none; }
}
