/* =========================================================
   PROTOTIPO 3 — MODERNO / VIBRANTE
   Dark mode + gradientes + glassmorphism + tipografía geométrica
   ========================================================= */

:root {
  --bg: #0a0b14;
  --bg-2: #0f1020;
  --surface: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --text: #ecedf3;
  --muted: #9095a6;
  --gold: #f5c451;
  --gold-2: #e0a73a;
  --violet: #7c5cff;
  --cyan: #2bd9d3;
  --pink: #ff5cae;
  --grad: linear-gradient(120deg, #f5c451 0%, #ff5cae 50%, #7c5cff 100%);
  --sans: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --r: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.is-hidden { display: none !important; }

.container { width: min(1240px, 92%); margin-inline: auto; }

/* ============ BACKGROUNDS ============ */
.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -2;
  mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
}
.bg-blob {
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .4;
  z-index: -1;
  pointer-events: none;
}
.bg-blob--1 {
  top: -200px; left: -200px;
  background: radial-gradient(circle, var(--violet), transparent 70%);
}
.bg-blob--2 {
  bottom: -200px; right: -200px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
}

/* ============ GLASS HELPER ============ */
.glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ============ HELPERS ============ */
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(0.85); }
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 1rem; left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: center;
}
.nav__inner {
  width: min(1240px, 94%);
  display: flex; align-items: center; gap: 1.5rem;
  padding: .75rem 1rem .75rem 1.5rem;
  border-radius: 999px;
}
.nav__brand {
  display: flex; align-items: center; gap: .65rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.nav__brand img { width: 34px; height: 34px; object-fit: contain; }
.nav__brand i {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 4px;
}
.nav__menu { display: flex; align-items: center; gap: 1.75rem; margin-left: auto; }
.nav__menu a {
  font-size: .9rem;
  color: var(--muted);
  transition: color .2s;
}
.nav__menu a:hover { color: var(--text); }
.nav__logout { margin: 0; }
.nav__logout button {
  all: unset;
  font-size: .9rem;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s;
}
.nav__logout button:hover { color: var(--text); }
.nav__burger {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 36px; height: 36px; flex-direction: column; gap: 5px;
  justify-content: center;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--text); margin-inline: auto;
  border-radius: 2px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .75rem 1.4rem;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn--gradient {
  background: var(--grad);
  background-size: 200% 200%;
  color: #0a0b14;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(245, 196, 81, 0.3);
  animation: gradShift 6s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.btn--gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 196, 81, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--text); }
.btn--lg { padding: 1rem 1.85rem; font-size: 1rem; }

/* ============ HERO ============ */
.hero {
  padding: 9rem 1rem 5rem;
  text-align: center;
  position: relative;
}
.hero__inner { max-width: 1240px; margin-inline: auto; }
.hero h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem;
}
.hero__lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}
.hero__cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Bento grid */
.hero__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 1rem;
  text-align: left;
}
.bento {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .3s ease;
}
.bento:hover { transform: translateY(-4px); }
.bento img { width: 100%; height: 100%; object-fit: cover; }
.bento__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(10,11,20,0.92));
}
.bento__label span {
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bento__label h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: .15rem 0 0;
  color: var(--text);
}
.bento--big {
  grid-column: span 2;
  grid-row: span 2;
}
.bento--stat {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 1.5rem;
}
.bento--stat strong {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  font-weight: 400;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bento--stat strong i { font-style: normal; font-size: 1.5rem; vertical-align: top; }
.bento--stat span {
  color: var(--muted);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .5rem;
}
.bento--accent {
  background: linear-gradient(135deg, rgba(124,92,255,0.15), rgba(245,196,81,0.1));
  border-color: rgba(124,92,255,0.3);
}

/* ============ TRUST ============ */
.trust { padding: 4rem 1rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__title {
  text-align: center;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 2rem;
}
.trust__row {
  display: flex; justify-content: space-around; gap: 2rem;
  flex-wrap: wrap;
}
.trust__row span {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--muted);
  opacity: .6;
  transition: opacity .2s, color .2s;
}
.trust__row span:hover { opacity: 1; color: var(--gold); }

/* ============ ACCOUNT ============ */
.account { padding-top: 6rem; }
.account__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem;
  border-radius: 28px;
}
.account__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.account__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.account__panel {
  display: grid;
  gap: 1rem;
}
.account__panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.account__panel-head h3 {
  margin: 0;
  font-size: 1.4rem;
}
.account__panel-head span {
  color: var(--muted);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.reservations {
  display: grid;
  gap: .85rem;
}
.reservation {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}
.reservation__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .45rem;
}
.reservation h4 {
  margin: 0;
  font-size: 1rem;
}
.reservation__status {
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.reservation p {
  margin: 0 0 .75rem;
  color: var(--muted);
  line-height: 1.55;
}
.reservation__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .85rem;
}

