/* Reset y estilos base */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--on-neutral);
  background: var(--alpha-white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--alpha-gold); color: var(--alpha-navy); }

:focus-visible {
  outline: 2px solid var(--alpha-gold);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}
@media (min-width: 1024px) {
  .container { padding: 0 var(--sp-2xl); }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--alpha-navy);
  color: var(--on-primary);
  height: var(--header-h);
  transition: background var(--dur-base) var(--ease-default),
              backdrop-filter var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
}
.header--scrolled {
  background: rgba(11, 31, 58, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--sh-md);
}
.header__topbar {
  height: var(--header-topbar-h);
  background: var(--alpha-white);
  color: var(--alpha-navy);
  border-bottom: 1px solid rgba(11, 31, 58, 0.10);
}
.header__topbar-inner {
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
@media (min-width: 1024px) {
  .header__topbar-inner { padding: 0 var(--sp-xl); }
}
.header__inner {
  max-width: none;
  height: var(--header-main-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  background: var(--alpha-navy);
}
@media (min-width: 1024px) {
  .header__inner { padding: 0 var(--sp-xl); }
}
.header__brand {
  display: flex; align-items: center; gap: var(--sp-sm);
  padding: 4px 10px 4px 4px;
  border-radius: var(--r-full);
  flex: 0 0 auto;
  transition: transform var(--dur-base) var(--ease-bounce),
              background var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
}
.header__brand:hover {
  transform: translateY(-3px) scale(1.04);
  background: rgba(245, 197, 24, 0.10);
  box-shadow: 0 10px 24px rgba(245, 197, 24, 0.25);
}
.header__brand:active { transform: translateY(-1px) scale(0.99); }
.header__logo {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: transform var(--dur-slow) var(--ease-default);
}
.header__brand:hover .header__logo { transform: rotate(-8deg); }
.header__logo--img {
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
  object-fit: cover;
  object-position: center;
  border: 2.5px solid var(--alpha-gold);
  background: var(--alpha-gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.25), 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform var(--dur-slow) var(--ease-bounce),
              box-shadow var(--dur-base) var(--ease-default);
}
.header__logo--official {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  border-radius: var(--r-full);
  background: var(--alpha-white);
  border: 2.5px solid var(--alpha-gold);
  box-shadow: 0 0 0 2px rgba(245, 197, 24, 0.18), 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform var(--dur-slow) var(--ease-bounce),
              box-shadow var(--dur-base) var(--ease-default);
}
.header__brand:hover .header__logo--img {
  transform: rotate(-12deg) scale(1.1);
  box-shadow: 0 0 0 5px rgba(245, 197, 24, 0.4), 0 12px 28px rgba(245, 197, 24, 0.55);
}
.header__brand:hover .header__logo--official {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.30), 0 10px 24px rgba(245, 197, 24, 0.35);
}
.header__brand-text {
  display: flex; flex-direction: column; line-height: 0.95;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--alpha-white);
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .header__brand-text { font-size: 1.4rem; }
}
@media (min-width: 1180px) {
  .header__brand-text { font-size: 1.58rem; }
}
.header__brand-line1 {
  color: var(--alpha-white);
  white-space: nowrap;
}
.header__brand-line2 {
  color: var(--alpha-gold);
  font-size: 0.78em;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(245, 197, 24, 0.4), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.header__nav {
  display: none;
  gap: var(--sp-xl);
  align-items: center;
}
@media (min-width: 1180px) {
  .header__nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1vw, var(--sp-xl));
    height: 100%;
    min-width: 0;
  }
}
.header__nav-menu {
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 1180px) {
  .header__nav-menu {
    height: 100%;
  }
}
.header__submenu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  z-index: 120;
  min-width: 220px;
  padding: var(--sp-sm);
  border-radius: var(--r-md);
  background: rgba(6, 19, 40, 0.98);
  border: 1px solid rgba(245, 197, 24, 0.22);
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity var(--dur-base) var(--ease-default),
              transform var(--dur-base) var(--ease-default);
}
.header__submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.header__nav-menu:not(.is-hover-suppressed):hover .header__submenu,
.header__nav-menu:focus-within .header__submenu,
.header__nav-menu.is-open .header__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.header__submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--alpha-white);
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
}
.header__submenu a:hover,
.header__submenu a:focus-visible {
  background: rgba(245, 197, 24, 0.14);
  color: var(--alpha-gold);
}
.header__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  position: relative;
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-md);
  transition: color var(--dur-base) var(--ease-default),
              transform var(--dur-base) var(--ease-bounce),
              background var(--dur-base) var(--ease-default),
              text-shadow var(--dur-base) var(--ease-default);
  overflow: hidden;
  isolation: isolate;
}
.header__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(245, 197, 24, 0.18), transparent 70%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity var(--dur-base) var(--ease-default),
              transform var(--dur-base) var(--ease-default);
  z-index: -1;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 4px;
  height: 2px; width: 0;
  background: var(--alpha-gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
}
.header__link:hover {
  color: var(--alpha-gold);
  transform: translateY(-3px);
  text-shadow: 0 0 18px rgba(245, 197, 24, 0.6);
}
.header__link:hover::before { opacity: 1; transform: scale(1); }
.header__link:hover::after {
  width: 70%;
  box-shadow: 0 0 12px rgba(245, 197, 24, 0.8);
}
.header__link:active { transform: translateY(-1px) scale(0.97); }

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-sm);
  flex-shrink: 0;
  margin-left: auto;
  height: 100%;
}

