/* ——— FUENTES GOBOLD ——— */
@font-face {
  font-family: 'Gobold';
  src: url('gobold/Gobold Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Gobold';
  src: url('gobold/Gobold Regular Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Gobold';
  src: url('gobold/Gobold Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Gobold';
  src: url('gobold/Gobold Bold Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Gobold';
  src: url('gobold/Gobold Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Gobold';
  src: url('gobold/Gobold Light Italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Gobold';
  src: url('gobold/Gobold Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Gobold High Bold';
  src: url('gobold/Gobold High Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}


/* ——— RESET & BASE ——— */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:        #0a0a0a;
  --bg-light:  #ffffff;
  --blue:      #0044ff;
  --blue-mid:  #1a6bff;
  --blue-hi:   #4488ff;
  --text-inv:  #ffffff;
  --text-dark: #111111;
  --gray:      #888888;
  --font:      'Gobold', sans-serif;
}

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text-inv);
  font-family: var(--font);
  overflow-x: hidden;
}


/* ═══════════════════════════════════
   HERO — VIDEO SCRUBBING
═══════════════════════════════════ */

.hero-section {
  position: relative;
  height: 600vh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  background: #0a0a0a;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    transparent 30%,
    transparent 60%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.hero-eyebrow {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

.hero-subtitle {
  font-family: var(--font);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.75rem);
  margin-top: 20px;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.hero-season-label {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 16px;
}

.hero-season-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.06em;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}

.scroll-hint span {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
}

.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: grow 2s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes grow {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

/* Progress dots */
.hero-dots {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.4);
}


/* ═══════════════════════════════════
   PODER PURO — SECCIÓN CON BLUR CURSOR
═══════════════════════════════════ */

.poder-section {
  background: var(--bg-light);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14vh 40px 16vh;
}

.poder-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* Eyebrow */
.poder-eyebrow {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
}

/* ——— Título principal con textura de garras ——— */
.poder-title {
  font-family: 'Gobold High Bold', var(--font);
  font-weight: 700;
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  user-select: none;
}

/* ——— Subtítulo ——— */
.poder-subtitle {
  font-family: 'Gobold High Bold', var(--font);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 8px;
  user-select: none;
}

/* Línea divisoria */
.poder-divider {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, transparent, #cccccc, transparent);
  margin: 40px auto;
}

/* Cuerpo de texto */
.poder-body {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(0.65rem, 1.1vw, 0.8rem);
  line-height: 2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  max-width: 640px;
}

/* ═══════════════════════════════════
   CTA SECTION — Spotlight mouse
═══════════════════════════════════ */

.cta-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: none;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

/* Spotlight = única capa oscura + agujero en el cursor */
.cta-spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* r=0 → degenerate circle → last stop cubre todo → sección oscura */
  background: radial-gradient(
    circle var(--r, 0px) at var(--mx, 50%) var(--my, 50%),
    rgba(8,8,8,0)    0%,
    rgba(8,8,8,0)    34%,
    rgba(8,8,8,0.88) 62%,
    rgba(8,8,8,0.97) 100%
  );
}

.cta-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 48px;
  pointer-events: none;
}

.cta-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}

.cta-heading {
  font-family: 'Gobold High Bold', var(--font);
  font-size: clamp(58px, 8.5vw, 124px);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-line-fill   { display: block; color: #fff; }
.cta-line-stroke {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.75);
}

.cta-body {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.38);
  line-height: 1.9;
  max-width: 540px;
  margin: 0 auto 52px;
}

.cta-discover {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.65);
  padding: 14px 38px;
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  pointer-events: all;
  transition: border-color 0.28s, color 0.28s, background 0.28s;
}
.cta-discover:hover {
  border-color: #cc2020;
  color: #fff;
  background: rgba(204,32,32,0.12);
}
.cta-discover svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════
   SHOWCASE — DOMINA CADA REINO
═══════════════════════════════════ */

.showcase-section {
  background: #f0f0f0;
  color: #111;
  padding: 11vh 0 13vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.showcase-eyebrow {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 36px;
}

/* ——— Tab navigator ——— */
.showcase-nav {
  position: relative;
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 100px;
  padding: 5px;
  gap: 0;
  margin-bottom: 64px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
}

.stab-pill {
  position: absolute;
  top: 5px;
  left: 0;
  height: calc(100% - 10px);
  border-radius: 100px;
  pointer-events: none;
  z-index: 0;
  will-change: transform, width;
}

.stab {
  position: relative;
  z-index: 1;
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 24px;
  background: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  color: #666;
  transition: color 0.35s;
  white-space: nowrap;
}

.stab.active { color: #fff; }

/* ——— Stage ——— */
.showcase-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
}

.showcase-ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Gobold High Bold', var(--font);
  font-size: clamp(10rem, 26vw, 24rem);
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.05);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.showcase-cards {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scard {
  position: absolute;
  width: 265px;
  height: 390px;
  border-radius: 22px;
  background: var(--card-bg, #888);
  box-shadow: 0 20px 55px var(--card-shadow, rgba(0,0,0,0.22));
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scard::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0.52) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 0 0 22px 22px;
}

.scard-name {
  position: absolute;
  bottom: 16px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}

.scard img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* Diamond pattern (bottom-right accent) */
.showcase-diamonds {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 210px;
  height: 210px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Cpolygon points='13,2 24,13 13,24 2,13' fill='none' stroke='%23c8c8c8' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 26px 26px;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}


/* ═══════════════════════════════════
   PRODUCTO DESTACADO
═══════════════════════════════════ */

.highlight-section {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* ——— LEFT panel ——— */
.hl-left {
  width: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hl-marquee {
  flex-shrink: 0;
  border-top: 1.5px solid #cc2020;
  border-bottom: 1.5px solid #cc2020;
  overflow: hidden;
  padding: 9px 0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.hl-marq-track {
  display: inline-flex;
  will-change: transform;
}

.hl-marq-right { animation: hlRight 20s linear infinite; }
.hl-marq-left  { animation: hlLeft  20s linear infinite; }

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

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

.hl-mi {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0 24px;
  color: #111;
  flex-shrink: 0;
}

.hl-mi em {
  font-style: normal;
  color: #cc2020;
}

.hl-stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hl-animal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.15);
  mix-blend-mode: multiply;
  opacity: 0.42;
  z-index: 0;
}

.hl-blob {
  position: absolute;
  width: 44%;
  aspect-ratio: 5 / 6.2;
  background: #cc2020;
  border-radius: 62% 38% 50% 50% / 55% 45% 55% 45%;
  z-index: 1;
}

.hl-prod {
  position: relative;
  z-index: 2;
  width: 66%;
  max-width: 340px;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.38));
}

/* ——— RIGHT panel ——— */
.hl-right {
  width: 50%;
  background: #181818;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7vh 5vw 6vh;
  position: relative;
  overflow: hidden;
  cursor: none;
}

.hl-title {
  position: absolute;
  top: 3vh;
  left: 5vw;
  right: 5vw;
  z-index: 0;
  pointer-events: none;
  font-family: 'Gobold High Bold', var(--font);
  font-size: 10vw; /* JS override: fitHlTitle() */
  white-space: nowrap;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  line-height: 1;
  user-select: none;
}

.hl-card-wrap {
  perspective: 1000px;
  position: relative;
  z-index: 1;
}

.hl-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}

.hl-card img {
  width: 100%;
  max-height: 38vh;
  object-fit: cover;
  display: block;
}

.hl-card-glare {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255,255,255,0.16) 0%,
    transparent 65%);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}

