:root {
  --bg: #0b0b0c;
  --bg-2: #101114;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.12);
  --text: #f5f5f7;
  --text-soft: #cfd1d5;
  --muted: #969aa3;
  --paper: #f2f3f5;
  --paper-text: #111215;
  --paper-line: rgba(17,18,21,.11);
  --accent: #d8d9de;
  --accent-strong: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, .28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.08), transparent 22rem),
    radial-gradient(circle at 85% 0%, rgba(255,255,255,.05), transparent 20rem),
    linear-gradient(135deg, #080808 0%, #111214 40%, #1a1b1f 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,.035) 0 1px, transparent 1px 24px),
    linear-gradient(30deg, rgba(255,255,255,.02) 0 1px, transparent 1px 30px),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.02), transparent 24rem);
  opacity: .85;
}

body::after {
  content: "COLO COLO";
  position: fixed;
  right: -2vw;
  bottom: -3vw;
  z-index: -1;
  pointer-events: none;
  color: rgba(255,255,255,.028);
  font-size: clamp(4rem, 15vw, 15rem);
  font-weight: 1000;
  letter-spacing: -.08em;
  line-height: .82;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8, 8, 9, .82);
  backdrop-filter: blur(14px);
}
.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .78rem;
  color: var(--text-soft);
}
.topbar__inner p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar__actions a {
  font-weight: 700;
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
}

.navbar {
  background: rgba(12, 12, 13, .72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand__badge {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
}
.brand__badge img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.22));
}
.brand__copy {
  display: grid;
  line-height: .95;
  text-transform: uppercase;
}
.brand__copy small {
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--text-soft);
  font-weight: 900;
}
.brand__copy strong {
  margin-top: 6px;
  font-size: clamp(1.08rem, 2vw, 1.7rem);
  font-weight: 1000;
  letter-spacing: -.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 12px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  font-weight: 800;
  transition: .2s ease;
}
.nav-links a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition: .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid {
  color: #0b0b0c;
  background: linear-gradient(180deg, #ffffff, #dcdde1);
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
}
.btn--solid:hover { background: #fff; }
.btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}
.btn--ghost:hover { background: rgba(255,255,255,.09); }
.btn--nav {
  color: #0b0b0c !important;
  background: linear-gradient(180deg, #ffffff, #d7d8dc);
}
.btn--block { width: 100%; }

.hero {
  position: relative;
  min-height: calc(100vh - 130px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero__texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.04), rgba(255,255,255,0)),
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.10), transparent 30rem),
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.05), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,.025) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,.018) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255,255,255,.025) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255,255,255,.018) 25%, rgba(0,0,0,0) 25%);
  background-position: 0 0, 0 0, 0 0, 16px 0, 16px 0, 0 0, 0 0;
  background-size: auto, auto, auto, 32px 32px, 32px 32px, 32px 32px, 32px 32px;
  opacity: .4;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .8fr);
  gap: clamp(28px, 7vw, 72px);
  align-items: center;
  padding-block: clamp(54px, 9vw, 110px);
}
.eyebrow,
.section-heading span,
.section-kicker,
.contact-copy span,
.methodology__panel span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
}
.eyebrow__line {
  width: 42px;
  height: 1px;
  background: rgba(255,255,255,.45);
}
.hero h1 {
  margin: 18px 0 18px;
  max-width: 12ch;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: .94;
  letter-spacing: -.07em;
  font-weight: 1000;
}
.hero__lead {
  max-width: 60ch;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero__stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.hero__stats article,
.feature-card,
.info-card,
.reservas-card,
.contact-form,
.methodology__panel,
.timeline,
.hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero__stats article {
  padding: 18px;
  border-radius: var(--radius-md);
}
.hero__stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}
.hero__stats span { color: var(--text-soft); font-size: .93rem; }

.hero-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
}
.hero-panel__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.hero-panel__head img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}
.hero-panel__head span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}
.hero-panel__head h2 {
  margin: 8px 0 0;
  font-size: 1.55rem;
  line-height: 1.06;
}
.hero-panel__body {
  display: grid;
  gap: 16px;
  padding-block: 20px;
}
.hero-panel__body article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-panel__body small,
.reservas-card__items small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}
.hero-panel__body strong,
.reservas-card__items strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.hero-panel__body p { margin: 0; color: var(--text-soft); line-height: 1.65; }