/* ============ SECTIONS ============ */
.section { padding: 7rem 0; position: relative; }
.section--alt {
  background: linear-gradient(180deg, transparent, rgba(124,92,255,0.05), transparent);
}
.section__head { max-width: 720px; margin-bottom: 4rem; }
.section__head--center { text-align: center; margin-inline: auto; }
.section h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.section p { color: var(--muted); line-height: 1.7; }

/* ============ FILTERS ============ */
.filters {
  display: flex; gap: .75rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: .55rem 1.2rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .88rem;
  cursor: pointer;
  transition: all .25s;
}
.filter:hover { color: var(--text); border-color: var(--text); }
.filter.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* ============ CARDS ============ */
.packages-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.card {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 196, 81, 0.4);
}
.card--clickable {
  cursor: pointer;
}
.card__more {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #93c5fd;
  letter-spacing: 0.02em;
}
.card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.card:hover .card__img img { transform: scale(1.08); }
.card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .5rem;
}
.card__location {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.card__price { font-size: .85rem; color: var(--muted); }
.card__price strong { color: var(--gold); font-size: 1rem; }
.card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 .35rem;
  letter-spacing: -0.01em;
}
.card p {
  font-size: .92rem;
  color: var(--muted);
  margin: 0 0 1rem;
  flex: 1;
}
.card__btn {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  padding: .55rem 1.1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: .85rem;
  transition: all .25s;
}
.card__btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step {
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  position: relative;
  transition: transform .3s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 196, 81, 0.4);
}
.step__num {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 .5rem;
}
.step p { margin: 0; color: var(--muted); }

/* ============ NOSOTROS ============ */
.nosotros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span {
  display: block;
  margin-top: .35rem;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.phone {
  width: min(360px, 100%);
  margin-inline: auto;
  padding: 14px;
  border-radius: 36px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}
.phone__screen {
  background: var(--bg-2);
  border-radius: 24px;
  padding: 1rem;
  min-height: 460px;
  display: flex; flex-direction: column;
  gap: .75rem;
}
.phone__bar {
  display: flex; gap: 4px;
  margin-bottom: .5rem;
}
.phone__bar span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted); opacity: .4;
}
.chat {
  max-width: 80%;
  padding: .65rem 1rem;
  border-radius: 16px;
  font-size: .9rem;
  line-height: 1.4;
}
.chat p { margin: 0; }
.chat--in {
  background: rgba(255,255,255,0.06);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat--out {
  background: var(--grad);
  color: var(--bg);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.chat--typing {
  display: inline-flex; gap: 4px;
  align-items: center;
  padding: .85rem 1rem;
}
.chat--typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted);
  animation: typing 1.4s ease-in-out infinite;
}
.chat--typing span:nth-child(2) { animation-delay: .2s; }
.chat--typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%, 60%, 100% { transform: scale(.6); opacity: .4; }
  30% { transform: scale(1); opacity: 1; }
}

