/* ==========================
   AGUILAS CORDOBA FC - THEME
   Control total desde CSS variables (data-kit)
   ========================== */

:root {
  /* Tipografías */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-display: "Montserrat", "Poppins", var(--font-sans);

  /* Radios / sombras / layout */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 8px 18px rgba(0, 0, 0, .08);
  --shadow-md: 0 16px 32px rgba(0, 0, 0, .12);
  --shadow-lg: 0 26px 60px rgba(0, 0, 0, .18);

  /* Espaciado */
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;

  /* Colores base (se sobreescriben por kit) */
  --bg: #0D0F12;
  --surface: #141823;
  --surface-2: #0A0C10;

  --text: #F2F6FF;
  --muted: rgba(242, 246, 255, .70);

  --brand: #8E98A7;    /* primario */
  --brand-2: #1B1F27;  /* secundario */
  --accent: #E2B13C;   /* dorado */

  --border: rgba(255, 255, 255, .12);
  --focus: rgba(142, 152, 167, .35);

  /* Componentes */
  --btn-radius: 14px;
  --btn-pad-y: .75rem;
  --btn-pad-x: 1.1rem;

  --table-bg: rgba(255, 255, 255, .02);
  --table-head: rgba(255, 255, 255, .06);
  --table-row: rgba(255, 255, 255, .03);
  --table-hover: rgba(31, 167, 198, .10);

  /* Hero overlay (Academia EU) - default (dark) */
  --hero-overlay-eu:
    linear-gradient(95deg,
      rgba(8, 14, 24, .55) 0%,
      rgba(8, 14, 24, .40) 38%,
      rgba(8, 14, 24, .18) 70%,
      rgba(8, 14, 24, .45) 100%
    ),
    radial-gradient(900px 520px at 18% 55%, rgba(0, 210, 190, .16), transparent 60%);

  --hero-overlay-mx:
    linear-gradient(110deg,
      rgba(6, 18, 32, .78) 0%,
      rgba(0, 145, 160, .48) 45%,
      rgba(255, 195, 74, .22) 100%
    ),
    radial-gradient(900px 520px at 78% 38%, rgba(255,195,74,.18), transparent 60%);
}

/* ==========================
   KITS (Uniformes)
   ========================== */

html[data-kit="blue"] {
  --bg: #0B2A4A;
  --surface: #0F2F52;
  --surface-2: #0A1C2E;
  --text: #EAF2FF;
  --muted: rgba(234, 242, 255, .72);
  --brand: #1FA7C6;
  --brand-2: #0E89A8;
  --accent: #E2B13C;
  --focus: rgba(31, 167, 198, .40);

  --hero-overlay-eu:
    linear-gradient(95deg,
      rgba(7, 24, 60, .60) 0%,
      rgba(7, 24, 60, .44) 38%,
      rgba(7, 24, 60, .20) 70%,
      rgba(7, 24, 60, .50) 100%
    ),
    radial-gradient(900px 520px at 18% 55%, rgba(31, 167, 198, .18), transparent 60%);
}

html[data-kit="purple"] {
  --bg: #0B1F3A;
  --surface: #102A4A;
  --surface-2: #07162A;
  --text: #EDF0FF;
  --muted: rgba(237, 240, 255, .72);
  --brand: #6D2FA8;
  --brand-2: #4E1E7C;
  --accent: #E2B13C;
  --focus: rgba(109, 47, 168, .40);

  --hero-overlay-eu:
    linear-gradient(95deg,
      rgba(42, 18, 75, .62) 0%,
      rgba(42, 18, 75, .46) 38%,
      rgba(42, 18, 75, .22) 70%,
      rgba(42, 18, 75, .54) 100%
    ),
    radial-gradient(900px 520px at 18% 55%, rgba(109, 47, 168, .18), transparent 60%);
}

html[data-kit="dark"] {
  --bg: #0D0F12;
  --surface: #141823;
  --surface-2: #0A0C10;
  --text: #F2F6FF;
  --muted: rgba(242, 246, 255, .70);
  --brand: #8E98A7;
  --brand-2: #1B1F27;
  --accent: #E2B13C;
  --focus: rgba(142, 152, 167, .35);
  /* overlay default ya aplica */
}

html[data-kit="light"] {
  --bg: #F7FAFC;
  --surface: #FFFFFF;
  --surface-2: #F1F5F9;

  --text: #0F172A;
  --muted: rgba(15, 23, 42, .70);

  --brand: #14B8A6;
  --brand-2: #0F766E;
  --accent: #E2B13C;

  --border: rgba(15, 23, 42, .12);
  --focus: rgba(20, 184, 166, .28);

  --table-bg: rgba(15, 23, 42, .02);
  --table-head: rgba(15, 23, 42, .06);
  --table-row: rgba(15, 23, 42, .03);
  --table-hover: rgba(20, 184, 166, .10);

  --hero-overlay-eu:
    linear-gradient(95deg,
      rgba(255,255,255,.78) 0%,
      rgba(241,245,249,.62) 38%,
      rgba(241,245,249,.40) 70%,
      rgba(255,255,255,.70) 100%
    ),
    radial-gradient(900px 520px at 18% 55%, rgba(20, 184, 166, .16), transparent 60%);
}

:root{
  --fc-field-bg: rgba(255,255,255,.92);
  --fc-field-text: #1f2937;
  --fc-field-border: rgba(15, 23, 42, .12);
  --fc-field-placeholder: #6b7280;
  --fc-field-focus: rgba(0, 207, 199, .32);
  --fc-field-focus-border: rgba(0, 207, 199, .58);
}

html[data-bs-theme="dark"]{
  --fc-field-bg: rgba(255,255,255,.06);
  --fc-field-text: rgba(255,255,255,.94);
  --fc-field-border: rgba(255,255,255,.14);
  --fc-field-placeholder: rgba(255,255,255,.52);
  --fc-field-focus: rgba(0, 207, 199, .22);
  --fc-field-focus-border: rgba(0, 207, 199, .48);
}

html[data-kit="dark"]{
  --fc-field-bg: rgba(255,255,255,.06);
  --fc-field-text: rgba(255,255,255,.94);
  --fc-field-border: rgba(255,255,255,.14);
  --fc-field-placeholder: rgba(255,255,255,.52);
}

html[data-kit="blue"]{
  --fc-field-bg: rgba(255,255,255,.08);
  --fc-field-text: rgba(255,255,255,.94);
  --fc-field-border: rgba(255,255,255,.15);
  --fc-field-placeholder: rgba(255,255,255,.55);
  --fc-field-focus: rgba(0, 207, 199, .22);
  --fc-field-focus-border: rgba(0, 207, 199, .52);
}

html[data-kit="purple"]{
  --fc-field-bg: rgba(255,255,255,.08);
  --fc-field-text: rgba(255,255,255,.94);
  --fc-field-border: rgba(255,255,255,.15);
  --fc-field-placeholder: rgba(255,255,255,.55);
  --fc-field-focus: rgba(125, 92, 255, .24);
  --fc-field-focus-border: rgba(125, 92, 255, .50);
}

html[data-kit="light"]{
  --fc-field-bg: rgba(255,255,255,.96);
  --fc-field-text: #1f2937;
  --fc-field-border: rgba(15, 23, 42, .12);
  --fc-field-placeholder: #6b7280;
  --fc-field-focus: rgba(0, 207, 199, .22);
  --fc-field-focus-border: rgba(0, 207, 199, .48);
}




