/* ================================
   VARIABLES & RESET
================================ */
:root {
  --orange:        #FF6B00;
  --orange-light:  #FF9A3C;
  --orange-dark:   #CC4A00;
  --orange-glow:   rgba(255, 107, 0, 0.35);
  --black:         #0A0A0A;
  --black-soft:    #111111;
  --black-card:    #161616;
  --black-border:  #222222;
  --white:         #FFFFFF;
  --white-muted:   #CCCCCC;
  --white-faint:   #888888;
  --gold:          #C9A84C;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
  --font-italic:  'Cormorant Garamond', Georgia, serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --radius: 4px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: auto;
}

@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .subscribe-btn, .subscribe-modal__close, .subscribe-modal__submit { cursor: pointer; }
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ================================
   CURSOR
================================ */
.cursor,
.cursor-follower {
  display: none;
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor {
  width: 10px;
  height: 10px;
  background: var(--orange);
}
.cursor-follower {
  width: 36px;
  height: 36px;
  border: 2px solid var(--orange);
  background: transparent;
  transition: transform 0.12s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover, button:hover, .galeria__item:hover) .cursor-follower {
  width: 60px;
  height: 60px;
  border-color: var(--orange-light);
}

/* ================================
   HERO BALL DECORATIVO
================================ */
.hero__ball {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 420px;
  height: 420px;
  z-index: 1;
  opacity: 0.18;
  animation: ballSpin 18s linear infinite, ballFloat 6s ease-in-out infinite;
  pointer-events: none;
}
.hero__ball img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes ballSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes ballFloat {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50%       { transform: rotate(180deg) translateY(-20px); }
}
@media (max-width: 768px) {
  .hero__ball { width: 240px; height: 240px; right: -40px; bottom: -40px; }
}

/* ================================
   SCROLL REVEAL
================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: 0;
}
.btn span, .btn {
  position: relative;
  z-index: 1;
}
.btn:hover::before { transform: translateX(0); }

.btn--hero {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  font-size: 0.85rem;
}
.btn--hero::before { background: var(--white); }
.btn--hero:hover { color: var(--black); }

.btn--primary {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn--primary:hover { color: var(--black); }

.btn--card {
  background: transparent;
  color: var(--white-muted);
  border-color: var(--black-border);
  padding: 10px 24px;
  font-size: 0.75rem;
}
.btn--card::before { background: var(--orange); }
.btn--card:hover { color: var(--black); border-color: var(--orange); }

.btn--featured {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  font-weight: 900;
}
.btn--featured::before { background: var(--white); }
.btn--featured:hover { color: var(--black); }

/* ================================
   SECTION HEADER
================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  padding: 6px 16px;
  margin-bottom: 16px;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}
.section-header__title em {
  font-style: italic;
  color: var(--orange);
}

/* ================================
   NAV
================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.96);
  padding: 14px 5%;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo-vbc {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.05em;
}
.nav__logo-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  display: none;
}
@media (min-width: 768px) { .nav__logo-text { display: block; } }

.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color var(--transition-fast);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__sponsors {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.nav__sponsor-logo {
  height: 38px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.nav__sponsor-logo--invert {
  filter: brightness(0) invert(1);
}
.nav__sponsor-logo--color {
  filter: none;
  opacity: 0.92;
}
.nav__sponsor-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 1100px) { .nav__sponsors { display: none; } }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 999;
  }
  .nav__links.open a { font-size: 1.2rem; }
}

/* ================================
   HERO
================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(255,107,0,0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
  max-width: 900px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  animation: fadeUp 1s 0.3s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 40px;
}

.hero__title-line {
  display: block;
  animation: fadeUp 1s both;
}
.hero__title-line:nth-child(1) { animation-delay: 0.4s; }
.hero__title-line:nth-child(2) { animation-delay: 0.55s; }
.hero__title-line:nth-child(3) { animation-delay: 0.7s; }

.hero__title-line--accent {
  color: var(--orange);
  font-style: italic;
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
  text-shadow: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__dates {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 1s 0.85s both;
}
.hero__date-pill {
  padding: 8px 20px;
  border: 1px solid rgba(255,107,0,0.5);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(255,107,0,0.08);
  backdrop-filter: blur(4px);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ================================
   TORNEOS
================================ */
.torneos {
  padding: 120px 5%;
  background: var(--black);
}
.torneos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 2px;
  background: var(--black-border);
}

.torneos__filtros {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.torneos__filtro {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.torneos__filtro:hover {
  border-color: var(--orange);
  color: #fff;
}
.torneos__filtro--active {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}
.torneo-card--hidden {
  display: none !important;
}

.torneo-card {
  background: var(--black-card);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}
.torneo-card:hover { transform: translateY(-4px); }
.torneo-card:hover .torneo-card__img { transform: scale(1.05); }

.torneo-card__img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.torneo-card__img {
  transition: transform 0.6s var(--transition);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.torneo-card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  line-height: 1;
}

.torneo-card__body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.torneo-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,0,0.12);
  padding: 5px 12px;
  width: fit-content;
}
.torneo-card__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
}
.torneo-card__fecha {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,107,0,0.06);
  border-left: 3px solid var(--orange);
}
.torneo-card__fecha-icon { font-size: 1.2rem; }
.torneo-card__fecha strong { display: block; font-size: 0.9rem; color: var(--orange-light); }
.torneo-card__fecha p { font-size: 0.75rem; color: var(--white-faint); margin-top: 2px; }
.torneo-card__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--white-muted);
}
.torneo-card__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--black-border);
  padding-top: 16px;
}
.torneo-card__stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--black-border);
}
.torneo-card__stat:last-child { border-right: none; }
.torneo-card__stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
}
.torneo-card__stat small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-top: 2px;
}

