/* ============================================
   VIVE LA OLA · SURFTRIPS
   --teal: #1B4D4A | --gold: #C9922A
   --sand: #F5F0E8 | --dark: #111714
============================================ */
/* ── SPLASH SCREEN ── */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  background: #111714;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
#splash.hidden { opacity: 0; visibility: hidden; }

.splash-logo-svg {
  width: clamp(200px, 60vmin, 300px); height: auto;
  filter: drop-shadow(0 8px 40px rgba(201,146,42,.25));
  animation: logoFloat 3s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-10px); }
}

/* anillo que se dibuja */
.splash-ring {
  animation: drawRing 1s cubic-bezier(.4,0,.2,1) .1s forwards;
}
@keyframes drawRing {
  to { stroke-dashoffset: 0; }
}

/* textos aparecen */
.splash-txt-top {
  opacity: 0;
  animation: fadeIn .6s ease .7s forwards;
}
.splash-txt-bot {
  opacity: 0;
  animation: fadeIn .6s ease .9s forwards;
}

/* iconos sol y ola */
.splash-icon {
  opacity: 0;
  animation: fadeIn .5s ease .6s forwards;
}

/* spinner dorado rotando */
.splash-spinner {
  transform-origin: 110px 110px;
  animation: spinGold 1s linear infinite;
}
@keyframes spinGold {
  to { transform: rotate(360deg); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── SURFBOARD DIVIDER ── */
.surf-lane {
  position: relative; height: 48px;
  background: var(--dark); overflow: hidden;
}
.surf-wave-svg {
  position: absolute; inset: 0;
  width: 200%; height: 100%;
  animation: waveScroll 10s linear infinite;
}
@keyframes waveScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.surfer-h {
  position: absolute; top: 0; left: 0;
  animation: surfH 18s linear infinite;
}
.surfer-v {
  animation: surfV 2.4s ease-in-out infinite;
}
.surf-mini { width: 72px; height: 48px; display: block; }
@keyframes surfH {
  from { transform: translateX(-90px); }
  to   { transform: translateX(calc(100vw + 90px)); }
}
@keyframes surfV {
  0%,100% { transform: translateY(2px) rotate(-3deg); }
  50%     { transform: translateY(14px) rotate(3deg); }
}

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

:root {
  --teal: #1B4D4A;
  --teal-light: #2a6b67;
  --gold: #C9922A;
  --gold-light: #e0a83a;
  --sand: #F5F0E8;
  --sand-dark: #e8e0d0;
  --dark: #111714;
  --dark2: #1c2420;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.16);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  transition: var(--transition); cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,146,42,.35); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5a; border-color: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.35); }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ── SECTION HEADERS ─────────────────────── */
.section-tag { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header h2 { font-family: 'Archivo Black', sans-serif; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--gray); line-height: 1.7; }
h2 { font-family: 'Archivo Black', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; }

/* ── NAVBAR ──────────────────────────────── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
#navbar.scrolled { background: rgba(17,23,20,.93); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,.3); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 32px; max-width: 1180px; margin: 0 auto; }

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-text { font-family: 'Archivo Black', sans-serif; font-size: 1.1rem; color: var(--white); letter-spacing: .08em; }
.logo-sub { font-size: .58rem; letter-spacing: .22em; color: var(--gold); font-weight: 600; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; transition: color var(--transition); letter-spacing: .02em; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--gold) !important; color: var(--white) !important; padding: 10px 22px; border-radius: 50px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.admin-btn {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.5); font-size: .8rem; font-weight: 500;
  padding: 7px 14px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  transition: var(--transition);
  letter-spacing: .04em;
}
.admin-btn:hover { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

.mobile-menu { display: none; flex-direction: column; background: rgba(17,23,20,.97); backdrop-filter: blur(12px); padding: 20px 32px 28px; gap: 4px; }
.mobile-menu a { padding: 14px 0; color: rgba(255,255,255,.85); font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,.08); transition: color var(--transition); }
.mobile-menu a:hover { color: var(--white); }
.mobile-cta { margin-top: 12px; background: var(--gold); color: var(--white) !important; text-align: center; padding: 14px !important; border-radius: var(--radius-sm); border-bottom: none !important; font-weight: 600; }
.mobile-admin { color: rgba(255,255,255,.4) !important; font-size: .85rem !important; border-bottom: none !important; padding: 10px 0 0 !important; }
.mobile-menu.open { display: flex; }

/* ── HERO ────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(17,23,20,.75) 0%, rgba(27,77,74,.5) 60%, rgba(17,23,20,.8) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; color: var(--white); padding: 0 24px; max-width: 800px; animation: heroFadeIn .9s ease forwards; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-tag { font-size: 2rem; letter-spacing: .3em; margin-bottom: 20px; animation: heroFadeIn 1s .15s ease both; }
.hero-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(4rem, 12vw, 9rem); line-height: .95; letter-spacing: -.02em; margin-bottom: 20px; animation: heroFadeIn 1s .25s ease both; }
.hero-title em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold-light); display: block; }
.hero-sub { font-size: 1rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 12px; animation: heroFadeIn 1s .35s ease both; }
.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 40px; animation: heroFadeIn 1s .45s ease both; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: heroFadeIn 1s .55s ease both; }
.scroll-down { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 1; color: rgba(255,255,255,.6); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── TRUST BAR ───────────────────────────── */
.trust-bar { background: var(--dark2); padding: 28px 32px; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); font-size: .95rem; }
.trust-icon { font-size: 1.5rem; }
.trust-item strong { color: var(--gold-light); font-weight: 600; }

/* ── VIAJES / TRIPS ──────────────────────── */
.viajes-section { background: var(--sand); }

.trips-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 80px; color: var(--gray); }
.spinner { width: 40px; height: 40px; border: 3px solid var(--sand-dark); border-top-color: var(--gold); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.trips-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; align-items: start; }
.trips-grid.single { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
.trips-grid.many { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.trip-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); position: relative; }
.trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.trip-badge { position: absolute; top: 16px; right: 16px; z-index: 2; background: var(--gold); color: var(--white); font-size: .75rem; font-weight: 700; letter-spacing: .06em; padding: 6px 14px; border-radius: 50px; text-transform: uppercase; }
.trip-badge.agotado { background: #dc2626; }

.trip-img { height: 240px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%); }
.trip-img img { width: 100%; height: 100%; object-fit: cover; }
.trip-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 100%); }
.trip-location { font-size: .85rem; font-weight: 600; color: var(--white); background: rgba(0,0,0,.35); backdrop-filter: blur(6px); padding: 6px 14px; border-radius: 50px; }

