/* =========================================================
   Viajeros Ticos CR — Estilos
   Cliente de BlazenovaAI
   Paleta: navy + rojo (marca) sobre base crema, con
   acentos de cielo, turquesa, atardecer y verde.
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  /* Marca */
  --navy: #12275c;
  --navy-deep: #0d1c45;
  --red: #e63a3a;
  --red-deep: #c92c2c;

  /* Acentos aventureros */
  --sky: #38b6ff;
  --sky-deep: #1f8fe0;
  --turquoise: #17c3b2;
  --sunset: #ff8c42;
  --sunset-deep: #ff6b35;
  --green: #2ec4b6;
  --gold: #ffcf56;

  /* Base */
  --cream: #fff9f3;
  --cream-2: #fdf1e6;
  --ink: #1b2440;
  --ink-soft: #55617d;
  --white: #ffffff;
  --line: rgba(18, 39, 92, 0.10);

  /* UI */
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 6px 20px rgba(18, 39, 92, 0.08);
  --shadow-md: 0 18px 45px rgba(18, 39, 92, 0.14);
  --shadow-lg: 0 30px 70px rgba(18, 39, 92, 0.22);
  --maxw: 1200px;
  --nav-h: 76px;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-accent: 'Caveat', cursive;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Scrollbar personalizada */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--sky), var(--turquoise));
  border-radius: 20px;
  border: 3px solid var(--cream-2);
}
::selection { background: var(--sunset); color: #fff; }

/* ---------- Utilidades ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }

.eyebrow {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--sunset-deep);
  font-weight: 700;
  line-height: 1;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 6px 0 14px;
}

.section-title .hl {
  background: linear-gradient(120deg, var(--sky-deep), var(--turquoise));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-intro {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-head { margin-bottom: 54px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .section-intro { margin-inline: auto; }

/* ---------- Botones ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: none;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s var(--ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); filter: brightness(1.05); }
.btn:active { transform: translateY(-1px); }

.btn--sunset { --btn-bg: linear-gradient(120deg, var(--sunset), var(--sunset-deep)); }
.btn--sky    { --btn-bg: linear-gradient(120deg, var(--sky), var(--sky-deep)); }
.btn--wa     { --btn-bg: linear-gradient(120deg, #25d366, #1ebe57); }
.btn--ghost  { --btn-bg: transparent; --btn-fg: var(--navy); box-shadow: inset 0 0 0 2px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--navy); }
.btn--sm { padding: 11px 20px; font-size: .92rem; }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.nav.scrolled {
  background: rgba(255, 249, 243, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(18, 39, 92, 0.08);
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-weight: 600;
  font-size: .98rem;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--sunset), var(--red));
  transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   HERO  (estructura por capas, lista para animar después)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Capa 1 — cielo (gradiente base, detrás de todo) */
.hero__sky {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, #2a4a8c 0%, #4a7bc4 35%, #ff9e6b 78%, #ffd08a 100%);
}
/* Capa 2 — nubes decorativas (contenedor listo para animar: drift) */
.hero__clouds { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__clouds .cloud {
  position: absolute;
  background: radial-gradient(closest-side, rgba(255,255,255,.55), rgba(255,255,255,0));
  border-radius: 50%;
  filter: blur(6px);
  /* Sin animación por ahora. Para animar: usar @keyframes drift y aplicar aquí. */
}
.hero__clouds .cloud--1 { width: 340px; height: 140px; top: 22%; left: -6%; }
.hero__clouds .cloud--2 { width: 260px; height: 110px; top: 55%; right: -4%; }
.hero__clouds .cloud--3 { width: 200px; height: 90px;  top: 12%; right: 20%; opacity:.7; }

/* Capa 3 — foto ventana del avión (imagen principal del hero) */
.hero__photo {
  position: absolute;
  /* margen extra arriba/abajo para que el parallax no deje bordes */
  top: -12%; bottom: -12%; left: 0; right: 0;
  z-index: -1;
  background: url('../assets/img/hero-grupo.webp') center 40%/cover no-repeat;
  will-change: transform;
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,18,45,.78) 0%, rgba(9,18,45,.42) 42%, rgba(9,18,45,.12) 100%),
    linear-gradient(0deg, rgba(9,18,45,.72) 0%, rgba(9,18,45,.10) 45%, rgba(9,18,45,.30) 100%);
}