.hl-right:hover .hl-card-glare { opacity: 1; }

.hl-card-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #111;
  z-index: 2;
  cursor: pointer;
  user-select: none;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.hl-card-arrow:hover {
  background: #cc2020;
  color: #fff;
  transform: translateY(-50%) scale(1.12);
}

.hl-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.hl-logo {
  width: 58%;
  max-width: 260px;
  max-height: 72px;
  object-fit: contain;
}

.hl-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  will-change: transform;
}

.hl-cta:hover {
  background: #cc2020;
  border-color: #cc2020;
}

.hl-catalog-link {
  font-family: var(--font);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 11px 28px;
  border-radius: 100px;
  margin-top: 10px;
  display: inline-block;
  text-align: center;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}
.hl-catalog-link:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}

/* Left panel — Ver detalles button */
.hl-left-cta-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding: 14px 0 16px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.hl-left-cta {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111;
  border: 1px solid rgba(0,0,0,0.3);
  padding: 13px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.hl-left-cta:hover {
  background: #cc2020;
  border-color: #cc2020;
  color: #fff;
}

/* Right panel — info blocks (Forma de uso / Ingredientes / Beneficios) */
.hl-info-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 0;
}

.hl-info-item {
  padding: 14px 14px 0 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hl-info-item:last-child {
  border-right: none;
  padding-right: 0;
}

.hl-info-num {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  color: #cc2020;
  display: block;
  margin-bottom: 7px;
}

.hl-info-label {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.hl-info-text {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.72rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.52);
}

/* Cursor anillo para panel derecho (highlight) */
.hl-cursor {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(204,32,32,0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  top: 0; left: 0;
}
.hl-cursor::after {
  content: '';
  position: absolute;
  inset: 0; margin: auto;
  width: 6px; height: 6px;
  background: #cc2020;
  border-radius: 50%;
}

/* Cursor anillo para sección CTA */
.cta-cursor {
  position: fixed;
  width: 42px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  top: 0; left: 0;
}
.cta-cursor::after {
  content: '';
  position: absolute;
  inset: 0; margin: auto;
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
}


/* ══════════════════════════════════════
   PDP MODAL
══════════════════════════════════════ */
.pdp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.pdp-modal {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: min(82vh, 660px);
  background: #111;
  border-radius: 20px;
  border: 1.5px solid rgba(204, 32, 32, 0.55);
  display: flex;
  overflow: hidden;
  /* Red glow outdoor */
  box-shadow:
    0 0 0 1px rgba(204,32,32,0.1),
    0 0 40px rgba(204,32,32,0.4),
    0 0 90px rgba(204,32,32,0.2),
    0 32px 80px rgba(0,0,0,0.75);
  will-change: transform, opacity;
}

/* Textura sutil — diamond grid */
.pdp-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg,  rgba(255,255,255,0.022) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.022) 25%, transparent 25%),
    linear-gradient(45deg,  transparent 75%, rgba(255,255,255,0.022) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.022) 75%);
  background-size: 18px 18px;
  background-position: 0 0, 0 9px, 9px -9px, -9px 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.pdp-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pdp-close:hover {
  background: rgba(204,32,32,0.3);
  border-color: rgba(204,32,32,0.6);
  color: #fff;
}
.pdp-close svg { width: 12px; height: 12px; }

