/* ==========================================================================
   custom.css — Sistema de diseño FC 26 · Acer Champions Argentina
   Dirección visual: esports / industrial oscuro con acento rojo de alto contraste.
   Tipografía global: Druk (condensada display). Título hero "BENITO": Twin Marker.
   Iconos outline animados · subtítulos rojos con shine en loop.
   ========================================================================== */

/* ---- Fuentes locales: Druk Family (Trial) + Twin Marker ---- */
@font-face { font-family:'Druk'; src:url('../fonts/Druk-Medium.otf') format('opentype'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Druk'; src:url('../fonts/Druk-MediumItalic.otf') format('opentype'); font-weight:500; font-style:italic; font-display:swap; }
@font-face { font-family:'Druk'; src:url('../fonts/Druk-Bold.otf') format('opentype'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Druk'; src:url('../fonts/Druk-BoldItalic.otf') format('opentype'); font-weight:700; font-style:italic; font-display:swap; }
@font-face { font-family:'Druk'; src:url('../fonts/Druk-Heavy.otf') format('opentype'); font-weight:800; font-style:normal; font-display:swap; }
@font-face { font-family:'Druk'; src:url('../fonts/Druk-HeavyItalic.otf') format('opentype'); font-weight:800; font-style:italic; font-display:swap; }
@font-face { font-family:'Druk'; src:url('../fonts/Druk-Super.otf') format('opentype'); font-weight:900; font-style:normal; font-display:swap; }
@font-face { font-family:'Druk'; src:url('../fonts/Druk-SuperItalic.otf') format('opentype'); font-weight:900; font-style:italic; font-display:swap; }
@font-face { font-family:'TwinMarker'; src:url('../fonts/TwinMarker.ttf') format('truetype'); font-weight:400; font-style:normal; font-display:swap; }

:root {
  /* Acento primario: cian (#47cfff). Reemplaza al rojo original en TODO el sitio. */
  --fc-accent: #47cfff;          /* acento primario */
  --fc-accent-2: #7bdcff;        /* acento claro para degradados/hover */
  --fc-accent-deep: #1f9fd6;     /* acento profundo */
  --fc-cyan: #10bef0;            /* acento secundario frío */

  /* Botones (CTA): dorado (#efbb67) — color propio, independiente del acento. */
  --fc-btn: #efbb67;             /* dorado base */
  --fc-btn-2: #f6cf8e;           /* dorado claro */
  --fc-btn-deep: #d99c3f;        /* dorado profundo (degradado) */
  --fc-btn-ink: #2a1d05;         /* texto sobre dorado (contraste AA) */

  /* Sobrescribe el rojo del template (main.css usa --tg-theme-primary en todo) */
  --tg-theme-primary: var(--fc-accent);
  --fc-ink: #0a0a0a;             /* fondo profundo */
  --fc-surface: rgba(255, 255, 255, 0.04);
  --fc-surface-2: rgba(255, 255, 255, 0.07);
  --fc-border: rgba(255, 255, 255, 0.10);
  --fc-border-strong: rgba(255, 255, 255, 0.18);
  --fc-radius: 16px;
  --fc-font: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif; /* TODO el sitio (estilo EA SPORTS FC) */
  --fc-font-title: 'Archivo', system-ui, sans-serif;                       /* títulos = misma familia, más peso */
  --fc-font-twin: 'TwinMarker', 'Archivo', cursive;                        /* "BENITO" (pieza de marca) */
  --fc-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   1. TIPOGRAFÍA — Archivo (grotesca moderna estilo EA SPORTS FC) en TODO:
   títulos, subtítulos y cuerpo, una sola familia con proporción coherente.
   Soporta acentos y @. "BENITO" del hero queda en Twin Marker.
   ========================================================================== */
:root {
  --tg-body-font-family: var(--fc-font);
  --tg-heading-font-family: var(--fc-font);
  --tg-berlin-font-family: var(--fc-font);
}
body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, label, input, textarea, select, button,
.title, .sub-title, .name, .designation, .count,
.navigation a, .tg-btn-1, .fc-btn, .submit-btn,
.accordion-button, .format__title, .rules__title,
.schedule__time, .schedule__name, .countdown__num,
.contact__content .title, .footer-widget .fw-title {
  font-family: var(--fc-font) !important;
}
/* Cuerpo */
body, p, li, label, input, textarea, select, .accordion-body, .rules__list li, .format__card p {
  font-weight: 400;
}

/* Jerarquía */
.section__title .title { font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.section__title .sub-title { font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; }

/* ---- TÍTULO HERO: "LA REVANCHA DE" (Archivo) + "BENITO" (Twin Marker) ---- */
.slider__content .sub-title {
  display: block;
  font-family: var(--fc-font) !important;
  font-weight: 800;
  font-size: clamp(34px, 5.2vw, 72px);
  letter-spacing: -.5px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: .95;
}
.slider__content .title { font-family: var(--fc-font-twin) !important; }
.slider__content .title {
  font-family: var(--fc-font-twin) !important;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  line-height: .9;
  text-transform: none;
}
.slider__content .title .twin-sdr {
  font-family: var(--fc-font-twin) !important;
  font-size: .4em;
  vertical-align: super;
  margin-left: .05em;
  color: var(--fc-accent);
}

/* ---- Subtítulos rojos de sección: el brillo de aparición se repite en LOOP ----
   Reutilizamos la idea del template (glow rojo al revelar) pero en bucle,
   manteniendo el texto siempre legible. Respeta el delay por letra si existe. */
.section__title .sub-title { color: var(--fc-accent); }
.section__title .sub-title span {
  animation-name: fc-neon !important;
  animation-duration: 2.8s !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  animation-fill-mode: both !important;
}
@keyframes fc-neon {
  0%, 100% { opacity: .82; text-shadow: 0 0 0 rgba(71, 207, 255, 0); }
  50%      { opacity: 1;   text-shadow: 0 0 22px var(--tg-theme-primary); }
}

/* Override de rojos hardcodeados del template (main.css) que no usan variable */
.services__link { background: var(--fc-accent) !important; }
.team__info-discord .about__content-circle > i { color: var(--fc-accent) !important; }

/* ==========================================================================
   2. HEADER STICKY — queda fijo al hacer scroll (en ambas direcciones)
   El template lo ocultaba al bajar; lo forzamos a permanecer visible.
   ========================================================================== */
.tg-header__area.tg-sticky-menu,
.tg-header__area.tg-sticky-menu.sticky-menu__show {
  transform: none !important;
  opacity: 1 !important;
  background: rgba(8, 8, 8, 0.88) !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--fc-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  padding: 14px 0 !important;
}
.tg-header__area.tg-sticky-menu .logo img { max-height: 46px; width: auto; }

/* ---- LAYOUT DEL HEADER — menú centrado de verdad ----
   3 columnas: logo (izq, alineado con el título del hero) · menú (centro) · botón (der).
   Las columnas laterales con el mismo flex hacen que el menú quede centrado exacto. */
.tgmenu__nav { justify-content: space-between; }
.tgmenu__nav > .logo {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: flex-start;   /* logo pegado al borde izquierdo, alineado con el título */
}
.tgmenu__nav > .tgmenu__navbar-wrap.tgmenu__main-menu {
  flex: 0 1 auto;
  justify-content: center;       /* el menú se centra en el header */
}
/* El template empuja la lista con margin-left:122px → la anulamos para que quede centrada */
.tgmenu__nav > .tgmenu__navbar-wrap .navigation { justify-content: center; margin-left: 0 !important; margin-right: 0 !important; }
.tgmenu__nav > .tgmenu__action {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;     /* botón pegado al borde derecho */
}
/* Elimina la barrita oscura (separador) que el template pone antes del botón */
.tgmenu__action .header-btn::before { display: none !important; }

/* ---- HERO — logo Champions Argentina (col derecha) centrado verticalmente,
   a la altura del título "BENITO SDR" en vez de pegado arriba. ---- */
.slider__area .col-xxl-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- HERO — más aire entre elementos y "LA REVANCHA" más arriba
   (el contenido se sentía muy junto dentro del container). ---- */
.slider__content { margin-top: 70px; }              /* sube el bloque (template: 135px) */
.slider__content .sub-title { margin-bottom: 4px; } /* leve separación REVANCHA → BENITO */
.slider__content .title { margin-bottom: 28px; }    /* más aire debajo de BENITO */
.slider__content > p { margin-top: 18px; margin-bottom: 0; } /* respira el párrafo */
.slider__content .slider__btn { margin-top: 56px; } /* mucho más espacio sobre el botón */

/* ---- SECCIÓN "DEMOSTRÁ TU NIVEL" — countdown reubicado y centrado ---- */
.nft-item__area .countdown__wrap { margin: 0 0 55px; }
.nft-item__area .countdown { justify-content: center; }
.nft-item__area .countdown__heading { display: block; margin-bottom: 14px; }

/* ---- CARD INSCRIPCIÓN — "INSCRIBITE" y "ARG" estaban pegados (0px) ---- */
.nft-item__price { justify-content: space-between; gap: 18px; }

/* ---- ROADMAP ("El camino al título") — logo Champions más abajo,
   centrado verticalmente con la columna de fases de la derecha.
   Solo en desktop (en móvil las columnas se apilan). ---- */
@media (min-width: 1200px) {
  #roadmap .col-xl-5 { display: flex; flex-direction: column; }
  #roadmap .roadMap__content { margin-bottom: -130px; } /* reduce su huella para que el logo suba al centro de las fases */
  #roadmap .roadMap__img { margin-top: auto; margin-bottom: auto; }
}

/* ==========================================================================
   3. BOTONES PROFESIONALES — .fc-btn (forma esports recortada + brillo)
   ========================================================================== */
.fc-btn {
  --b: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  font-family: var(--fc-font);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--fc-btn-ink);
  background: linear-gradient(120deg, var(--fc-btn) 0%, var(--fc-btn-deep) 100%);
  border: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  box-shadow: 0 10px 24px rgba(239, 187, 103, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform .35s var(--fc-ease), box-shadow .35s var(--fc-ease);
}
.fc-btn::before {                 /* brillo diagonal que cruza al hover */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform .6s var(--fc-ease);
}
.fc-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(239, 187, 103, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  color: var(--fc-btn-ink);
}
.fc-btn:hover::before { transform: translateX(120%); }
.fc-btn:active { transform: translateY(-1px) scale(.99); }
.fc-btn i { font-size: 14px; transition: transform .35s var(--fc-ease); }
.fc-btn:hover i { transform: translateX(5px); }
.fc-btn:focus-visible { outline: 2px solid var(--fc-cyan); outline-offset: 3px; }

/* Variante secundaria (contorno) */
.fc-btn--ghost {
  background: transparent;
  color: var(--fc-btn);
  box-shadow: inset 0 0 0 2px var(--fc-btn);
}
.fc-btn--ghost:hover { background: var(--fc-btn); color: var(--fc-btn-ink); box-shadow: 0 14px 30px rgba(239, 187, 103, .4); }

/* Botón del header un poco más compacto */
.header-btn .fc-btn { padding: 12px 26px; font-size: 13px; }

/* Botón "Inscribirme" (submit del formulario) con el mismo lenguaje */
.contact__form-wrap .submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px !important;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--fc-btn-ink) !important;
  background: linear-gradient(120deg, var(--fc-btn), var(--fc-btn-deep)) !important;
  border: none !important;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  box-shadow: 0 10px 24px rgba(239, 187, 103, .32);
  transition: transform .35s var(--fc-ease), box-shadow .35s var(--fc-ease);
}
.contact__form-wrap .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(239, 187, 103, .5);
}

/* ==========================================================================
   4. COUNTDOWN (hero)
   ========================================================================== */
.countdown__heading {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fc-cyan);
}
.countdown__live {
  display: inline-block;
  margin: 26px 0 30px;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, var(--fc-accent), var(--fc-accent-deep));
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 30px;
}
.countdown__item {
  position: relative;
  min-width: 80px;
  padding: 16px 12px;
  text-align: center;
  background: var(--fc-surface-2);
  border: 1px solid var(--fc-border);
  border-top: 2px solid var(--fc-accent);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.countdown__num {
  display: block;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fc-cyan);
}

/* ==========================================================================
   5. SECCIÓN FORMATO — tarjetas con iconos animados
   ========================================================================== */
.format__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.format__card {
  position: relative;
  padding: 34px 26px;
  background: linear-gradient(180deg, var(--fc-surface-2), var(--fc-surface));
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius);
  overflow: hidden;
  transition: transform .4s var(--fc-ease), border-color .4s var(--fc-ease);
}
.format__card::after {            /* resplandor superior al hover */
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  width: 140%;
  height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(71, 207, 255, 0.25), transparent);
  opacity: 0;
  transition: opacity .4s var(--fc-ease);
  pointer-events: none;
}
.format__card:hover {
  transform: translateY(-8px);
  border-color: var(--fc-accent);
}
.format__card:hover::after { opacity: 1; }
/* Iconos OUTLINE (sin fondo) con flotación continua y relleno al hover */
.format__icon {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--fc-accent);
  background: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  animation: fc-float 3s ease-in-out infinite;
  transition: -webkit-text-stroke .4s var(--fc-ease), color .4s var(--fc-ease),
              transform .45s var(--fc-ease), filter .4s var(--fc-ease);
}
.format__card:hover .format__icon {
  color: var(--fc-accent);
  -webkit-text-stroke-width: 0;
  transform: translateY(-6px) rotate(-6deg) scale(1.12);
  filter: drop-shadow(0 8px 18px rgba(71, 207, 255, 0.6));
}
.format__title { font-size: 21px; margin-bottom: 10px; color: #fff; font-weight: 900; text-transform: uppercase; }
.format__card p { margin: 0; opacity: .85; line-height: 1.6; }

@keyframes fc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ==========================================================================
   6. CRONOGRAMA
   ========================================================================== */
.schedule__list { display: flex; flex-direction: column; gap: 14px; }
.schedule__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  background: linear-gradient(180deg, var(--fc-surface-2), var(--fc-surface));
  border: 1px solid var(--fc-border);
  border-left: 4px solid var(--fc-cyan);
  border-radius: var(--fc-radius);
  transition: transform .3s var(--fc-ease), background .3s var(--fc-ease), border-color .3s var(--fc-ease);
}
.schedule__list li:hover {
  transform: translateX(8px);
  background: var(--fc-surface-2);
  border-color: var(--fc-border-strong);
  border-left-color: var(--fc-cyan);
}
/* Filas destacadas (Best of 3 · En vivo) en DORADO para diferenciarlas */
.schedule__list li.schedule--highlight { border-left-color: var(--fc-btn); }
.schedule__list li.schedule--highlight:hover { border-left-color: var(--fc-btn); }
.schedule__time {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  min-width: 90px;
  font-variant-numeric: tabular-nums;
}
.schedule__name { font-size: 19px; font-weight: 700; color: #fff; flex: 1; }
.schedule__tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(16, 190, 240, 0.12);
  color: var(--fc-cyan);
  white-space: nowrap;
}
.schedule--highlight .schedule__tag {
  background: rgba(239, 187, 103, 0.16);
  color: var(--fc-btn);
}

