:root {
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --light-gray: #F2F2F0;
  --border: #E8E8E4;
  --text: #1A1A18;
  --text-mid: #5A5A56;
  --text-light: #9A9A94;
  --accent: #1A6B8A;
  --accent-dark: #0D4A61;
  --accent-light: #E4F0F5;
  --green: #4E8F38;
  --green-dark: #2D6B25;
  --green-light: #E8F4E4;
  --green: #6AA261;
  --green-light: #EEF5EC;
  --gold: #C4963F;
  --sand: #F5F0E8;
}
* { margin:0; padding:0; box-sizing:border-box; scroll-behavior:smooth; }
body { font-family:'Poppins',sans-serif; background:var(--white); color:var(--text); overflow-x:hidden; }

/* NAVBAR */
.navbar { position:fixed; top:0; left:0; right:0; z-index:1000; background:rgba(255,255,255,0.97); border-bottom:1px solid var(--border); backdrop-filter:blur(12px); transition:box-shadow 0.3s; }
.navbar.scrolled { box-shadow:0 2px 20px rgba(0,0,0,0.08); }
.nav-inner { max-width:1280px; margin:0 auto; padding:0 2rem; height:72px; display:flex; align-items:center; justify-content:space-between; }

/* LOGO */
.nav-logo { text-decoration:none; display:flex; align-items:center; }
.nav-logo-img { height:100px; width:auto; object-fit:contain; display:block; filter:drop-shadow(0 2px 8px rgba(0,0,0,0.07)); transition:transform 0.2s; margin-top:-14px; margin-bottom:-14px; }
.nav-logo-img:hover { transform:scale(1.04); }
@media(max-width:768px){ .nav-logo-img { height:72px; margin-top:-4px; margin-bottom:-4px; } }

.nav-links { display:flex; align-items:center; gap:1.75rem; list-style:none; }
.nav-links a { font-family:'Montserrat',sans-serif; font-size:0.75rem; font-weight:500; letter-spacing:0.07em; text-transform:uppercase; color:var(--text-mid); text-decoration:none; transition:color 0.2s; }
.nav-links a:hover, .nav-links a.active { color:var(--accent); }
.nav-right { display:flex; align-items:center; gap:1rem; }
.nav-cta { background:var(--accent); color:white; padding:0.55rem 1.4rem; border-radius:100px; font-family:'Montserrat',sans-serif; font-size:0.75rem; font-weight:600; letter-spacing:0.05em; text-decoration:none; transition:background 0.2s, transform 0.2s; white-space:nowrap; }
.nav-cta:hover { background:var(--accent-dark); transform:translateY(-1px); }

/* LANGUAGE SWITCHER */
.lang-switcher { display:flex; align-items:center; gap:0.4rem; background:var(--light-gray); border-radius:100px; padding:0.3rem 0.4rem; }
.lang-btn { display:flex; align-items:center; gap:0.35rem; padding:0.25rem 0.6rem; border-radius:100px; border:none; background:transparent; cursor:pointer; font-family:'Montserrat',sans-serif; font-size:0.7rem; font-weight:600; color:var(--text-mid); transition:all 0.2s; white-space:nowrap; }
.lang-btn.active { background:white; color:var(--text); box-shadow:0 1px 4px rgba(0,0,0,0.1); }
.lang-btn img { width:18px; height:13px; border-radius:2px; object-fit:cover; }

/* HAMBURGER */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; background:none; border:none; }
.hamburger span { display:block; width:22px; height:2px; background:var(--text); border-radius:2px; transition:all 0.3s; }

