/* ============================================================
   Club Adventure Park — estilos generales
   Paleta extraída del mockup de referencia: fondo blanco/lavanda,
   acentos rosa, morado, azul, amarillo y verde.
   ============================================================ */

:root {
  --purple: #7C3AED;
  --purple-dark: #4A3574;
  --pink: #FF3D77;
  --pink-dark: #E01E5A;
  --blue: #2E9AFE;
  --blue-dark: #1C7FE0;
  --yellow: #FFB800;
  --green: #4CD964;
  --green-dark: #33B24B;
  --page-bg: #F4F3FF;
  --footer-bg: #4A3574;
  --color-white: #ffffff;
  --color-text: #2B2140;
  --color-text-light: #756e8c;
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --radius: 20px;
  --shadow: 0 12px 30px rgba(74, 53, 116, 0.12);
  --container-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 .5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ---------------- Botones ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); }

.btn-pink {
  background: linear-gradient(135deg, var(--pink), #FF6B9D);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(255, 61, 119, .35);
}
.btn-yellow {
  background: linear-gradient(135deg, var(--yellow), #FFCF4D);
  color: var(--color-text);
  box-shadow: 0 8px 20px rgba(255, 184, 0, .35);
}
.btn-blue {
  background: linear-gradient(135deg, var(--blue), #63B4FF);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(46, 154, 254, .35);
}
.btn-green {
  background: linear-gradient(135deg, var(--green), #7BE28E);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(76, 217, 100, .35);
}
.btn-outline-white {
  background: var(--color-white);
  color: var(--purple);
  border: 2px solid #eee6ff;
}
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* legacy aliases (usados en reservas/contacto/admin) */
.btn-primary { background: linear-gradient(135deg, var(--pink), #FF6B9D); color: var(--color-white); box-shadow: 0 8px 20px rgba(255, 61, 119, .35); }
.btn-secondary { background: linear-gradient(135deg, var(--yellow), #FFCF4D); color: var(--color-text); box-shadow: 0 8px 20px rgba(255, 184, 0, .35); }
.btn-outline { background: transparent; color: var(--color-white); border: 2px solid var(--color-white); }

.section { padding: 92px 0; position: relative; }
.section-tight { padding: 60px 0; }
.section-bg-page { background: var(--page-bg); }
.section-bg-blue { background: linear-gradient(160deg, #3DA5FB, var(--blue)); color: var(--color-white); }
.section-bg-white { background: var(--color-white); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.6rem; }

.eyebrow-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}
.eyebrow-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.eyebrow-dots .dot:nth-child(1) { background: var(--pink); }
.eyebrow-dots .dot:nth-child(2) { background: var(--yellow); }
.eyebrow-dots .dot:nth-child(3) { background: var(--green); }
.eyebrow-dots .dot:nth-child(5) { background: var(--green); }
.eyebrow-dots .dot:nth-child(6) { background: var(--yellow); }
.eyebrow-dots .dot:nth-child(7) { background: var(--pink); }

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  color: var(--purple);
  margin: 0;
}
.section-title.on-blue { color: var(--color-white); }

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin: 10px auto 0;
}
.section-subtitle.on-blue { color: rgba(255,255,255,.85); }

/* ---------------- Decoración flotante (globos y estrellas) ---------------- */
.floating-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}
.floating-decor span {
  position: absolute;
  bottom: -10vh;
  opacity: 0;
  display: block;
  animation-name: float-up;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  filter: drop-shadow(0 3px 5px rgba(74,53,116,.2));
}
.deco-star svg {
  display: block;
  width: 100%;
  height: 100%;
  animation: spin-slow 9s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes float-up {
  0%   { transform: translateY(0) translateX(0) scale(.9); opacity: 0; }
  10%  { opacity: .8; }
  50%  { transform: translateY(-55vh) translateX(16px) scale(1.05); }
  90%  { opacity: .7; }
  100% { transform: translateY(-115vh) translateX(-14px) scale(.9); opacity: 0; }
}
@media (max-width: 600px) {
  .floating-decor { display: none; }
}

/* ---------------- Header / Nav ---------------- */
.site-header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(74,53,116,.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 20px;
}

.logo-img { height: 58px; width: auto; display: block; }
.footer-logo.logo-img { height: 66px; }

.logo-bounce { animation: logo-bounce-in .8s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes logo-bounce-in {
  0%   { transform: scale(.4) translateY(-16px); opacity: 0; }
  60%  { transform: scale(1.08) translateY(2px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav ul {
  display: flex;
  gap: 26px;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 700;
  font-size: .95rem;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
}
.main-nav a.active { color: var(--pink); border-bottom-color: var(--pink); }
.main-nav a:hover { color: var(--pink); }

.nav-cta { padding: 10px 22px; font-size: .85rem; }

.nav-toggle { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-burger span { width: 26px; height: 3px; background: var(--purple); border-radius: 2px; }

/* ---------------- Hero ---------------- */
.hero {
  background: var(--color-white);
  padding: 56px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
}
.hero-copy h1 .line-purple { color: var(--purple); display: block; }
.hero-copy h1 .line-pink { color: var(--pink); display: block; }
.hero-copy h1 .line-blue { color: var(--blue); display: block; }

.hero-copy p.lead {
  font-size: 1.08rem;
  color: var(--color-text-light);
  max-width: 460px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 1.6rem 0; }

.hero-badges { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-badge { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; width: 92px; }
.hero-badge-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.hero-badge span.label { font-size: .75rem; font-weight: 700; color: var(--color-text-light); }

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-blob {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 0.92;
  border-radius: 42% 58% 68% 32% / 45% 40% 60% 55%;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-blob img {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-blob-logo {
  background: linear-gradient(135deg, #FFE1EC 0%, #EAE0FF 45%, #DCEEFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12%;
}
.hero-blob-logo img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(74, 53, 116, .18));
}

.hero-decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.hero-carousel-dots span {
  width: 9px; height: 9px; border-radius: 50%; background: #e2d9fb;
}
.hero-carousel-dots span.active { background: var(--purple); width: 22px; border-radius: 999px; }

/* ---------------- Planes ---------------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.plan-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: visible;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 34px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(74, 53, 116, .18);
}

.plan-banner {
  position: absolute;
  top: 0; left: 12px; right: 12px;
  height: 46px;
  border-radius: 999px 999px 0 0 / 90px 90px 0 0;
}
.plan-basico .plan-banner { background: linear-gradient(135deg, var(--green), #7BE28E); }
.plan-aventura .plan-banner { background: linear-gradient(135deg, var(--blue), #63B4FF); }
.plan-super .plan-banner { background: linear-gradient(135deg, var(--pink), #FF6B9D); }

.plan-icon {
  position: absolute;
  top: -22px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  z-index: 2;
}
.plan-basico .plan-icon { color: var(--green-dark); }
.plan-aventura .plan-icon { color: var(--blue-dark); }
.plan-super .plan-icon { color: var(--pink-dark); }

.plan-body {
  padding: 34px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.plan-body h3 { font-size: 1.3rem; color: var(--color-text); margin-bottom: 2px; }
.plan-tagline { color: var(--color-text-light); font-size: .9rem; margin-bottom: 18px; }

.plan-features { text-align: left; margin: 0 0 22px; flex: 1; }
.plan-features li {
  padding: 6px 0;
  font-size: .92rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.plan-features li::before {
  content: "✓";
  font-weight: 900;
}
.plan-basico .plan-features li::before { color: var(--green-dark); }
.plan-aventura .plan-features li::before { color: var(--blue-dark); }
.plan-super .plan-features li::before { color: var(--pink-dark); }

.plan-footer {
  border-top: 1px dashed #eee6ff;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.plan-cotizar { font-size: .8rem; color: var(--color-text-light); text-align: left; }
.plan-cotizar strong { display: block; color: var(--color-text); font-size: .95rem; font-family: var(--font-display); }

.plans-decor { display: none; }

.plans-footnote { text-align: center; margin-top: 2.4rem; color: var(--color-text-light); }
.plans-footnote a { color: var(--pink); font-weight: 700; }

/* ---------------- Atracciones ---------------- */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.attraction-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/3.6;
  transition: transform .3s ease, box-shadow .3s ease;
}
.attraction-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(74, 53, 116, .2);
}

.attraction-card .fallback-tile {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
  transition: transform .35s ease;
}
.attraction-card:hover .fallback-tile { transform: scale(1.08); }

.attraction-label {
  position: absolute;
  left: 10px; bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--color-white);
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
}

.attractions-cta { text-align: center; margin-top: 2.6rem; }

/* ---------------- Por qué elegirnos ---------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.why-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--color-white);
  border: 4px solid;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}
.why-item:nth-child(1) .why-icon { border-color: var(--green); color: var(--green-dark); }
.why-item:nth-child(2) .why-icon { border-color: var(--pink); color: var(--pink-dark); }
.why-item:nth-child(3) .why-icon { border-color: var(--yellow); color: #b5860a; }
.why-item:nth-child(4) .why-icon { border-color: var(--purple); color: var(--purple); }

.why-item h3 { color: var(--color-white); font-size: 1.05rem; }
.why-item p { color: rgba(255,255,255,.85); font-size: .88rem; margin: 0; }

/* ---------------- Testimonios ---------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--page-bg);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.testimonial-stars { color: var(--yellow); font-size: .95rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-quote { font-style: italic; color: var(--color-text); font-size: .95rem; }
.testimonial-author { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white); font-weight: 700; font-family: var(--font-display);
  flex-shrink: 0;
}
.testimonial-author span { font-weight: 700; font-size: .88rem; color: var(--color-text-light); }
.testimonials-note { text-align: center; color: var(--color-text-light); font-size: .78rem; margin-top: 1.8rem; }

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--pink), #FF6B9D);
  color: var(--color-white);
  padding: 46px 0;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  text-align: center;
}
.cta-mascot { width: 90px; height: auto; flex-shrink: 0; }
.cta-banner h2 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); margin: 0; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--footer-bg); color: #d7cdec; padding-top: 56px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 36px;
}

.footer-brand p { font-size: .9rem; margin: 10px 0 16px; }
.footer-col h4 { color: var(--color-white); font-size: 1rem; margin-bottom: 14px; }
.footer-col ul li { padding: 5px 0; font-size: .9rem; }
.footer-col a:hover { color: var(--yellow); }

.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; }
.footer-contact .ico { flex-shrink: 0; }

.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.social-btn:hover { background: var(--pink); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
  color: #b3a6cc;
}

/* ---------------- Wave dividers ---------------- */
.wave-divider { display: block; width: 100%; line-height: 0; }
.wave-divider svg { width: 100%; height: 60px; display: block; }

/* ---------------- Formularios (reservas / contacto) ---------------- */
.form-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  max-width: 640px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .9rem; color: var(--color-text); }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 2px solid #e6e1f5; font-family: var(--font-body); font-size: 1rem; background: #fbfaff;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--pink); }
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; }
.alert-success { background: #e2f9f0; color: #0f7a52; }
.alert-error { background: #fde3e9; color: #b3123a; }

/* ---------------- Galería / precios simples ---------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.gallery-grid img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 4/3; object-fit: cover;
  cursor: zoom-in; transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-grid img:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 34px rgba(74, 53, 116, .22); }

/* ---------------- Lightbox de galería ---------------- */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(43, 33, 64, .88);
  display: none; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img {
  max-width: 100%; max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.lightbox-close {
  position: absolute; top: 18px; right: 24px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-white); color: var(--color-text);
  border: none; font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.lightbox-close:hover { background: var(--pink); color: var(--color-white); }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.card { background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 24px; text-align: center; transition: transform .2s ease; }
.card:hover { transform: translateY(-6px); }
.card-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--color-white); }
.card:nth-child(5n+1) .card-icon { background: var(--pink); }
.card:nth-child(5n+2) .card-icon { background: var(--purple); }
.card:nth-child(5n+3) .card-icon { background: var(--yellow); color: var(--color-text); }
.card:nth-child(5n+4) .card-icon { background: var(--green); }
.card:nth-child(5n+5) .card-icon { background: var(--blue); }
.card h3 { font-size: 1.15rem; }
.card p { color: var(--color-text-light); font-size: .95rem; margin: 0; }

/* ---------------- Botón flotante de WhatsApp ---------------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 10px 26px rgba(124, 58, 237, .4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 30px rgba(124, 58, 237, .5); }
.wa-float-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.wa-float-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.55);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(.85); opacity: .8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}
.wa-float-text { line-height: 1.25; text-align: left; }
.wa-float-text small { display: block; font-weight: 600; font-size: .7rem; opacity: .85; }
@media (max-width: 640px) {
  .wa-float-text { display: none; }
  .wa-float { padding: 14px; right: 16px; bottom: 16px; }
}

/* ---------------- Comparador de planes ---------------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--color-white); min-width: 560px; }
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid #f0edfa;
  font-size: .92rem;
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: var(--color-text-light); font-weight: 600; }
.compare-table thead th {
  font-family: var(--font-display);
  font-size: 1rem;
  padding-top: 22px;
  color: var(--color-text);
}
.compare-table thead th.hl-basico { color: var(--green-dark); }
.compare-table thead th.hl-aventura { color: var(--blue-dark); }
.compare-table thead th.hl-super { color: var(--pink-dark); }
.compare-table td.yes { color: var(--green-dark); font-weight: 700; }
.compare-table td.no { color: #d7d0e8; }
.compare-table tbody tr:last-child td { border-bottom: none; }

.tiktok-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 1rem; }
.tiktok-embed-wrap { max-width: 100%; margin: 0 auto; }
.tiktok-empty { background: var(--color-white); border: 2px dashed #d8cef7; border-radius: var(--radius); padding: 40px 20px; color: var(--color-text-light); text-align: center; }
.tiktok-section { text-align: center; }

.location-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
  background: var(--footer-bg); color: var(--color-white); border-radius: var(--radius); padding: 40px;
}
.location-box iframe { width: 100%; border: 0; border-radius: var(--radius); min-height: 260px; }
.location-info h3 { color: var(--yellow); }

/* ---------------- Admin ---------------- */
.admin-shell { background: var(--page-bg); min-height: 100vh; }
.admin-header { background: var(--footer-bg); color: var(--color-white); padding: 18px 0; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--color-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.admin-table th, .admin-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #f0edfa; font-size: .9rem; }
.admin-table th { background: var(--page-bg); font-family: var(--font-display); }
.badge { padding: 4px 10px; border-radius: 999px; font-size: .75rem; font-weight: 700; }
.badge-pendiente { background: #fff3cd; color: #8a6d00; }
.badge-confirmada { background: #e2f9f0; color: #0f7a52; }
.badge-cancelada { background: #fde3e9; color: #b3123a; }
.login-card { max-width: 380px; margin: 80px auto; }
.logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--color-white);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
  .attractions-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { order: -1; }
  .location-box { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .nav-burger { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-white);
    flex-direction: column; align-items: flex-start; padding: 20px;
    display: none;
    box-shadow: var(--shadow);
  }
  .main-nav ul { flex-direction: column; gap: 4px; width: 100%; }
  .nav-cta { margin-top: 12px; }
  .nav-toggle:checked ~ .main-nav { display: flex; }
}

@media (max-width: 640px) {
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; }
}

/* ---------------- Barra de estadísticas ---------------- */
.stats-bar {
  background: var(--purple-dark);
  padding: 34px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--color-white);
  line-height: 1.1;
}
.stat-item .stat-label {
  color: #d9cfff;
  font-size: .85rem;
  margin-top: 4px;
}
.stats-note {
  text-align: center;
  color: #b6a8e0;
  font-size: .72rem;
  margin: 10px 0 0;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
}

/* ---------------- Cotizador / Arma tu fiesta ---------------- */
.qb-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}
.qb-block {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 28px;
  margin-bottom: 24px;
}
.qb-block h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.qb-block .qb-hint { color: var(--color-text-light); font-size: .85rem; margin-bottom: 16px; }
.qb-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--pink); color: var(--color-white);
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  margin-right: 8px; flex-shrink: 0;
}

.qb-plan-options { display: grid; gap: 12px; }
.qb-plan-option {
  display: flex; align-items: center; gap: 14px;
  border: 2px solid #ece6ff; border-radius: 16px;
  padding: 14px 16px; cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.qb-plan-option:hover { border-color: #d3c0ff; }
.qb-plan-option input { accent-color: var(--purple); width: 18px; height: 18px; flex-shrink: 0; }
.qb-plan-option .qb-plan-icon { font-size: 1.4rem; }
.qb-plan-option .qb-plan-info strong { display: block; font-family: var(--font-display); }
.qb-plan-option .qb-plan-info span { color: var(--color-text-light); font-size: .82rem; }
.qb-plan-option:has(input:checked) { border-color: var(--pink); background: #fff5f8; }

.qb-extra-options { display: grid; gap: 12px; }
.qb-extra-option {
  display: flex; align-items: center; gap: 14px;
  border: 2px solid #ece6ff; border-radius: 16px;
  padding: 14px 16px; cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.qb-extra-option:hover { border-color: #d3c0ff; }
.qb-extra-option input { accent-color: var(--purple); width: 18px; height: 18px; flex-shrink: 0; }
.qb-extra-option .qb-extra-icon { font-size: 1.3rem; }
.qb-extra-option:has(input:checked) { border-color: var(--blue); background: #eef8ff; }

.qb-field { margin-bottom: 16px; }
.qb-field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .92rem; }
.qb-field input[type="text"],
.qb-field input[type="date"],
.qb-field input[type="number"],
.qb-field textarea {
  width: 100%; border: 2px solid #ece6ff; border-radius: 12px;
  padding: 12px 14px; font-family: var(--font-body); font-size: .95rem;
  color: var(--color-text); background: var(--color-white);
}
.qb-field input:focus, .qb-field textarea:focus { outline: none; border-color: var(--purple); }
.qb-field textarea { resize: vertical; min-height: 70px; }

.qb-summary {
  position: sticky; top: 24px;
  background: linear-gradient(160deg, var(--purple), var(--purple-dark));
  color: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.qb-summary h3 { color: var(--color-white); margin-bottom: 14px; }
.qb-summary-list { display: grid; gap: 10px; margin-bottom: 20px; }
.qb-summary-row { display: flex; justify-content: space-between; gap: 10px; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 8px; }
.qb-summary-row .qb-summary-label { color: #d9cfff; }
.qb-summary-row .qb-summary-value { font-weight: 700; text-align: right; }
.qb-summary-empty { color: #d9cfff; font-size: .85rem; font-style: italic; }
.qb-summary .btn { width: 100%; justify-content: center; margin-top: 6px; }
.qb-summary-price-note { font-size: .75rem; color: #d9cfff; margin-top: 12px; text-align: center; }

@media (max-width: 900px) {
  .qb-layout { grid-template-columns: 1fr; }
  .qb-summary { position: static; }
}

/* ---------------- Club de Referidos ---------------- */
.referidos-hero {
  background: linear-gradient(160deg, var(--purple), var(--purple-dark));
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.referidos-hero-inner {
  max-width: 620px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.referidos-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--color-text);
  font-weight: 800;
  font-size: .8rem;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.referidos-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--color-white);
  margin-bottom: 18px;
}
.referidos-hero p {
  color: #e6defc;
  font-size: 1.02rem;
  margin-bottom: 14px;
}
.referidos-hero-highlight {
  font-weight: 700;
  color: var(--color-white) !important;
}
.referidos-hero .btn { margin-top: 10px; }
.referidos-hero-svg {
  display: block;
  width: 180px;
  margin: 34px auto 0;
}

.referidos-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.referidos-step {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 24px;
  text-align: center;
  position: relative;
}
.referidos-step-num {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #FF6B9D);
  color: var(--color-white);
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
}
.referidos-step h3 { margin-bottom: 6px; }
.referidos-step p { color: var(--color-text-light); margin: 0; }

@media (max-width: 760px) {
  .referidos-steps { grid-template-columns: 1fr; }
}

/* ---------------- Botones de redes en Contacto ---------------- */
.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 2rem;
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--color-white);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.contact-social-btn:hover { transform: translateY(-2px); filter: brightness(1.07); }
.contact-social-whatsapp { background: linear-gradient(135deg, #25D366, #1FAE54); box-shadow: 0 8px 20px rgba(37, 211, 102, .35); }
.contact-social-facebook { background: linear-gradient(135deg, #1877F2, #0F5FCC); box-shadow: 0 8px 20px rgba(24, 119, 242, .35); }
.contact-social-instagram { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); box-shadow: 0 8px 20px rgba(221, 42, 123, .3); }
.contact-social-tiktok { background: linear-gradient(135deg, #2B2140, #000000); box-shadow: 0 8px 20px rgba(0, 0, 0, .3); }