/* Capa 4 — avión (VACÍA a propósito: aquí irá el avión animado luego) */
.hero__plane {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Placeholder de capa. Insertar aquí un <svg>/<img> del avión y animar
     su transform (vuelo diagonal) en una fase posterior. */
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding-top: var(--nav-h);
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero__title .accent {
  background: linear-gradient(120deg, var(--gold), var(--sunset));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  margin: 22px 0 34px;
  max-width: 560px;
  color: rgba(255,255,255,.92);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll .mouse {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 14px;
  position: relative;
}
.hero__scroll .mouse::after {
  content: '';
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  background: #fff; border-radius: 3px;
  transform: translateX(-50%);
  animation: wheel 1.6s var(--ease) infinite;
}
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0);} 40%{opacity:1;} 100%{opacity:0;transform:translate(-50%,12px);} }

/* onda divisoria bajo el hero */
.hero__wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 2; line-height: 0; }
.hero__wave svg { width: 100%; height: 90px; display: block; }

/* =========================================================
   FRANJA DE STATS / VALORES
   ========================================================= */
.stats {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: -70px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat { padding: 34px 22px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: linear-gradient(120deg, var(--sky-deep), var(--turquoise));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat__label { color: var(--ink-soft); font-weight: 600; margin-top: 8px; font-size: .95rem; }

/* =========================================================
   ITINERARIOS (catálogo)
   ========================================================= */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.filters__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--sky); }
.chip.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.search {
  position: relative;
  min-width: 240px;
  flex: 1 1 240px;
  max-width: 340px;
}
.search input {
  width: 100%;
  padding: 12px 18px 12px 44px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color .25s;
}
.search input:focus { outline: none; border-color: var(--sky); }
.search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
.card__cover {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.card:hover .card__cover { transform: scale(1.06); }
.card__media::after { /* scrim para legibilidad de badges */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,18,45,.25) 0%, rgba(9,18,45,0) 30%, rgba(9,18,45,0) 65%, rgba(9,18,45,.35) 100%);
  z-index: 1;
}
.card__flag { font-size: 4.4rem; filter: drop-shadow(0 6px 12px rgba(0,0,0,.25)); z-index: 1; }
.card__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: .02em;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.card__price--ask { background: var(--sunset-deep); }
.card__price {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 2;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  padding: 7px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.card__price small { font-weight: 500; opacity: .8; font-size: .72rem; }

.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 12px 0 14px;
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 600;
}
.card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.card__desc { color: var(--ink-soft); font-size: .95rem; margin-bottom: 20px; }
.card__foot { margin-top: auto; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--sky-deep);
  transition: gap .25s var(--ease), color .25s;
}
.card__link:hover { gap: 14px; color: var(--sunset-deep); }

.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* =========================================================
   FECHAS / CALENDARIO
   ========================================================= */
.calendar {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.calendar .section-title { color: #fff; }
.calendar .section-title .hl { background: linear-gradient(120deg, var(--gold), var(--sunset)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.calendar .section-intro { color: rgba(255,255,255,.82); }
.calendar .eyebrow { color: var(--gold); }

.calendar__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.calendar__figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,.08);
}
.calendar__figure img { width: 100%; display: block; }
.calendar__figure figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(9,18,45,.85), transparent);
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--gold);
}

.departures { display: flex; flex-direction: column; gap: 12px; }
.departure {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 16px 18px;
  transition: background .25s, transform .25s var(--ease);
}
.departure:hover { background: rgba(255,255,255,.12); transform: translateX(6px); }
.departure__date {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  font-family: var(--font-display);
  line-height: 1;
}
.departure__date .m { display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; color: var(--gold); }
.departure__date .d { display:block; font-size:1.5rem; font-weight:800; margin-top:4px; }
.departure__info { flex: 1; }
.departure__info h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.departure__info p { font-size: .86rem; color: rgba(255,255,255,.7); }
.departure__price { font-family: var(--font-display); font-weight: 800; color: var(--turquoise); white-space: nowrap; }

/* =========================================================
   SOBRE NOSOTROS
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__text p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 18px; }
.about__text .placeholder-note {
  font-size: .85rem;
  color: var(--red);
  background: rgba(230,58,58,.07);
  border-left: 3px solid var(--red);
  padding: 8px 14px;
  border-radius: 8px;
  margin-top: 10px;
}
.about__visual {
  position: relative;
  border-radius: var(--radius-lg);
  min-height: 420px;
  background: linear-gradient(150deg, var(--sky), var(--turquoise) 55%, var(--green));
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__visual .plane-emoji { font-size: 8rem; filter: drop-shadow(0 12px 24px rgba(0,0,0,.25)); }
.about__visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.25) 2px, transparent 2px);
  background-size: 28px 28px;
  opacity: .5;
}
.about__badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(255,255,255,.95);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.about__badge strong { display:block; font-family: var(--font-display); color: var(--navy); font-size: 1.1rem; }
.about__badge span { font-size: .82rem; color: var(--ink-soft); }

/* =========================================================
   POR QUÉ VIAJAR (beneficios)
   ========================================================= */
