/* ===== IDENTIDAD ARBITRADE – Variables ===== */
:root {
  --font-body: 'DM Sans', sans-serif;
  --color-primary: #E84B1E;
  --color-primary-hover: #c93f19;
  --color-macchiato: #EBE2D6;
  --color-cocoa: #7A3C2C;
  --color-americano: #291C1C;
  --color-black: #0f0e0e;
  --color-cream: #FFFFFF;
  --color-honey: #FFAC30;
  --color-iced: #A2DDFF;
  --color-green-tea: #429D69;
  --color-text: var(--color-americano);
  --color-text-muted: rgba(41, 28, 28, 0.75);
  --color-border: rgba(41, 28, 28, 0.12);
  --color-border-light: rgba(255, 255, 255, 0.12);
  --space-section: clamp(4rem, 10vw, 8rem);
  --space-block: clamp(2rem, 5vw, 4rem);
  --container: min(92%, 72rem);
  --radius: 10px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.65s;
}

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-black);
  -webkit-font-smoothing: antialiased;
}
.container { width: var(--container); margin-inline: auto; }

/* ===== HEADER FIJO ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 4rem;
  display: flex;
  align-items: center;
  background: rgba(15, 14, 14, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(15, 14, 14, 0.97);
  border-color: rgba(255, 255, 255, 0.1);
}
.site-header .container {
  display: flex;
  align-items: center;
}
.site-header-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header-logo {
  height: 26px;
  width: auto;
  display: block;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.site-header-brand:hover .site-header-logo { opacity: 1; }

/* ===== Animaciones viewport ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.stat-card[data-animate].is-visible,
.stat-big[data-animate].is-visible { transition-delay: calc(var(--i, 0) * 0.12s); }

/* ===== Bloque genérico ===== */
.block { padding: var(--space-section) 0; position: relative; }

/* ===== Títulos con gradiente + acento ===== */
.block-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0 0 var(--space-block);
  text-align: center;
  letter-spacing: -0.025em;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 45%, rgba(255, 172, 48, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.block-title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-honey));
  margin: 0.85rem auto 0;
  border-radius: 3px;
  -webkit-text-fill-color: unset; /* no hereda el transparent del gradiente */
}
.block-title-small { font-size: clamp(1.35rem, 3vw, 1.85rem); }

.block-message {
  text-align: center;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  margin: var(--space-block) auto;
  max-width: 36rem;
  line-height: 1.65;
}
.block-intro {
  text-align: center;
  margin: -1rem 0 var(--space-block);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
}


/* ===== 1. HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--space-section) + 4rem) 0 var(--space-section);
  position: relative;
  overflow: hidden;
}

/* Fondo con gradiente animado */
@keyframes heroGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--color-black) 0%,
    #1a1514 20%,
    #2d1814 40%,
    #E84B1E 68%,
    #FFAC30 86%,
    rgba(255, 172, 48, 0.35) 100%
  );
  background-size: 200% 200%;
  animation: heroGradientShift 12s ease-in-out infinite;
  pointer-events: none;
}

/* Textura de grano sobre el hero */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}

/* Anillos decorativos concéntricos */
.hero-rings {
  position: absolute;
  right: 26%;
  top: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 5s ease-in-out infinite;
}
.hero-ring:nth-child(1) {
  width: 11rem; height: 11rem;
  border: 1.5px solid rgba(232, 75, 30, 0.35);
  animation-delay: 0s;
}
.hero-ring:nth-child(2) {
  width: 20rem; height: 20rem;
  border: 1px solid rgba(232, 75, 30, 0.18);
  animation-delay: 0.4s;
}
.hero-ring:nth-child(3) {
  width: 30rem; height: 30rem;
  border: 1px solid rgba(255, 172, 48, 0.1);
  animation-delay: 0.8s;
}
.hero-ring:nth-child(4) {
  width: 42rem; height: 42rem;
  border: 1px solid rgba(255, 172, 48, 0.05);
  animation-delay: 1.2s;
}
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%, -50%) scale(1.04); opacity: 0.65; }
}

/* Imagen hero */
.hero-image-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(52%, 40rem);
  max-height: 88vh;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  box-shadow: -24px 24px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Contenido del hero */
.hero .container { position: relative; z-index: 1; display: flex; align-items: center; flex-wrap: wrap; gap: 2rem; }
.hero-content { max-width: 30rem; }

