/* css/style.css */
/* Diseño creativo y profesional (fondo blanco). */
/* Tipografía: Inter (Google Fonts). */

:root{
  --bg: #ffffff;
  --text: #0b1220;
  --muted: rgba(11, 18, 32, .68);
  --line: rgba(11, 18, 32, .10);
  --shadow: 0 18px 45px rgba(11, 18, 32, .08);
  --shadow2: 0 10px 25px rgba(11, 18, 32, .06);
  --radius: 18px;

  /* Acentos (no agregan información, solo diseño) */
  --a1: #2dd4bf; /* teal */
  --a2: #60a5fa; /* blue */
  --a3: #a78bfa; /* violet */
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; }

/* Accessibility */
.sr{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip{
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow2);
  z-index: 9999;
}
.skip:focus{ left: 12px; }

/* Layout */
.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section{
  padding: 76px 0;
}
.section--alt{
  background:
    radial-gradient(900px 420px at 8% 20%, rgba(45, 212, 191, .12), transparent 55%),
    radial-gradient(780px 360px at 92% 20%, rgba(96, 165, 250, .12), transparent 55%),
    linear-gradient(180deg, rgba(11, 18, 32, .02), transparent 35%);
  border-top: 1px solid rgba(11, 18, 32, .05);
  border-bottom: 1px solid rgba(11, 18, 32, .05);
}

.section__head{
  margin-bottom: 22px;
  display: grid;
  gap: 10px;
}
.section__title{
  margin: 0;
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
  letter-spacing: -0.02em;
}
.section__lead{
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 18, 32, .08);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}
.brand__mark{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #0b1220;
  background:
    radial-gradient(14px 14px at 28% 32%, rgba(45, 212, 191, .9), transparent 60%),
    radial-gradient(16px 16px at 72% 40%, rgba(96, 165, 250, .9), transparent 60%),
    radial-gradient(18px 18px at 45% 75%, rgba(167, 139, 250, .9), transparent 60%),
    #fff;
  border: 1px solid rgba(11, 18, 32, .10);
  box-shadow: 0 10px 18px rgba(11, 18, 32, .06);
}
.brand__text{
  display: grid;
  gap: 2px;
}
.brand__name{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 0.98rem;
}
.brand__tag{
  color: var(--muted);
  font-size: 0.82rem;
}

/* Nav */
.nav{ display: flex; align-items: center; gap: 10px; }
.nav__toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: #fff;
  box-shadow: 0 10px 18px rgba(11, 18, 32, .06);
  cursor: pointer;
}
.nav__toggleLines{
  display: block;
  width: 18px;
  height: 12px;
  margin: 0 auto;
  position: relative;
}
.nav__toggleLines::before,
.nav__toggleLines::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(11, 18, 32, .82);
  border-radius: 999px;
}
.nav__toggleLines::before{ top: 1px; }
.nav__toggleLines::after{ bottom: 1px; }