.header__icon-btn.header__menu-btn {
  display: none;
  order: 1;
}
.site-search-toggle { order: 0; }
.menu-icon--close { display: none; }
.nav-open .menu-icon--open { display: none; }
.nav-open .menu-icon--close { display: block; }

@media (max-width: 1179px) {
  body.nav-open { overflow: hidden; }
  .header__inner { gap: var(--sp-sm); }
  .header__brand-text { font-size: 1.2rem; }
  .header__logo--official {
    width: 46px;
    height: 46px;
  }
  .header__icon-btn.header__menu-btn { display: grid; }
  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: var(--sp-md);
    background: rgba(6, 19, 40, 0.98);
    box-shadow: var(--sh-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--dur-base) var(--ease-default),
                transform var(--dur-base) var(--ease-default),
                visibility var(--dur-base) var(--ease-default);
  }
  .nav-open .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header__link {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }
  .header__link::after { display: none; }
  .header__actions {
    margin-left: auto;
    gap: 4px;
  }
  .header__nav-menu {
    display: grid;
  }
  .header__submenu {
    position: static;
    min-width: 0;
    padding: 0 0 8px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .header__submenu::before { display: none; }
  .header__submenu a {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--text-xs);
    text-align: center;
  }
}

/* === Social en topbar (derecha) === */
.header__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}
.header__actions .header__social {
  display: none;
}
.header__top-phone {
  color: var(--alpha-navy);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.header__top-phone:hover {
  color: var(--alpha-gold);
}
.header__top-separator {
  width: 1px;
  height: 18px;
  background: rgba(11, 31, 58, 0.22);
  flex: 0 0 auto;
}
.header__social-btn {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: var(--r-full);
  background: rgba(11, 31, 58, 0.08);
  color: var(--alpha-navy);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-bounce),
              background var(--dur-base) var(--ease-default),
              color var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
}
@media (min-width: 768px) {
  .header__social-btn { width: 28px; height: 28px; }
}
.header__social-btn:hover {
  transform: translateY(-4px) rotate(-6deg) scale(1.1);
  background: var(--alpha-gold);
  color: var(--alpha-navy);
  box-shadow: 0 8px 18px rgba(245, 197, 24, 0.45);
}
.header__social-btn:active { transform: translateY(-1px) scale(0.95); }

/* === Barra de teléfono en header (solo número) === */
.header__phone-bar {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(245, 197, 24, 0.4);
  color: var(--alpha-white);
  border-radius: var(--r-full);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-base) var(--ease-default),
              border-color var(--dur-base) var(--ease-default),
              transform var(--dur-base) var(--ease-bounce),
              box-shadow var(--dur-base) var(--ease-default);
}
@media (min-width: 1180px) { .header__phone-bar { display: inline-flex; } }
.header__phone-bar:hover {
  background: var(--alpha-gold);
  border-color: var(--alpha-gold);
  color: var(--alpha-navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(245, 197, 24, 0.4);
}
.header__phone-bar:active { transform: translateY(-1px) scale(0.97); }
.header__phone-bar svg { flex-shrink: 0; }
.header__phone-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.header__icon-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-full);
  position: relative;
  color: var(--alpha-white);
  border: 1.5px solid transparent;
  transition: background var(--dur-base) var(--ease-default),
              transform var(--dur-base) var(--ease-bounce),
              border-color var(--dur-base) var(--ease-default),
              color var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
}
.header__icon-btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--r-full);
  background: radial-gradient(circle, rgba(245, 197, 24, 0.4), transparent 70%);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--dur-base) var(--ease-default),
              transform var(--dur-base) var(--ease-default);
  z-index: -1;
  pointer-events: none;
}
.header__icon-btn:hover {
  background: rgba(245, 197, 24, 0.15);
  border-color: var(--alpha-gold);
  color: var(--alpha-gold);
  transform: translateY(-4px) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(245, 197, 24, 0.35);
}
.header__icon-btn:hover::after { opacity: 1; transform: scale(1.2); }
.header__icon-btn:active { transform: translateY(-1px) scale(0.92); }
/* ============================================================
   SECTION
   ============================================================ */