/* ==========================================================================
   7. REGLAS CLAVE — iconos animados al hover
   ========================================================================== */
.rules__box {
  height: 100%;
  padding: 30px 28px;
  margin-bottom: 24px;
  background: linear-gradient(180deg, var(--fc-surface-2), var(--fc-surface));
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius);
  transition: border-color .35s var(--fc-ease), transform .35s var(--fc-ease);
}
.rules__box:hover { border-color: var(--fc-cyan); transform: translateY(-6px); }
.rules__title {
  font-size: 21px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Icono outline (sin fondo): contorno con stroke, se rellena al hover */
.rules__title i {
  font-size: 26px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--fc-accent);
  background: none;
  transition: -webkit-text-stroke .4s var(--fc-ease), color .4s var(--fc-ease), transform .4s var(--fc-ease), filter .4s var(--fc-ease);
}
.rules__box:hover .rules__title i {
  color: var(--fc-accent);
  -webkit-text-stroke-width: 0;
  transform: rotate(-8deg) scale(1.15);
  filter: drop-shadow(0 6px 14px rgba(71, 207, 255, 0.5));
}
.rules__list { display: flex; flex-direction: column; gap: 11px; }
.rules__list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
  opacity: .88;
}
.rules__list li::before {
  content: "\f054";                /* chevron-right FontAwesome */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 4px;
  top: 1px;
  font-size: 11px;
  color: var(--fc-cyan);
}