.nav__menu{
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.nav__link{
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(11, 18, 32, .82);
}
.nav__link:hover{
  background: rgba(11, 18, 32, .04);
}
.nav__link--cta{
  background:
    radial-gradient(18px 18px at 20% 30%, rgba(45, 212, 191, .55), transparent 60%),
    radial-gradient(18px 18px at 70% 30%, rgba(96, 165, 250, .55), transparent 60%),
    #fff;
  border: 1px solid rgba(11, 18, 32, .10);
  box-shadow: 0 10px 18px rgba(11, 18, 32, .06);
}

/* Hero */
.hero{
  position: relative;
  padding: 70px 0 34px;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 10% 10%, rgba(45, 212, 191, .18), transparent 60%),
    radial-gradient(800px 420px at 90% 12%, rgba(96, 165, 250, .18), transparent 55%),
    radial-gradient(720px 420px at 55% 85%, rgba(167, 139, 250, .10), transparent 55%),
    #fff;
  border-bottom: 1px solid rgba(11, 18, 32, .05);
}
.hero__inner{
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 34px;
  align-items: center;
}
.chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255,255,255,.8);
  box-shadow: 0 10px 20px rgba(11, 18, 32, .05);
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(11, 18, 32, .82);
  margin: 0 0 14px;
}
.hero__title{
  margin: 0;
  font-size: clamp(2.1rem, 1.4rem + 2.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero__subtitle{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 52ch;
}
.hero__actions{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */
.btn{
  appearance: none;
  border: 1px solid rgba(11, 18, 32, .12);
  background: #fff;
  color: rgba(11, 18, 32, .9);
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(11, 18, 32, .06);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(11, 18, 32, .08);
}
.btn:active{ transform: translateY(0); }
.btn--primary{
  border-color: rgba(45, 212, 191, .35);
  background:
    radial-gradient(18px 18px at 20% 30%, rgba(45, 212, 191, .65), transparent 60%),
    radial-gradient(18px 18px at 70% 30%, rgba(96, 165, 250, .55), transparent 60%),
    #fff;
}
.btn--ghost{
  background: rgba(255,255,255,.78);
}
.btn--soft{
  border-color: rgba(96, 165, 250, .25);
  background:
    radial-gradient(18px 18px at 28% 40%, rgba(96, 165, 250, .22), transparent 60%),
    #fff;
}

/* Hero meta cards */
.hero__meta{
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 520px;
}
.metaCard{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 18, 32, .08);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 22px rgba(11, 18, 32, .06);
}
.metaCard__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 18, 32, .10);
  background:
    radial-gradient(16px 16px at 30% 35%, rgba(45, 212, 191, .35), transparent 60%),
    radial-gradient(16px 16px at 70% 40%, rgba(96, 165, 250, .32), transparent 60%),
    #fff;
}
.metaCard__title{
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 0.92rem;
}
.metaCard__value{
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Poster visual */
.hero__visual{ display: grid; justify-items: end; }
.poster{
  position: relative;
  width: min(420px, 100%);
  height: 420px;
}
.poster__glow{
  position: absolute;
  inset: -30px;
  border-radius: 40px;
  background:
    radial-gradient(220px 220px at 30% 35%, rgba(45, 212, 191, .40), transparent 60%),
    radial-gradient(260px 260px at 70% 40%, rgba(96, 165, 250, .35), transparent 60%),
    radial-gradient(240px 240px at 55% 75%, rgba(167, 139, 250, .25), transparent 60%);
  filter: blur(10px);
  opacity: .75;
}
.poster__card{
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, .10);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: hidden;
}
.poster__card::before{
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(260px 260px at 20% 0%, rgba(45, 212, 191, .20), transparent 60%),
    radial-gradient(260px 260px at 80% 0%, rgba(96, 165, 250, .16), transparent 60%);
  pointer-events: none;
}
.poster__badge{
  position: relative;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255,255,255,.86);
}
.poster__big{
  position: relative;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 3rem;
  line-height: 1;
}
.poster__small{
  position: relative;
  color: var(--muted);
  font-weight: 650;
}
.poster__line{
  position: relative;
  height: 1px;
  background: rgba(11, 18, 32, .10);
  margin: 10px 0 6px;
}
.poster__row{
  position: relative;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.poster__pill{
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, .10);
  background:
    radial-gradient(16px 16px at 30% 35%, rgba(167, 139, 250, .14), transparent 60%),
    rgba(255,255,255,.86);
  font-weight: 800;
}

/* Wave divider */
.hero__wave{
  height: 36px;
  margin-top: 42px;
  background:
    radial-gradient(24px 24px at 20% 50%, rgba(45, 212, 191, .25), transparent 60%),
    radial-gradient(24px 24px at 50% 50%, rgba(96, 165, 250, .20), transparent 60%),
    radial-gradient(24px 24px at 80% 50%, rgba(167, 139, 250, .18), transparent 60%);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  opacity: .7;
}