.torneo-card__btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.btn--revista {
  background: transparent;
  color: var(--orange);
  border-color: rgba(255,107,0,0.4);
  padding: 10px 18px;
  font-size: 0.72rem;
}
.btn--revista::before { background: var(--orange); }
.btn--revista:hover { color: var(--black); border-color: var(--orange); }

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

.torneo-card__magazine {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 110px;
  overflow: hidden;
  transform: rotate(6deg) translate(20px, -20px);
  transition: var(--transition);
  opacity: 0.6;
  pointer-events: none;
}
.torneo-card:hover .torneo-card__magazine {
  transform: rotate(3deg) translate(8px, -8px);
  opacity: 0.9;
}

.torneo-card--alt {
  border-top: 3px solid var(--orange);
}

/* ================================
   ALQUERIA BANNER
================================ */
.alqueria-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.alqueria-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}
.alqueria-banner:hover img { transform: scale(1.03); }
.alqueria-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px 5%;
}
.alqueria-banner__overlay span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange-light);
}

/* ================================
   ALQUERIA VIDEO
================================ */
.alqueria-video {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #000;
}
.alqueria-video__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw;
  pointer-events: none;
}
.alqueria-video__wrapper iframe,
.alqueria-video__wrapper > div {
  width: 100%;
  height: 100%;
  border: none;
}
.alqueria-video__blocker {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: default;
  pointer-events: all;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}
.alqueria-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 11;
  display: flex;
  align-items: flex-end;
  padding: 32px 5%;
  pointer-events: none;
}
.alqueria-video__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange-light);
}

/* ================================
   CONTADOR
================================ */
.contador {
  background: var(--orange);
  padding: 60px 5%;
  position: relative;
  overflow: hidden;
}
.contador::before {
  content: 'VBC';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20rem;
  font-weight: 900;
  color: rgba(0,0,0,0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
.contador__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}
.contador__item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 20px;
}
.contador__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--black);
}
.contador__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-top: 4px;
}
.contador__divider {
  width: 1px;
  height: 60px;
  background: rgba(0,0,0,0.2);
}
@media (max-width: 600px) { .contador__divider { display: none; } }

/* ================================
   GALERÍA
================================ */
.galeria {
  padding: 120px 5%;
  background: var(--black-soft);
}

.galeria__filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.galeria__filter {
  padding: 8px 24px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--black-border);
  color: var(--white-faint);
  cursor: pointer;
  transition: var(--transition);
}
.galeria__filter.active,
.galeria__filter:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
}

.galeria__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--black-card);
}
.galeria__item img {
  transition: transform 0.5s var(--transition);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.galeria__item:hover img { transform: scale(1.08); }

.galeria__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,107,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.galeria__item:hover .galeria__item-overlay { opacity: 1; }
.galeria__item-overlay span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}

.galeria__item--wide  { grid-column: span 2; }
.galeria__item--tall  { grid-row: span 2; }

.galeria__item.hidden {
  display: none;
}

@media (max-width: 768px) {
  .galeria__grid { grid-template-columns: repeat(2, 1fr); }
  .galeria__item--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .galeria__grid { grid-template-columns: 1fr; }
  .galeria__item--wide { grid-column: span 1; }
  .galeria__item--tall { grid-row: span 1; }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__inner {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox__inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  width: auto;
  height: auto;
}
.lightbox__caption {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--white-muted);
  letter-spacing: 0.1em;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 8px 16px;
}
.lightbox__close { top: 20px; right: 24px; font-size: 2rem; }
.lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { color: var(--orange); }

/* ================================
   FILM STRIP
================================ */
.filmstrip {
  background: var(--black);
  padding: 40px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.filmstrip::before,
.filmstrip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.filmstrip::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}
.filmstrip::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

.filmstrip__track {
  display: flex;
  width: max-content;
  animation: filmScroll 55s linear infinite;
}
.filmstrip__track--reverse {
  animation: filmScrollReverse 45s linear infinite;
}
.filmstrip__track:hover,
.filmstrip__track--reverse:hover {
  animation-play-state: paused;
}

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

.filmstrip__reel {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.filmstrip__frame {
  width: 220px;
  height: 155px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.filmstrip__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.7) brightness(0.85);
}
.filmstrip__frame:hover img {
  transform: scale(1.08);
  filter: saturate(1.1) brightness(1);
}