/* ==========================================================================
   8. ICONOS SOCIALES (header móvil / footer) — micro-animación
   ========================================================================== */
.social-links .list-wrap a,
.footer-social a {
  transition: transform .3s var(--fc-ease), color .3s var(--fc-ease);
  display: inline-flex;
}
.social-links .list-wrap a:hover,
.footer-social a:hover { transform: translateY(-4px) scale(1.12); color: var(--fc-accent); }

/* ==========================================================================
   9. FORM CHECKS (inscripción)
   ========================================================================== */
.form-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 4px;
  padding: 18px 20px;
  background: var(--fc-surface);
  border: 1px solid var(--fc-border);
  border-radius: 12px;
}
.form-check-line {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  cursor: pointer;
  line-height: 1.45;
}
.form-check-line input[type="checkbox"] {
  margin-top: .25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--fc-accent);
  flex: 0 0 auto;
}
.ajax-response { margin-top: 14px; font-weight: 600; }
.ajax-response.success { color: #29d07f; }
.ajax-response.error { color: var(--fc-accent-2); }

/* ==========================================================================
   10. RESPONSIVE
   ========================================================================== */
@media (max-width: 1199px) {
  .format__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .format__grid { grid-template-columns: 1fr; }
  .countdown__item { min-width: 66px; padding: 12px 8px; }
  .countdown__num { font-size: 30px; }
  .schedule__list li { flex-wrap: wrap; gap: 10px; padding: 16px 18px; }
  .schedule__name { flex: 1 1 100%; order: 3; }
  .fc-btn { padding: 14px 26px; font-size: 14px; }
}

/* ==========================================================================
   11. ACCESIBILIDAD — respeta reduced-motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .format__card, .schedule__list li, .rules__box,
  .format__icon, .rules__title i, .fc-btn, .fc-btn::before,
  .section__title .sub-title, .section__title .sub-title span,
  .social-links .list-wrap a, .footer-social a {
    transition: none !important;
    animation: none !important;
  }
  /* Subtítulos en rojo sólido, sin brillo */
  .section__title .sub-title, .section__title .sub-title span {
    opacity: 1 !important;
    color: var(--fc-accent);
  }
}

