/* ================================================================
   MON ATELIER – styles.css
   Versión 1.0
   ─────────────────────────────────────────────────────────────────
   PALETA OFICIAL:
     Azul principal : #253374
     Verde          : #246335
     Vino           : #6e1a1b
     Kids azul      : #3251b6
     Kids naranja   : #dd7447
     Oro            : #c9a84c
   ─────────────────────────────────────────────────────────────────
   Para cambiar tipografías busca las variables --f-* en :root
   Para cambiar colores busca las variables --c-* en :root
================================================================ */

/* ── Variables ─────────────────────────────────────── */
:root {
  /* Colores */
  --c-blue:        #253374;
  --c-blue-dk:     #1a2558;
  --c-blue-lt:     #3a4d9a;
  --c-green:       #246335;
  --c-wine:        #6e1a1b;
  --c-wine-lt:     #8c2425;
  --c-gold:        #c9a84c;
  --c-gold-lt:     #e4c472;
  --c-kids-b:      #3251b6;
  --c-kids-o:      #dd7447;
  --c-white:       #ffffff;
  --c-cream:       #faf8f4;
  --c-text:        #1a1a2e;
  --c-text-mid:    #515172;

  /* Tipografías — cambia aquí para toda la web */
  --f-display:     'Big Shoulders Display', 'Arial Black', sans-serif;
  --f-body:        'Epilogue', Georgia, serif;
  --f-editorial:   'Libre Baskerville', Georgia, serif;
  --f-script:      'Dancing Script', cursive;

  /* Espaciado */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  7rem;

  /* Radio */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-pill: 100px;

  /* Sombras */
  --sh-sm:  0 2px 12px rgba(37,51,116,.10);
  --sh-md:  0 8px 32px rgba(37,51,116,.16);
  --sh-lg:  0 20px 60px rgba(37,51,116,.22);

  /* Transición global */
  --ease: 0.32s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--f-body); color: var(--c-text); background: var(--c-white); line-height: 1.7; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; transition: var(--ease); }
ul    { list-style: none; }
button { font-family: inherit; }

/* ── Container ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-md); }

/* ── Reveal on scroll ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Chips / Labels ─────────────────────────────────── */
.chip {
  display: inline-block;
  font-family: var(--f-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-blue);
  background: rgba(37,51,116,.08);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-sm);
}
.chip--light { color: rgba(255,255,255,.75); background: rgba(255,255,255,.12); }
.chip--gold  { color: var(--c-gold); background: rgba(201,168,76,.14); }
.chip--kids  { color: var(--c-kids-o); background: rgba(221,116,71,.1); }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--f-display);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: .78rem; }

.btn--primary { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }
.btn--primary:hover { background: var(--c-blue-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,51,116,.38); }