/* —— Left: info panel —— */
.pdp-left {
  width: 54%;
  padding: 52px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.pdp-brand-logo {
  height: 44px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
}

.pdp-name {
  font-family: 'Gobold High Bold', var(--font);
  font-size: clamp(56px, 5.8vw, 88px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 14px;
}

.pdp-type {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin: 0 0 4px;
}
.pdp-claim {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin: 0 0 38px;
}

.pdp-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 42px;
  align-items: flex-start;
}

.pdp-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

/* ICONOS GRANDES */
.pdp-spec-ico {
  width: 72px;
  height: 72px;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.pdp-spec:hover .pdp-spec-ico {
  border-color: rgba(204,32,32,0.7);
}
.pdp-spec-ico svg {
  width: 30px;
  height: 30px;
}
.pdp-spec-ico.is-badge {
  background: #cc2020;
  border-color: transparent;
  font-family: 'Gobold Bold', var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  box-shadow: 0 0 18px rgba(204,32,32,0.5);
}
.pdp-spec-ico.is-badge.is-badge--sm {
  font-size: 0.88rem;
}
.pdp-spec-ico.is-badge small {
  font-size: 0.56rem;
  letter-spacing: 0;
  vertical-align: middle;
}

.pdp-spec-label {
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.44);
  line-height: 1.55;
}

.pdp-add-cart {
  align-self: flex-start;
  background: #cc2020;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 15px 42px;
  font-family: 'Gobold Bold', var(--font);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(204,32,32,0.4);
}
.pdp-add-cart:hover {
  background: #e02525;
  transform: scale(1.04);
  box-shadow: 0 0 32px rgba(204,32,32,0.65);
}
.pdp-add-cart:active { transform: scale(0.97); }

/* —— Right: product image (grande, medio cortado) —— */
.pdp-right {
  width: 46%;
  position: relative;
  background: #0b0b0b;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-right-blob {
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(204,32,32,0.55) 0%, transparent 68%);
  filter: blur(55px);
  z-index: 0;
  border-radius: 50%;
}

/* Producto grande — centrado, bordes sangran */
.pdp-hero-img {
  position: relative;
  height: 112%;
  width: auto;
  flex-shrink: 0;
  z-index: 1;
  filter: drop-shadow(-20px 0 50px rgba(0,0,0,0.65));
}