.why { background: var(--cream-2); }
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.benefit {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.benefit:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.benefit__icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  margin-bottom: 18px;
  color: #fff;
}
.benefit:nth-child(1) .benefit__icon { background: linear-gradient(135deg, var(--sky), var(--sky-deep)); }
.benefit:nth-child(2) .benefit__icon { background: linear-gradient(135deg, var(--sunset), var(--sunset-deep)); }
.benefit:nth-child(3) .benefit__icon { background: linear-gradient(135deg, var(--turquoise), var(--green)); }
.benefit:nth-child(4) .benefit__icon { background: linear-gradient(135deg, var(--red), var(--red-deep)); }
.benefit:nth-child(5) .benefit__icon { background: linear-gradient(135deg, var(--gold), var(--sunset)); }
.benefit:nth-child(6) .benefit__icon { background: linear-gradient(135deg, #8e44ad, #5b2c82); }
.benefit h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.benefit p { color: var(--ink-soft); font-size: .96rem; }

/* =========================================================
   CONTACTO / CTA
   ========================================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.contact__aside {
  background: linear-gradient(160deg, var(--sunset) 0%, var(--red) 100%);
  color: #fff;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__aside h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem,3vw,2.5rem); line-height:1.1; margin-bottom: 16px; }
.contact__aside p { color: rgba(255,255,255,.92); margin-bottom: 26px; }
.contact__list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contact__item { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.contact__item .ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.18); display:grid; place-items:center; font-size:1.2rem; flex-shrink:0; }
.contact__item small { display:block; font-weight:500; opacity:.8; font-size:.78rem; }

.contact__form { padding: 52px 44px; display: flex; flex-direction: column; }
.contact__form h3 { font-family: var(--font-display); color: var(--navy); font-size: 1.4rem; margin-bottom: 6px; }
.contact__form .sub { color: var(--ink-soft); font-size: .92rem; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight:600; font-size:.9rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sky); }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: 4px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  padding: 64px 0 26px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__logo {
  height: 48px; width: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 10px 16px;
  margin-bottom: 16px;
}
.footer__brand p { max-width: 320px; font-size: .95rem; }
.footer h4 { font-family: var(--font-display); color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { transition: color .2s; font-size: .95rem; }
.footer__links a:hover { color: var(--sunset); }
.footer__social { display: flex; gap: 12px; margin-top: 6px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  display: grid; place-items: center;
  transition: background .25s, transform .25s var(--ease);
  color: #fff;
}
.footer__social a:hover { background: var(--sunset); transform: translateY(-3px); }
.footer__bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 12px;
  padding-top: 22px;
  font-size: .85rem;
}
.footer__bottom a { color: var(--sky); }

/* =========================================================
   WHATSAPP FLOTANTE
   ========================================================= */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 18px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-anim="left"]  { transform: translateX(-42px); }
.reveal[data-anim="right"] { transform: translateX(42px); }
.reveal[data-anim="scale"] { transform: scale(.92); }
.reveal.is-visible[data-anim] { transform: none; }
/* stagger: el delay lo aplica el JS via --i */
.reveal { transition-delay: calc(var(--i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .hero__scroll .mouse::after, .wa-float::after { animation: none; }
}

/* En móvil mostramos todo el contenido siempre (sin depender del efecto de
   aparición): evita que cualquier bloque quede invisible en el teléfono. */
@media (max-width: 760px) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .calendar__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__visual { min-height: 300px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(255,249,243,.97);
    backdrop-filter: blur(14px);
    padding: 18px 24px 26px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform .4s var(--ease);
  }
  .nav.open .nav__links { display: flex; transform: translateY(0); }
  .nav__links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .contact__aside, .contact__form { padding: 38px 26px; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
}

/* =========================================================
   REDES EN NAVBAR (iconos de marca)
   ========================================================= */
.nav__social { display: flex; align-items: center; gap: 8px; }
.nav__ico {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  color: #fff;
  transition: transform .25s var(--ease), filter .25s;
  box-shadow: var(--shadow-sm);
}
.nav__ico:hover { transform: translateY(-2px); filter: brightness(1.08); }
.nav__ico svg { width: 19px; height: 19px; }
.ico--ig { background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 45%, #6228d7 100%); }
.ico--fb { background: #1877f2; }
.ico--wa { background: linear-gradient(135deg, #25d366, #1ebe57); }

/* =========================================================
   SOBRE NOSOTROS — foto de la fundadora
   ========================================================= */
.about__photos { display: grid; gap: 16px; align-content: start; }
.about__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  box-shadow: var(--shadow-md);
  margin: 0;
}
.about__photos .about__photo:first-child { min-height: 380px; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.about__signature {
  font-family: var(--font-accent);
  font-size: 1.9rem;
  color: var(--sunset-deep);
  margin-top: 6px;
}

/* =========================================================
   FRANJA NARRATIVA (band)
   ========================================================= */
.band-wrap { padding: clamp(40px, 7vw, 96px) 0; }
.band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(46px, 7vw, 90px) clamp(26px, 5vw, 64px);
  background: linear-gradient(135deg, #1f8fe0 0%, #17c3b2 52%, #2ec4b6 100%);
  color: #fff;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 34px 70px rgba(23, 141, 178, 0.30);
}
/* brillos difusos (sin puntos) */
.band::before, .band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.band::before {
  width: 360px; height: 360px; top: -140px; right: -90px;
  background: radial-gradient(closest-side, rgba(255,255,255,.30), transparent);
}
.band::after {
  width: 320px; height: 320px; bottom: -150px; left: -80px;
  background: radial-gradient(closest-side, rgba(255,207,86,.32), transparent);
}
/* estela de avión punteada (decorativa) */
.band__path { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .55; }
.band__inner { position: relative; z-index: 1; max-width: 730px; margin: 0 auto; }
.band__badge {
  display: inline-grid; place-items: center;
  width: 66px; height: 66px;
  border-radius: 20px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-size: 2rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}
.band__eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.55rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
}
.band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 auto 20px;
  max-width: 620px;
}
.band p { color: rgba(255,255,255,.94); font-size: 1.07rem; margin-bottom: 14px; }
.band__highlight {
  margin: 22px auto 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.14rem;
  color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  padding: 16px 24px;
  border-radius: 16px;
  max-width: 640px;
}

/* =========================================================
   TEXTO EXPERIENCIAS GRUPALES
   ========================================================= */
.experiences-text { max-width: 820px; margin: -18px auto 50px; text-align: center; }
.experiences-text p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 16px; }
.experiences-text .experiences-cta {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.18rem;
  margin-top: 10px;
}

/* =========================================================
   GALERÍA
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 215px;
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item.g-tall { grid-row: span 2; }
.gallery-item.g-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 16px 14px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  background: linear-gradient(0deg, rgba(9,18,45,.8) 0%, rgba(9,18,45,0) 100%);
  z-index: 1;
}
.gallery-item figcaption small { display:block; font-weight:500; opacity:.85; font-size:.78rem; }

/* =========================================================
   TESTIMONIOS
   ========================================================= */
.testi-section { background: var(--cream-2); }
.testi-grid { columns: 3; column-gap: 24px; }
.testi {
  break-inside: avoid;
  background: var(--white);
  border-radius: 20px;
  padding: 26px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi__stars { color: var(--gold); font-size: .95rem; letter-spacing: 2px; margin-bottom: 10px; }
.testi__quote { color: var(--ink); font-size: .98rem; line-height: 1.6; }
.testi__author { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.testi__avatar {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
}
/* color de avatar rotativo (6 variantes) */
.testi:nth-child(6n+1) .testi__avatar { background: linear-gradient(135deg, #38b6ff, #1f8fe0); }
.testi:nth-child(6n+2) .testi__avatar { background: linear-gradient(135deg, #17c3b2, #2ec4b6); }
.testi:nth-child(6n+3) .testi__avatar { background: linear-gradient(135deg, #ff8c42, #ff6b35); }
.testi:nth-child(6n+4) .testi__avatar { background: linear-gradient(135deg, #8e44ad, #5b2c82); }
.testi:nth-child(6n+5) .testi__avatar { background: linear-gradient(135deg, #e63a3a, #c92c2c); }
.testi:nth-child(6n+6) .testi__avatar { background: linear-gradient(135deg, #ffcf56, #ff8c42); }
.testi__name { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: .95rem; line-height: 1.2; }
.testi__meta { font-size: .8rem; color: var(--ink-soft); }

/* =========================================================
   CONTACTO — botones de redes
   ========================================================= */
.contact__socials { display: flex; gap: 12px; margin-top: 20px; }
.contact__socials a {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), filter .25s;
}
.contact__socials a:hover { transform: translateY(-3px); filter: brightness(1.08); }
.contact__socials svg { width: 22px; height: 22px; }

/* =========================================================
   RESPONSIVE — componentes nuevos
   ========================================================= */
@media (max-width: 960px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .testi-grid { columns: 2; }
}
@media (max-width: 760px) {
  .nav__social { gap: 6px; }
  .nav__ico { width: 36px; height: 36px; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.g-wide { grid-column: span 1; }
  .gallery-item.g-tall { grid-row: span 1; }
  .testi-grid { columns: 1; }
  .about__photo { min-height: 340px; }
}