.btn--wine { background: var(--c-wine); color: #fff; border-color: var(--c-wine); }
.btn--wine:hover { background: var(--c-wine-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(110,26,27,.38); }

.btn--green { background: var(--c-green); color: #fff; border-color: var(--c-green); }
.btn--green:hover { background: #1d5227; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(36,99,53,.38); }

.btn--gold { background: var(--c-gold); color: var(--c-blue-dk); border-color: var(--c-gold); font-weight: 900; }
.btn--gold:hover { background: var(--c-gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.45); }

.btn--white { background: #fff; color: var(--c-blue); border-color: #fff; }
.btn--white:hover { background: var(--c-cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }

.btn--kids { background: var(--c-kids-o); color: #fff; border-color: var(--c-kids-o); }
.btn--kids:hover { background: #c5603c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(221,116,71,.38); }

/* ── Section helpers ────────────────────────────────── */
.section { padding: var(--sp-xl) 0; }
.section--dark  { background: var(--c-blue); color: #fff; }
.section--cream { background: var(--c-cream); }

.section-head { text-align: center; margin-bottom: var(--sp-lg); }
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: .5rem;
}
.section-title--light { color: #fff; }
.section-sub  { font-size: 1.08rem; color: var(--c-text-mid); max-width: 580px; margin: 0 auto; }
.section-sub--light { color: rgba(255,255,255,.75); }

.tags-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tags-row span {
  font-size: .88rem;
  color: var(--c-blue);
  background: rgba(37,51,116,.07);
  padding: 6px 16px;
  border-radius: var(--r-pill);
}


/* ================================================================
   HEADER
================================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 12px 0;
  background: #253374;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  transition: var(--ease);
}
.header.scrolled {
  background: #253374;
  padding: 9px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.header__logo { flex-shrink: 0; display: flex; align-items: center; }
.header__logo-img { height: 46px; width: auto; }
.header__logo-fallback {
  display: none;
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.1;
  color: #fff;
  text-align: center;
}
.header__nav { flex: 1; }
.header__nav ul { display: flex; gap: 6px; justify-content: center; }
.header__nav a {
  font-family: var(--f-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding: 7px 11px;
  border-radius: var(--r-pill);
}
.header__nav a:hover,
.header__nav a.active { color: #fff; background: rgba(255,255,255,.12); }
.header__cta { flex-shrink: 0; padding: 10px 22px; font-size: .78rem; }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--ease);
}


/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(37,51,116,.55) 0%,
    rgba(37,51,116,.72) 50%,
    rgba(26,37,88,.92) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 920px; padding: 0 var(--sp-md); }

.hero__pre {
  display: block;
  font-family: var(--f-script);
  font-size: 1.25rem;
  color: var(--c-gold-lt);
  margin-bottom: var(--sp-sm);
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .8s ease .3s forwards;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(3.8rem, 10vw, 7.8rem);
  font-weight: 900;
  line-height: .93;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: var(--sp-md);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s ease .5s forwards;
}
.hero__title em {
  font-style: italic;
  font-family: var(--f-editorial);
  font-weight: 400;
  color: var(--c-gold-lt);
}
.hero__sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,.84);
  max-width: 580px;
  margin: 0 auto var(--sp-md);
  line-height: 1.85;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s ease .7s forwards;
}
.hero__btns {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .9s ease .9s forwards;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 2;
  color: rgba(255,255,255,.4);
  font-family: var(--f-display);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: pulse 2.2s ease infinite;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes pulse  { 0%,100%{ opacity:.3 } 50%{ opacity:.9 } }


/* ================================================================
   BRAND STATEMENT
================================================================ */
.brand-stmt { padding: var(--sp-xl) 0; background: #fff; }
.brand-stmt__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.brand-stmt__title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.02;
  color: var(--c-blue);
  margin-bottom: var(--sp-md);
}
.brand-stmt__text {
  font-size: 1.12rem;
  color: var(--c-text-mid);
  max-width: 600px;
  margin: 0 auto var(--sp-md);
  line-height: 1.9;
}
.brand-stmt__quote {
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--c-wine);
  border-left: 3px solid var(--c-wine);
  padding-left: var(--sp-md);
  text-align: left;
  max-width: 580px;
  margin: 0 auto;
}


/* ================================================================
   EXPERIENCIAS GRID
================================================================ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: var(--sp-md);
}
.exp-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--ease);
}
.exp-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 24px 50px rgba(0,0,0,.3);
}
.exp-card__img-wrap { position: relative; height: 195px; overflow: hidden; }
.exp-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.exp-card:hover .exp-card__img-wrap img { transform: scale(1.06); }
.exp-card__body { padding: var(--sp-md); }
.exp-card__body h3 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.exp-card__body p { font-size: .9rem; color: rgba(255,255,255,.72); margin-bottom: var(--sp-md); line-height: 1.7; }
.exp-card--kids .exp-card__body h3 { color: var(--c-kids-o); }

.badge {
  position: absolute;
  top: 11px; right: 11px;
  font-family: var(--f-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.badge--gold { background: var(--c-gold); color: var(--c-blue-dk); }
.badge--moon { background: rgba(26,37,88,.9); color: var(--c-gold-lt); }
.badge--kids { background: var(--c-kids-o); color: #fff; }


/* ================================================================
   PINTA TU LUNA
================================================================ */
.luna {
  position: relative;
  padding: var(--sp-xl) 0;
  background: #0c1225;
  overflow: hidden;
  color: #fff;
}
/* Starfield */
.luna__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at  8% 12%, rgba(255,255,255,.65) 0%,transparent 100%),
    radial-gradient(1px 1px at 22% 38%, rgba(255,255,255,.45) 0%,transparent 100%),
    radial-gradient(1px 1px at 40% 20%, rgba(255,255,255,.7)  0%,transparent 100%),
    radial-gradient(1px 1px at 55% 65%, rgba(255,255,255,.5)  0%,transparent 100%),
    radial-gradient(1px 1px at 72% 10%, rgba(255,255,255,.6)  0%,transparent 100%),
    radial-gradient(1px 1px at 85% 75%, rgba(255,255,255,.45) 0%,transparent 100%),
    radial-gradient(2px 2px at 14% 68%, rgba(255,255,255,.3)  0%,transparent 100%),
    radial-gradient(2px 2px at 60% 88%, rgba(255,255,255,.3)  0%,transparent 100%),
    radial-gradient(1px 1px at 35%  5%, rgba(255,255,255,.55) 0%,transparent 100%),
    radial-gradient(1px 1px at 92% 42%, rgba(255,255,255,.4)  0%,transparent 100%),
    radial-gradient(1px 1px at 48% 52%, rgba(255,255,255,.5)  0%,transparent 100%),
    radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,.35) 0%,transparent 100%);
  pointer-events: none;
}
.luna::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(37,51,116,.4) 0%, transparent 65%),
              radial-gradient(ellipse at 15% 25%, rgba(201,168,76,.07) 0%, transparent 50%);
  pointer-events: none;
}
.luna__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
.luna__title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .97;
  color: #fff;
  margin-bottom: var(--sp-md);
}
.luna__text { font-size: 1.08rem; color: rgba(255,255,255,.78); margin-bottom: var(--sp-md); line-height: 1.85; }
.luna__options { display: flex; gap: var(--sp-sm); margin-bottom: var(--sp-md); }
.luna__opt {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: var(--sp-md) var(--sp-sm);
  text-align: center;
}
.luna__opt--vip { border-color: var(--c-gold); background: rgba(201,168,76,.08); }
.luna__opt-moon { font-size: 2.4rem; margin-bottom: 8px; }
.luna__opt h4 { font-family: var(--f-display); font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.luna__opt strong { display: block; font-size: 1.5rem; color: var(--c-gold-lt); margin-bottom: 4px; }
.luna__opt span { font-size: .78rem; color: rgba(255,255,255,.5); }
.luna__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--sp-md); }
.luna__tags span {
  font-family: var(--f-display);
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.07);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.luna__img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 0 80px rgba(201,168,76,.18);
}
.luna__glow {
  position: absolute;
  top: 50%; right: 0;
  width: 420px; height: 420px;
  transform: translate(35%,-50%);
  background: radial-gradient(circle, rgba(201,168,76,.14) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}


/* ================================================================
   PAINT & WINE
================================================================ */
.pw__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
.pw__img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.pw__title {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--c-blue);
  line-height: 1;
  margin-bottom: var(--sp-md);
}
.pw__text { font-size: 1.08rem; color: var(--c-text-mid); margin-bottom: var(--sp-md); line-height: 1.85; }
.pw__list { margin-bottom: var(--sp-md); }
.pw__list li { font-size: .98rem; color: var(--c-text-mid); padding: 8px 0; border-bottom: 1px solid rgba(37,51,116,.07); }