.section {
  padding-block: clamp(76px, 9vw, 120px);
}
.section--light {
  background: linear-gradient(180deg, rgba(242,243,245,.98), rgba(231,233,237,.98));
  color: var(--paper-text);
}
.section--dark {
  color: var(--text);
}
.two-col,
.methodology,
.reservas-layout,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.section-heading h2,
.methodology__panel h2,
.reservas-copy h2,
.contact-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.section-heading p,
.methodology__panel p,
.reservas-copy p,
.contact-copy p {
  margin: 0;
  line-height: 1.8;
  color: inherit;
  opacity: .82;
}
.section-heading--center {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.feature-stack {
  display: grid;
  gap: 16px;
}
.feature-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
}
.feature-card h3,
.info-card h3,
.timeline h3 { margin: 0 0 10px; }
.feature-card p,
.info-card p,
.timeline p,
.reservas-copy p,
.contact-copy p { color: inherit; opacity: .82; }

.card-grid {
  display: grid;
  gap: 18px;
}
.card-grid--three {
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.info-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}
.info-card__number {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 1000;
  margin-bottom: 18px;
}

.methodology__panel,
.timeline {
  border-radius: var(--radius-xl);
  padding: 28px;
  color: #fff;
}
.timeline {
  display: grid;
  gap: 18px;
}
.timeline article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
}
.timeline strong {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.reservas-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.reservas-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}
.reservas-card__top {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.reservas-card__top span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 900;
}
.reservas-card__top strong {
  display: block;
  margin-top: 8px;
  font-size: 1.5rem;
}
.reservas-card__items {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.reservas-card__items article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.contact-points {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.contact-points a {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17,18,21,.06);
  border: 1px solid rgba(17,18,21,.10);
  color: var(--paper-text);
  font-weight: 700;
}
.contact-form {
  border-radius: var(--radius-xl);
  padding: 28px;
  color: #fff;
}
.form-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form label span {
  font-size: .88rem;
  font-weight: 800;
  color: var(--text-soft);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.42); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.08);
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(8, 8, 9, .84);
}
.site-footer__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
}
.site-footer strong { display: block; margin-bottom: 6px; }
.site-footer p {
  margin: 0;
  color: var(--text-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { transition-delay: .12s; }

@media (max-width: 980px) {
  .hero__grid,
  .two-col,
  .methodology,
  .reservas-layout,
  .contact-grid,
  .card-grid--three {
    grid-template-columns: 1fr;
  }

  .menu-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: rgba(12,12,13,.96);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { text-align: center; }
}

@media (max-width: 720px) {
  .topbar__inner,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 12px;
  }
  .topbar__actions {
    flex-wrap: wrap;
  }
  .brand__copy strong { font-size: 1.1rem; }
  .hero h1 { max-width: 100%; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero-panel__head { align-items: flex-start; }
  .hero-panel__head img { width: 72px; height: 72px; }
}


.section--light .section-heading span,
.section--light .contact-copy span,
.section--light .methodology__panel span {
  color: #4b5563;
}

.section--light .section-heading h2,
.section--light .contact-copy h2 {
  color: #111215;
}

.section--light .section-heading p,
.section--light .contact-copy p {
  color: #2f3440;
  opacity: 1;
}

.section--light .contact-points a {
  background: rgba(17,18,21,.07);
  border: 1px solid rgba(17,18,21,.14);
  color: #111215;
}

.section--light .contact-points a:hover {
  background: rgba(17,18,21,.12);
}

.section--light .feature-card {
  background: linear-gradient(180deg, #17181c, #101114);
  border-color: rgba(0,0,0,.08);
}


/* Mejoras de contraste en secciones claras */
.section--light .methodology__panel,
.section--light .timeline,
.section--light .contact-form {
  background: linear-gradient(180deg, #ffffff, #f4f5f7);
  color: #111215;
  border: 1px solid rgba(17, 18, 21, .10);
  box-shadow: 0 22px 58px rgba(17, 18, 21, .12);
  backdrop-filter: none;
}

.section--light .methodology__panel span,
.section--light .contact-form label span {
  color: #4b5563;
}

.section--light .methodology__panel h2,
.section--light .timeline h3 {
  color: #111215;
}

.section--light .methodology__panel p,
.section--light .timeline p {
  color: #343a46;
  opacity: 1;
}

.section--light .timeline strong {
  color: #111215;
  background: #eef0f3;
  border-color: rgba(17, 18, 21, .10);
}

.section--light .contact-form label span {
  font-weight: 850;
}

.section--light .contact-form input,
.section--light .contact-form textarea {
  background: #ffffff;
  color: #111215;
  border: 1px solid rgba(17, 18, 21, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.section--light .contact-form input::placeholder,
.section--light .contact-form textarea::placeholder {
  color: #777d89;
}

.section--light .contact-form input:focus,
.section--light .contact-form textarea:focus {
  border-color: rgba(17, 18, 21, .36);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(17, 18, 21, .07);
}

/* Botón flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: #25d366;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 42px rgba(0,0,0,.30);
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 52px rgba(0,0,0,.36);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}


/* Sección identidad Colo-Colo */
.identity-section {
  position: relative;
  overflow: hidden;
}

.identity-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.08), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,.03), transparent 45%);
  opacity: .8;
}

.identity-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.identity-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.identity-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.identity-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.identity-cards article {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 58px rgba(0,0,0,.22);
}

.identity-cards small {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 900;
}

.identity-cards strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.35rem;
}

.identity-cards p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .identity-layout,
  .identity-cards {
    grid-template-columns: 1fr;
  }

  .identity-cards article {
    min-height: auto;
  }
}