/* Label como badge pill */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-honey);
  background: rgba(255, 172, 48, 0.12);
  border: 1px solid rgba(255, 172, 48, 0.32);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin: 0 0 1.75rem;
}
.hero-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-honey);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(255, 172, 48, 0.7);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(255, 172, 48, 0.7); }
  50%       { box-shadow: 0 0 14px rgba(255, 172, 48, 1); }
}

.hero-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
  color: var(--color-cream);
}
.hero-number {
  display: inline-block;
  color: var(--color-honey);
  min-width: 1.2em;
  font-weight: 700;
  text-shadow: 0 0 50px rgba(255, 172, 48, 0.5);
}
.hero-percent { color: var(--color-honey); text-shadow: 0 0 50px rgba(255, 172, 48, 0.5); }
.hero-title-text { color: var(--color-cream); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 2.5rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 0.85; }
}

/* ===== CTAs ===== */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.025rem;
  text-decoration: none;
  color: var(--color-cream);
  background: var(--color-primary);
  padding: 1rem 1.875rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), transform 0.22s var(--ease-out), box-shadow 0.25s;
}
.cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(232, 75, 30, 0.55);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(232, 75, 30, 0.4); }
  50%       { box-shadow: 0 4px 48px rgba(232, 75, 30, 0.75), 0 0 0 10px rgba(232, 75, 30, 0.08); }
}
.cta-primary { animation: ctaPulse 3s ease-in-out infinite; }
.cta-secondary {
  background: transparent;
  color: var(--color-honey);
  border: 2px solid rgba(255, 172, 48, 0.55);
  animation: none;
}
.cta-secondary:hover {
  background: rgba(255, 172, 48, 0.1);
  border-color: var(--color-honey);
  box-shadow: 0 8px 28px rgba(255, 172, 48, 0.2);
}


/* ===== 2. VENDING – infografía ===== */
.block-vending {
  background: linear-gradient(180deg, var(--color-black) 0%, #1a1514 30%, #251a14 60%, rgba(232, 75, 30, 0.06) 100%);
  color: var(--color-cream);
}
.block-vending .block-title { color: var(--color-cream); }
.block-vending .block-message { color: rgba(255,255,255,0.75); }

/* Infografía animada */
.infographic {
  margin: var(--space-block) 0;
  max-width: 34rem;
  margin-inline: auto;
}
.infographic-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}
.infographic-row:last-child { margin-bottom: 0; }
.infographic-rank {
  flex: 0 0 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.25);
}
.infographic-label {
  flex: 0 0 9.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  line-height: 1.35;
}
.infographic-bar-wrap {
  flex: 1;
  height: 2.5rem;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.infographic-bar {
  height: 100%;
  border-radius: 999px;
  width: 0;
  max-width: 100%;
  transition: width 1.3s var(--ease-out);
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-honey) 100%);
  position: relative;
  overflow: hidden;
}
/* Shimmer sweep sobre la barra */
.infographic-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,0.25) 50%, transparent 80%);
  background-size: 200% 100%;
  animation: shimmerBar 2.2s linear infinite;
  opacity: 0;
  transition: opacity 0.5s;
}
.infographic-bar.shimmer-active::after { opacity: 1; }

@keyframes shimmerBar {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.infographic-pct {
  flex: 0 0 3.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-honey);
  text-align: right;
  letter-spacing: -0.01em;
}
/* Fila con mayor porcentaje destacada */
.infographic-row-hero .infographic-bar {
  background: linear-gradient(90deg, #c93f19 0%, var(--color-primary) 40%, var(--color-honey) 100%);
}
.infographic-row-hero .infographic-bar-wrap {
  height: 2.75rem;
}
.infographic-row-hero .infographic-pct {
  font-size: 1.2rem;
  color: #fff;
}

/* Stat cards */
.stats-grid { display: grid; gap: 1.25rem; margin: 0; }
.stats-three { grid-template-columns: repeat(3, 1fr); }

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
/* Línea superior con gradiente */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 75, 30, 0.65), transparent);
  border-radius: 0 0 4px 4px;
  transition: left 0.3s, right 0.3s, opacity 0.3s;
}
.stat-card:hover {
  border-color: rgba(232, 75, 30, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(232, 75, 30, 0.1);
}
.stat-card:hover::before { left: 5%; right: 5%; }

.stat-card-accent { border-color: rgba(255, 172, 48, 0.28); }
.stat-card-accent::before {
  background: linear-gradient(90deg, transparent, rgba(255, 172, 48, 0.7), transparent);
}
.stat-card-accent .stat-number { color: var(--color-honey); }

/* Icono en tarjeta */
.stat-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.stat-number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 4.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  text-shadow: 0 0 35px rgba(232, 75, 30, 0.3);
}
.stat-unit { font-size: 1.2em; vertical-align: super; color: inherit; font-weight: 700; margin-left: 0.15em; }
.stat-label {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  font-weight: 500;
}