/* ================================================================
   SESIONES GUIADAS
================================================================ */
.guided__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
.guided__title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--c-blue);
  line-height: 1.06;
  margin-bottom: var(--sp-md);
}
.guided__text { font-size: 1.08rem; color: var(--c-text-mid); margin-bottom: var(--sp-md); line-height: 1.85; }
.guided__for h4 {
  font-family: var(--f-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 10px;
}
.guided__for { margin-bottom: var(--sp-md); }
.guided__img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-lg); }


/* ================================================================
   CUMPLEAÑOS
================================================================ */
.birthday {
  position: relative;
  padding: var(--sp-xl) 0;
  overflow: hidden;
  color: #fff;
}
.birthday__bg { position: absolute; inset: 0; }
.birthday__bg-img { width: 100%; height: 100%; object-fit: cover; }
.birthday__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(110,26,27,.88) 0%, rgba(110,26,27,.82) 100%);
}
.birthday__content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.birthday__title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: var(--sp-md);
  line-height: 1;
}
.birthday__text { font-size: 1.12rem; color: rgba(255,255,255,.85); margin-bottom: var(--sp-md); line-height: 1.8; }
.birthday__list { margin-bottom: var(--sp-md); text-align: left; display: inline-block; }
.birthday__list li { font-size: 1rem; color: rgba(255,255,255,.88); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); }


