@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&family=Inter:wght@300;400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red:      #dc2626;
  --red-dark: #991b1b;
  --red-glow: rgba(220,38,38,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #111; overflow-x: hidden; }

/* ── NAV ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--red);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 52px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 900;
  color: #111; letter-spacing: 1px; line-height: 1.1;
}
.nav-logo-text span { color: var(--red); display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: #444; text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red); color: #fff;
  padding: 10px 22px; border-radius: 6px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; letter-spacing: .5px;
  transition: background .2s;
  display: flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--red-dark); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to right, rgba(255,255,255,0.95) 42%, rgba(255,255,255,0.5) 70%, rgba(255,255,255,0.15) 100%),
    url('https://images.unsplash.com/photo-1522778119026-d647f0596c20?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center;
  padding: 120px 80px 80px;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--red);
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-glow);
  border: 1px solid rgba(220,38,38,0.35);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px; font-weight: 700;
  color: var(--red); letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px; font-weight: 900;
  line-height: .92; text-transform: uppercase;
  color: #111; margin-bottom: 22px;
}
.hero h1 span { color: var(--red); display: block; }
.hero p {
  font-size: 17px; color: #555;
  line-height: 1.7; margin-bottom: 36px; font-weight: 400;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-red {
  background: var(--red); color: #fff;
  padding: 15px 30px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; display: flex; align-items: center; gap: 10px;
  transition: all .2s;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,38,38,0.3); }
.btn-wa {
  background: #25D366; color: #fff;
  padding: 15px 26px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; display: flex; align-items: center; gap: 10px;
  transition: all .2s;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* Stats hero */
.hero-stats {
  display: flex; gap: 32px; margin-top: 44px;
  padding-top: 32px; border-top: 1px solid rgba(220,38,38,0.2);
}
.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 900; color: var(--red); line-height: 1;
}
.hero-stat .lbl { font-size: 12px; color: #888; margin-top: 3px; text-transform: uppercase; letter-spacing: 1px; }

/* ── EVENTOS ── */
.eventos { padding: 80px 80px; background: #fff; }
.section-tag { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 900; text-transform: uppercase; line-height: 1; color: #111; margin-bottom: 8px;
}
.section-sub { font-size: 15px; color: #777; margin-bottom: 44px; }
.eventos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.evento-card {
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 16px; overflow: hidden;
  transition: all .3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.evento-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(220,38,38,0.12); border-color: rgba(220,38,38,0.3); }
.evento-header {
  background: var(--red);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.evento-header h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: #fff; text-transform: uppercase; }
.evento-status {
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 1px;
}
.status-available { background: rgba(255,255,255,0.25); color: #fff; }
.status-limited   { background: #fbbf24; color: #111; }
.status-sold      { background: #374151; color: #9ca3af; }
.evento-body { padding: 24px; }
.evento-date { font-size: 13px; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.evento-desc { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 16px; }
.evento-includes { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.evento-includes span { font-size: 13px; color: #444; display: flex; align-items: center; gap: 8px; }
.evento-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.evento-price { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; color: var(--red); }
.evento-price small { font-size: 13px; color: #999; display: block; font-family: 'Inter', sans-serif; font-weight: 400; }
.btn-apartar {
  background: var(--red); color: #fff;
  padding: 10px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; transition: background .2s;
}
.btn-apartar:hover { background: var(--red-dark); }
.no-eventos { text-align: center; padding: 60px 20px; color: #aaa; }
.no-eventos p { font-size: 16px; margin-top: 16px; }

/* ── INCLUYE ── */
.incluye { background: #fafafa; padding: 80px 80px; border-top: 1px solid #f0f0f0; }
.incluye-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.incluye-card {
  background: #fff; border: 1.5px solid #eee;
  border-radius: 14px; padding: 28px;
  text-align: center; transition: all .3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.incluye-card:hover { border-color: rgba(220,38,38,0.3); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(220,38,38,0.08); }
.incluye-icon { font-size: 40px; margin-bottom: 14px; }
.incluye-card h3 { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 8px; }
.incluye-card p { font-size: 13px; color: #777; line-height: 1.6; }

/* ── CÓMO FUNCIONA ── */
.como { background: #fff; padding: 80px 80px; }
.como-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; align-items: start; }
.step { text-align: center; padding: 28px 16px; position: relative; }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px; font-weight: 900;
  color: rgba(220,38,38,0.08); line-height: 1;
  margin-bottom: -10px;
}
.step-icon { font-size: 32px; margin-bottom: 14px; }
.step h3 { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 8px; }
.step p  { font-size: 13px; color: #777; line-height: 1.6; }
.step-arrow {
  position: absolute; right: -8px; top: 50%;
  font-size: 20px; color: var(--red); opacity: .4;
}

/* ── NÚMEROS ── */
.numeros { background: var(--red); padding: 50px 80px; }
.numeros-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.numero-item .num { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 900; color: #fff; line-height: 1; }
.numero-item .lbl { font-size: 12px; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 5px; }

/* ── GALERÍA ── */
.galeria { background: #fafafa; padding: 80px 80px; border-top: 1px solid #f0f0f0; }
.galeria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 44px; }
.galeria-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 10px; cursor: pointer; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.galeria-item:hover img { transform: scale(1.07); }
.galeria-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(220,38,38,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
}
.galeria-item:hover .galeria-overlay { opacity: 1; }
.galeria-evento { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; }
.galeria-caption { font-size: 13px; color: #fff; font-weight: 600; margin-top: 2px; }
.galeria-empty { text-align: center; padding: 60px; color: #aaa; margin-top: 20px; font-size: 15px; }

/* ── TESTIMONIOS ── */
.testimonios { background: #fff; padding: 80px 80px; }
.testimonios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.testi-card { background: #fafafa; border: 1.5px solid #eee; border-radius: 14px; padding: 28px; }
.testi-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; }
.testi-card p { font-size: 14px; color: #555; line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.testi-name { font-size: 14px; font-weight: 700; color: #111; }
.testi-trip { font-size: 12px; color: #999; }

/* ── FAQ ── */
.faq { background: #fafafa; padding: 80px 80px; border-top: 1px solid #f0f0f0; }
.faq-list { margin-top: 44px; max-width: 780px; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; text-align: left;
}
.faq-btn span { font-size: 15px; font-weight: 600; color: #111; }
.faq-btn .faq-icon { font-size: 22px; color: var(--red); font-weight: 300; transition: transform .3s; flex-shrink: 0; }
.faq-btn.open .faq-icon { transform: rotate(45deg); }
.faq-answer { font-size: 14px; color: #666; line-height: 1.7; padding-bottom: 20px; display: none; }
.faq-answer.open { display: block; }

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 80px;
  text-align: center;
}
.cta-final h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 60px; font-weight: 900; color: #fff;
  text-transform: uppercase; line-height: 1; margin-bottom: 16px;
}
.cta-final p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.cta-final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff; color: var(--red);
  padding: 16px 32px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; display: flex; align-items: center; gap: 10px;
  transition: all .2s;
}
.btn-white:hover { background: #f8f8f8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-wa-white {
  background: #25D366; color: #fff;
  padding: 16px 28px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; display: flex; align-items: center; gap: 10px;
  transition: all .2s;
}
.btn-wa-white:hover { background: #1ebe5d; transform: translateY(-2px); }
.pagos { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.pago-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500; padding: 8px 16px; border-radius: 100px; }

/* ── FOOTER ── */
footer {
  background: #111; padding: 50px 80px 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 64px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-social a:hover { color: var(--red); }
.footer-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--red); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── WHATSAPP FLOTANTE ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 62px; height: 62px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: wapulse 2.5s infinite;
}
@keyframes wapulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.75); }
}

/* ── LOGO NAV img ── */
.nav-logo-img { mix-blend-mode: multiply; }