/* ==========================
   Base
   ========================== */

* { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(20, 184, 166, .14), transparent 55%),
    radial-gradient(900px 600px at 80% 0%, rgba(226, 177, 60, .12), transparent 45%),
    var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

.container-xxl { max-width: 1260px; }

/* ==========================
   Navbar
   ========================== */

.navbar.fc-nav {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, .22);
  border-bottom: 1px solid var(--border);
}

.fc-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display);
  letter-spacing: .4px;
}

.fc-brand img { width: 44px; height: 44px; object-fit: contain; }

.fc-brand .title { font-weight: 900; line-height: 1; }
.fc-brand .sub { font-size: .78rem; opacity: .78; margin-top: .15rem; }

/* ==========================
   Hero (clásico, si lo usas en otra página)
   ========================== */

.fc-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, rgba(13, 15, 18, .92), rgba(10, 12, 16, .90));
}

.fc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  opacity: .22;
}

.fc-hero .inner { position: relative; padding: clamp(2.2rem, 4vw, 4rem); }

.fc-kicker {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
  padding: .35rem .75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  font-size: .85rem;
}

.fc-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: .3px;
  margin: .9rem 0 .4rem;
  font-size: clamp(2.0rem, 4vw, 3.25rem);
}

.fc-lead { color: var(--muted); font-size: 1.05rem; max-width: 60ch; }

/* ==========================
   Buttons
   ========================== */

.btn-fc {
  border-radius: var(--btn-radius);
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-weight: 900;
  letter-spacing: .2px;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn-fc:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.btn-fc-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }
.btn-fc-primary:focus { box-shadow: 0 0 0 5px var(--focus); }

.btn-fc-accent { background: linear-gradient(135deg, var(--accent), #F0D27A); color: #1a1a1a; }

.btn-fc-ghost { background: rgba(255, 255, 255, .06); border-color: var(--border); color: var(--text); }

/* Botón dorado (CTA) */
.btn-fc-gold{
  background: linear-gradient(135deg, rgba(255,201,71,1), rgba(255,174,46,1));
  color: #1a1a1a;
  border: 1px solid rgba(255,201,71,.45);
  font-weight: 900;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(255, 201, 71, .18);
}
.btn-fc-gold:hover{ transform: translateY(-1px); filter: brightness(1.02); }


/* Outline dorado tipo Bootstrap */
.btn-outline-gold{
  color: rgba(255,201,71,1);
  border: 1px solid rgba(255,201,71,.75);
  background: transparent;
  font-weight: 700;
  border-radius: 14px;
  transition: all .18s ease;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus{
  color: #1a1a1a;
  background: linear-gradient(135deg, rgba(255,201,71,1), rgba(255,174,46,1));
  border-color: rgba(255,201,71,1);
  box-shadow: 0 10px 30px rgba(255,201,71,.25);
  transform: translateY(-1px);
}

.btn-outline-gold:active{
  transform: translateY(0);
  filter: brightness(.95);
}

.btn-outline-gold:disabled{
  opacity:.6;
  cursor:not-allowed;
  box-shadow:none;
}

/* ==========================
   Cards / sections
   ========================== */

.fc-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: .2px;
  margin: 0 0 .75rem;
}

.fc-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .04);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.fc-card .fc-card-body { padding: 1.1rem; }
.fc-card .meta { color: var(--muted); font-size: .92rem; }

/* ==========================
   Tables
   ========================== */

.table-fc {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--table-bg);
}
.table-fc thead th {
  background: var(--table-head);
  padding: .85rem .85rem;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: .2px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.table-fc tbody td {
  padding: .85rem .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: var(--table-row);
  color: var(--text);
}
.table-fc tbody tr:hover td { background: var(--table-hover); }

/* ==========================
   Forms
   ========================== */

.input-fc, .select-fc, .textarea-fc {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 14px;
  padding: .85rem .95rem;
  outline: none;
}
.input-fc:focus, .select-fc:focus, .textarea-fc:focus {
  box-shadow: 0 0 0 5px var(--focus);
  border-color: transparent;
}

/* ==========================
   Utilities
   ========================== */

.fc-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }

.badge-fc {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .06);
  font-weight: 900;
  font-size: .82rem;
}

.fc-footer { border-top: 1px solid var(--border); background: rgba(0, 0, 0, .22); }

.dropdown-menu .dropdown-item:hover{ background: rgba(255,255,255,.06); }
html[data-kit="light"] .dropdown-menu .dropdown-item:hover{ background: rgba(15,23,42,.06); }

/* =========================
   HERO PREMIUM + CATEGORÍAS
   (DEPURADO: sin duplicados)
   ========================= */

.fw-900{ font-weight: 900; }
.fw-800{ font-weight: 800; }

.fc-section-eyebrow{
  letter-spacing:.12em;
  text-transform: uppercase;
  font-weight: 800;
  font-size:.8rem;
  color: var(--muted, rgba(255,255,255,.75));
}

/* --- Fix: Nav/Dropdown siempre arriba del hero --- */
.fc-nav{
  position: sticky;
  top: 0;
  z-index: 2000;
}
.fc-nav .dropdown-menu{ z-index: 2100; }

/* HERO PREMIUM (Academia EU) */
.fc-hero-premium{
  position: relative;
  z-index: 1;
  min-height: clamp(640px, 85vh, 940px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border, rgba(255,255,255,.10));
  background: none; /* muy importante: sin fondos duplicados */
}

/* Fondo con imagen desde HTML: --hero-img */
.fc-hero-premium .fc-hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

  background:
    radial-gradient(1200px 700px at 22% 18%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(900px 600px at 80% 26%, rgba(0, 210, 190,.12), transparent 55%),
    var(--hero-img) var(--hero-pos, 50% 50%) / cover no-repeat;

  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.05);
  will-change: transform;
}
/* Overlay EU (por kit via --hero-overlay-eu) */
.fc-hero-premium .fc-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background: var(--hero-overlay-eu);
}

/* Grano premium (si no tienes el png, puedes comentar este bloque) */
.fc-hero-premium::after{
  content:"";
  position:absolute;
  inset:-20%;
  z-index:2;
  opacity:.10;
  background: url("/assets/img/ui/grain.png");
  background-size: 320px 320px;
  mix-blend-mode: overlay;
  pointer-events:none;
}

/* Contenido arriba */
.fc-hero-premium .container-xxl{
  position: relative;
  z-index: 3;
}

/* Chip superior */
.fc-hero-chip{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-weight: 700;
  font-size: .9rem;
}
.fc-hero-chip .dot{
  width:.55rem;
  height:.55rem;
  border-radius:999px;
  background: rgba(0, 255, 214, .95);
  box-shadow: 0 0 0 4px rgba(0, 255, 214, .14);
}