/* BUTTONS */
.btn { display:inline-flex; align-items:center; gap:0.5rem; padding:0.8rem 1.75rem; border-radius:100px; font-family:'Montserrat',sans-serif; font-size:0.78rem; font-weight:600; letter-spacing:0.05em; text-transform:uppercase; text-decoration:none; transition:all 0.25s; cursor:pointer; border:none; }
.btn-primary { background:var(--accent); color:white; }
.btn-primary:hover { background:var(--accent-dark); transform:translateY(-1px); box-shadow:0 6px 20px rgba(26,107,138,0.3); }
.btn-outline { background:transparent; color:var(--text); border:1.5px solid var(--border); }
.btn-outline:hover { border-color:var(--accent); color:var(--accent); transform:translateY(-1px); }
.btn-white { background:white; color:var(--accent); }
.btn-white:hover { background:var(--accent-light); transform:translateY(-1px); }

/* SECTIONS */
.section { padding:6rem 2rem; }
.section-inner { max-width:1280px; margin:0 auto; }
.section-tag { font-family:'Montserrat',sans-serif; font-size:0.68rem; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; color:var(--green); margin-bottom:0.75rem; }
.section-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,3.5vw,3rem); font-weight:300; line-height:1.15; color:var(--text); margin-bottom:1rem; letter-spacing:-0.02em; }
.section-title strong { font-weight:600; }
.section-sub { font-size:0.93rem; color:var(--text-mid); line-height:1.8; max-width:540px; font-weight:300; }
.section-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:3rem; flex-wrap:wrap; gap:1.5rem; }

/* PAGE BANNER */
.page-banner { padding:5rem 2rem 3rem; margin-top:72px; background:var(--off-white); border-bottom:1px solid var(--border); }
.page-banner-inner { max-width:1280px; margin:0 auto; }
.page-banner h1 { font-family:'Cormorant Garamond',serif; font-size:clamp(2.5rem,4vw,4rem); font-weight:300; line-height:1.1; letter-spacing:-0.02em; margin-bottom:0.75rem; }
.page-banner h1 strong { font-weight:600; color:var(--accent); }
.page-banner p { font-size:1rem; color:var(--text-mid); font-weight:300; line-height:1.75; max-width:560px; }
.breadcrumb { display:flex; align-items:center; gap:0.5rem; font-family:'Montserrat',sans-serif; font-size:0.7rem; font-weight:500; color:var(--text-light); letter-spacing:0.05em; text-transform:uppercase; margin-bottom:1.5rem; }
.breadcrumb a { color:var(--text-light); text-decoration:none; }
.breadcrumb a:hover { color:var(--accent); }

/* MODAL OVERLAY */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.55); z-index:2000; align-items:center; justify-content:center; padding:1.5rem; }
.modal-overlay.open { display:flex; animation:fadeIn 0.2s ease; }
.modal-box { background:white; border-radius:24px; max-width:680px; width:100%; max-height:90vh; overflow-y:auto; position:relative; animation:slideUp 0.3s ease; }
.modal-header { padding:2rem 2rem 1.5rem; border-bottom:1px solid var(--border); position:sticky; top:0; background:white; border-radius:24px 24px 0 0; z-index:1; }
.modal-close { position:absolute; top:1.25rem; right:1.25rem; width:36px; height:36px; border-radius:50%; border:1.5px solid var(--border); background:white; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:var(--text-mid); transition:all 0.2s; }
.modal-close:hover { border-color:var(--text); color:var(--text); }
.modal-body { padding:2rem; }
.modal-tag { font-family:'Montserrat',sans-serif; font-size:0.65rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--accent); margin-bottom:0.5rem; }
.modal-title { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:600; line-height:1.15; margin-bottom:0.25rem; }
.modal-meta { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:1.5rem; }
.modal-meta span { font-size:0.78rem; color:var(--text-mid); font-family:'Montserrat',sans-serif; }
.modal-img { width:100%; height:220px; object-fit:cover; border-radius:14px; margin-bottom:1.5rem; }
.modal-desc { font-size:0.93rem; color:var(--text-mid); line-height:1.8; font-weight:300; margin-bottom:1.5rem; }
.modal-includes { margin-bottom:1.5rem; }
.modal-includes h4 { font-family:'Montserrat',sans-serif; font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-mid); margin-bottom:0.75rem; }
.modal-includes ul { list-style:none; display:flex; flex-direction:column; gap:0.5rem; }
.modal-includes li { font-size:0.88rem; color:var(--text-mid); display:flex; align-items:flex-start; gap:0.5rem; font-weight:300; }
.modal-includes li::before { content:'—'; color:var(--green); font-weight:600; flex-shrink:0; }
.modal-footer { display:flex; justify-content:space-between; align-items:center; padding:1.5rem 2rem; border-top:1px solid var(--border); }
.modal-price { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:600; color:var(--accent); line-height:1; }
.modal-price span { font-size:0.78rem; color:var(--text-light); font-family:'Poppins',sans-serif; font-weight:300; }