/* ================================
   REVISTA
================================ */
/* ================================
   REVISTA
================================ */
.revista-hero {
  position: relative;
  height: 75vh;
  min-height: 520px;
  overflow: hidden;
}
.revista-hero__bg {
  position: absolute;
  inset: 0;
}
.revista-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.revista-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.15) 100%);
}
.revista-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 6% 60px;
  z-index: 1;
}
.revista-hero__tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.revista-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 14px;
}
.revista-hero__title em { color: var(--orange); font-style: italic; }
.revista-hero__sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* strip */
.revista-strip {
  background: var(--orange);
  overflow: hidden;
  padding: 12px 0;
}
.revista-strip__track {
  display: flex;
  white-space: nowrap;
  animation: revistaTicker 24s linear infinite;
}
.revista-strip__track span {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  padding-right: 40px;
}
@keyframes revistaTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ediciones */
.revista-ediciones {
  background: var(--black);
  padding: 80px 5% 100px;
}
.revista-ediciones__header {
  text-align: center;
  margin-bottom: 56px;
}
.revista-ediciones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.revista-ed {
  cursor: pointer;
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.revista-ed:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
}
.revista-ed__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: var(--orange);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.revista-ed__img {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.revista-ed__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
}
.revista-ed:hover .revista-ed__img img { transform: scale(1.05); }
.revista-ed__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.revista-ed__body {
  padding: 24px 24px 20px;
}
.revista-ed__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.revista-ed__tag {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--black);
  padding: 3px 8px;
}
.revista-ed__year {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.revista-ed__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.revista-ed__desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.revista-ed__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  transition: gap 0.3s ease;
}
.revista-ed:hover .revista-ed__cta { gap: 14px; }

/* collage */
.revista-collage {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  grid-template-rows: 260px 260px;
  gap: 4px;
  position: relative;
}
.revista-collage__item { overflow: hidden; }
.revista-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.revista-collage__item:hover img { transform: scale(1.04); }
.revista-collage__item--tall { grid-row: span 2; }
.revista-collage__col { display: flex; flex-direction: column; gap: 4px; }
.revista-collage__col .revista-collage__item { flex: 1; }
.revista-collage__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex;
  align-items: center;
  padding: 5%;
  pointer-events: none;
}
.revista-collage__overlay p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  max-width: 380px;
}

@media (max-width: 900px) {
  .revista-ediciones__grid { grid-template-columns: 1fr; max-width: 480px; }
  .revista-collage { display: none; }
}

/* ================================
   ARTÍCULO NOTICIA
================================ */
.articulo-hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
}
.articulo-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.articulo-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.1) 100%);
}
.articulo-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 8% 60px;
  max-width: 980px;
}
.articulo-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  text-decoration: none;
  transition: gap 0.2s;
}
.articulo-back:hover { gap: 10px; }
.articulo-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.articulo-hero__meta time {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}
.articulo-hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  max-width: 820px;
}

/* decorative orange line under hero */
.articulo-line {
  height: 4px;
  background: var(--orange);
  width: 100%;
}

.articulo-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 5% 100px;
}
.articulo-body { min-width: 0; }
.articulo-lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 36px;
  font-style: italic;
  border-left: 3px solid var(--orange);
  padding-left: 20px;
}
.articulo-body p {
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--white-muted);
  margin-bottom: 22px;
}
.articulo-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 48px 0 18px;
}
.articulo-body h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin-top: 8px;
}
.articulo-cta {
  display: flex;
  gap: 14px;
  margin-top: 52px;
  flex-wrap: wrap;
}

/* sidebar */
.articulo-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.articulo-sidebar__card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  padding: 28px;
  margin-bottom: 20px;
}
.articulo-sidebar__card h4 {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.articulo-sidebar__torneos li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: var(--white-muted);
}
.articulo-sidebar__torneos li:last-child { border-bottom: none; }
.articulo-sidebar__torneos strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.articulo-sidebar__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .articulo-wrapper { grid-template-columns: 1fr; gap: 0; }
  .articulo-sidebar { position: static; margin-top: 48px; }
}

/* ================================
   SELECTOR DE IDIOMA
================================ */
.lang-switcher {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 99999;
}
.lang-switcher__toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(255,107,0,0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
  color: white;
}
.lang-switcher__toggle:hover {
  border-color: var(--orange);
  transform: scale(1.08);
}
.lang-switcher__dropdown {
  position: absolute;
  bottom: 54px;
  right: 0;
  background: rgba(10,10,10,0.97);
  border: 1px solid rgba(255,107,0,0.35);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  min-width: 160px;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.lang-switcher.open .lang-switcher__dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: color 0.15s, background 0.15s;
}
.lang-switcher__btn .ls-flag {
  font-size: 1.1rem;
  line-height: 1;
}
.lang-switcher__btn .ls-name {
  flex: 1;
}
.lang-switcher__btn.active {
  color: var(--orange);
  background: rgba(255,107,0,0.08);
}
.lang-switcher__btn.active::after {
  content: '✓';
  color: var(--orange);
  font-size: 0.7rem;
}
.lang-switcher__btn:not(.active):hover {
  color: white;
  background: rgba(255,255,255,0.06);
}
.lang-switcher__btn + .lang-switcher__btn {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ================================
   PAGOS
================================ */
.pagos {
  padding: 120px 5%;
  background: var(--black-soft);
  position: relative;
}
.pagos__deco-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
}