/* Tipografía */
.fc-hero-title{
  color: var(--text);
  text-shadow: 0 18px 60px rgba(0,0,0,.35);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.fc-hero-title .glow{
  background: linear-gradient(90deg, rgba(0,255,214,.95), rgba(255,201,71,.95));
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}
.fc-hero-sub{
  color: var(--muted);
  max-width: 58ch;
}

/* Card del hero (glass) */
.fc-hero-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

/* Stats */
.fc-hero-stat-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fc-stat{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}
.fc-stat .k{
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.fc-stat .v{
  margin-top: .15rem;
  font-weight: 800;
  color: var(--text);
}
.fc-link{ color: rgba(0,255,214,.95); text-decoration: none; }
.fc-link:hover{ text-decoration: underline; }

/* Badges turquesa */
.fc-badge-tq{
  background: rgba(0, 255, 214, .14) !important;
  color: rgba(0, 255, 214, .98) !important;
  border: 1px solid rgba(0, 255, 214, .28) !important;
  font-weight: 800;
  padding: .45rem .6rem;
  border-radius: 999px;
}

/* Cards generales: si quieres mantener glass general, ok */
.fc-card{
  border-radius: 18px;
  border: 1px solid var(--border, rgba(255,255,255,.12));
  background: color-mix(in srgb, var(--surface, rgba(255,255,255,.08)) 86%, transparent);
  box-shadow: 0 16px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}

/* Ken Burns suave (solo desktop) */
@media (min-width: 992px){
  .fc-hero-premium .fc-hero-bg{
    animation: fcKenBurns 18s ease-in-out infinite alternate;
  }
  @keyframes fcKenBurns{
    from { transform: scale(1.02) translate3d(0,0,0); }
    to   { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
  }
}

/* Mobile: más contraste y menos altura fija */
@media (max-width: 991.98px){
  .fc-hero-premium{
    min-height: auto;
    padding: 3.5rem 0 2.5rem;
  }
  .fc-hero-premium::after{ opacity: .08; }
  .fc-hero-stat-grid{ grid-template-columns: 1fr; }
}

/* Switch de preset del hero */
.fc-hero-premium[data-hero="eu"] .fc-hero-overlay{
  background: var(--hero-overlay-eu);
}

.fc-hero-premium[data-hero="mx"] .fc-hero-overlay{
  background: var(--hero-overlay-mx);
}

/* Extra MX: un poquito más vivo */
.fc-hero-premium[data-hero="mx"] .fc-hero-bg{
  filter: saturate(1.16) contrast(1.08);
}

/* Foco inteligente para evitar cortes feos */
@media (min-width: 1400px){
  .fc-hero-premium{ --hero-pos: 50% 14%; } /* ultra-wide: sube más */
}

@media (max-width: 991.98px){
  .fc-hero-premium{ --hero-pos: 50% 18%; } /* tablet */
}

@media (max-width: 575.98px){
  .fc-hero-premium{ --hero-pos: 50% 16%; } /* móvil: protege cabezas */
}

@media (max-width: 575.98px){
  .fc-hero-premium{
    min-height: auto;      /* ya lo tienes, solo asegúrate */
    padding: 3.25rem 0 2rem;
  }
}




/* ===== Categorías PRO ===== */
.fc-cat-strip{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
}
.fc-cat-strip__item{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.fc-cat-strip__item i{
  font-size: 1.05rem;
  color: var(--accent);
  margin-top: 2px;
}
.fc-cat-strip__item .t{ font-weight: 900; }
.fc-cat-strip__item .s{ font-size: .85rem; color: var(--muted); }

@media (max-width: 991.98px){
  .fc-cat-strip{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px){
  .fc-cat-strip{ grid-template-columns: 1fr; }
}

/* Card con media */
.fc-cat-card{ overflow:hidden; }
.fc-cat-card__media{
  position: relative;
  height: 140px;
  background: var(--cat-img) center / cover no-repeat;
}
.fc-cat-card__mediaOverlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(8,14,24,.62) 0%, rgba(8,14,24,.38) 55%, rgba(8,14,24,.25) 100%),
    radial-gradient(520px 220px at 18% 45%, rgba(0,210,190,.16), transparent 60%);
}
.fc-cat-card__top{
  position:absolute; inset: 0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
  padding: 14px;
  z-index: 2;
}
.fc-cat-card__age{
  font-size:.85rem;
  color: rgba(255,255,255,.80);
  margin-top: 2px;
}
html[data-kit="light"] .fc-cat-card__age{
  color: rgba(15,23,42,.70);
}

.fc-cat-card__desc{ margin-bottom: 10px; }

.fc-cat-card__list{
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: .95rem;
}
.fc-cat-card__list li{ margin: .35rem 0; }

.fc-cat-card__chips{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 12px;
}


/* ===== Modal Categorías (Premium) ===== */
.fc-modal{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
  background: rgba(10,12,16,.92);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
html[data-kit="light"] .fc-modal{
  background: rgba(255,255,255,.92);
  border-color: rgba(15,23,42,.14);
}

.fc-modal__header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
html[data-kit="light"] .fc-modal__header{
  background: rgba(15,23,42,.03);
  border-bottom-color: rgba(15,23,42,.10);
}

.fc-modal__kicker{
  display:inline-flex;
  padding: .28rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(0,255,214,.28);
  background: rgba(0,255,214,.14);
  color: rgba(0,255,214,.98);
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 6px;
}
.fc-modal__title{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1.1;
}
.fc-modal__sub{
  color: var(--muted);
  font-size: .95rem;
  margin-top: 2px;
}

.fc-modal__body{ padding: 16px 18px 18px; }

.fc-modal__media{
  position: relative;
  height: 260px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 520px at 18% 55%, rgba(0, 210, 190,.16), transparent 60%),
    var(--modal-img) center/cover no-repeat;
  overflow:hidden;
}
html[data-kit="light"] .fc-modal__media{
  border-color: rgba(15,23,42,.12);
}
.fc-modal__mediaOverlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(8,14,24,.55), rgba(8,14,24,.18));
  pointer-events:none;
}

.fc-modal__list{
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.fc-modal__list li{ margin: .45rem 0; }

.fc-modal__pill{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
html[data-kit="light"] .fc-modal__pill{
  border-color: rgba(15,23,42,.12);
  background: rgba(15,23,42,.03);
}
.fc-modal__pill .k{
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.fc-modal__pill .v{
  margin-top: .2rem;
  font-weight: 900;
}




/* ===== Torneos actuales ===== */
.fc-pill2{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.fc-pill2 .k{
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.fc-pill2 .v{
  margin-top: .15rem;
  font-weight: 900;
}

.fc-sched{
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.fc-sched__row{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  justify-content:space-between;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.fc-sched__day{
  font-weight: 900;
  font-family: var(--font-display);
  min-width: 110px;
}
.fc-sched__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  justify-content:flex-end;
  text-align:right;
}
.fc-sched__meta .chip{
  padding: .22rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(0,255,214,.22);
  background: rgba(0,255,214,.10);
  color: rgba(0,255,214,.98);
  font-weight: 900;
  font-size: .78rem;
}
.fc-sched__meta .time{
  font-weight: 900;
}
.fc-sched__meta .place{
  color: var(--muted);
  font-size: .9rem;
}


@media (max-width: 575.98px){
  .fc-sched__row{
    flex-direction:column;
    align-items:flex-start;
  }
  .fc-sched__meta{
    justify-content:flex-start;
    text-align:left;
  }
}


/* Mini resumen en card */
.fc-tourn-mini{ display:flex; flex-direction:column; gap:10px; }
.fc-tourn-mini__row{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
.fc-tourn-mini__row .name{ font-weight: 900; }
.fc-tourn-mini__row .meta{
  display:flex; flex-wrap:wrap; gap:8px; align-items:center;
  margin-top: 4px;
}
.fc-tourn-mini__row .chip{
  padding: .22rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(0,255,214,.22);
  background: rgba(0,255,214,.10);
  color: rgba(0,255,214,.98);
  font-weight: 900;
  font-size: .78rem;
}
.fc-tourn-mini__row .pos{
  font-weight: 900;
  color: var(--muted);
}

/* Próximos partidos (modal) */
.fc-next{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.fc-next__row{
  display:grid;
  grid-template-columns: 110px 1fr auto;
  gap: 10px;
  align-items:center;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.fc-next__row .a{ font-weight: 900; font-family: var(--font-display); }
.fc-next__row .b{ color: var(--text); }
.fc-next__row .c{ color: var(--muted); font-size: .9rem; text-align:right; }

.fc-next__row .chip2{
  padding: .18rem .5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,201,71,.26);
  background: rgba(255,201,71,.12);
  font-weight: 900;
  font-size: .78rem;
  margin-right: 6px;
}

@media (max-width: 575.98px){
  .fc-next__row{
    grid-template-columns: 1fr;
  }
  .fc-next__row .c{ text-align:left; }
}


/* Resultados recientes (modal) */
.fc-res{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.fc-res__row{
  display:grid;
  grid-template-columns: 110px 1fr auto;
  gap: 10px;
  align-items:center;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

.fc-res__row .a{ font-weight: 900; font-family: var(--font-display); }
.fc-res__row .b{ color: var(--text); }
.fc-res__row .c{ text-align:right; }
.fc-res__row .score{
  display:inline-flex;
  align-items:center;
  padding: .18rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(0,255,214,.22);
  background: rgba(0,255,214,.10);
  font-weight: 900;
}

.fc-res__row .d{
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 2px;
}

@media (max-width: 575.98px){
  .fc-res__row{
    grid-template-columns: 1fr;
  }
  .fc-res__row .c{ text-align:left; }
}




/* ===== Galería PRO ===== */
.fc-gal-item{ display:block; }
.fc-gal-media{
  position: relative;
  height: var(--gal-h, 220px);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--gal-img) center/cover no-repeat;
  box-shadow: var(--shadow-md);
  transform: translateZ(0);
}
.fc-gal-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(8,14,24,.18) 0%, rgba(8,14,24,.40) 58%, rgba(8,14,24,.78) 100%),
    radial-gradient(900px 520px at 18% 55%, rgba(0,210,190,.14), transparent 60%);
  transition: opacity .18s ease;
}
.fc-gal-top{
  position:absolute; inset: 12px 12px auto 12px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 10px;
}
.fc-gal-bottom{
  position:absolute; inset:auto 12px 12px 12px;
}
.fc-gal-bottom .t{
  font-weight: 900;
  text-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.fc-gal-bottom .s{
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  margin-top: 2px;
}
.fc-gal-media:hover{
  transform: translateY(-1px);
  transition: transform .12s ease;
}
.fc-gal-media:hover .fc-gal-overlay{ opacity: .92; }

/* Lightbox view */
.fc-gal-view{
  position: relative;
  height: min(72vh, 720px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: var(--gal-view-img) center/contain no-repeat;
  background-color: rgba(0,0,0,.22);
  overflow:hidden;
}
html[data-kit="light"] .fc-gal-view{
  border-color: rgba(15,23,42,.12);
  background-color: rgba(15,23,42,.04);
}
.fc-gal-view__overlay{
  position:absolute; inset:0;
  background: radial-gradient(900px 520px at 18% 55%, rgba(0,210,190,.10), transparent 60%);
  pointer-events:none;
}

/* ===== Galería: alto fijo + scroll interno ===== */
.fc-gal-frame{
  position: relative;
  max-height: 760px;          /* desktop: ajusta a gusto */
  overflow: auto;
  padding-right: 6px;         /* espacio para scrollbar */
  border-radius: 18px;
}

/* Sombra arriba/abajo para indicar scroll */
.fc-gal-frame::before,
.fc-gal-frame::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height: 28px;
  pointer-events:none;
  z-index: 5;
}
.fc-gal-frame::before{
  top:0;
  background: linear-gradient(180deg, rgba(8,14,24,.65), transparent);
  opacity: .9;
}
.fc-gal-frame::after{
  bottom:0;
  background: linear-gradient(0deg, rgba(8,14,24,.65), transparent);
  opacity: .9;
}
html[data-kit="light"] .fc-gal-frame::before{
  background: linear-gradient(180deg, rgba(255,255,255,.85), transparent);
}
html[data-kit="light"] .fc-gal-frame::after{
  background: linear-gradient(0deg, rgba(255,255,255,.85), transparent);
}

/* Scrollbar más fino (Chrome/Edge) */
.fc-gal-frame::-webkit-scrollbar{ width: 10px; }
.fc-gal-frame::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.14);
  border: 2px solid rgba(0,0,0,0);
  background-clip: padding-box;
  border-radius: 999px;
}
html[data-kit="light"] .fc-gal-frame::-webkit-scrollbar-thumb{
  background: rgba(15,23,42,.18);
}

/* Mobile: menos alto */
@media (max-width: 991.98px){
  .fc-gal-frame{ max-height: 640px; }
}
@media (max-width: 575.98px){
  .fc-gal-frame{ max-height: 560px; }
}

/* Filtros galería */
.fc-filter.is-active{
  border-color: rgba(0,255,214,.28) !important;
  background: rgba(0,255,214,.10) !important;
  color: rgba(0,255,214,.98) !important;
}
html[data-kit="light"] .fc-filter.is-active{
  border-color: rgba(15,118,110,.35) !important;
  background: rgba(20,184,166,.12) !important;
  color: #0F766E !important;
}


/* ===== Galería: rail horizontal PRO ===== */
.fc-gal-rail-wrap{
  position: relative;
}

.fc-gal-rail{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 44px 10px;         /* espacio para botones */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
}

/* Cada item en el carril */
.fc-gal-rail .fc-gal-item{
  flex: 0 0 auto;
  width: clamp(240px, 22vw, 360px);   /* ancho responsivo */
  scroll-snap-align: start;
}

/* Alto fijo por item */
.fc-gal-rail .fc-gal-media{
  height: 220px;
}

/* En pantallas grandes, un poco más alto */
@media (min-width: 992px){
  .fc-gal-rail .fc-gal-media{ height: 240px; }
}

/* Scrollbar fino */
.fc-gal-rail::-webkit-scrollbar{ height: 10px; }
.fc-gal-rail::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.14);
  border-radius: 999px;
}
html[data-kit="light"] .fc-gal-rail::-webkit-scrollbar-thumb{
  background: rgba(15,23,42,.18);
}

/* Botones nav */
.fc-gal-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.35);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.fc-gal-nav:hover{ background: rgba(0,0,0,.50); }
.fc-gal-nav.prev{ left: 6px; }
.fc-gal-nav.next{ right: 6px; }

html[data-kit="light"] .fc-gal-nav{
  background: rgba(255,255,255,.55);
  color: #0F172A;
}

/* Oculta nav si el usuario prefiere (mobile) */
@media (max-width: 575.98px){
  .fc-gal-rail{ padding-left: 10px; padding-right: 10px; }
  .fc-gal-nav{ display: none; }
}

/* ================================
   FIX: Bootstrap modal arriba del nav
   ================================ */

/* Tu nav está en 2000/2100, así que el modal debe estar arriba */
.modal-backdrop{
  z-index: 2900 !important;
}

.modal{
  z-index: 3000 !important;
}

/* Asegura que el contenido del modal quede arriba y clickeable */
.modal-dialog{
  position: relative;
  z-index: 3001;
}
.modal-content{
  position: relative;
  z-index: 3002;
}

/* Por si tu header del modal tiene blur/overlay */
.fc-modal{
  position: relative;
  z-index: 3002;
}

/* =========================================
   NAV / DROPDOWNS (Admin + Apariencia)
   ========================================= */

/* Menú dropdown acorde a tu kit */
.fc-nav .dropdown-menu{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .35rem;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

/* Items */
.fc-nav .dropdown-menu .dropdown-item{
  color: var(--text);
  border-radius: 10px;
  padding: .55rem .75rem;
  transition: background-color .15s ease, transform .12s ease;
}

/* Hover/Focus */
.fc-nav .dropdown-menu .dropdown-item:hover,
.fc-nav .dropdown-menu .dropdown-item:focus{
  background: rgba(255,255,255,.08);
  color: var(--text);
}

/* Estado activo (quita azul Bootstrap) */
.fc-nav .dropdown-menu .dropdown-item.active,
.fc-nav .dropdown-menu .dropdown-item:active{
  background: rgba(255,255,255,.12);
  color: var(--text);
}

/* Headers y divisores */
.fc-nav .dropdown-menu .dropdown-header{
  color: var(--muted);
  padding: .35rem .75rem;
  font-weight: 600;
}

.fc-nav .dropdown-menu .dropdown-divider{
  border-color: var(--border);
  opacity: 1;
}

/* Mejor hit-area en desktop */
@media (min-width: 992px){
  .fc-nav .navbar-nav .nav-link{
    padding-top: .55rem;
    padding-bottom: .55rem;
  }
}


/* =========================================
   FOOTER PRO COMPACT + STUDIO SIGNATURE
========================================= */
.fc-footer-pro{
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)),
    var(--bg, #0b1220);
}

.fc-footer-pro__glow{
  position: absolute;
  pointer-events: none;
  filter: blur(60px);
  opacity: .18;
  border-radius: 999px;
}

.fc-footer-pro__glow--a{
  width: 220px;
  height: 220px;
  left: -50px;
  top: 10px;
  background: rgba(0, 207, 199, .22);
}

.fc-footer-pro__glow--b{
  width: 240px;
  height: 240px;
  right: -60px;
  top: -20px;
  background: rgba(212, 175, 55, .16);
}

.fc-footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.fc-footer-brand__logo{
  width:58px;
  height:58px;
  object-fit:contain;
  flex:0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}

.fc-footer-brand__title{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.1;
  color: var(--text);
}

.fc-footer-brand__sub{
  color: var(--muted);
  font-size: .90rem;
  line-height: 1.2;
}

.fc-footer-pro__heading{
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
  margin-bottom: .8rem;
  font-size: 1rem;
}

.fc-footer-pro__text{
  color: var(--muted);
  line-height: 1.65;
}

.fc-footer-pro__text--compact{
  max-width: 540px;
}

.fc-footer-pro__list{
  list-style:none;
  padding:0;
  margin:0;
}

.fc-footer-pro__list li{
  margin-bottom: .45rem;
}

.fc-footer-pro__list a{
  text-decoration:none;
  color: var(--muted);
  transition: color .18s ease;
  line-height: 1.4;
}

.fc-footer-pro__list a:hover{
  color: var(--text);
}

.fc-footer-social{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
}

.fc-footer-social a{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  text-decoration:none;
  color: var(--text);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.fc-footer-social a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
}

.fc-footer-social svg{
  width:18px;
  height:18px;
  display:block;
  fill: currentColor;
}

.fc-footer-card{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.fc-footer-card--compact{
  padding: .95rem 1rem;
}

.fc-footer-kv{
  display:grid;
  gap:.75rem;
}

.fc-footer-kv__item .k{
  color: var(--text);
  font-weight: 700;
  margin-bottom: .12rem;
  line-height: 1.25;
}

.fc-footer-kv__item .v,
.fc-footer-kv__item .v a{
  color: var(--muted);
  text-decoration: none;
  line-height: 1.45;
}

.fc-footer-kv__item .v a:hover{
  color: var(--text);
}

.fc-footer-pro__bottom{
  border-top: 1px solid var(--border);
  padding: .9rem 0 1rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  flex-wrap:wrap;
}

.fc-footer-pro__copy{
  color: var(--muted);
  font-size: .9rem;
}

.fc-footer-pro__bottomLinks{
  color: var(--muted);
  font-size: .9rem;
  display:flex;
  align-items:center;
  gap:.5rem;
  flex-wrap:wrap;
}

.fc-footer-pro__bottomLinks a{
  color: var(--muted);
  text-decoration:none;
}

.fc-footer-pro__bottomLinks a:hover{
  color: var(--text);
}

.fc-footer-pro__bottomLinks .sep{
  opacity:.6;
}

/* Firma de estudio */
.fc-footer-signature{
  display:flex;
  align-items:center;
  gap:.65rem;
  flex-wrap:wrap;
}

.fc-footer-signature__label{
  color: var(--muted);
  font-size: .9rem;
}

.fc-footer-signature__brand{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding: .38rem .8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  text-decoration:none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.fc-footer-signature__brand:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
}

.fc-footer-signature__mark{
  color: var(--text);
  font-weight: 900;
  letter-spacing: .01em;
}

.fc-footer-signature__accent{
  color: var(--accent, #00CFC7);
  font-weight: 900;
  letter-spacing: .01em;
}

.fc-footer-signature__brand small{
  color: var(--muted);
  font-size: .78rem;
  line-height: 1;
}

/* Admin */
.fc-footer-admin__logo{
  width:44px;
  height:44px;
  object-fit:contain;
}

.fc-footer-admin__title{
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
}

.fc-footer-admin__sub{
  color: var(--muted);
  font-size: .88rem;
}

.fc-footer-admin__chips{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
  align-items:center;
}

.fc-footer-admin__actions{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  justify-content:flex-start;
}

@media (min-width: 992px){
  .fc-footer-admin__actions{
    justify-content:flex-end;
  }
}

html[data-bs-theme="light"] .fc-footer-pro{
  background:
    linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.96)),
    var(--bg, #f6f8fb);
}

html[data-bs-theme="light"] .fc-footer-card{
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
}

html[data-bs-theme="light"] .fc-footer-social a,
html[data-bs-theme="light"] .fc-footer-signature__brand{
  background: rgba(15,23,42,.04);
}

html[data-bs-theme="light"] .fc-footer-social a:hover,
html[data-bs-theme="light"] .fc-footer-signature__brand:hover{
  background: rgba(15,23,42,.08);
}





/* =========================================
   PATROCINADORES
========================================= */
.fc-sponsor-card{
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fc-sponsor-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,.16);
}

.fc-sponsor-card.is-featured{
  border-color: rgba(0, 207, 199, .35);
  box-shadow: 0 16px 34px rgba(0, 207, 199, .10);
}

.fc-sponsor-card .fc-card-body{
  display: flex;
  flex-direction: column;
}

/* CAJA DEL LOGO */
.fc-sponsor-card__logoWrap{
  height: 120px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: .75rem;
  border-radius: 18px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  overflow: hidden;
}

/* IMAGEN CONTROLADA */
.fc-sponsor-card__logo{
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.08));
}

/* nombres y textos */
.fc-sponsor-card__name{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.15;
  color: var(--text);
}

.fc-sponsor-card__kind{
  font-size: .92rem;
  color: var(--muted);
  margin-top: .15rem;
  line-height: 1.35;
}

.fc-sponsor-card__desc{
  color: var(--muted);
  line-height: 1.55;
  min-height: 72px;
}

.fc-sponsor-card__chips{
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

html[data-bs-theme="light"] .fc-sponsor-card__logoWrap{
  background: linear-gradient(180deg, rgba(15,23,42,.03), rgba(15,23,42,.01));
}

/* responsive */
@media (max-width: 575.98px){
  .fc-sponsor-card__logoWrap{
    height: 96px;
    min-height: 96px;
    padding: .65rem;
  }

  .fc-sponsor-card__logo{
    max-height: 60px;
  }

  .fc-sponsor-card__desc{
    min-height: auto;
  }
}





/* =========================================
   PATROCINADORES · WALL OF LOGOS
========================================= */
.fc-sponsors-wall{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px){
  .fc-sponsors-wall{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px){
  .fc-sponsors-wall{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.fc-sponsor-logo{
  position: relative;
  min-height: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  text-decoration: none;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.fc-sponsor-logo:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(0,0,0,.12);
  border-color: rgba(0, 207, 199, .28);
}

.fc-sponsor-logo img{
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.08));
}

/* versión más cómoda para logos muy verticales o raros */
.fc-sponsor-logo img[src$=".jpg"],
.fc-sponsor-logo img[src$=".jpeg"],
.fc-sponsor-logo img[src$=".png"]{
  image-rendering: auto;
}

/* móvil */
@media (max-width: 575.98px){
  .fc-sponsor-logo{
    min-height: 92px;
    height: 92px;
    padding: .65rem .8rem;
    border-radius: 16px;
  }

  .fc-sponsor-logo img{
    max-height: 42px;
  }
}

/* tema claro */
html[data-bs-theme="light"] .fc-sponsor-logo{
  background:
    linear-gradient(180deg, rgba(15,23,42,.03), rgba(15,23,42,.01));
}

/* =========================================
   PATROCINADORES · MARQUEE INSTITUCIONAL
========================================= */
.fc-sponsors-marquee{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: .35rem 0;
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.fc-sponsors-marquee__track{
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: fcSponsorScroll 36s linear infinite;
}

.fc-sponsors-marquee:hover .fc-sponsors-marquee__track{
  animation-play-state: paused;
}

.fc-sponsor-pill{
  flex: 0 0 auto;
  min-width: 220px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: .9rem;
  padding: .9rem 1rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  text-decoration: none;
  color: var(--text);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  overflow: hidden;
}

.fc-sponsor-pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
  border-color: rgba(0, 207, 199, .28);
}

.fc-sponsor-pill img{
  flex: 0 0 auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 120px;
  max-height: 52px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.08));
}

.fc-sponsor-pill span{
  min-width: 0;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

/* móvil */
@media (max-width: 767.98px){
  .fc-sponsors-marquee__track{
    gap: .8rem;
    animation-duration: 28s;
  }

  .fc-sponsor-pill{
    min-width: 180px;
    height: 82px;
    padding: .7rem .8rem;
    border-radius: 18px;
    gap: .7rem;
  }

  .fc-sponsor-pill img{
    max-width: 88px;
    max-height: 40px;
  }

  .fc-sponsor-pill span{
    font-size: .92rem;
  }
}

/* tema claro */
html[data-bs-theme="light"] .fc-sponsor-pill{
  background: linear-gradient(180deg, rgba(15,23,42,.03), rgba(15,23,42,.015));
}


/* =========================================
   CONTACTO · OVERLAY ENVÍO
========================================= */
.fc-mail-overlay{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(6, 12, 24, .58);
  backdrop-filter: blur(8px);
}

.fc-mail-overlay.is-active{
  display: flex;
}

.fc-mail-overlay__box{
  width: min(420px, 100%);
  border-radius: 24px;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, rgba(0,207,199,.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(212,175,55,.10), transparent 30%),
    var(--surface, rgba(15,23,42,.92));
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
  text-align: center;
}

.fc-mail-ring{
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
}

.fc-mail-ring__svg{
  width: 140px;
  height: 140px;
  transform: rotate(-90deg);
  display: block;
}

.fc-mail-ring__bg{
  fill: none;
  stroke: rgba(255,255,255,.10);
  stroke-width: 10;
}

.fc-mail-ring__progress{
  fill: none;
  stroke: var(--accent, #00CFC7);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 301.59;
  stroke-dashoffset: 301.59;
  transition: stroke-dashoffset .22s linear;
  filter: drop-shadow(0 0 10px rgba(0,207,199,.22));
}

.fc-mail-ring__value{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text);
}

.fc-mail-overlay__title{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: .35rem;
}

.fc-mail-overlay__text{
  color: var(--muted);
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}

html[data-bs-theme="light"] .fc-mail-overlay__box{
  background:
    radial-gradient(circle at top left, rgba(0,207,199,.10), transparent 32%),
    radial-gradient(circle at bottom right, rgba(212,175,55,.08), transparent 30%),
    rgba(255,255,255,.96);
}

.fc-mail-overlay{
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}

.fc-mail-overlay.is-active{
  opacity: 1;
  visibility: visible;
}

.fc-mail-overlay.is-leaving{
  opacity: 0;
  visibility: hidden;
}

.fc-contact-inline-msg{
  border-radius: 16px;
  padding: 1rem 1rem;
  border: 1px solid var(--border);
}

.fc-contact-inline-msg.is-success{
  background: rgba(0, 207, 199, .14);
  color: var(--text);
}

.fc-contact-inline-msg.is-error{
  background: rgba(220, 53, 69, .14);
  color: var(--text);
}





/* =========================================
   FORM CONTROLS · GLOBAL FIX
========================================= */
.input-fc,
.select-fc,
.textarea-fc,
input.form-control,
select.form-select,
textarea.form-control{
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--fc-field-border);
  background: var(--fc-field-bg);
  color: var(--fc-field-text);
  box-shadow: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.input-fc,
.select-fc,
input.form-control,
select.form-select{
  min-height: 52px;
  padding: .85rem 1rem;
}

.textarea-fc,
textarea.form-control{
  padding: .95rem 1rem;
}

.input-fc::placeholder,
.textarea-fc::placeholder,
input.form-control::placeholder,
textarea.form-control::placeholder{
  color: var(--fc-field-placeholder);
  opacity: 1;
}

.input-fc:focus,
.select-fc:focus,
.textarea-fc:focus,
input.form-control:focus,
select.form-select:focus,
textarea.form-control:focus{
  outline: none;
  border-color: var(--fc-field-focus-border);
  box-shadow: 0 0 0 .28rem var(--fc-field-focus);
  background: var(--fc-field-bg);
  color: var(--fc-field-text);
}

.input-fc:disabled,
.select-fc:disabled,
.textarea-fc:disabled,
input.form-control:disabled,
select.form-select:disabled,
textarea.form-control:disabled{
  opacity: .72;
  cursor: not-allowed;
}

/* Select cerrado */
.select-fc,
select.form-select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  min-height: 52px;
  padding: .85rem 2.8rem .85rem 1rem;

  color: var(--fc-field-text);
  background-color: var(--fc-field-bg);
  border: 1px solid var(--fc-field-border);
  border-radius: 18px;

  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
}

/* Flecha para temas oscuros */
html[data-bs-theme="dark"] .select-fc,
html[data-bs-theme="dark"] select.form-select,
html[data-kit="dark"] .select-fc,
html[data-kit="dark"] select.form-select,
html[data-kit="blue"] .select-fc,
html[data-kit="blue"] select.form-select,
html[data-kit="purple"] .select-fc,
html[data-kit="purple"] select.form-select{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 16 16' fill='none'><path d='M4 6l4 4 4-4' stroke='rgba(255,255,255,0.88)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* Flecha para light */
html[data-bs-theme="light"] .select-fc,
html[data-bs-theme="light"] select.form-select,
html[data-kit="light"] .select-fc,
html[data-kit="light"] select.form-select{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 16 16' fill='none'><path d='M4 6l4 4 4-4' stroke='rgba(31,41,55,0.88)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* Estado focus */
.select-fc:focus,
select.form-select:focus{
  outline: none;
  border-color: var(--fc-field-focus-border);
  box-shadow: 0 0 0 .28rem var(--fc-field-focus);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
}

/* Opciones internas: mejora parcial cross-browser */
.select-fc option,
select.form-select option{
  color: #111827;
  background: #ffffff;
}

/* Firefox */
@-moz-document url-prefix() {
  .select-fc,
  select.form-select{
    color: var(--fc-field-text);
    background-color: var(--fc-field-bg);
  }

  .select-fc option,
  select.form-select option{
    color: #111827;
    background-color: #ffffff;
  }
}



/* =========================================
   BOOTSTRAP DROPDOWNS · GLOBAL
========================================= */
.dropdown-menu{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
  padding: .45rem;
}

.dropdown-item{
  border-radius: 12px;
  color: var(--text);
  transition: background .16s ease, color .16s ease;
}

.dropdown-item:hover,
.dropdown-item:focus{
  background: rgba(255,255,255,.08);
  color: var(--text);
}

.dropdown-item.active,
.dropdown-item:active{
  background: rgba(0, 207, 199, .18);
  color: var(--text);
}

.dropdown-divider{
  border-color: var(--border);
}

.dropdown-header{
  color: var(--muted);
}


.fc-club-quote{
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--accent);
}

.fc-club-quote-sub{
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ============================================ */
/* INTRO ULTRA PREMIUM · ÁGUILAS / EA SPORTS UI */
/* ============================================ */

body.fc-intro-active{
  overflow:hidden;
}

.fc-intro{
  position:fixed;
  inset:0;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(0,207,199,.20), transparent 30%),
    radial-gradient(circle at 50% 70%, rgba(255,196,72,.10), transparent 26%),
    linear-gradient(180deg, #071019 0%, #03070b 55%, #010304 100%);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .65s ease, visibility .65s ease, transform .65s ease;
}

.fc-intro.is-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.fc-intro.is-hidden{
  opacity:0;
  visibility:hidden;
  transform:scale(1.01);
  pointer-events:none;
}
.fc-intro__bg{
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.03), transparent 35%),
    linear-gradient(135deg, rgba(0,207,199,.07), transparent 30%, rgba(255,196,72,.05) 70%, transparent 100%);
  filter:blur(8px);
}

.fc-intro__grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px, 34px 34px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1), rgba(0,0,0,.25) 75%, transparent 100%);
  opacity:.22;
}