/* ================================================================
   CORPORATIVO
================================================================ */
.corp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
.corp__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--c-blue);
  line-height: 1.08;
  margin-bottom: var(--sp-md);
}
.corp__text { font-size: 1.08rem; color: var(--c-text-mid); margin-bottom: var(--sp-md); line-height: 1.85; }
.corp__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: var(--sp-md); }
.corp__feat {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  padding: var(--sp-sm);
  background: rgba(37,51,116,.05);
  border-radius: var(--r-md);
  transition: var(--ease);
}
.corp__feat:hover { background: rgba(37,51,116,.09); }
.corp__feat > span { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px; }
.corp__feat h4 { font-family: var(--f-display); font-size: .95rem; font-weight: 800; color: var(--c-blue); margin-bottom: 2px; }
.corp__feat p  { font-size: .88rem; color: var(--c-text-mid); }
.corp__img { width: 100%; height: 550px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-lg); }


/* ================================================================
   PRODUCTOS
================================================================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}
.prod-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  text-align: center;
  transition: var(--ease);
}
.prod-card:hover { background: rgba(255,255,255,.11); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.28); }
.prod-card > span { display: block; font-size: 2.4rem; margin-bottom: 12px; }
.prod-card h4 { font-family: var(--f-display); font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.prod-card p  { font-size: .84rem; color: rgba(255,255,255,.58); }
.products__cta { text-align: center; }


/* ================================================================
   KIDS
================================================================ */
.kids {
  position: relative;
  background: linear-gradient(135deg,#f5f2ff 0%,#fff9f5 100%);
  overflow: hidden;
}
.kids__blob {
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(221,116,71,.1) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.kids__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
.kids__title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--c-kids-b);
  line-height: 1;
  margin-bottom: var(--sp-md);
}
.kids__text { font-size: 1.08rem; color: var(--c-text-mid); margin-bottom: var(--sp-md); line-height: 1.85; }
.kids__list { margin-bottom: var(--sp-md); }
.kids__list li { font-size: .98rem; color: var(--c-text-mid); padding: 8px 0; border-bottom: 1px solid rgba(50,81,182,.07); }
.kids__img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--r-lg); box-shadow: 0 20px 60px rgba(221,116,71,.2); }


