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

:root {
  --rojo:    #be1e2d;
  --rojo-dark: #8f1622;
  --dorado:  #c8922a;
  --negro:   #141414;
  --gris:    #1a1a1a;
  --gris-med:#2e2e2e;
  --texto:   #e8e0d4;
  --suave:   #b0a898;
}

html { scroll-behavior: smooth; }

body {
  background: var(--negro);
  color: var(--texto);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── FONDO DECORATIVO ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(190,30,45,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(200,146,42,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 100px) clamp(24px, 6vw, 80px);
  z-index: 1;
}

.hero::after {
  content: '2026';
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-60%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(180px, 28vw, 420px);
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.edicion-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.logo-img {
  width: clamp(300px, 45vw, 620px);
  height: auto;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s ease forwards;
}

.hero-tagline {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: var(--suave);
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}

/* ── DATOS CLAVE ── */
.datos {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  max-width: 640px;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s ease forwards;
}

.dato {
  background: var(--gris);
  border-left: 3px solid var(--rojo);
  padding: 18px 28px;
  flex: 1;
  min-width: 180px;
  transition: background 0.25s;
}
.dato:hover { background: var(--gris-med); }

.dato-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 6px;
}

.dato-valor {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.1;
}

.dato-sub {
  font-size: 12px;
  color: var(--suave);
  margin-top: 4px;
}

/* ── CTA ── */
.cta-wrapper {
  margin-top: 52px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease forwards;
}

.btn-primary {
  display: inline-block;
  background: var(--rojo);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--rojo-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--texto);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--gris-med);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--suave); color: #fff; }

/* ── DIVISOR ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gris-med) 30%, var(--gris-med) 70%, transparent);
  margin: 0 clamp(24px, 6vw, 80px);
  position: relative;
  z-index: 1;
}

/* ── SECCIÓN INFO ── */
.info-section {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  max-width: 1100px;
}

@media (max-width: 700px) {
  .info-section { grid-template-columns: 1fr; gap: 40px; }
}

.info-bloque h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
}

.info-bloque p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--suave);
}

.info-bloque p + p { margin-top: 10px; }

.info-bloque a {
  color: var(--dorado);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  transition: gap 0.2s;
}
.info-bloque a:hover { gap: 14px; }

/* Contador regresivo */
.countdown {
  display: flex;
  gap: 2px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cnt-bloque {
  background: var(--gris);
  padding: 14px 20px;
  text-align: center;
  min-width: 72px;
}

.cnt-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--rojo);
  line-height: 1;
  display: block;
}

.cnt-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--suave);
  margin-top: 4px;
  display: block;
}

/* ── NÚMEROS DESTACADOS ── */
.stats-bar {
  position: relative;
  z-index: 1;
  background: var(--rojo);
  padding: 40px clamp(24px, 6vw, 80px);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  color: #fff;
  line-height: 1;
  display: block;
}

.stat-txt {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  display: block;
}

/* ── MAPA ── */
.map-section {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
}

.map-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.map-section .sub {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  color: var(--suave);
  font-size: 17px;
  margin-bottom: 32px;
}

.map-wrap {
  width: 100%;
  max-width: 860px;
  height: 360px;
  border: 1px solid var(--gris-med);
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(90%) contrast(90%);
}

.dir-line {
  margin-top: 18px;
  font-size: 14px;
  color: var(--suave);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dir-line svg { flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--gris-med);
  padding: 36px clamp(24px, 6vw, 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

footer p { font-size: 12px; color: var(--suave); }

footer a { color: var(--dorado); text-decoration: none; font-size: 12px; }

/* ── ANIMACIONES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECCIÓN CONTACTO ── */
.contact-section {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
  max-width: 1100px;
}

.contact-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 8px;
}

.contact-section .sub {
  font-size: 14px;
  color: var(--suave);
  margin-bottom: 48px;
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--gris);
  padding: 32px 36px;
  border-left: 3px solid var(--rojo);
  transition: background 0.25s;
}
.contact-card:hover { background: var(--gris-med); }

.contact-card-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 14px;
}

.contact-card a,
.contact-card span {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--dorado); }

.contact-card .contact-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--suave);
  margin-top: 8px;
  letter-spacing: 0;
  font-weight: 300;
}

.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.contact-btn-call {
  background: var(--rojo);
  color: #fff;
}
.contact-btn-call:hover { background: var(--rojo-dark); }

.contact-btn-wa {
  background: transparent;
  color: var(--texto);
  border: 1px solid var(--gris-med);
}
.contact-btn-wa:hover { border-color: #25D366; color: #25D366; }

.redes-lista {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.red-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gris-med);
  color: var(--texto);
  transition: border-color 0.2s, color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.red-btn:hover { border-color: var(--dorado); color: var(--dorado); }

/* ── AVISO DE COOKIES ── */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  border-top: 1px solid #2e2e2e;
  padding: 18px clamp(24px, 6vw, 80px);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 9999;
  box-sizing: border-box;
}

#cookie-banner .cookie-text {
  flex: 1;
  min-width: 220px;
  font-size: 13px;
  color: #b0a898;
  line-height: 1.6;
  margin: 0;
}

#cookie-banner .cookie-text a {
  color: #c8922a;
  text-decoration: none;
}

#cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-rechazar {
  background: transparent;
  color: #b0a898;
  border: 1px solid #2e2e2e;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

#cookie-aceptar {
  background: #be1e2d;
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

/* ── MOBILE ── */
@media (max-width: 500px) {
  .hero::after { display: none; }
  .datos { flex-direction: column; }
  .dato { min-width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
}