.pagos__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.pagos__step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 28px 20px;
  background: var(--black-card);
  position: relative;
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}
.pagos__step:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.pagos__step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: var(--orange);
  color: var(--black);
  padding: 4px 10px;
}
.pagos__step-icon {
  font-size: 2.2rem;
  margin: 8px 0 12px;
}
.pagos__step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 8px;
}
.pagos__step p {
  font-size: 0.8rem;
  color: var(--white-faint);
  line-height: 1.6;
}
.pagos__step-arrow {
  display: flex;
  align-items: center;
  color: var(--orange);
  font-size: 1.5rem;
  padding: 0 4px;
  align-self: center;
  margin-top: 8px;
}
@media (max-width: 700px) {
  .pagos__step-arrow { display: none; }
  .pagos__steps { gap: 24px; }
}

.pagos__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2px;
  background: var(--black-border);
  margin-bottom: 60px;
}
.pagos__card {
  background: var(--black-card);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}
.pagos__card:hover { transform: translateY(-6px); }

.pagos__card--featured {
  background: var(--black);
  border: 2px solid var(--orange);
  margin: -8px -2px;
  z-index: 1;
}
.pagos__card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  white-space: nowrap;
}

.pagos__card-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--black-border);
}
.pagos__card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.pagos__card-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pagos__card-fecha {
  font-size: 0.75rem;
  color: var(--white-faint);
  letter-spacing: 0.08em;
}

.pagos__card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.pagos__card-currency {
  font-size: 1.2rem;
  color: var(--orange);
  font-weight: 700;
}
.pagos__card-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.pagos__card-period {
  font-size: 0.8rem;
  color: var(--white-faint);
}

.pagos__card-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pagos__card-features li {
  font-size: 0.82rem;
  color: var(--white-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pagos__card-features li::first-letter { color: var(--orange); }

.pagos__btn { width: 100%; justify-content: center; }

.pagos__metodos {
  text-align: center;
}
.pagos__metodos > p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 20px;
}
.pagos__metodos-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.pagos__metodo {
  padding: 10px 20px;
  border: 1px solid var(--black-border);
  font-size: 0.8rem;
  color: var(--white-muted);
  background: var(--black-card);
  transition: var(--transition);
}
.pagos__metodo:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ================================
   FAQ
================================ */
.faq {
  background: var(--black-soft);
  padding: 100px 5%;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.faq__inner { max-width: 1200px; margin: 0 auto; }
.faq__header { text-align: center; margin-bottom: 64px; }

.faq__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.faq__group { margin-bottom: 48px; }
.faq__group-title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
  padding-bottom: 12px;
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq__q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--orange); }
.faq__item.open .faq__q { color: var(--orange); }

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
}
.faq__item.open .faq__icon { transform: rotate(90deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__item.open .faq__a { max-height: 300px; }
.faq__a p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--white-muted);
  padding-bottom: 20px;
}
.faq__a a {
  color: var(--orange);
  text-decoration: underline;
}
.faq__a strong { color: var(--white); }

@media (max-width: 860px) {
  .faq__cols { grid-template-columns: 1fr; gap: 0; }
}

/* ================================
   SUBSCRIBE BUTTON & MODAL
================================ */
.subscribe-btn {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 99998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  cursor: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,107,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.subscribe-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(255,107,0,0.6);
}

.subscribe-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
}
.subscribe-modal.open { display: block; }

.subscribe-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}

.subscribe-modal__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: min(480px, 90vw);
  max-height: 90vh;
  overflow-y: auto;
}

.subscribe-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--white-faint);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s;
  padding: 10px 12px;
  line-height: 1;
  z-index: 10;
}
.subscribe-modal__close:hover { color: var(--white); }

.subscribe-modal__icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.subscribe-modal__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.subscribe-modal__sub {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.subscribe-modal__list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.subscribe-modal__list li {
  font-size: 0.85rem;
  color: var(--white-muted);
  padding-left: 20px;
  position: relative;
}
.subscribe-modal__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.subscribe-modal__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subscribe-modal__input {
  flex: 1;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.subscribe-modal__input:focus { border-color: var(--orange); }
.subscribe-modal__input::placeholder { color: var(--white-faint); }

.subscribe-modal__submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: auto;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
}
.subscribe-modal__submit:hover { background: var(--orange-dark); transform: translateY(-1px); }

.subscribe-modal__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0;
  cursor: pointer;
}
.subscribe-modal__consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}
.subscribe-modal__consent span {
  font-size: 0.78rem;
  color: var(--white-faint);
  line-height: 1.5;
}
.subscribe-modal__consent span a {
  color: var(--orange);
  text-decoration: underline;
}
.subscribe-modal__legal {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--white-faint);
  line-height: 1.5;
}

.subscribe-modal__success {
  text-align: center;
  padding: 20px 0;
}
.subscribe-modal__success h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 8px;
}
.subscribe-modal__success p {
  font-size: 0.9rem;
  color: var(--white-muted);
}

@media (max-width: 480px) {
  .subscribe-modal__box { padding: 36px 24px; }
}

/* ================================
   CONTACTO
================================ */
.contacto {
  padding: 120px 5%;
  background: var(--black);
}
.contacto__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 768px) {
  .contacto__grid { grid-template-columns: 1fr; gap: 48px; }
}