.fc-intro__scan{
  position:absolute;
  inset:-20% 0 auto 0;
  height:30%;
  background:linear-gradient(180deg, transparent, rgba(0,207,199,.09), transparent);
  filter:blur(18px);
  animation:fcIntroScan 3s linear infinite;
  opacity:.75;
}

@keyframes fcIntroScan{
  0%{ transform:translateY(-20%); }
  100%{ transform:translateY(320%); }
}

.fc-intro__particles{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.fc-intro__particles span{
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgba(0,207,199,.8);
  box-shadow:0 0 10px rgba(0,207,199,.8), 0 0 20px rgba(0,207,199,.35);
  animation:fcIntroFloat 6s linear infinite;
  opacity:.55;
}

.fc-intro__particles span:nth-child(1){ left:10%; top:18%; animation-delay:.2s; }
.fc-intro__particles span:nth-child(2){ left:18%; top:72%; animation-delay:1.3s; }
.fc-intro__particles span:nth-child(3){ left:28%; top:30%; animation-delay:2.2s; }
.fc-intro__particles span:nth-child(4){ left:40%; top:82%; animation-delay:3.1s; }
.fc-intro__particles span:nth-child(5){ left:52%; top:20%; animation-delay:.8s; }
.fc-intro__particles span:nth-child(6){ left:64%; top:72%; animation-delay:2.9s; }
.fc-intro__particles span:nth-child(7){ left:74%; top:24%; animation-delay:1.8s; }
.fc-intro__particles span:nth-child(8){ left:84%; top:68%; animation-delay:3.8s; }
.fc-intro__particles span:nth-child(9){ left:90%; top:34%; animation-delay:1.1s; }
.fc-intro__particles span:nth-child(10){ left:58%; top:52%; animation-delay:4.2s; }

@keyframes fcIntroFloat{
  0%{ transform:translateY(0) scale(.8); opacity:.15; }
  25%{ opacity:.65; }
  50%{ transform:translateY(-16px) scale(1); opacity:.55; }
  100%{ transform:translateY(-34px) scale(.8); opacity:.08; }
}

.fc-intro__center{
  position:relative;
  z-index:2;
  width:min(92vw, 780px);
  text-align:center;
  padding:2rem 1rem;
}

.fc-intro__brandline{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  font-size:.78rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
  margin-bottom:1rem;
}

.fc-intro__brandline-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent, #00CFC7);
  box-shadow:0 0 12px rgba(0,207,199,.75);
}