/* FOOTER */
footer { background:var(--text); color:rgba(255,255,255,0.5); padding:2.5rem 2rem; }
.footer-inner { max-width:1280px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; }
.footer-logo { display:flex; flex-direction:column; gap:2px; }
.footer-logo-top { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:600; color:white; letter-spacing:-0.01em; }
.footer-logo-top span { color:rgba(255,255,255,0.5); }
.footer-logo-bottom { font-family:'Montserrat',sans-serif; font-size:0.55rem; font-weight:500; letter-spacing:0.16em; text-transform:uppercase; color:rgba(255,255,255,0.3); }
.footer-links { display:flex; gap:1.5rem; flex-wrap:wrap; }
.footer-links a { font-family:'Montserrat',sans-serif; font-size:0.7rem; font-weight:500; letter-spacing:0.06em; text-transform:uppercase; color:rgba(255,255,255,0.45); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:rgba(255,255,255,0.8); }
.footer-copy { font-size:0.75rem; color:rgba(255,255,255,0.3); }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.85)} }

@media(max-width:768px){
  /* ── NAVBAR ── */
  .nav-links { display:none }
  .hamburger { display:flex }
  /* Hide "Reservar ahora" text on mobile, keep hamburger visible */
  .nav-cta { display:none }
  /* Lang switcher smaller on mobile */
  .lang-switcher { padding:0.2rem 0.3rem; gap:0.3rem; }
  .lang-btn { font-size:0.65rem; padding:0.25rem 0.4rem; gap:0.2rem; }
  .lang-btn img { width:14px; height:10px; }
  /* Nav inner tighter */
  .nav-inner { padding:0 1rem; }
  .nav-logo-img { height:60px; }

  /* ── SECTIONS ── */
  .section { padding:3rem 1rem }
  .section-inner { padding:0 }
  .page-banner { padding:3rem 1rem 2rem }
  .page-banner h1 { font-size:clamp(1.8rem,7vw,2.5rem); }
  .page-banner p { font-size:0.88rem; }
  .section-title { font-size:clamp(1.6rem,6vw,2.2rem); }
  .section-header { flex-direction:column; gap:1rem; align-items:flex-start; }

  /* ── MODAL ── */
  .modal-box { border-radius:16px; margin:1rem; }

  /* ── HERO (index) ── */
  .hero-inner { grid-template-columns:1fr; gap:2rem; padding:2rem 1rem; }
  .hero-visual { order:-1; }
  .badge-tl, .badge-br { display:none; }
  .hero-stats { gap:1.25rem; }
  h1 { font-size:clamp(2.4rem,9vw,4rem); }

  /* ── STRIPS ── */
  .strip-inner { gap:1.25rem; padding:0 1rem; }

  /* ── GRIDS ── */
  .why-grid { grid-template-columns:1fr 1fr; }
  .dest-grid { grid-template-columns:1fr 1fr; }

  /* ── CTA BANNER ── */
  .cta-banner { padding:3rem 1.25rem; }
  .cta-btns { flex-direction:column; align-items:stretch; }
  .cta-btns .btn { text-align:center; justify-content:center; }

  /* ── FOOTER ── */
  .footer-inner { gap:1.25rem; }
  .footer-links { gap:0.75rem; flex-wrap:wrap; justify-content:center; }
}