.contacto__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacto__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacto__field label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-faint);
}
.contacto__field input,
.contacto__field select,
.contacto__field textarea {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
  resize: none;
  -webkit-appearance: none;
}
.contacto__field input:focus,
.contacto__field select:focus,
.contacto__field textarea:focus {
  border-color: var(--orange);
}
.contacto__field select option { background: var(--black-card); }

.contacto__info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contacto__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contacto__info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contacto__info-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.contacto__info-item p {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.7;
}
.contacto__redes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.contacto__red {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-faint);
  border-bottom: 1px solid var(--black-border);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.contacto__red:hover { color: var(--orange); border-color: var(--orange); }

/* ================================
   PATROCINADORES
================================ */
.patrocinadores {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 48px 5%;
}
.patrocinadores__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.patrocinadores__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-faint);
}
.patrocinadores__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.patrocinadores__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), opacity var(--transition);
  opacity: 0.6;
}
.patrocinadores__logo:hover {
  opacity: 1;
  transform: scale(1.08);
}
.patrocinadores__logo img {
  height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ================================
   FOOTER
================================ */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1.6fr 0.9fr 1.3fr;
  gap: 40px;
  padding: 56px 5% 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}
.footer__brand-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: 0.82rem;
  color: var(--white-faint);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__brand-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__brand-link {
  font-size: 0.8rem;
  color: var(--white-muted);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__brand-link::before { content: '→'; color: var(--orange); font-size: 0.75rem; }
.footer__brand-link:hover { color: var(--orange); }

.footer__col h5 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col li,
.footer__col a {
  font-size: 0.82rem;
  color: var(--white-faint);
  transition: color var(--transition-fast);
}
.footer__col a:hover { color: var(--orange); }

.footer__news-item { margin-bottom: 16px; }
.footer__news-date {
  font-size: 0.68rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__news-title {
  font-size: 0.8rem;
  color: var(--white-muted);
  line-height: 1.4;
  font-weight: 600;
  transition: color var(--transition-fast);
}
.footer__news-item a:hover .footer__news-title { color: var(--orange); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--white-muted);
  margin-bottom: 12px;
}
.footer__contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--orange);
  flex-shrink: 0;
}
.footer__contact-item a { color: var(--white-muted); transition: color var(--transition-fast); }
.footer__contact-item a:hover { color: var(--orange); }

/* legacy selectors kept for compat */
.footer__torneos h5, .footer__links h5 {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.footer__torneos ul, .footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__torneos li, .footer__links li, .footer__links a {
  font-size: 0.82rem; color: var(--white-faint); transition: color var(--transition-fast);
}
.footer__links a:hover { color: var(--orange); }

.footer__bottom {
  padding: 20px 5%;
  border-top: 1px solid var(--black-border);
  text-align: center;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: var(--white-faint);
  letter-spacing: 0.08em;
}

/* ================================
   HERO DATE PILLS — clicables
================================ */
button.hero__date-pill {
  background: none;
  font-family: var(--font-body);
  cursor: pointer;
}
button.hero__date-pill:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
  transform: translateY(-2px);
}

/* ================================
   PDF MODAL
================================ */
.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pdf-modal.open {
  opacity: 1;
  pointer-events: all;
}
.pdf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
}
.pdf-modal__box {
  position: relative;
  width: 90vw;
  height: 90vh;
  max-width: 1000px;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--orange);
  box-shadow: 0 0 60px rgba(255,107,0,0.2);
}
.pdf-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: var(--orange);
  color: var(--black);
  border: none;
  font-size: 1.1rem;
  font-weight: 900;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.pdf-modal__close:hover { background: var(--white); }
.pdf-modal__frame {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .torneos__grid { grid-template-columns: 1fr; }
  .pagos__cards { grid-template-columns: 1fr; }
  .pagos__card--featured { margin: 0; }
}