/* ============ CTA ============ */
.cta { padding: 6rem 1rem; }
.cta__inner {
  max-width: 880px;
  margin-inline: auto;
  padding: 5rem 3rem;
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__inner::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad);
  opacity: .12;
  z-index: -1;
}
.cta__inner h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.cta__inner p { max-width: 480px; margin: 0 auto 2rem; color: var(--muted); }
.cta__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta__note {
  display: block;
  margin-top: 1.5rem;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ CONTACTO ============ */
.contacto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contacto__chips {
  display: flex; flex-direction: column; gap: .75rem;
  margin-top: 2rem;
}
.chip {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: all .25s;
}
.chip:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.chip strong { font-weight: 500; color: var(--text); }
.form { padding: 2.25rem; border-radius: var(--r); display: grid; gap: 1rem; }
.form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 .5rem;
}
.form label { display: grid; gap: .35rem; }
.form span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}
.form input, .form textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .25s;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form input::placeholder, .form textarea::placeholder { color: rgba(255, 255, 255, 0.25); }
.form__feedback {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
}
.form__feedback.is-error { color: #ff9b9b; }
.form__feedback.is-success { color: #8cf5c3; }
.form__feedback.is-hidden { display: none; }
.form__recaptcha {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.35);
}
.form__recaptcha a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form__recaptcha a:hover { color: var(--gold); }

/* ============ FOOTER ============ */
.footer { padding: 5rem 0 0; border-top: 1px solid var(--line); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
}
.footer__brand img { width: 56px; margin-bottom: 1rem; }
.footer__brand p { color: var(--muted); line-height: 1.6; font-size: .92rem; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__cols h4 {
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--text);
}
.footer__cols a {
  display: block;
  padding: .35rem 0;
  font-size: .9rem;
  color: var(--muted);
  transition: color .25s;
}
.footer__cols a:hover { color: var(--gold); }
.footer__bottom {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
  letter-spacing: .1em;
}

/* ============ FILTER ANIMATION ============ */
.card.is-hidden {
  display: none;
}

/* ============ RESPONSIVE ============ */
/* ============ MODAL PAQUETE ============ */
.package-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.package-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 18, 0.82);
  backdrop-filter: blur(6px);
}
.package-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.package-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 15, 26, 0.75);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.package-modal__hero {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.package-modal__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-modal__body {
  padding: 1.5rem 1.75rem 1.75rem;
}
.package-modal__location {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.package-modal__body h2 {
  margin: 0 0 0.5rem;
  font-size: 1.65rem;
  line-height: 1.15;
}
.package-modal__price {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--muted);
}
.package-modal__price strong {
  color: var(--gold);
  font-size: 1.35rem;
}
.package-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}
.package-modal__meta li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}
.package-modal__section {
  margin-bottom: 1.25rem;
}
.package-modal__section h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.package-modal__section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  white-space: pre-line;
}
.package-modal__hint {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.package-modal__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text);
  line-height: 1.55;
}
.package-modal__list li {
  margin-bottom: 0.4rem;
}
.package-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
body.package-modal-open {
  overflow: hidden;
}

/* ============ BOOKING MODAL ============ */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 18, 0.85);
  backdrop-filter: blur(8px);
}
.booking-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.booking-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 15, 26, 0.75);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s;
}
.booking-modal__close:hover {
  border-color: var(--gold);
}
.booking-modal__body {
  padding: 2rem 2rem 2.25rem;
}
.booking-modal__body h2 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.booking-modal__subtitle {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.booking-modal__feedback {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.4;
}
.booking-modal__feedback.is-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ff9b9b;
}
.booking-modal__feedback.is-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #8cf5c3;
}
body.booking-modal-open {
  overflow: hidden;
}