@media(max-width:480px){
  .why-grid { grid-template-columns:1fr; }
  .dest-grid { grid-template-columns:1fr; }
  .dest-img-wrap { height:200px; }
  .nav-logo-img { height:52px; }
  .hero-stats { gap:1rem; }
  .stat-num { font-size:1.5rem; }
}


/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(10,20,32,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(26,107,138,0.4);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; color: rgba(255,255,255,0.8);
  line-height: 1.6; margin: 0; flex: 1; min-width: 200px;
}
.cookie-banner p a { color: #C4963F; text-decoration: none; }
.cookie-banner p a:hover { text-decoration: underline; }
.cookie-banner-btns { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 0.5rem 1.25rem; border-radius: 100px; cursor: pointer;
  border: none; transition: all 0.2s;
}
.cookie-btn-accept { background: #1A6B8A; color: white; }
.cookie-btn-accept:hover { background: #0D4A61; }
.cookie-btn-reject { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.25); }
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.6); color: white; }

/* ── DESTINATIONS GRID ── */
.dest-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.dest-card { display:block; text-decoration:none; border-radius:18px; overflow:hidden; }
.dest-img-wrap { position:relative; height:320px; overflow:hidden; }
.dest-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; display:block; }
.dest-card:hover .dest-img-wrap img { transform:scale(1.06); }
.dest-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 55%, transparent 100%); }
.dest-info { position:absolute; bottom:0; left:0; right:0; padding:1.25rem 1.1rem; }
.dest-tag { display:inline-block; font-family:'Montserrat',sans-serif; font-size:0.6rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:white; background:var(--green); padding:0.25rem 0.65rem; border-radius:100px; margin-bottom:0.5rem; }
.dest-info h3 { font-family:'Cormorant Garamond',serif; font-size:1.15rem; font-weight:600; color:white; line-height:1.2; margin-bottom:0.35rem; }
.dest-info p { font-size:0.75rem; color:rgba(255,255,255,0.82); line-height:1.5; font-weight:300; margin:0; }
@media(max-width:900px){ .dest-grid{grid-template-columns:repeat(2,1fr);} .dest-img-wrap{height:240px;} }
@media(max-width:560px){ .dest-grid{grid-template-columns:1fr;} .dest-img-wrap{height:220px;} }

/* ══════════════════════════════════════════
   ANIMATION SYSTEM
══════════════════════════════════════════ */

/* ── Fade + slide up on scroll ── */
.anim-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.anim-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger variations for grid children */
.dest-grid .anim-ready:nth-child(1) { transition-delay: 0s !important; }
.dest-grid .anim-ready:nth-child(2) { transition-delay: 0.1s !important; }
.dest-grid .anim-ready:nth-child(3) { transition-delay: 0.2s !important; }
.dest-grid .anim-ready:nth-child(4) { transition-delay: 0.3s !important; }

.why-grid .anim-ready:nth-child(1) { transition-delay: 0s !important; }
.why-grid .anim-ready:nth-child(2) { transition-delay: 0.1s !important; }
.why-grid .anim-ready:nth-child(3) { transition-delay: 0.2s !important; }
.why-grid .anim-ready:nth-child(4) { transition-delay: 0.3s !important; }

.price-grid .anim-ready:nth-child(1) { transition-delay: 0s !important; }
.price-grid .anim-ready:nth-child(2) { transition-delay: 0.08s !important; }
.price-grid .anim-ready:nth-child(3) { transition-delay: 0.16s !important; }
.price-grid .anim-ready:nth-child(4) { transition-delay: 0.24s !important; }
.price-grid .anim-ready:nth-child(5) { transition-delay: 0.32s !important; }
.price-grid .anim-ready:nth-child(6) { transition-delay: 0.4s !important; }

/* ── Section tag pop ── */
.section-tag.anim-ready { transform: translateY(14px) scale(0.92); }
.section-tag.anim-in    { transform: translateY(0) scale(1) !important; }

/* ── Stat counters scale in ── */
.stat.anim-ready { transform: scale(0.85) translateY(20px); }
.stat.anim-in    { transform: scale(1) translateY(0) !important; }