/* ===== 3. TENSIÓN ===== */
.block-tension {
  background: linear-gradient(160deg, #1a1210 0%, var(--color-black) 30%, #0f0e0e 55%, rgba(255, 172, 48, 0.04) 100%);
  color: var(--color-cream);
  overflow: hidden;
}
.block-tension .block-title { color: var(--color-cream); }

.stats-duo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
}
.stat-big { text-align: center; min-width: 11rem; }
.stat-big .stat-number {
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--color-primary);
  text-shadow: 0 0 60px rgba(232, 75, 30, 0.3);
}
.stat-big-alt .stat-number {
  color: var(--color-honey);
  text-shadow: 0 0 60px rgba(255, 172, 48, 0.3);
}
.block-tension .stat-label { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* "pero" centrado entre los dos stats */
.tension-center {
  text-align: center;
  flex-shrink: 0;
}
.tension-word {
  font-family: var(--font-body);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 60px rgba(232, 75, 30, 0.35);
  white-space: nowrap;
  font-style: italic;
}

/* Callout de insight */
.block-callout {
  position: relative;
  background: rgba(255, 172, 48, 0.08);
  border: 1px solid rgba(255, 172, 48, 0.22);
  border-left: 4px solid var(--color-honey);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.75rem 2.25rem 1.75rem 2.5rem;
  max-width: 38rem;
  margin-inline: auto;
  margin-top: 3rem;
  text-align: left;
}
.block-callout::before {
  content: '"';
  position: absolute;
  top: -1.25rem;
  left: 1.75rem;
  font-size: 4.5rem;
  color: var(--color-honey);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.block-callout p {
  color: var(--color-honey);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  margin: 0;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}


/* ===== 4. BIENESTAR ===== */
.block-bienestar {
  background: linear-gradient(180deg, var(--color-black) 0%, #151010 40%, #1c1412 70%, rgba(232, 75, 30, 0.04) 100%);
  color: var(--color-cream);
}
.block-bienestar .block-title,
.block-bienestar .block-intro { color: var(--color-cream); }
.block-bienestar .stat-card {
  background: linear-gradient(155deg, rgba(232, 75, 30, 0.07) 0%, rgba(255, 172, 48, 0.03) 100%);
  border-color: rgba(255, 172, 48, 0.18);
}
.block-bienestar .stat-card::before {
  background: linear-gradient(90deg, transparent, rgba(255, 172, 48, 0.6), transparent);
}
.block-bienestar .stat-card .stat-number {
  color: var(--color-honey);
  text-shadow: 0 0 35px rgba(255, 172, 48, 0.3);
}


/* ===== 5. GENERACIONES ===== */
.block-generaciones {
  background: linear-gradient(180deg, #0f0e0e 0%, var(--color-black) 30%, #1a1514 65%, #251a14 100%);
  color: var(--color-cream);
}
.block-generaciones .block-title { color: var(--color-cream); }
.block-generaciones .block-message { color: rgba(255,255,255,0.7); }

.generaciones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 0;
}
.gen-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
/* Barra de acento superior */
.gen-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), rgba(232, 75, 30, 0.3));
  border-radius: 0;
}
.gen-card-alt {
  background: linear-gradient(150deg, rgba(255, 172, 48, 0.08) 0%, rgba(232, 75, 30, 0.04) 100%);
  border-color: rgba(255, 172, 48, 0.22);
}
.gen-card-alt::before {
  background: linear-gradient(90deg, var(--color-honey), rgba(255, 172, 48, 0.3));
}
.gen-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 75, 30, 0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.gen-card-alt:hover { border-color: rgba(255, 172, 48, 0.45); }