/* Cards & grids */
.grid{
  display: grid;
  gap: 14px;
}
.grid--2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card{
  background: #fff;
  border: 1px solid rgba(11, 18, 32, .10);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow2);
}
.card--soft{
  background:
    radial-gradient(220px 220px at 15% 10%, rgba(45, 212, 191, .10), transparent 60%),
    radial-gradient(220px 220px at 85% 10%, rgba(96, 165, 250, .10), transparent 60%),
    #fff;
}
.card--outline{
  background: #fff;
  box-shadow: none;
}
.card__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 18, 32, .10);
  background:
    radial-gradient(16px 16px at 30% 35%, rgba(45, 212, 191, .25), transparent 60%),
    radial-gradient(16px 16px at 70% 40%, rgba(96, 165, 250, .22), transparent 60%),
    #fff;
  margin-bottom: 10px;
}
.card__title{
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.card__text{
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 550;
}

.callout{
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(11, 18, 32, .10);
  background:
    radial-gradient(260px 260px at 15% 50%, rgba(45, 212, 191, .12), transparent 60%),
    radial-gradient(260px 260px at 85% 50%, rgba(96, 165, 250, .10), transparent 60%),
    #fff;
  box-shadow: var(--shadow2);
}
.callout__title{ margin: 0; font-size: 1.05rem; font-weight: 900; letter-spacing: -0.01em; }
.callout__text{ margin: 6px 0 0; color: var(--muted); font-weight: 600; }

/* Hours */
.hours{
  display: grid;
  place-items: center;
  padding-top: 8px;
}
.hours__card{
  width: min(520px, 100%);
  border-radius: 26px;
  border: 1px solid rgba(11, 18, 32, .10);
  background:
    radial-gradient(260px 260px at 20% 15%, rgba(45, 212, 191, .16), transparent 60%),
    radial-gradient(260px 260px at 80% 15%, rgba(96, 165, 250, .12), transparent 60%),
    #fff;
  box-shadow: var(--shadow);
  padding: 22px;
}
.hours__top{
  display: flex;
  align-items: center;
  gap: 12px;
}
.hours__icon{
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 18, 32, .10);
  background: #fff;
}
.hours__title{ font-weight: 900; letter-spacing: -0.01em; }
.hours__subtitle{ color: var(--muted); font-weight: 650; }
.hours__time{
  margin-top: 16px;
  font-size: clamp(2.2rem, 1.6rem + 1.3vw, 2.8rem);
  font-weight: 950;
  letter-spacing: -0.04em;
}
.hours__note{ color: var(--muted); font-weight: 700; margin-top: 4px; }

/* Map */
.mapGrid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
  align-items: stretch;
}
.mapGrid__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.mapFrame{
  height: 100%;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(11, 18, 32, .10);
  box-shadow: var(--shadow2);
  background: #fff;
}
.mapFrame iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

.link{
  color: rgba(11, 18, 32, .86);
  font-weight: 750;
  word-break: break-word;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.stack{ display: grid; gap: 10px; }
.muted{ margin: 0; color: var(--muted); font-weight: 600; }
.divider{ height: 1px; background: rgba(11, 18, 32, .10); margin: 14px 0; }

/* Footer */
.footer{
  border-top: 1px solid rgba(11, 18, 32, .08);
  padding: 24px 0;
  background: #fff;
}
.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer__title{
  font-weight: 950;
  letter-spacing: -0.02em;
}
.footer__meta{
  color: var(--muted);
  font-weight: 650;
  margin-top: 4px;
}
.toTop{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, .10);
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(11, 18, 32, .06);
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(11, 18, 32, .92);
  color: #fff;
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(11, 18, 32, .22);
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
  font-weight: 750;
  letter-spacing: -0.01em;
  max-width: min(620px, calc(100% - 40px));
  text-align: center;
}
.toast--show{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__visual{ justify-items: start; }
  .poster{ height: 380px; }
  .mapGrid{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .grid--2{ grid-template-columns: 1fr; }
  .nav__toggle{ display: inline-grid; place-items: center; }
  .nav__menu{
    position: absolute;
    right: 20px;
    top: 70px;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, calc(100vw - 40px));
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 18, 32, .10);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav__menu.is-open{ display: grid; }
  .nav__link{ padding: 12px 12px; }
  .footer__inner{ flex-direction: column; align-items: flex-start; }
}