/* ================================
   MOBILE GLOBAL ADJUSTMENTS
================================ */
@media (max-width: 768px) {
  /* Reduce section padding */
  .torneos,
  .galeria,
  .contacto,
  .pagos,
  .noticias,
  .home-torneos {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .faq { padding: 60px 5%; }
  .patrocinadores { padding: 32px 5%; }

  /* Page hero */
  .page-hero { padding: 120px 5% 48px; }

  /* Buttons: full width on very small screens */
  .btn { padding: 12px 24px; }
}

@media (max-width: 480px) {
  /* Section padding tighter */
  .torneos,
  .galeria,
  .contacto,
  .pagos,
  .noticias,
  .home-torneos {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 4%;
    padding-right: 4%;
  }

  .faq { padding: 48px 4%; }
  .patrocinadores { padding: 24px 4%; }
  .section-header { margin-bottom: 36px; }

  /* Torneos grid: ensure cards don't overflow */
  .torneos__grid { grid-template-columns: 1fr; }
  .home-torneos__grid { grid-template-columns: 1fr; }

  /* Article layout */
  .articulo-wrapper { padding: 40px 4% 60px; }
  .noticia-card--featured .noticia-card__body { padding: 24px 20px; }

  /* Pagos steps */
  .pagos__steps { flex-direction: column; gap: 32px; }
  .pagos__step { min-width: unset; width: 100%; }

  /* Sponsor logos: smaller on mobile */
  .patrocinadores__logo img { height: 36px; max-width: 100px; }
  .patrocinadores__logos { gap: 24px; }

  /* Subscribe button + lang switcher: prevent overlap */
  .subscribe-btn { bottom: 80px; right: 12px; }
  .lang-switcher { bottom: 14px; right: 12px; }
  .lang-switcher__toggle { width: 40px; height: 40px; font-size: 1.1rem; }
  .lang-switcher__dropdown { min-width: 150px; }

  /* Hero adjustments */
  .hero__content { padding: 0 4%; }
  .hero__title { margin-bottom: 24px; }

  /* Nav logo */
  .nav { padding: 16px 4%; }

  /* Footer */
  .footer__inner { padding: 40px 4% 32px; gap: 24px; }
}

/* Torneos card min-width fix for small screens */
@media (max-width: 400px) {
  .torneos__grid { grid-template-columns: 1fr; }
}

/* ================================
   NAV ACTIVE LINK
================================ */
.nav__links a.nav__active {
  color: var(--orange);
}
.nav__links a.nav__active::after {
  width: 100%;
}

/* ================================
   PAGE HERO (cabecera páginas interiores)
================================ */
.page-hero {
  padding: 160px 5% 80px;
  background: var(--black);
  border-bottom: 3px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(255,107,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__content {
  position: relative;
  max-width: 900px;
}
.page-hero__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  padding: 6px 16px;
  margin-bottom: 20px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
}
.page-hero__title em {
  font-style: italic;
  color: var(--orange);
}

/* ================================
   HOME TORNEOS (cards en index)
================================ */
.home-torneos {
  padding: 100px 5%;
  background: var(--black-soft);
}
.home-torneos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--black-border);
}
@media (max-width: 900px) {
  .home-torneos__grid { grid-template-columns: 1fr; }
}

.home-torneo-card {
  display: flex;
  flex-direction: column;
  background: var(--black-card);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition);
}
.home-torneo-card:hover { transform: translateY(-4px); }

.home-torneo-card__img {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.home-torneo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.home-torneo-card:hover .home-torneo-card__img img {
  transform: scale(1.06);
}
.home-torneo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 55%);
}

.home-torneo-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.home-torneo-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,0,0.12);
  padding: 5px 12px;
  width: fit-content;
}
.home-torneo-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
.home-torneo-card__fecha {
  font-size: 0.8rem;
  color: var(--white-faint);
  letter-spacing: 0.08em;
}
.home-torneo-card__cta {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  border-top: 1px solid var(--black-border);
  transition: letter-spacing var(--transition-fast);
}
.home-torneo-card:hover .home-torneo-card__cta {
  letter-spacing: 0.2em;
}

/* ================================
   TORNEOS page padding adjustment
================================ */
.torneos {
  padding: 80px 5% 120px;
}

/* ================================
   GALERIA page padding adjustment
================================ */
.galeria {
  padding: 80px 5% 120px;
}

/* ================================
   NOTICIAS
================================ */
.noticias {
  padding: 80px 5% 100px;
  background: var(--black);
}

.noticia-card {
  background: var(--black-card);
  overflow: hidden;
  transition: transform var(--transition);
}
.noticia-card:hover { transform: translateY(-4px); }

/* NOTICIA DESTACADA */
.noticia-card--featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  margin-bottom: 4px;
  background: var(--black-card);
  border-left: 4px solid var(--orange);
}
@media (max-width: 900px) {
  .noticia-card--featured { grid-template-columns: 1fr; }
}

.noticia-card--featured .noticia-card__img {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.noticia-card--featured .noticia-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.noticia-card--featured:hover .noticia-card__img img {
  transform: scale(1.04);
}

.noticia-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(22,22,22,0.6) 100%);
}
@media (max-width: 900px) {
  .noticia-card--featured .noticia-card__img { min-height: 300px; }
  .noticia-card__img-overlay {
    background: linear-gradient(to top, rgba(22,22,22,0.7) 0%, transparent 60%);
  }
}

.noticia-card--featured .noticia-card__body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.noticia-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.noticia-card__cat {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 4px 12px;
  color: var(--black);
}
.noticia-card__cat--vbc { background: var(--orange); }
.noticia-card__cat--vic { background: var(--orange-light); }
.noticia-card__cat--vsc { background: var(--gold); }

.noticia-card__fecha {
  font-size: 0.72rem;
  color: var(--white-faint);
  letter-spacing: 0.1em;
}

.noticia-card--featured .noticia-card__titulo {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.noticia-card--featured .noticia-card__extracto {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--white-muted);
}

.noticia-card__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  transition: letter-spacing var(--transition-fast);
}
.noticia-card__link:hover { letter-spacing: 0.2em; }

/* GRID DE NOTICIAS SECUNDARIAS */
.noticias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--black-border);
}
@media (max-width: 1024px) {
  .noticias__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .noticias__grid { grid-template-columns: 1fr; }
}

.noticias__grid .noticia-card {
  display: flex;
  flex-direction: column;
}