/* ==========================================================================
   12. ESCALA TIPOGRÁFICA — Archivo (ancho normal): escala modular equilibrada
   y proporcionada. Cuerpo legible, "eyebrows" pequeños, títulos jerárquicos.
   ========================================================================== */
:root {
  --tg-body-font-size: 16px;
  --tg-body-line-height: 1.7;
  --tg-body-color: #d7d7d7;
}
body {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  color: #d7d7d7;
}
p, li { color: #cfcfcf; }

/* Texto de cuerpo general */
p { font-size: 16px; line-height: 1.7; }

/* Navegación — reducida (estaba muy grande) */
.tgmenu__navbar-wrap ul li a { font-size: 15px !important; letter-spacing: .4px; font-weight: 600; }

/* Hero */
.slider__content > p { font-size: 18px; line-height: 1.6; color: #ededed; }
.countdown__heading { font-size: 13px; letter-spacing: 2.5px; }
.countdown__num { font-size: 40px; }
.countdown__label { font-size: 11px; }

/* Títulos de sección — eyebrow chico (esto corrige la desproporción) */
.section__title .sub-title { font-size: 14px; letter-spacing: 2.5px; font-weight: 700; }
.section__title .title { font-size: clamp(30px, 3.8vw, 50px); line-height: 1.05; }

/* FAQ / acordeón */
.accordion-button { font-size: 19px !important; letter-spacing: 0; font-weight: 700; }
.faq__content-wrap .section__title p,
.accordion-body, .accordion-collapse p, .accordion-collapse li { font-size: 16px !important; line-height: 1.7; color: #cfcfcf; }

/* Formato */
.format__title { font-size: 20px; font-weight: 800; }
.format__card p { font-size: 16px; line-height: 1.6; }
.format__icon { font-size: 46px; }

/* Cronograma */
.schedule__time { font-size: 26px; font-weight: 800; }
.schedule__name { font-size: 18px; font-weight: 700; }
.schedule__tag { font-size: 12px; }
.schedule__area .section__title p { font-size: 16px; }

/* Reglas */
.rules__title { font-size: 20px; font-weight: 800; }
.rules__title i { font-size: 26px; }
.rules__list li { font-size: 16px; line-height: 1.6; }

/* Botones */
.fc-btn { font-size: 15px; letter-spacing: .6px; font-weight: 700; padding: 14px 32px; }
.header-btn .fc-btn { font-size: 14px; padding: 11px 24px; }
.contact__form-wrap .submit-btn { font-size: 16px !important; padding: 15px 40px !important; }

/* Formulario de inscripción */
.contact__content .title { font-size: clamp(26px, 3vw, 40px); }
.contact__content > p { font-size: 16px; }
.contact__form-wrap input, .form-check-line, .footer-el-widget li { font-size: 16px; }
#termsModal .modal-body { font-size: 16px; line-height: 1.7; }
#termsModal .modal-title { font-size: 22px; font-weight: 800; }

/* Footer */
.footer-text p, .footer-widget .list-wrap.menu li a,
.footer-newsletter p, .copyright__text p { font-size: 15px; }
.footer-widget .fw-title { font-size: 18px; font-weight: 800; }

/* Móvil: ajustes finos sin desbordes */
@media (max-width: 575px) {
  .section__title .title { font-size: clamp(26px, 7.5vw, 36px); }
  .slider__content .sub-title { font-size: clamp(28px, 8.5vw, 42px); }
  .schedule__time { font-size: 24px; }
  .schedule__name { font-size: 17px; }
  .format__icon { font-size: 42px; }
}