.fc-intro__logoWrap{
  position:relative;
  width:190px;
  height:190px;
  margin:0 auto 1rem;
  display:flex;
  align-items:center;
  justify-content:center;
}

.fc-intro__logoGlow{
  position:absolute;
  inset:0;
  border-radius:50%;
  background:
    radial-gradient(circle, rgba(0,207,199,.28), rgba(0,207,199,.08) 46%, transparent 72%);
  filter:blur(10px);
  animation:fcIntroPulse 2.2s ease-in-out infinite;
}

.fc-intro__logo{
  position:relative;
  z-index:2;
  width:132px;
  max-width:100%;
  filter:
    drop-shadow(0 0 10px rgba(0,207,199,.25))
    drop-shadow(0 10px 28px rgba(0,0,0,.65));
  animation:fcIntroLogoFloat 2.6s ease-in-out infinite;
}

@keyframes fcIntroPulse{
  0%,100%{ transform:scale(.96); opacity:.85; }
  50%{ transform:scale(1.06); opacity:1; }
}

@keyframes fcIntroLogoFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
}

.fc-intro__title{
  font-family:var(--font-display, inherit);
  font-weight:900;
  letter-spacing:.14em;
  font-size:clamp(1.35rem, 2.4vw, 2rem);
  color:#fff;
  text-shadow:0 0 18px rgba(0,207,199,.18);
  margin-bottom:.35rem;
}