.noticias__grid .noticia-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.noticias__grid .noticia-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}
.noticias__grid .noticia-card:hover .noticia-card__img img {
  transform: scale(1.07);
}
.noticias__grid .noticia-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 50%);
}

.noticias__grid .noticia-card__body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.noticias__grid .noticia-card__titulo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}

.noticias__grid .noticia-card__extracto {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--white-muted);
  flex: 1;
}

.noticias__grid .noticia-card__link {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--black-border);
}

/* ================================
   SLIDESHOWS ANIMADOS
================================ */
.slideshows {
  padding: 100px 8% 80px;
  background: var(--black);
}
.slideshows__header {
  text-align: center;
  margin-bottom: 64px;
}
.slideshows__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.slideshows__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.slideshows__title em {
  color: var(--orange);
  font-style: italic;
}

.slideshow-block {
  max-width: 960px;
  margin: 0 auto 64px;
}
.slideshow-block__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black-soft);
}
.slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slideshow__slide.active {
  opacity: 1;
}
.slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 8s ease-in-out infinite alternate;
}
.slideshow__slide.active img {
  animation: kenburns 8s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1)    translateX(0)    translateY(0); }
  25%  { transform: scale(1.06) translateX(-1%)  translateY(-1%); }
  50%  { transform: scale(1.04) translateX(1%)   translateY(0.5%); }
  75%  { transform: scale(1.08) translateX(-0.5%) translateY(1%); }
  100% { transform: scale(1.05) translateX(0.5%) translateY(-0.5%); }
}

.slideshow__prev,
.slideshow__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
  line-height: 1;
  padding: 0;
}
.slideshow__prev { left: 14px; }
.slideshow__next { right: 14px; }
.slideshow__prev:hover,
.slideshow__next:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.slideshow__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slideshow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.slideshow__dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .slideshows { padding: 60px 5% 48px; }
  .slideshow__prev,
  .slideshow__next { width: 36px; height: 36px; font-size: 1.4rem; }
}

/* ================================
   INSTALACIONES
================================ */
.instalaciones {
  padding: 100px 8%;
  background: #080808;
}
.instalaciones__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.instalaciones__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin: 14px 0 22px;
}
.instalaciones__title em { color: var(--orange); font-style: italic; }
.instalaciones__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--white-faint);
  line-height: 1.8;
  margin-bottom: 28px;
}
.instalaciones__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.instalaciones__list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--white);
  padding-left: 24px;
  position: relative;
}
.instalaciones__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}
.instalaciones__cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 3px;
  transition: opacity 0.2s;
}
.instalaciones__cta:hover { opacity: 0.7; }
.instalaciones__video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.instalaciones__video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
.instalaciones__video-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ================================
   MAPA MUNDIAL
================================ */
.worldmap-section {
  padding: 100px 8% 60px;
  background: var(--black-soft);
}
.section-header__sub {
  font-size: 1rem;
  color: var(--white-muted);
  margin-top: 12px;
}
.worldmap-wrap {
  margin-top: 48px;
}
#worldMapChart {
  width: 100%;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  background: #0a0a0a;
}
.worldmap-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}
.worldmap-country {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
.worldmap-flag { font-size: 1rem; }

/* ================================
   TESTIMONIOS
================================ */
.testimonios {
  padding: 100px 8%;
  background: var(--black);
}
.testimonios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px,100%), 1fr));
  gap: 24px;
  margin-top: 56px;
}
.testimonio-card {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 36px 32px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonio-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.testimonio-card--accent {
  background: var(--orange);
  border-color: var(--orange);
}
.testimonio-card--accent .testimonio-card__text,
.testimonio-card--accent .testimonio-card__name,
.testimonio-card--accent .testimonio-card__club { color: #fff; }
.testimonio-card--accent .testimonio-card__quote { color: rgba(255,255,255,0.3); }
.testimonio-card__quote {
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  font-family: var(--font-display);
  position: absolute;
  top: 12px;
  left: 28px;
  opacity: 0.4;
}
.testimonio-card__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--white-muted);
  margin-bottom: 28px;
  padding-top: 20px;
}
.testimonio-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonio-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonio-card--accent .testimonio-card__avatar {
  background: rgba(255,255,255,0.25);
}
.testimonio-card__name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}
.testimonio-card__club {
  font-size: 0.75rem;
  color: var(--white-muted);
  margin-top: 2px;
}