.section { padding: var(--sp-3xl) 0; }
@media (min-width: 1024px) { .section { padding: var(--sp-4xl) 0; } }

.section__head { text-align: center; margin-bottom: var(--sp-2xl); }
.section__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  letter-spacing: 0.01em;
  color: var(--alpha-navy);
  margin-bottom: var(--sp-sm);
}
.section__sub {
  font-size: var(--text-base);
  color: var(--alpha-graphite);
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================================
   FILTERS
   ============================================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  justify-content: center;
  margin-bottom: var(--sp-2xl);
}
.filter {
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-full);
  background: transparent;
  border: 1.5px solid var(--alpha-mist);
  color: var(--alpha-graphite);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--dur-base) var(--ease-default);
}
.filter:hover {
  border-color: var(--alpha-navy);
  color: var(--alpha-navy);
  transform: translateY(-2px);
}
.filter--active {
  background: var(--alpha-navy);
  border-color: var(--alpha-navy);
  color: var(--alpha-white);
}

/* ============================================================
   GRID
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}
@media (min-width: 768px)  { .grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-xl); } }
@media (min-width: 1280px) { .grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-md);
  margin-top: var(--sp-2xl);
}
.page-btn {
  padding: var(--sp-sm) var(--sp-md);
  font-size: var(--text-sm);
  color: var(--alpha-graphite);
  border-radius: var(--r-md);
  transition: all var(--dur-base) var(--ease-default);
}
.page-btn:not(:disabled):hover { background: var(--alpha-mist); color: var(--alpha-navy); }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.page-num {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-default);
}
.page-num:hover { background: var(--alpha-mist); }
.page-num--active { background: var(--alpha-navy); color: var(--alpha-white); }

/* ============================================================
   CULTURE / STATS
   ============================================================ */
.culture { background: var(--alpha-cream); border-radius: var(--r-xl); padding: var(--sp-3xl) var(--sp-xl); margin-top: var(--sp-3xl); }
.culture__head { max-width: 720px; margin: 0 auto var(--sp-2xl); text-align: center; }
.culture__kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--alpha-gold-bright);
  background: var(--alpha-navy);
  padding: var(--sp-xs) var(--sp-md);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
}
.culture__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  line-height: 1.05;
  color: var(--alpha-navy);
  margin-bottom: var(--sp-md);
}
.culture__lead {
  font-size: var(--text-lg);
  color: var(--alpha-graphite);
  line-height: 1.6;
}
.culture__lead-sub {
  margin-top: var(--sp-md);
  font-size: var(--text-base);
  color: var(--alpha-navy);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
  padding-top: var(--sp-md);
}
.culture__lead-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--alpha-gold);
  border-radius: 2px;
}

.culture__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}
@media (min-width: 768px) { .culture__stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center;
  padding: var(--sp-lg);
  background: var(--alpha-white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur-base) var(--ease-default), box-shadow var(--dur-base) var(--ease-default);
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--alpha-navy);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}
.stat__label {
  font-size: var(--text-sm);
  color: var(--alpha-graphite);
  font-weight: 500;
}

/* ============================================================
   SEDES
   ============================================================ */
.sedes { padding: var(--sp-3xl) 0 var(--sp-4xl); }
.sedes__head { text-align: center; max-width: 720px; margin: 0 auto var(--sp-2xl); }
.sedes__kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--alpha-gold-bright);
  background: var(--alpha-navy);
  padding: 6px var(--sp-md);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
}
.sedes__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  letter-spacing: 0.01em;
  color: var(--alpha-navy);
  margin-bottom: var(--sp-sm);
  line-height: 1.05;
}
.sedes__sub {
  font-size: var(--text-base);
  color: var(--alpha-graphite);
}

.sedes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  max-width: 760px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .sedes__grid { grid-template-columns: 1fr; gap: var(--sp-2xl); }
}

.club-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  max-width: 1080px;
  margin: 0 auto var(--sp-2xl);
}