/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */

.site-footer {
  background: #111;
  color: rgba(255,255,255,0.55);
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding: 72px 80px 60px;
}

.footer-col-title {
  font-family: 'Gobold Bold', var(--font);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-links a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  font-size: 0.83rem;
  letter-spacing: 0.03em;
  transition: color 0.22s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-desc {
  font-size: 0.83rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.38);
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.22s, border-color 0.22s;
}
.footer-social-link:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.footer-social-link svg { width: 16px; height: 16px; }

/* Wordmark gigante full-width */
.footer-wordmark-wrap {
  overflow: hidden;
  line-height: 0.82;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 8px;
}
.footer-wordmark {
  font-family: 'Gobold High Bold', var(--font);
  font-size: 20vw; /* JS override */
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
  display: block;
  line-height: 0.82;
  margin: 0;
  padding: 0;
  transform: translateY(6%); /* crop bottom like referencia */
  will-change: transform;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 80px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.22);
}
.footer-legal {
  display: flex;
  gap: 32px;
}
.footer-legal a {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }


/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 48px);
  max-width: 1300px;
  padding: 0 28px;
  height: 60px;
  background: rgba(18,18,18,0.12);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  transition: background 0.45s ease, border-color 0.45s ease;
}
.site-nav.is-scrolled {
  background: rgba(10,10,10,0.42);
  border-color: rgba(255,255,255,0.13);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 40px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.22s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: rgba(255,255,255,0.65);
  transition: width 0.26s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover { color: rgba(255,255,255,0.92); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 22px;
  border-radius: 100px;
  flex-shrink: 0;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.42);
  color: #fff;
}

/* ──────────────────────────────────
   HAMBURGER + MENÚ MÓVIL
────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 14px; height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: 90px;
  left: 12px; right: 12px;
  z-index: 899;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 12px 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.nav-mobile.is-open { pointer-events: auto; }
.nav-mobile-links { list-style: none; margin: 0; padding: 0; }
.nav-mobile-links li a {
  font-family: var(--font);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: block;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.nav-mobile-links li:last-child a { border-bottom: none; }
.nav-mobile-links li a:hover { color: #fff; background: rgba(255,255,255,0.03); }
.nav-mobile-cta { color: rgba(255,255,255,0.9) !important; }

/* ──────────────────────────────────
   TABLET (≤ 960px)
────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 56px 48px 48px;
    gap: 36px;
  }
  .footer-col--wide { grid-column: 1 / -1; }
  .footer-bottom { padding: 18px 48px; }
}

/* ──────────────────────────────────
   MOBILE (≤ 768px)
────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .site-nav { width: calc(100% - 24px); padding: 0 18px; top: 12px; }

  /* Hero */
  .hero-title { font-size: clamp(72px, 20vw, 160px); letter-spacing: 0.06em; }
  .hero-subtitle { font-size: clamp(12px, 3.5vw, 20px); }

  /* Poder Puro */
  .poder-section { padding: 10vh 24px 12vh; }
  .poder-title   { font-size: clamp(52px, 14vw, 100px); }
  .poder-subtitle{ font-size: clamp(18px, 5.5vw, 36px); letter-spacing: 0.12em; }
  .poder-body    { font-size: 0.78rem; max-width: 90%; }

  /* Showcase */
  .showcase-eyebrow { font-size: 0.6rem; }
  .showcase-section { padding: 10vh 0 8vh; }
  .showcase-stage   { height: 360px; }
  .stab             { padding: 10px 14px; font-size: 0.55rem; }

  /* Highlight */
  .highlight-section { flex-direction: column; height: auto; }
  .hl-left, .hl-right{ width: 100%; }
  .hl-left           { height: auto; min-height: 420px; }
  .hl-stage          { min-height: 220px; }
  .hl-prod           { width: 48%; }
  .hl-right          { padding: 8vw; gap: 5vw; }
  .hl-info-row       { flex-direction: column; gap: 16px; }
  .hl-title          { font-size: clamp(64px, 18vw, 160px); }
  .hl-card img       { max-height: 28vh; }

  /* CTA */
  .cta-section   { cursor: auto; }
  .cta-inner     { padding: 0 28px; }
  .cta-heading   { font-size: clamp(34px, 9vw, 60px); }
  .cta-body      { font-size: 0.78rem; max-width: 100%; }

  /* PDP modal */
  .pdp-modal {
    flex-direction: column;
    width: calc(100vw - 24px);
    height: min(92vh, 680px);
    padding: 28px 24px;
    border-radius: 20px;
    overflow-y: auto;
  }
  .pdp-left  { width: 100%; }
  .pdp-right { display: none; }
  .pdp-specs { gap: 14px; }
  .pdp-spec-ico { width: 60px; height: 60px; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 48px 28px 40px;
    gap: 28px;
  }
  .footer-col--wide { grid-column: 1 / -1; }
  .footer-bottom {
    padding: 16px 28px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-legal { gap: 20px; }
}