/* ── Cards lift on hover (enhanced) ── */
.rental-card, .tour-card, .product-card {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease !important;
}
.rental-card:hover, .tour-card:hover, .product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(26,107,138,0.12) !important;
}

/* ── Destination cards ── */
.dest-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s ease !important;
}
.dest-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
}

/* ── Navbar smooth hide/show ── */
.navbar {
  transition: transform 0.3s ease, background 0.3s ease,
              box-shadow 0.3s ease !important;
}
.navbar.hide { transform: translateY(-100%); }

/* ── Button ripple ── */
.btn { position: relative; overflow: hidden; }
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* ── Page banner parallax container ── */
.page-banner {
  will-change: transform;
  transform-origin: center top;
}

/* ── CTA banner shimmer ── */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  animation: shimmer 4s infinite 2s;
}
@keyframes shimmer {
  0%   { left: -75%; }
  100% { left: 125%; }
}

/* ── Strip ticker smooth scroll ── */
.strip-inner { animation: marquee 28s linear infinite; }
.strip-inner:hover { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Footer fade in from bottom ── */
footer .footer-logo.anim-ready { transition-delay: 0s; }
footer .footer-links.anim-ready:nth-of-type(1) { transition-delay: 0.1s; }
footer .footer-links.anim-ready:nth-of-type(2) { transition-delay: 0.2s; }
footer .footer-copy.anim-ready { transition-delay: 0.3s; }

/* ── Smooth image reveal ── */
.dest-img-wrap img {
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1),
              filter 0.4s ease !important;
  filter: brightness(1);
}
.dest-card:hover .dest-img-wrap img {
  filter: brightness(1.05) saturate(1.1);
}

/* ── Specs accordion smooth (animation handled by JS) ── */
.specs-full.open {
  animation: specs-reveal 0.35s cubic-bezier(0.22,1,0.36,1);
}
@keyframes specs-reveal {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── Swatch hover ring ── */
.swatch {
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.swatch:hover { transform: scale(1.15); }

/* ── Modal animate in ── */
.modal-overlay { transition: opacity 0.3s ease !important; }
.modal-overlay.open .modal-box {
  animation: modal-in 0.35s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes modal-in {
  from { opacity:0; transform: scale(0.93) translateY(20px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}

/* ── Navbar smart hide on scroll down ── */


/* ── SOCIAL ICONS IN FOOTER ── */
.footer-social { display:flex; gap:0.75rem; justify-content:center; margin-bottom:1rem; }
.footer-social a {
  width:38px; height:38px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12);
  transition:all 0.2s; color:white; text-decoration:none;
}
.footer-social a:hover { background:rgba(255,255,255,0.18); transform:translateY(-2px); }
.footer-social svg { width:18px; height:18px; fill:white; }

/* ── WHATSAPP FLOAT BUTTON ── */
.wa-float {
  position:fixed; bottom:1.75rem; right:1.75rem; z-index:9000;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; box-shadow:0 4px 20px rgba(37,211,102,0.45);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; text-decoration:none;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
  animation:wa-pulse 2.5s infinite 3s;
}
.wa-float:hover {
  transform:scale(1.1);
  box-shadow:0 6px 28px rgba(37,211,102,0.6);
}
.wa-float svg { width:30px; height:30px; fill:white; }
@keyframes wa-pulse {
  0%,100% { box-shadow:0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow:0 4px 32px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ── GREEN ACCENT TOUCHES ── */
h1 strong { color: var(--green) !important; }
.hero-pill { background: var(--green-light) !important; color: var(--green-dark) !important; }
.hero-pill .dot-live { background: var(--green) !important; }
.pack-img-label:not(.gold) { background: var(--green) !important; }
.legal-nav a.active { background: var(--green) !important; border-color: var(--green) !important; }
.legal-nav a:hover { background: var(--green) !important; border-color: var(--green) !important; }
.spec-label { color: var(--green) !important; }
.tour-dist, .tour-info-item svg { color: var(--green); }