/* Ubicación y mapa */
.btn--dark {
  color: #ffffff;
  background: linear-gradient(180deg, #17181c, #0e0f12);
  border-color: rgba(17,18,21,.16);
  box-shadow: 0 16px 34px rgba(17,18,21,.18);
}

.btn--dark:hover {
  background: #090a0c;
}

.btn--soft {
  color: #111215;
  background: #ffffff;
  border: 1px solid rgba(17,18,21,.14);
}

.location-section {
  border-top: 1px solid rgba(17,18,21,.08);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.location-copy span {
  display: inline-flex;
  color: #4b5563;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
}

.location-copy h2 {
  margin: 14px 0 16px;
  color: #111215;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.location-copy p {
  margin: 0;
  color: #2f3440;
  line-height: 1.8;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.address-card {
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(17,18,21,.10);
  box-shadow: 0 18px 42px rgba(17,18,21,.08);
}

.address-card small {
  display: block;
  margin-bottom: 8px;
  color: #6b7280;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}

.address-card strong {
  display: block;
  color: #111215;
  font-size: 1.12rem;
}

.map-card {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(17,18,21,.10);
  box-shadow: 0 24px 70px rgba(17,18,21,.16);
  background: #ffffff;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 980px) {
  .location-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .map-card,
  .map-card iframe {
    min-height: 340px;
  }
}




/* Mejoras menú superior */
.brand { flex: 0 0 auto; }
.brand__copy strong { white-space: nowrap; font-size: clamp(1rem, 1.65vw, 1.55rem); }
.navbar__inner { gap: 14px; }
.nav-links { margin-left: auto; gap: 2px; flex-wrap: nowrap; }
.nav-links a { padding: 12px 10px; font-size: .88rem; white-space: nowrap; }
.btn--nav { padding-inline: 16px; }
@media (min-width: 981px) { .brand__copy { min-width: 245px; } }

/* Mejoras bloque mapa */
.location-copy p strong { color: #111215; }
.map-coordinates-note { display: inline-block; margin-left: 0; color: #4b5563; opacity: 1; font-size: .92rem; font-weight: 600; }
.map-card { position: relative; min-height: 460px; padding: 12px; border-radius: 30px; background: linear-gradient(180deg, #ffffff, #f7f8fa); box-shadow: 0 26px 70px rgba(17,18,21,.14); }
.map-card::before { content: "Ubicación real"; position: absolute; top: 20px; left: 22px; z-index: 2; padding: 8px 12px; border-radius: 999px; background: rgba(17,18,21,.88); color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.map-card iframe { width: 100%; height: 100%; min-height: 436px; border: 0; display: block; border-radius: 22px; background: #e8eaee; }
@media (max-width: 640px) { .map-card { min-height: 360px; padding: 10px; } .map-card iframe { min-height: 340px; } .map-card::before { top: 16px; left: 18px; font-size: .7rem; } }


/* Header premium - Escuela Oficial de Fútbol */
.topbar {
  background: rgba(6, 6, 7, .92);
}
.topbar__inner {
  min-height: 38px;
  font-size: .74rem;
}
.topbar__inner p {
  font-weight: 900;
  letter-spacing: .11em;
}
.topbar__actions a {
  opacity: .92;
}
.topbar__actions a:hover {
  opacity: 1;
}

.navbar {
  background: linear-gradient(180deg, rgba(10,10,11,.94), rgba(12,12,13,.88));
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 16px 38px rgba(0,0,0,.22);
}
.navbar__inner {
  min-height: 92px;
  gap: 18px;
}
.brand {
  gap: 16px;
  min-width: 0;
}
.brand__badge {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
}
.brand__badge img {
  width: 74px;
  height: 74px;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.24));
}
.brand__copy {
  display: grid;
  gap: 3px;
  line-height: .94;
}
.brand__copy small {
  font-size: .72rem;
  letter-spacing: .22em;
  color: rgba(255,255,255,.72);
  font-weight: 900;
}
.brand__copy strong {
  white-space: nowrap;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 1000;
  letter-spacing: -.07em;
  color: #ffffff;
}
.brand__copy em {
  font-style: normal;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #cfd1d5;
  font-weight: 800;
}
.nav-links {
  margin-left: auto;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  position: relative;
  padding: 12px 11px;
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: -.01em;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.nav-links a:not(.btn):hover::after {
  transform: scaleX(1);
}
.nav-links a:hover {
  background: rgba(255,255,255,.04);
}
.btn--nav {
  margin-left: 8px;
  padding: 14px 18px !important;
  border-radius: 999px !important;
  font-size: .94rem !important;
  font-weight: 900 !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

@media (min-width: 981px) {
  .brand__copy { min-width: 290px; }
}

@media (max-width: 1180px) {
  .brand__copy strong { font-size: clamp(1.25rem, 2vw, 1.7rem); }
  .nav-links a { padding: 12px 9px; font-size: .84rem; }
}

@media (max-width: 980px) {
  .navbar__inner {
    min-height: 86px;
  }
  .brand__badge {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
  }
  .brand__badge img {
    width: 66px;
    height: 66px;
  }
  .brand__copy strong {
    font-size: 1.42rem;
    white-space: nowrap;
  }
  .brand__copy small {
    letter-spacing: .16em;
  }
  .brand__copy em {
    letter-spacing: .14em;
  }
  .nav-links {
    margin-left: 0;
    gap: 10px;
  }
  .nav-links a:not(.btn)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar__inner p {
    font-size: .68rem;
    line-height: 1.4;
  }
  .brand {
    gap: 12px;
  }
  .brand__badge {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }
  .brand__badge img {
    width: 58px;
    height: 58px;
  }
  .brand__copy small {
    font-size: .63rem;
  }
  .brand__copy strong {
    font-size: 1.15rem;
  }
  .brand__copy em {
    font-size: .64rem;
  }
}


/* Logo destacado adicional en el hero */
.hero-emblem {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 54px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}
.hero-emblem__badge {
  position: relative;
  width: 132px;
  height: 132px;
  flex: 0 0 132px;
  display: grid;
  place-items: center;
}
.hero-emblem__badge::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.18), rgba(255,255,255,0) 70%);
  filter: blur(12px);
}
.hero-emblem__badge img {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.28));
}
.hero-emblem__copy {
  display: grid;
  gap: 6px;
}
.hero-emblem__copy small {
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 900;
}
.hero-emblem__copy strong {
  color: #fff;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 1000;
}
@media (max-width: 980px) {
  .hero-emblem {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .hero-emblem {
    padding: 16px 18px;
    gap: 14px;
    border-radius: 24px;
  }
  .hero-emblem__badge {
    width: 102px;
    height: 102px;
    flex-basis: 102px;
  }
  .hero-emblem__badge img {
    width: 92px;
    height: 92px;
  }
  .hero-emblem__copy strong {
    font-size: 1.05rem;
  }
  .hero-emblem__copy small {
    font-size: .64rem;
  }
}