/* ================================================================
   GALERÍA
================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.gallery-item { overflow: hidden; border-radius: var(--r-md); height: 240px; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; height: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.06); }


/* ================================================================
   TESTIMONIOS
================================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: var(--sp-md);
}
.review-card {
  background: #fff;
  border: 1px solid rgba(37,51,116,.08);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  box-shadow: var(--sh-sm);
  transition: var(--ease);
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: var(--f-editorial);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(37,51,116,.05);
  position: absolute;
  top: 0; left: var(--sp-md);
  pointer-events: none;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.review-card__stars { font-size: .95rem; margin-bottom: var(--sp-sm); }
.review-card > p {
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--c-text-mid);
  line-height: 1.82;
  margin-bottom: var(--sp-md);
}
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--c-blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 800;
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-family: var(--f-display); font-size: .9rem; font-weight: 700; color: var(--c-blue); }
.review-card__author span  { font-size: .78rem; color: var(--c-text-mid); }


/* ================================================================
   FAQ
================================================================ */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(37,51,116,.1);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--sp-md);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: .98rem;
  font-weight: 700;
  color: var(--c-blue);
  text-align: left;
  gap: var(--sp-sm);
  transition: var(--ease);
}
.faq-q:hover { background: rgba(37,51,116,.03); }
.faq-q[aria-expanded="true"] { background: rgba(37,51,116,.05); }
.faq-icon { font-size: 1.45rem; color: var(--c-blue); transition: transform var(--ease); flex-shrink: 0; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-a.open { max-height: 320px; padding: 0 var(--sp-md) var(--sp-md); }
.faq-a p { font-size: .96rem; color: var(--c-text-mid); line-height: 1.82; }
.faq-a a { color: var(--c-blue); text-decoration: underline; }


/* ================================================================
   UBICACIÓN
================================================================ */
.location { background: var(--c-blue); }
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-lg);
  align-items: start;
}
.loc-detail { display: flex; gap: var(--sp-sm); align-items: flex-start; margin-bottom: var(--sp-md); }
.loc-detail > span { font-size: 1.45rem; flex-shrink: 0; margin-top: 2px; }
.loc-detail h4 { font-family: var(--f-display); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-gold-lt); margin-bottom: 5px; }
.loc-detail p  { color: rgba(255,255,255,.84); font-size: .94rem; line-height: 1.7; }
.loc-detail small { color: rgba(255,255,255,.42); font-size: .8rem; }
.loc-detail a  { color: var(--c-gold-lt); font-weight: 600; }
.location__map { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.38); }
.location__map iframe { display: block; }


/* ================================================================
   FOOTER
================================================================ */
.footer { background: #253374; color: rgba(255,255,255,.7); padding: var(--sp-xl) 0 var(--sp-md); }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: var(--sp-md);
}
.footer__logo { height: 46px; width: auto; margin-bottom: var(--sp-sm); }
.footer__logo-text {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: var(--sp-sm);
}
.footer__tagline { font-family: var(--f-script); font-size: 1rem; color: var(--c-gold-lt); margin-bottom: var(--sp-md); line-height: 1.6; }
.footer__social { display: flex; flex-direction: column; gap: 10px; }
.footer__social a { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: rgba(255,255,255,.55); }
.footer__social a:hover { color: #fff; }
.footer__nav h5 { font-family: var(--f-display); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: var(--sp-sm); }
.footer__nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer__nav a  { font-size: .88rem; color: rgba(255,255,255,.5); }
.footer__nav a:hover { color: #fff; }
.footer__hours h5 { font-family: var(--f-display); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: var(--sp-sm); }
.footer__hours p  { font-size: .86rem; color: rgba(255,255,255,.5); margin-bottom: 8px; line-height: 1.6; }
.footer__hours strong { color: rgba(255,255,255,.84); }
.footer__addr { margin-top: var(--sp-sm); font-style: italic; font-size: .82rem; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-sm); }
.footer__bottom p  { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer__phrase { font-family: var(--f-script); font-size: .98rem !important; color: var(--c-gold-lt) !important; }


/* ================================================================
   BOTÓN FLOTANTE WHATSAPP
================================================================ */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.55);
  transition: var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.65); }
.wa-float__tip {
  position: absolute;
  right: 68px;
  background: var(--c-text);
  color: #fff;
  font-family: var(--f-display);
  font-size: .74rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  opacity: 0;
  pointer-events: none;
  transition: var(--ease);
}
.wa-float__tip::after {
  content: '';
  position: absolute;
  right: -4px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--c-text);
  clip-path: polygon(0 50%,100% 0,100% 100%);
}
.wa-float:hover .wa-float__tip { opacity: 1; }


/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .header__nav a { font-size: .72rem; padding: 6px 8px; }
  .header__cta  { display: none; }
}