.fc-intro__subtitle{
  font-size:.82rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,.5);
  margin-bottom:1.35rem;
}

.fc-intro__loaderWrap{
  position:relative;
  width:160px;
  height:160px;
  margin:0 auto;
}

.fc-intro-ring{
  width:160px;
  height:160px;
  transform:rotate(-90deg);
}

.fc-intro-ring__bg{
  fill:none;
  stroke:rgba(255,255,255,.08);
  stroke-width:8;
}

.fc-intro-ring__outer{
  fill:none;
  stroke:rgba(255,196,72,.18);
  stroke-width:2;
  stroke-dasharray:4 8;
  opacity:.8;
}

.fc-intro-ring__progress{
  fill:none;
  stroke:var(--accent, #00CFC7);
  stroke-width:8;
  stroke-linecap:round;
  stroke-dasharray:427.2566;
  stroke-dashoffset:427.2566;
  filter:drop-shadow(0 0 10px rgba(0,207,199,.65));
  transition:stroke-dashoffset .12s linear;
}

.fc-intro__hud{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.fc-intro__percent{
  font-size:1.85rem;
  font-weight:900;
  line-height:1;
  color:#fff;
  text-shadow:0 0 10px rgba(0,207,199,.15);
}

.fc-intro__status{
  margin-top:.35rem;
  font-size:.75rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
}

.fc-intro__text{
  margin-top:1rem;
  font-size:.96rem;
  color:rgba(255,255,255,.78);
  min-height:1.5rem;
}

.fc-intro__meta{
  margin-top:1rem;
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  justify-content:center;
}

.fc-intro__meta span{
  display:inline-flex;
  align-items:center;
  padding:.42rem .8rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.58);
  font-size:.72rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  backdrop-filter:blur(6px);
}

@media (max-width: 640px){
  .fc-intro__logoWrap{
    width:160px;
    height:160px;
  }

  .fc-intro__logo{
    width:112px;
  }

  .fc-intro__loaderWrap,
  .fc-intro-ring{
    width:140px;
    height:140px;
  }

  .fc-intro__loaderWrap{
    width:140px;
    height:140px;
  }

  .fc-intro__percent{
    font-size:1.55rem;
  }

  .fc-intro__brandline,
  .fc-intro__subtitle{
    letter-spacing:.14em;
  }
}


/* ============================================ */
/* PANEL TÁCTICO DIGITAL · INTRO */
/* ============================================ */

.fc-intro__pitch{
  position:absolute;
  inset:50% auto auto 50%;
  transform:translate(-50%, -50%);
  width:min(84vw, 760px);
  height:min(84vw, 760px);
  max-height:560px;
  aspect-ratio:1/1;
  border-radius:50%;
  pointer-events:none;
  opacity:.26;
  z-index:1;
  filter:drop-shadow(0 0 14px rgba(0,207,199,.10));
}

.fc-intro__pitch::before{
  content:"";
  position:absolute;
  inset:8%;
  border:1px solid rgba(0,207,199,.22);
  border-radius:50%;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.02) inset,
    0 0 26px rgba(0,207,199,.05);
}