@media (min-width: 768px) {
  .club-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.club-info-card {
  min-height: 190px;
  padding: var(--sp-lg);
  border: 1px solid rgba(11, 31, 58, 0.10);
  border-radius: var(--r-md);
  background: var(--alpha-white);
  box-shadow: var(--sh-sm);
}

.club-info-card span {
  display: inline-block;
  margin-bottom: var(--sp-sm);
  color: var(--alpha-gold);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.club-info-card h3 {
  color: var(--alpha-navy);
  font-size: var(--text-xl);
  line-height: 1.2;
}

.club-info-card p {
  margin-top: var(--sp-sm);
  color: var(--alpha-graphite);
  line-height: 1.55;
}

.sede {
  position: relative;
  padding: var(--sp-2xl) var(--sp-xl);
  background: linear-gradient(180deg, var(--alpha-navy) 0%, var(--alpha-navy-deep) 100%);
  color: var(--alpha-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
  isolation: isolate;
}
.sede::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(245,197,24,0.18) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(245,197,24,0.08) 0%, transparent 60%);
  z-index: -1;
  transition: opacity var(--dur-slow) var(--ease-default);
}
.sede:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(11, 31, 58, 0.35),
              0 0 0 2px rgba(245, 197, 24, 0.4);
}
.sede:hover::before { opacity: 1.5; }

.sede__num {
  position: absolute;
  top: var(--sp-lg);
  right: var(--sp-xl);
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(245, 197, 24, 0.18);
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: transform var(--dur-slow) var(--ease-default), color var(--dur-base) var(--ease-default);
}
.sede:hover .sede__num {
  transform: scale(1.1) rotate(-4deg);
  color: rgba(245, 197, 24, 0.32);
}

.sede__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--alpha-navy);
  background: var(--alpha-gold);
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.4);
}

.sede__name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  letter-spacing: 0.01em;
  color: var(--alpha-white);
  line-height: 1.05;
  margin-bottom: var(--sp-sm);
}

.sede__city {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--alpha-gold);
  font-weight: 600;
  margin-bottom: var(--sp-lg);
}

.sede__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sede__features li {
  font-size: var(--text-sm);
  color: var(--alpha-mist);
  padding-left: var(--sp-md);
  position: relative;
}
.sede__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--alpha-gold);
}

.sede__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--alpha-gold);
  color: var(--alpha-navy);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  border-radius: var(--r-md);
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(245, 197, 24, 0.35);
  transition: transform var(--dur-base) var(--ease-bounce),
              background var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
}
.sede__cta:hover {
  background: var(--alpha-gold-bright);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(245, 197, 24, 0.55);
}
.sede__cta:active { transform: translateY(-1px) scale(0.98); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--alpha-navy-deep);
  color: var(--on-primary);
  padding: var(--sp-2xl) 0 var(--sp-sm);
  margin-top: var(--sp-2xl);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: minmax(220px, 1.2fr) minmax(220px, 1fr); }
  .footer__contact { grid-column: 1 / -1; }
}
@media (min-width: 1180px) {
  .footer__inner { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.8fr; }
  .footer__contact { grid-column: auto; }
}
.footer__brand { max-width: 280px; }
.footer__logo { margin-bottom: var(--sp-sm); filter: drop-shadow(0 8px 24px rgba(245,197,24,0.35)); }
.footer__logo--img {
  width: 72px;
  height: 72px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 3px solid var(--alpha-gold);
  background: var(--alpha-gold);
}
.footer__logo--white {
  width: 180px;
  height: auto;
  max-width: 100%;
  display: block;
  background: transparent;
  transition: transform var(--dur-slow) var(--ease-bounce), filter var(--dur-base) var(--ease-default);
}
.footer__logo--white:hover {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 12px 32px rgba(245,197,24,0.55));
}
.footer__logo--official {
  width: 118px;
  height: 118px;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-full);
  border: 4px solid var(--alpha-gold);
  background: var(--alpha-white);
  box-shadow: 0 0 0 6px rgba(245, 197, 24, 0.12), 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform var(--dur-slow) var(--ease-bounce), filter var(--dur-base) var(--ease-default);
}
.footer__logo--official:hover {
  transform: scale(1.04) rotate(-2deg);
  filter: drop-shadow(0 12px 32px rgba(245,197,24,0.55));
}
.footer__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  margin-bottom: var(--sp-xs);
}
.footer__tagline { color: var(--alpha-gold); font-size: var(--text-sm); margin-bottom: var(--sp-sm); font-weight: 500; }
.footer__copy { font-size: var(--text-xs); opacity: 0.6; line-height: 1.6; }