.booking-form {
  display: grid;
  gap: 1.25rem;
}
.booking-form__section {
  border: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.booking-form__section legend {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.booking-form label {
  display: grid;
  gap: 0.3rem;
}
.booking-form label > span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.booking-form input,
.booking-form textarea,
.booking-form select {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.25s;
}
.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.booking-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239095a6' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2.2rem;
}
.booking-form select option {
  background: var(--bg-2);
  color: var(--text);
}
.booking-form__hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.booking-form__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}
.booking-form__success {
  text-align: center;
  padding: 2rem 0;
}
.booking-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.15));
  border: 2px solid rgba(16, 185, 129, 0.4);
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  color: #34d399;
}
.booking-form__success h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}
.booking-form__success p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============ ASISTENTE / FAQ ============ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.assistant-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 180;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(245, 196, 81, 0.35);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.9), rgba(245, 196, 81, 0.85));
  color: #0a0b14;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(124, 92, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.assistant-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(124, 92, 255, 0.45);
}
.assistant-fab__icon {
  font-size: 1.15rem;
  line-height: 1;
}

.assistant-panel {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 190;
  width: min(400px, calc(100vw - 2rem));
  max-height: min(560px, calc(100vh - 7rem));
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(15, 16, 32, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.assistant-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.assistant-header h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.assistant-header p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.assistant-header__close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
}
.assistant-messages {
  flex: 1;
  min-height: 200px;
  max-height: 320px;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.assistant-msg {
  display: flex;
  flex-direction: column;
  max-width: 92%;
}
.assistant-msg--user {
  align-self: flex-end;
}
.assistant-msg--bot {
  align-self: flex-start;
}
.assistant-msg__bubble {
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.55;
}
.assistant-msg--user .assistant-msg__bubble {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.5), rgba(245, 196, 81, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom-right-radius: 4px;
}
.assistant-msg--bot .assistant-msg__bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  color: var(--text);
}
.assistant-msg__bubble strong {
  color: var(--gold);
  font-weight: 600;
}
.assistant-msg__typing span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 2px;
  border-radius: 50%;
  background: var(--muted);
  animation: assistant-typing 1s infinite ease-in-out;
}
.assistant-msg__typing span:nth-child(2) { animation-delay: 0.15s; }
.assistant-msg__typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes assistant-typing {
  0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-4px); }
}
.assistant-msg__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.assistant-action {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 196, 81, 0.35);
  background: rgba(245, 196, 81, 0.1);
  color: var(--gold);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.assistant-action:hover {
  background: rgba(245, 196, 81, 0.2);
}
.assistant-action--muted {
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
}
.assistant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1rem 0.75rem;
  max-height: 120px;
  overflow-y: auto;
}
.assistant-chip {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font: inherit;
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.2s;
}
.assistant-chip:hover {
  color: var(--text);
  border-color: rgba(147, 197, 253, 0.4);
  background: rgba(59, 130, 246, 0.12);
}
.assistant-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--line);
}
.assistant-form input {
  flex: 1;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
}
.assistant-form input:focus {
  outline: none;
  border-color: rgba(124, 92, 255, 0.5);
}
.assistant-send {
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 12px;
  background: var(--grad);
  color: #0a0b14;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}
body.assistant-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .assistant-panel {
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    bottom: 5rem;
  }
  .assistant-fab__label {
    display: none;
  }
  .assistant-fab {
    padding: 0.85rem;
    border-radius: 50%;
  }
}

@media (max-width: 980px) {
  .hero__bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .bento--big { grid-column: span 2; grid-row: span 1; }
  .nosotros, .contacto, .account__inner { grid-template-columns: 1fr; gap: 3rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .nav__menu {
    display: none;
    position: absolute;
    top: 110%; left: 0; right: 0;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(15, 16, 32, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: 18px;
  }
  .nav__menu.is-open { display: flex; }
  .nav__burger { display: flex; }
  .nav__inner > .btn { display: none; }
  .section { padding: 5rem 0; }
  .booking-form__row { grid-template-columns: 1fr; }
  .booking-modal__body { padding: 1.5rem 1.25rem; }
}