/* ──────────────────────────────────
   SMALL MOBILE (≤ 480px)
────────────────────────────────── */
@media (max-width: 480px) {
  .site-nav { width: calc(100% - 16px); top: 10px; padding: 0 16px; }

  .hero-title  { font-size: clamp(64px, 19vw, 130px); }
  .hero-eyebrow{ font-size: 0.58rem; }

  .poder-title { font-size: clamp(44px, 13vw, 80px); }
  .poder-subtitle { font-size: clamp(16px, 5vw, 28px); }

  .showcase-stage { height: 300px; }

  .cta-heading { font-size: clamp(30px, 9.5vw, 48px); }
  .cta-body    { font-size: 0.75rem; }

  .hl-right    { padding: 6vw; }
  .hl-info-row { gap: 12px; }

  .footer-top  { grid-template-columns: 1fr; padding: 40px 20px 32px; gap: 24px; }
  .footer-col--wide { grid-column: unset; }
  .footer-bottom { padding: 14px 20px; }
  .footer-legal  { flex-direction: column; gap: 10px; }

  .pdp-specs  { gap: 10px; }
  .pdp-spec-ico { width: 52px; height: 52px; }
  .pdp-name   { font-size: 2rem; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INNER PAGES â€” historia Â· tienda Â· distribuidores
   contacto Â· aviso-privacidad Â· politicas-venta
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.nav-links a.is-current { color: rgba(255,255,255,0.92); }
.nav-links a.is-current::after { width: 100%; }

/* ── Fondo claro para páginas internas ── */
body.inner-page { background: #f0f0ee; color: #0a0a0a; }

/* Page hero — oscuro y contrastante */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 7vw 10vh;
  overflow: hidden;
  background: #0a0a0a;
  border-bottom: 3px solid #cc0000;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(200,0,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.ph-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cc0000;
  margin-bottom: 20px;
}
.ph-title {
  font-family: 'Gobold High Bold', sans-serif;
  font-size: clamp(52px, 8.5vw, 120px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
}
.ph-sub {
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  color: rgba(255,255,255,0.38);
  margin-top: 22px;
  max-width: 46ch;
  line-height: 1.7;
}

/* Inner section — fondo claro */
.inner-section {
  padding: 10vh 7vw;
  background: #f0f0ee;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.inner-section:last-of-type { border-bottom: none; }
.is-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cc0000;
  margin-bottom: 26px;
}
.is-heading {
  font-family: 'Gobold High Bold', sans-serif;
  font-size: clamp(34px, 5.5vw, 78px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  margin-bottom: 26px;
}
.is-body {
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  line-height: 1.78;
  color: rgba(0,0,0,0.48);
  max-width: 52ch;
}
.inner-divider { width: 40px; height: 2px; background: #cc0000; margin: 22px 0; }
.inner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: start; }
.inner-grid.align-center { align-items: center; }

/* Misión / Visión */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 36px; }
.mv-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); padding: 42px 34px; border-top: 3px solid #cc0000; }
.mv-card-label { font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; color: #cc0000; margin-bottom: 16px; }
.mv-card-text { font-size: clamp(0.95rem, 1.7vw, 1.25rem); line-height: 1.62; color: rgba(0,0,0,0.55); }

/* Valores */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 46px; }
.value-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); padding: 30px 24px; }
.value-card-label { font-size: 0.54rem; letter-spacing: 0.2em; text-transform: uppercase; color: #cc0000; margin-bottom: 12px; }
.value-card-title { font-family: 'Gobold High Bold', sans-serif; font-size: clamp(15px, 1.8vw, 20px); text-transform: uppercase; color: #0a0a0a; margin-bottom: 10px; }
.value-card-text { font-size: 0.77rem; line-height: 1.75; color: rgba(0,0,0,0.42); }

/* Quality badges */
.quality-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.quality-badge { font-size: 0.59rem; letter-spacing: 0.15em; text-transform: uppercase; color: #0a0a0a; border: 1px solid rgba(0,0,0,0.18); padding: 8px 16px; border-radius: 100px; background: #fff; }

/* Stat box */
.stat-box { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-left: 3px solid #cc0000; padding: 34px 30px; }
.stat-box + .stat-box { margin-top: 2px; }
.stat-num { font-family: 'Gobold High Bold', sans-serif; font-size: clamp(38px, 5vw, 62px); line-height: 1; margin-bottom: 7px; color: #cc0000; }
.stat-label { font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(0,0,0,0.38); }

/* Inner CTA */
.inner-cta { display: inline-flex; align-items: center; gap: 10px; font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: #cc0000; border: 1px solid #cc0000; padding: 14px 32px; border-radius: 100px; text-decoration: none; transition: background .22s, border-color .22s; }
.inner-cta:hover { background: #aa0000; border-color: #aa0000; }

/* CTA center — sección oscura de contraste */
.inner-cta-center { text-align: center; padding: 10vh 7vw; background: #0a0a0a; }
.inner-cta-center .ph-eyebrow { color: rgba(255,255,255,0.28); }
.inner-cta-center .is-heading { color: #fff; }

/* Tienda */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 46px; }
.prod-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); padding: 34px 22px 26px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; text-decoration: none; color: inherit; transition: border-color .24s, box-shadow .24s; }
.prod-card:hover { border-color: #cc0000; box-shadow: 0 4px 28px rgba(200,0,0,0.1); }
.prod-card img { width: 100%; max-width: 140px; height: 170px; object-fit: contain; margin-bottom: 6px; }
.prod-card-cat { font-size: 0.53rem; letter-spacing: 0.2em; text-transform: uppercase; color: #cc0000; }
.prod-card-name { font-family: 'Gobold High Bold', sans-serif; font-size: clamp(12px, 1.5vw, 17px); text-transform: uppercase; line-height: 1.1; color: #0a0a0a; }
.prod-card-price { font-size: 0.8rem; color: rgba(0,0,0,0.42); }
.prod-card-btn { margin-top: auto; font-size: 0.58rem; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(0,0,0,0.5); border: 1px solid rgba(0,0,0,0.15); padding: 8px 18px; border-radius: 100px; transition: background .22s, color .22s, border-color .22s; }
.prod-card:hover .prod-card-btn { background: #cc0000; color: #fff; border-color: #cc0000; }
.tienda-note { text-align: center; font-size: 0.73rem; color: rgba(0,0,0,0.35); margin-top: 42px; line-height: 1.85; letter-spacing: 0.03em; }
.tienda-note a { color: #cc0000; text-decoration: underline; text-underline-offset: 3px; }

/* Distribuidores */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 46px; }
.benefit-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); padding: 34px 30px; }
.benefit-num { font-family: 'Gobold High Bold', sans-serif; font-size: clamp(42px, 5.5vw, 72px); color: rgba(204,0,0,0.07); line-height: 1; margin-bottom: 12px; }
.benefit-title { font-family: 'Gobold High Bold', sans-serif; font-size: clamp(14px, 1.7vw, 19px); text-transform: uppercase; margin-bottom: 9px; color: #0a0a0a; }
.benefit-text { font-size: 0.77rem; line-height: 1.75; color: rgba(0,0,0,0.42); }
.distributors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 46px; }
.dist-card { border: 1px solid rgba(0,0,0,0.08); border-top: 3px solid #cc0000; padding: 24px 20px; background: #fff; }
.dist-name { font-family: 'Gobold', sans-serif; font-weight: 700; font-size: 0.83rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; color: #0a0a0a; }
.dist-location { font-size: 0.68rem; color: rgba(0,0,0,0.38); }
.dist-gym { font-size: 0.64rem; color: rgba(0,0,0,0.22); margin-top: 3px; font-style: italic; }

/* Contacto */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 8vw; align-items: start; }
.contact-item { display: flex; flex-direction: column; gap: 5px; padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.07); }
.contact-item:first-child { padding-top: 0; }
.contact-lbl { font-size: 0.54rem; letter-spacing: 0.2em; text-transform: uppercase; color: #cc0000; }
.contact-val { font-size: 0.93rem; color: rgba(0,0,0,0.62); text-decoration: none; transition: color .2s; }
.contact-val:hover { color: #0a0a0a; }

/* Form */
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-lbl { font-size: 0.54rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(0,0,0,0.38); }
.form-input, .form-textarea { background: #fff; border: 1px solid rgba(0,0,0,0.14); border-radius: 6px; padding: 12px 15px; color: #0a0a0a; font-family: var(--font); font-size: 0.83rem; outline: none; width: 100%; transition: border-color .22s, box-shadow .22s; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(0,0,0,0.28); }
.form-input:focus, .form-textarea:focus { border-color: #cc0000; box-shadow: 0 0 0 3px rgba(204,0,0,0.08); }
.form-textarea { min-height: 126px; resize: vertical; }
.form-submit { font-family: var(--font); font-size: 0.64rem; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; background: #cc0000; border: 1px solid #cc0000; padding: 14px 34px; border-radius: 100px; cursor: pointer; width: 100%; transition: background .22s; }
.form-submit:hover { background: #aa0000; border-color: #aa0000; }
.form-note { font-size: 0.66rem; color: rgba(0,0,0,0.28); margin-top: 10px; line-height: 1.6; }

/* Legal */
.legal-wrap { max-width: 740px; }
.legal-date { font-size: 0.66rem; letter-spacing: 0.1em; color: rgba(0,0,0,0.28); margin-bottom: 38px; text-transform: uppercase; }
.legal-wrap h2 { font-family: 'Gobold', sans-serif; font-weight: 700; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: #0a0a0a; margin: 42px 0 11px; padding-top: 42px; border-top: 1px solid rgba(0,0,0,0.08); }
.legal-wrap h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-wrap p { font-size: 0.81rem; line-height: 1.88; color: rgba(0,0,0,0.52); margin-bottom: 11px; }
.legal-wrap ul { margin: 6px 0 16px 20px; }
.legal-wrap li { font-size: 0.81rem; line-height: 1.85; color: rgba(0,0,0,0.52); margin-bottom: 4px; }
.legal-wrap a { color: #cc0000; text-decoration: underline; text-underline-offset: 3px; }

/* Page hero — imagen lateral */
.ph-hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  max-width: 55%;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  user-select: none;
}

/* Grid de 3 columnas (historia origen) */
.inner-grid-3 { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 4vw; align-items: center; }

/* Imagen de sección lateral */
.section-img { width: 100%; height: auto; display: block; border-radius: 4px; }

/* Imagen en CTA center */
.inner-cta-img { display: block; max-height: 320px; width: auto; margin: 0 auto 36px; filter: drop-shadow(0 24px 60px rgba(0,0,0,0.6)); }

/* Split section — text left, image fills right edge-to-edge */
.split-section { display: grid; grid-template-columns: 48fr 52fr; min-height: 60vh; overflow: hidden; }
.split-left { padding: 10vh 5vw 10vh 7vw; display: flex; flex-direction: column; justify-content: center; background: #f0f0ee; }
.split-right { overflow: hidden; }
.split-right img, .split-right canvas { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: center; display: block; }

/* Benefit icon */
.benefit-icon { display: block; width: 54px; height: 54px; object-fit: contain; margin-bottom: 14px; }

/* Responsive inner pages */
@media (max-width: 960px) {
  .value-grid        { grid-template-columns: repeat(2, 1fr); }
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
  .distributors-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid           { grid-template-columns: 1fr; }
  .inner-grid        { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap      { grid-template-columns: 1fr; gap: 44px; }
  .benefits-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .inner-grid-3      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .page-hero         { padding: 100px 6vw 8vh; min-height: 50vh; }
  .inner-section     { padding: 8vh 6vw; }
  .value-grid        { grid-template-columns: 1fr; }
  .products-grid     { grid-template-columns: 1fr 1fr; }
  .distributors-grid { grid-template-columns: 1fr 1fr; }
  .ph-hero-img       { display: none; }
  .inner-grid-3      { grid-template-columns: 1fr; }
  .inner-cta-img     { max-height: 220px; }
  .split-section     { grid-template-columns: 1fr; }
  .split-left        { padding: 8vh 6vw; }
  .split-right img   { min-height: 260px; }
}
@media (max-width: 480px) {
  .products-grid     { grid-template-columns: 1fr; }
  .distributors-grid { grid-template-columns: 1fr; }
}