.trip-body { padding: 28px; }
.trip-dates { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.trip-dates svg { width: 15px; height: 15px; flex-shrink: 0; }
.trip-card h3 { font-family: 'Archivo Black', sans-serif; font-size: 1.45rem; margin-bottom: 10px; }
.trip-desc { color: var(--gray); line-height: 1.65; font-size: .93rem; margin-bottom: 18px; }

.trip-includes { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 7px 12px; margin-bottom: 24px; }
.trip-includes li { font-size: .87rem; color: var(--dark); font-weight: 500; }

.trip-schedule { background: var(--sand); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 20px; font-size: .84rem; color: var(--dark); line-height: 1.7; white-space: pre-line; }
.trip-schedule-label { font-weight: 600; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; display: block; }

.trip-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid var(--sand-dark); padding-top: 20px; flex-wrap: wrap; }
.trip-price { display: flex; flex-direction: column; }
.price-label { font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; }
.price-amount { font-family: 'Archivo Black', sans-serif; font-size: 2rem; color: var(--teal); line-height: 1; }
.spots-left { font-size: .8rem; color: #dc2626; font-weight: 600; margin-top: 2px; }
.spots-left.ok { color: #16a34a; }

.no-events { text-align: center; padding: 60px 20px; color: var(--gray); }
.no-events p { font-size: 1.1rem; margin-bottom: 8px; }
.no-events small { font-size: .9rem; }

/* ── WHY ─────────────────────────────────── */
.why-section { background: var(--white); position: relative; overflow: hidden; }
.why-waves-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: .55;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .section-tag { display: block; margin-bottom: 12px; }
.why-text h2 { margin-bottom: 20px; }
.why-text > p { color: var(--gray); line-height: 1.7; margin-bottom: 36px; font-size: 1rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { font-size: 1.5rem; flex-shrink: 0; width: 48px; height: 48px; background: var(--sand); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.why-list li strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.why-list li p { font-size: .9rem; color: var(--gray); line-height: 1.6; margin: 0; }
.why-visual { position: relative; height: 480px; }
.why-card-stack { position: relative; height: 100%; }
.why-card { position: absolute; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.wc-1 { width: 70%; height: 65%; top: 0; right: 0; }
.wc-2 { width: 60%; height: 55%; bottom: 0; left: 0; z-index: 2; }
.wc-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-stats { position: absolute; right: -12px; bottom: 120px; z-index: 3; background: var(--white); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-lg); display: flex; gap: 28px; }
.wstat { text-align: center; }
.wstat-num { display: block; font-family: 'Archivo Black', sans-serif; font-size: 1.6rem; color: var(--teal); }
.wstat-label { font-size: .73rem; color: var(--gray); font-weight: 500; }

/* ── GALLERY ─────────────────────────────── */
.gallery-section { background: var(--dark); }
.gallery-section .section-tag { color: var(--gold-light); }
.gallery-section .section-header h2 { color: var(--white); }
.gallery-section .section-header p { color: rgba(255,255,255,.6); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 280px 280px; gap: 12px; margin-bottom: 40px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.gi-1 { grid-column: 1; grid-row: 1; }
.gi-2 { grid-column: 2; grid-row: 1; }
.gi-3 { grid-column: 3; grid-row: 1 / 3; }
.gi-4 { grid-column: 1; grid-row: 2; }
.gi-5 { grid-column: 2; grid-row: 2; }
.gallery-inner { width: 100%; height: 100%; position: relative; transition: transform var(--transition); }
.gallery-item:hover .gallery-inner { transform: scale(1.04); }
.gi-1 .gallery-inner { background: linear-gradient(135deg, #1B4D4A, #4aa8a0); }
.gi-2 .gallery-inner { background: linear-gradient(135deg, #2d1b4e, #6b46c1); }
.gi-3 .gallery-inner { background: linear-gradient(135deg, #7c2d12, #c2410c, #f97316); }
.gi-4 .gallery-inner { background: linear-gradient(135deg, #164e63, #0891b2); }
.gi-5 .gallery-inner { background: linear-gradient(135deg, #14532d, #16a34a); }
.gi-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover .gi-overlay { opacity: 1; }
.gi-overlay span { color: var(--white); font-weight: 600; font-size: .9rem; }
.gallery-ig { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: 40px; }
.gallery-ig-text { color: var(--teal); font-size: .9rem; letter-spacing: .03em; }
.btn-ig {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 20%, #dc2743 45%, #cc2366 70%, #bc1888 100%);
  color: #fff; font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 4px 18px rgba(188,24,136,.35);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn-ig:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(188,24,136,.5); opacity: .92; }

/* ── TESTIMONIOS ─────────────────────────── */
.testimonios-section { background: var(--sand); }
.testimonios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); transition: transform var(--transition); }
.testimonial:hover { transform: translateY(-4px); }
.test-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .08em; margin-bottom: 16px; }
.test-text { color: var(--dark); line-height: 1.7; font-size: .95rem; margin-bottom: 24px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.ta-1 { background: linear-gradient(135deg, #f97316, #fb923c); }
.ta-2 { background: linear-gradient(135deg, #0891b2, #38bdf8); }
.ta-3 { background: linear-gradient(135deg, #16a34a, #4ade80); }
.test-author strong { display: block; font-size: .95rem; }
.test-author span { font-size: .8rem; color: var(--gray); }

/* ── SURF FORECAST ───────────────────────── */
.surf-forecast-section { background: var(--dark); }
.surf-forecast-section .section-tag { background: rgba(201,146,42,.15); color: #C9922A; }
.surf-forecast-section h2 { color: var(--white); }
.surf-forecast-section .section-sub { color: rgba(255,255,255,.55); }

.forecast-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 1024px) { .forecast-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .forecast-grid { grid-template-columns: 1fr; } }

.forecast-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 24px 20px;
  transition: border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.forecast-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1B4D4A, #C9922A);
}
.forecast-card:hover { border-color: rgba(201,146,42,.4); transform: translateY(-4px); }
.forecast-card.skeleton .fc-val { animation: shimmer 1.4s infinite; }
@keyframes shimmer { 0%,100% { opacity: .3; } 50% { opacity: .7; } }

.fc-spot { font-family: 'Archivo Black', sans-serif; font-size: 1.35rem; color: var(--white); letter-spacing: .01em; }
.fc-location { font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 22px; letter-spacing: .04em; }

.fc-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.fc-stat { text-align: center; background: rgba(255,255,255,.04); border-radius: 8px; padding: 12px 6px; }
.fc-val { display: block; font-family: 'Archivo Black', sans-serif; font-size: 1.3rem; color: #C9922A; }
.fc-label { display: block; font-size: .68rem; color: rgba(255,255,255,.45); letter-spacing: .05em; margin-top: 2px; text-transform: uppercase; }

.fc-rating { font-size: .85rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px; }
.fc-rating.good { color: #4ade80; }
.fc-rating.fair { color: #C9922A; }
.fc-rating.poor { color: rgba(255,255,255,.35); }

.fc-updated { font-size: .7rem; color: rgba(255,255,255,.3); }

.forecast-source { text-align: center; margin-top: 24px; font-size: .75rem; color: rgba(255,255,255,.3); }
.forecast-source a { color: rgba(201,146,42,.6); text-decoration: none; }
.forecast-source a:hover { color: #C9922A; }

/* ── CTA ─────────────────────────────────── */
.cta-section { position: relative; background: var(--teal); overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(201,146,42,.25) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.05) 0%, transparent 50%); }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; color: var(--white); }
.cta-content .section-tag { color: var(--gold-light); }
.cta-content h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin: 12px 0 20px; }
.cta-content > p { color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.7; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-contact-info { font-size: .9rem; color: rgba(255,255,255,.6); }
.cta-contact-info a { color: var(--gold-light); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ── FOOTER ──────────────────────────────── */
.footer { background: var(--dark); padding: 64px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: 8px; letter-spacing: .05em; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,.4); font-size: .85rem; margin-top: 4px; }
.footer-bottom { padding-top: 28px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; }

/* ══════════════════════════════════════════
   MODAL RESERVA
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(17,23,20,.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }

.modal {
  background: var(--white);
  border-radius: 24px;
  width: 100%; max-width: 620px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  padding: 48px 44px 44px;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  transform: translateY(20px) scale(.98);
  opacity: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
}

.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--gray-light); border: none; border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); color: var(--dark);
}
.modal-close:hover { background: var(--sand-dark); transform: rotate(90deg); }

.modal-header { text-align: center; margin-bottom: 36px; }
.modal-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.modal-header h2 { font-size: 1.7rem; margin-bottom: 10px; }
.modal-header p { color: var(--gray); font-size: .95rem; line-height: 1.6; }

/* ── FORM ────────────────────────────────── */
.modal-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: .82rem; font-weight: 600;
  color: var(--dark); letter-spacing: .04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-size: .95rem; font-family: inherit;
  color: var(--dark); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(27,77,74,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab0b8; }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-info {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(27,77,74,.07);
  border: 1px solid rgba(27,77,74,.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .85rem; color: var(--teal); line-height: 1.5;
}
.form-info svg { flex-shrink: 0; margin-top: 1px; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .trips-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { height: 360px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .admin-btn span { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .trust-bar { gap: 24px; padding: 20px 16px; }
  .trust-item { font-size: .85rem; }
  .trip-includes { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 180px 180px 180px; }
  .gi-3 { grid-column: 1 / 3; grid-row: 3; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-visual { height: 280px; }
  .why-stats { right: 0; bottom: 60px; }
  .modal { padding: 36px 24px 32px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; }
  .btn-whatsapp, .btn-ghost-light { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 160px); }
}

/* ── REVIEWS SECTION ──────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 4px 24px rgba(27,77,74,.07);
  border: 1.5px solid rgba(27,77,74,.08);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,77,74,.13);
}
.review-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201,146,42,.12);
}

.review-header {
  display: flex; align-items: center; gap: 14px;
}
.review-avatar {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
}
.review-avatar-img {
  width: 100%; height: 100%; object-fit: cover;
}
.review-avatar-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: #fff;
}
.review-meta { flex: 1; }
.review-name { display: block; font-weight: 700; color: var(--dark); font-size: .95rem; }
.review-location { font-size: .8rem; color: #6b7280; margin-top: 2px; }
.review-stars { font-size: 1.1rem; color: var(--gold); letter-spacing: 1px; flex-shrink: 0; }

.review-text {
  font-size: .93rem; line-height: 1.65; color: #374151;
  flex: 1;
}

/* Media thumbnails */
.review-media {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.review-media-thumb {
  width: 64px; height: 64px; border-radius: 10px;
  overflow: hidden; cursor: pointer;
  background-size: cover; background-position: center;
  border: 2px solid rgba(27,77,74,.1);
  transition: transform .2s ease, border-color .2s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.review-media-thumb:hover { transform: scale(1.06); border-color: var(--teal); }
.review-media-video {
  background: linear-gradient(135deg,#1B4D4A,#4aa8a0);
  color: white;
}

/* "Ver más" button */
.reviews-more-wrap {
  display: flex; justify-content: center;
  margin-top: 40px;
}
.reviews-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-weight: 600;
}

.spinner-small {
  width: 28px; height: 28px;
  border: 3px solid rgba(27,77,74,.15);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 40px auto; display: block;
}
.reviews-loading { text-align: center; }
.no-reviews { grid-column: 1/-1; text-align: center; color: #6b7280; padding: 40px; }

/* ── LIGHTBOX ─────────────────────────────── */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox-overlay.open {
  opacity: 1; pointer-events: all;
}
.lightbox-media {
  max-width: 90vw; max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  display: block;
}
.lightbox-video {
  max-width: 90vw; max-height: 85vh;
  border-radius: 12px; display: block;
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,.1); border: none;
  color: #fff; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: none;
  color: #fff; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .85rem; letter-spacing: .05em;
}

@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .lightbox-nav { width: 36px; height: 36px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ── FORM PRIVACY CHECKBOX ─────────────────── */
.form-privacy {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; margin-bottom: 4px;
}
.form-privacy input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 2px; accent-color: var(--teal);
  cursor: pointer;
}
.form-privacy span {
  font-size: .82rem; color: #6b7280; line-height: 1.5;
}
.form-privacy a {
  color: var(--teal); text-decoration: underline;
}
.form-privacy a:hover { color: var(--gold); }