@media (max-width: 768px) {
  :root { --sp-xl: 4rem; --sp-lg: 2.5rem; }

  /* Mobile nav */
  .header__nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,37,88,.98);
    padding: 100px var(--sp-md) var(--sp-md);
    flex-direction: column;
    z-index: -1;
    backdrop-filter: blur(16px);
  }
  .header__nav.open { display: flex; }
  .header__nav ul { flex-direction: column; gap: 0; }
  .header__nav a { font-size: 1.6rem; font-weight: 800; padding: var(--sp-sm) 0; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.06); letter-spacing: .04em; }
  .header__burger { display: flex; }

  /* Two-col to one-col */
  .luna__inner,
  .pw__inner,
  .guided__inner,
  .corp__inner,
  .kids__inner,
  .location__inner { grid-template-columns: 1fr; }

  .luna__img,
  .pw__img,
  .guided__img,
  .corp__img,
  .kids__img { height: 300px; }

  /* Birthday */
  .birthday__content { text-align: left; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; height: 240px; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }

  .hero__btns { flex-direction: column; align-items: center; }
  .hero__title { font-size: 3.6rem; }
}

@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .luna__options { flex-direction: column; }
  .wa-float { bottom: 18px; right: 18px; }
  .exp-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   VIDEO HERO
================================================================ */
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Logo SVG en header y footer */
.header__logo-svg {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.3));
}
.footer__logo-svg {
  height: 58px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.3));
}

/* Gallery extra items */
.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-item--wide {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; height: 240px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
}


.header__logo-img:hover { opacity: 0.85; }

.footer__logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ================================================================
   LISTA SIN EMOJIS — punto decorativo dorado
================================================================ */
.pw__list li {
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid rgba(37,51,116,.07);
  padding-top: 8px;
  padding-bottom: 8px;
}
.pw__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-blue);
  font-weight: 700;
}

.birthday__list li {
  padding-left: 20px;
  position: relative;
}
.birthday__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.6);
}

.kids__list li {
  padding-left: 20px;
  position: relative;
}
.kids__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-kids-b);
}

/* ================================================================
   CORPO FEATURES — dot en lugar de emoji
================================================================ */
.corp__feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-blue);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ================================================================
   UBICACIÓN — dot en lugar de emoji
================================================================ */
.loc-detail__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ================================================================
   LUNA — iconos tipográficos
================================================================ */
.luna__opt-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.5);
  font-family: serif;
}
.luna__opt-icon--vip { color: var(--c-gold); }

/* ================================================================
   PRODUCT CARDS — dot decorativo
================================================================ */
.prod-card__icon {
  width: 36px;
  height: 3px;
  background: var(--c-gold);
  border-radius: 2px;
  margin: 0 auto 16px;
}

/* ================================================================
   ESTRELLAS TESTIMONIOS
================================================================ */
.review-card__stars {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-sm);
}


.footer__logo-img {
  height: 68px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  mix-blend-mode: screen;
}

/* ================================================================
   TIPOGRAFÍA MEJORADA — más editorial y premium
================================================================ */
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(4rem, 11vw, 8.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -.035em;
}
.hero__title em {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--c-gold-lt);
  font-size: 0.9em;
}

.brand-stmt__title {
  font-family: var(--f-editorial);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--c-blue);
  margin-bottom: var(--sp-md);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.03em;
}

.luna__title {
  font-family: var(--f-editorial);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.pw__title,
.guided__title,
.corp__title,
.kids__title,
.birthday__title {
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: -.03em;
}

.exp-card__body h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.01em;
}

/* Hero subtítulo más elegante */
.hero__pre {
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-gold-lt);
  letter-spacing: 0;
}

.hero__sub {
  font-family: var(--f-body);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}


.footer__logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}


.footer__brand .logo-svg {
  height: 64px;
  margin-bottom: 14px;
}

/* ================================================================
   LOGO REAL PNG
   Header = #253374, Footer = #253374 → logo fondo #253374 = seamless
================================================================ */
.logo-img {
  height: 54px;
  width: auto;
  display: block;
}
.footer__brand .logo-img {
  height: 64px;
  margin-bottom: 14px;
}

/* Footer background exactamente igual al logo */
.footer {
  background: #253374;
}
.footer__bottom {
  background: #1a2558;
  margin: 0 calc(-1 * var(--sp-md));
  padding: var(--sp-md) var(--sp-md);
}