.fc-intro__pitch::after{
  content:"";
  position:absolute;
  inset:18%;
  border:1px dashed rgba(255,255,255,.08);
  border-radius:50%;
  animation:fcIntroPitchRotate 18s linear infinite;
}

@keyframes fcIntroPitchRotate{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

.fc-intro__pitch-line,
.fc-intro__pitch-circle,
.fc-intro__pitch-box,
.fc-intro__pitch-goal{
  position:absolute;
  box-sizing:border-box;
}

.fc-intro__pitch-line--mid{
  left:50%;
  top:12%;
  width:1px;
  height:76%;
  transform:translateX(-50%);
  background:linear-gradient(180deg, transparent, rgba(0,207,199,.28), transparent);
}

.fc-intro__pitch-circle{
  left:50%;
  top:50%;
  width:22%;
  height:22%;
  transform:translate(-50%, -50%);
  border:1px solid rgba(0,207,199,.25);
  border-radius:50%;
}

.fc-intro__pitch-box{
  left:50%;
  width:28%;
  height:12%;
  transform:translateX(-50%);
  border:1px solid rgba(0,207,199,.22);
  border-radius:0 0 18px 18px;
}

.fc-intro__pitch-box--top{
  top:12%;
}

.fc-intro__pitch-box--bottom{
  bottom:12%;
  border-radius:18px 18px 0 0;
}

.fc-intro__pitch-goal{
  left:50%;
  width:14%;
  height:4%;
  transform:translateX(-50%);
  border:1px solid rgba(255,196,72,.22);
}

.fc-intro__pitch-goal--top{
  top:8%;
  border-bottom:none;
}

.fc-intro__pitch-goal--bottom{
  bottom:8%;
  border-top:none;
}

.fc-intro__player,
.fc-intro__ball{
  position:absolute;
  border-radius:50%;
}

.fc-intro__player{
  width:10px;
  height:10px;
  background:rgba(0,207,199,.95);
  box-shadow:
    0 0 10px rgba(0,207,199,.7),
    0 0 20px rgba(0,207,199,.18);
  animation:fcIntroPlayerPulse 2.2s ease-in-out infinite;
}

@keyframes fcIntroPlayerPulse{
  0%,100%{ transform:scale(1); opacity:.78; }
  50%{ transform:scale(1.28); opacity:1; }
}

.fc-intro__player--p1{ left:50%; top:16%; transform:translate(-50%, -50%); animation-delay:.1s; }
.fc-intro__player--p2{ left:34%; top:30%; transform:translate(-50%, -50%); animation-delay:.5s; }
.fc-intro__player--p3{ left:66%; top:30%; transform:translate(-50%, -50%); animation-delay:.9s; }
.fc-intro__player--p4{ left:28%; top:52%; transform:translate(-50%, -50%); animation-delay:1.2s; }
.fc-intro__player--p5{ left:72%; top:52%; transform:translate(-50%, -50%); animation-delay:1.5s; }
.fc-intro__player--p6{ left:40%; top:72%; transform:translate(-50%, -50%); animation-delay:1.8s; }
.fc-intro__player--p7{ left:60%; top:72%; transform:translate(-50%, -50%); animation-delay:2.1s; }

.fc-intro__ball{
  left:50%;
  top:50%;
  width:8px;
  height:8px;
  transform:translate(-50%, -50%);
  background:#ffd36c;
  box-shadow:
    0 0 10px rgba(255,211,108,.8),
    0 0 18px rgba(255,211,108,.25);
  animation:fcIntroBallMove 4.2s ease-in-out infinite;
}

@keyframes fcIntroBallMove{
  0%   { left:50%; top:50%; }
  25%  { left:62%; top:38%; }
  50%  { left:44%; top:28%; }
  75%  { left:35%; top:56%; }
  100% { left:50%; top:50%; }
}

.fc-intro__pass{
  position:absolute;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  transform-origin:left center;
  opacity:.55;
  animation:fcIntroPassBlink 2.6s ease-in-out infinite;
}

@keyframes fcIntroPassBlink{
  0%,100%{ opacity:.08; }
  50%{ opacity:.62; }
}

.fc-intro__pass--a{
  left:50%;
  top:50%;
  width:17%;
  transform:rotate(-34deg);
  animation-delay:.3s;
}

.fc-intro__pass--b{
  left:44%;
  top:28%;
  width:18%;
  transform:rotate(132deg);
  animation-delay:1s;
}

.fc-intro__pass--c{
  left:35%;
  top:56%;
  width:20%;
  transform:rotate(-8deg);
  animation-delay:1.8s;
}

@media (max-width: 640px){
  .fc-intro__pitch{
    width:min(96vw, 560px);
    height:min(96vw, 560px);
    opacity:.22;
  }

  .fc-intro__player{
    width:8px;
    height:8px;
  }

  .fc-intro__ball{
    width:7px;
    height:7px;
  }
}


/*Logo nuestra identidad */
.fc-card img.club-identity-logo{
  filter: drop-shadow(0 0 12px rgba(0,207,199,.25));
  transition: transform .3s ease;
}

.fc-card img.club-identity-logo:hover{
  transform: scale(1.1);
}