.footer__heading {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--alpha-gold);
  margin-bottom: var(--sp-sm);
}
.footer__links { display: flex; flex-direction: column; gap: 6px; }
.footer__links a {
  font-size: var(--text-sm);
  opacity: 0.8;
  transition: opacity var(--dur-base) var(--ease-default), color var(--dur-base) var(--ease-default), transform var(--dur-base) var(--ease-default);
}
.footer__links a:hover { opacity: 1; color: var(--alpha-gold); transform: translateX(4px); }

/* === Footer contact (WhatsApp grande, horizontal) === */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  min-width: 0;
}
.footer__whatsapp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--alpha-white);
  border-radius: var(--r-md);
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  min-width: min(100%, 280px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-bounce),
              box-shadow var(--dur-base) var(--ease-default);
}
.footer__whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-default);
}
.footer__whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55);
}
.footer__whatsapp:hover::before { transform: translateX(100%); }
.footer__whatsapp svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.footer__whatsapp-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: max-content;
  gap: 2px;
}
.footer__whatsapp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.footer__whatsapp-num {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.footer__note {
  font-size: var(--text-xs);
  color: var(--alpha-mist);
  opacity: 0.7;
  padding-left: 0;
}

.footer__bottom {
  margin-top: var(--sp-lg);
  padding-top: var(--sp-sm);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: var(--text-xs);
  opacity: 0.7;
}

/* ============================================================
   SEARCH
   ============================================================ */
.site-search {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: none;
  padding: calc(var(--header-h) + var(--sp-md)) var(--sp-md) var(--sp-md);
  background: rgba(6, 19, 40, 0.72);
}
.site-search.is-open { display: block; }
.site-search__dialog {
  max-width: 760px;
  margin: 0 auto;
  background: var(--alpha-white);
  color: var(--alpha-charcoal);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  overflow: hidden;
}
.site-search__bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-sm);
  padding: var(--sp-md);
  border-bottom: 1px solid var(--alpha-mist);
}
.site-search__label {
  grid-column: 1 / -1;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--alpha-navy);
}
.site-search__input {
  min-height: 48px;
  width: 100%;
  border: 1.5px solid var(--alpha-mist);
  border-radius: var(--r-md);
  padding: 0 var(--sp-md);
  font: inherit;
  color: var(--alpha-charcoal);
}
.site-search__input:focus {
  outline: 2px solid var(--alpha-gold);
  outline-offset: 2px;
  border-color: var(--alpha-gold);
}
.site-search__close {
  min-height: 48px;
  padding: 0 var(--sp-md);
  border-radius: var(--r-md);
  background: var(--alpha-navy);
  color: var(--alpha-white);
  font-weight: 700;
}
.site-search__results {
  display: grid;
  gap: 1px;
  max-height: min(56vh, 520px);
  overflow-y: auto;
  background: var(--alpha-mist);
}
.site-search__result {
  display: grid;
  gap: 2px;
  padding: var(--sp-md);
  background: var(--alpha-white);
  transition: background var(--dur-base) var(--ease-default),
              color var(--dur-base) var(--ease-default);
}
.site-search__result:hover,
.site-search__result:focus-visible {
  background: var(--alpha-cream);
  color: var(--alpha-navy);
}
.site-search__result span { font-weight: 700; color: var(--alpha-navy); }
.site-search__result small { color: var(--alpha-graphite); line-height: 1.4; }
.site-search__empty {
  background: var(--alpha-white);
  padding: var(--sp-lg);
  color: var(--alpha-graphite);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  top: calc(var(--header-h) + var(--sp-md));
  right: var(--sp-md);
  background: var(--color-success);
  color: var(--alpha-white);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  font-weight: 600;
  font-size: var(--text-sm);
  transform: translateX(calc(100% + var(--sp-md)));
  opacity: 0;
  transition: transform var(--dur-slow) var(--ease-default), opacity var(--dur-slow) var(--ease-default);
  z-index: 200;
}
.toast.is-visible { transform: translateX(0); opacity: 1; }
.header__calendar-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--r-full);
  background: var(--alpha-gold);
  color: var(--alpha-navy);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(245, 197, 24, 0.28);
  transition: transform var(--dur-base) var(--ease-bounce), box-shadow var(--dur-base) var(--ease-default), background var(--dur-base) var(--ease-default);
}

.header__actions .header__calendar-cta,
.header__actions .header__icon-btn {
  align-self: center;
  flex: 0 0 auto;
}

.header__calendar-cta:hover {
  transform: translateY(-3px);
  background: var(--alpha-gold-bright);
  box-shadow: 0 12px 28px rgba(245, 197, 24, 0.48);
}

.header__calendar-cta:active {
  transform: translateY(-1px) scale(0.98);
}

@media (max-width: 520px) {
  .header__calendar-cta {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.72rem;
  }
}