/* Badges de generación */
.gen-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.28rem 0.85rem;
  margin-bottom: 0.85rem;
}
.gen-badge-primary {
  background: rgba(232, 75, 30, 0.18);
  color: var(--color-primary);
  border: 1px solid rgba(232, 75, 30, 0.3);
}
.gen-badge-honey {
  background: rgba(255, 172, 48, 0.15);
  color: var(--color-honey);
  border: 1px solid rgba(255, 172, 48, 0.3);
}
.gen-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.gen-detail {
  margin: 0.4rem 0 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.gen-detail::before {
  content: '›';
  position: absolute;
  left: 0;
  color: rgba(255, 172, 48, 0.6);
  font-weight: 700;
}


/* ===== 6. AUTORIDAD ===== */
.block-autoridad {
  background: linear-gradient(180deg, #1a1514 0%, var(--color-black) 50%, #0f0e0e 100%);
  color: var(--color-cream);
  overflow: hidden;
}
/* Dot-grid de fondo */
.autoridad-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 172, 48, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.block-autoridad .block-title { color: var(--color-cream); }

/* Grid de credenciales */
.autoridad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  max-width: 36rem;
  margin-inline: auto;
}
.autoridad-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255, 172, 48, 0.18);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.autoridad-item::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 172, 48, 0.5), transparent);
}
.autoridad-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 172, 48, 0.35);
}
.autoridad-num {
  display: block;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-honey);
  line-height: 1.1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(255, 172, 48, 0.3);
}
.autoridad-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.autoridad-desc {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  line-height: 1.45;
}
.autoridad-desc strong { color: rgba(255,255,255,0.9); }
.autoridad-num-sm {
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}


/* ===== 7. CTA FINAL ===== */
.block-cta {
  background: linear-gradient(155deg, var(--color-black) 0%, #1a1210 18%, #2d1814 40%, #E84B1E 72%, #FFAC30 94%, rgba(255, 172, 48, 0.25) 100%);
  padding-bottom: var(--space-section);
  color: var(--color-cream);
  overflow: hidden;
}
/* Eyebrow label */
.cta-eyebrow {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.cta-title {
  color: var(--color-cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
  max-width: 34rem;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* Mockup con glow */
.cta-mockup {
  position: relative;
  max-width: 18rem;
  margin: 0 auto 2.25rem;
  border-radius: var(--radius);
  overflow: visible;
}
.cta-mockup-glow {
  position: absolute;
  inset: -1.5rem;
  background: radial-gradient(ellipse at center, rgba(232, 75, 30, 0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-mockup img {
  width: 100%; height: auto;
  display: block;
  vertical-align: top;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.form-wrapper {
  max-width: 28rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}
.mailchimp-placeholder {
  background: rgba(15, 14, 14, 0.65);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}
.mailchimp-placeholder code {
  background: rgba(255,255,255,0.1);
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--color-honey);
}
.mailchimp-hint { margin-top: 0.75rem; font-size: 0.85rem; opacity: 0.9; }
.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin: 0.75rem 0 0;
}
.block-cta .cta { display: flex; width: fit-content; margin-inline: auto; }

.form-wrapper input[type="email"],
.form-wrapper input[type="text"] {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-cream);
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-wrapper input::placeholder { color: rgba(255,255,255,0.45); }
.form-wrapper input:focus {
  outline: none;
  border-color: var(--color-honey);
  background: rgba(0,0,0,0.4);
  box-shadow: 0 0 0 3px rgba(255, 172, 48, 0.15);
}
.form-wrapper button[type="submit"] {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-cream);
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.form-wrapper button[type="submit"]:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 24px rgba(232, 75, 30, 0.5);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 2.75rem 0 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: #080808;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.footer-logo {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 0.7; }
.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.01em;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-image-wrap { display: none; }
  .hero-rings { right: -5%; }
  .hero .container { justify-content: flex-start; }
  .stats-three { grid-template-columns: 1fr; }
  .stats-duo { flex-direction: column; gap: 1rem; }
  .generaciones-grid { grid-template-columns: 1fr; }
  .infographic-label { flex: 0 0 8rem; font-size: 0.83rem; }
}
@media (max-width: 600px) {
  :root { --space-section: 3rem; }
  .hero-title { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .stat-number { font-size: clamp(2.5rem, 12vw, 3.75rem); }
  .stat-big .stat-number { font-size: clamp(3rem, 14vw, 5rem); }
  .infographic-row { flex-wrap: wrap; }
  .infographic-rank { display: none; }
  .infographic-pct { flex-basis: 100%; text-align: left; margin-top: 0.25rem; }
  .autoridad-grid { grid-template-columns: 1fr; }
  .tension-word { font-size: clamp(2.5rem, 12vw, 4rem); }
  .block-callout { padding: 1.5rem 1.5rem 1.5rem 1.75rem; }
}