/* ================================
   CHATBOT
================================ */
.chatbot {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.chatbot__toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(255,107,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.chatbot__toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(255,107,0,0.65);
}
.chatbot__window {
  width: 320px;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: none;
  flex-direction: column;
}
.chatbot__window.active { display: flex; }
.chatbot__header {
  background: var(--orange);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot__header-info { display: flex; align-items: center; gap: 12px; }
.chatbot__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 900; color: #fff; letter-spacing: 0.05em;
}
.chatbot__name { font-weight: 700; font-size: 0.85rem; color: #fff; }
.chatbot__status { font-size: 0.7rem; color: rgba(255,255,255,0.8); margin-top: 1px; }
.chatbot__close {
  background: none; border: none; color: #fff;
  font-size: 1rem; cursor: pointer; opacity: 0.8;
  padding: 4px;
}
.chatbot__close:hover { opacity: 1; }
.chatbot__messages {
  flex: 1;
  max-height: 300px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chatbot__msg { display: flex; max-width: 88%; }
.chatbot__msg--bot { align-self: flex-start; }
.chatbot__msg--user { align-self: flex-end; }
.chatbot__msg span {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.6;
}
.chatbot__msg--bot span {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-radius: 4px 12px 12px 12px;
}
.chatbot__msg--user span {
  background: var(--orange);
  color: #fff;
  border-radius: 12px 4px 12px 12px;
}
.chatbot__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.chatbot__chip {
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.74rem;
  color: var(--orange-light);
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.chatbot__chip:hover { background: rgba(255,107,0,0.25); }
.chatbot__input-wrap {
  display: flex;
  border-top: 1px solid var(--black-border);
  padding: 10px 12px;
  gap: 8px;
}
.chatbot__input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-family: var(--font-body);
  outline: none;
}
.chatbot__input::placeholder { color: var(--white-muted); }
.chatbot__send {
  background: var(--orange);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  cursor: pointer;
  color: #fff;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.chatbot__send:hover { background: var(--orange-dark); }
@media (max-width: 480px) {
  .chatbot { bottom: 80px; left: 12px; }
  .chatbot__window { width: calc(100vw - 24px); }
  #worldMapChart { height: 260px; }
  .worldmap-section, .testimonios { padding: 60px 5% 48px; }
  .instalaciones { padding: 64px 5%; }
  .instalaciones__inner { grid-template-columns: 1fr; gap: 40px; }
  .instalaciones__video { order: -1; }
}

/* ================================
   PÁGINA INSTALACIONES
================================ */
.inst-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inst-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inst-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}
.inst-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.inst-hero__tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.inst-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.inst-hero__title em { color: var(--orange); font-style: italic; }
.inst-hero__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
}

.inst-intro {
  padding: 100px 8%;
  background: #080808;
}
.inst-intro--alt {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.inst-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.inst-intro__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin: 14px 0 22px;
}
.inst-intro__title em { color: var(--orange); font-style: italic; }
.inst-intro__text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--white-faint);
  line-height: 1.8;
  margin-bottom: 16px;
}
.inst-intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.inst-stat {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.inst-stat__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}
.inst-stat__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-faint);
}

.inst-galeria {
  padding: 0 8% 80px;
  background: #080808;
}
.inst-galeria--alt {
  background: #0d0d0d;
  padding-bottom: 0;
}
.inst-galeria__grid.inst-galeria__grid--three {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 360px;
  grid-auto-rows: 0;
}
.inst-galeria__grid.inst-galeria__grid--three .inst-galeria__item--big { grid-row: auto; }
.inst-galeria__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}
.inst-galeria__item { overflow: hidden; }
.inst-galeria__item--big { grid-row: 1 / 3; }
.inst-galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.inst-galeria__item:hover img { transform: scale(1.05); }

.inst-features {
  padding: 100px 8%;
  background: #0a0a0a;
}
.inst-features__header {
  text-align: center;
  margin-bottom: 64px;
}
.inst-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.inst-feature {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.inst-feature:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.inst-feature__icon {
  font-size: 36px;
  margin-bottom: 20px;
}
.inst-feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.inst-feature p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--white-faint);
  line-height: 1.7;
}

.inst-cta {
  padding: 120px 8%;
  background: var(--orange);
  text-align: center;
}
.inst-cta__inner { max-width: 700px; margin: 0 auto; }
.inst-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.inst-cta__title em { font-style: italic; color: #000; }
.inst-cta .inst-cta__inner p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}
.inst-cta .btn--hero {
  background: #000;
  color: var(--white);
  border-color: #000;
}
.inst-cta .btn--hero:hover { background: #222; }

@media (max-width: 900px) {
  .inst-intro__inner { grid-template-columns: 1fr; gap: 48px; }
  .inst-features__grid { grid-template-columns: 1fr 1fr; }
  .inst-galeria__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .inst-galeria__item--big { grid-row: auto; grid-column: 1 / 3; }
  .inst-galeria__grid--three { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
}
@media (max-width: 600px) {
  .inst-features__grid { grid-template-columns: 1fr; }
  .inst-galeria__grid { grid-template-columns: 1fr; }
  .inst-galeria__item--big { grid-column: auto; }
  .inst-galeria__grid--three { grid-template-columns: 1fr; grid-template-rows: auto; }
  .inst-intro__stats { grid-template-columns: 1fr 1fr; }
}

/* ================================
   COOKIE BANNER
================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: calc(100% - 48px);
  max-width: 760px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.cookie-banner.visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-banner__text {
  flex: 1;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.cookie-banner__text a { color: var(--orange); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner__accept {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-banner__accept:hover { background: var(--orange-dark); }
.cookie-banner__reject {
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.cookie-banner__reject:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.35); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; bottom: 16px; width: calc(100% - 32px); }
  .cookie-banner__btns { width: 100%; }
  .cookie-banner__accept, .cookie-banner__reject { flex: 1; text-align: center; }
}
