@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --background: #ffffff;
  --foreground: #112036;
  --muted: #f3f7fa;
  --muted-foreground: #5c6d80;
  --border: #dfe8f0;
  --primary: #22a7c7;
  --primary-strong: #1687a3;
  --primary-foreground: #ffffff;
  --secondary: #ef8b43;
  --secondary-foreground: #ffffff;
  --card: #ffffff;
  --accent: #eef5f7;
  --accent-foreground: #112036;
  --shadow: 0 20px 50px rgba(17, 32, 54, 0.12);
  --header-bg: rgba(255,255,255,0.92);
}

html.dark {
  --background: #0f1b2d;
  --foreground: #edf4ff;
  --muted: #162338;
  --muted-foreground: #a8b6c7;
  --border: #25354e;
  --primary: #39bfdc;
  --primary-strong: #1f9dbe;
  --primary-foreground: #07121d;
  --secondary: #f3a768;
  --secondary-foreground: #07121d;
  --card: #132033;
  --accent: #1a2a42;
  --accent-foreground: #edf4ff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --header-bg: rgba(15,27,45,0.9);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display:block; max-width:100%; }
button, input, textarea { font: inherit; }
button { cursor:pointer; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-shell { min-height: 100vh; display:flex; flex-direction:column; }
.site-main { flex:1; }
.section { padding: 5rem 0; }
.section-muted { background: var(--muted); }
.section-gradient { background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 12%, transparent), var(--background)); }
.center { text-align:center; }
.lead { font-size: 1.15rem; color: var(--muted-foreground); max-width: 780px; }
.lead.light { color: rgba(255,255,255,0.88); }
.two-col { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3rem; align-items:center; }
.grid-2 { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.grid-3 { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.grid-4 { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.stack-lg > * + * { margin-top: 1.5rem; }
.stack-md > * + * { margin-top: 1rem; }
.stack-sm > * + * { margin-top: .5rem; }

h1,h2,h3,h4 {
  font-family:'Sora', sans-serif;
  letter-spacing:-.02em;
  line-height:1.15;
  margin:0;
}
h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); font-weight:800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight:700; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight:600; }
p { margin:0; max-width: 65ch; }

.site-header {
  position: sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}
.header-row {
  display:flex; align-items:center; justify-content:space-between;
  min-height: 4.25rem; gap: 1rem;
}
.brand { display:flex; align-items:center; gap:.5rem; font-family:'Sora', sans-serif; font-weight:800; }
.brand-name {
  font-size:1.35rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.brand-sub { color: var(--muted-foreground); font-size:.9rem; }
.nav-links { display:flex; align-items:center; gap:.35rem; }
.nav-link {
  padding: .8rem 1rem; border-radius: .9rem; color: var(--muted-foreground);
  font-family:'Sora', sans-serif; font-size:.95rem; font-weight:600;
  transition: .2s ease;
}
.nav-link:hover, .nav-link.active { background: var(--accent); color: var(--accent-foreground); }
.header-actions { display:flex; align-items:center; gap:.5rem; }
.icon-button {
  width:2.8rem; height:2.8rem; border-radius:999px; border:1px solid var(--border);
  background: transparent; color: var(--foreground); display:grid; place-items:center;
  transition:.2s ease;
}
.icon-button:hover { background: var(--accent); transform: translateY(-1px); }
.whats-icon { color:#25D366; }
.mobile-toggle { display:none; }
.mobile-panel {
  display:none; border-top:1px solid var(--border); padding: .5rem 0 1rem;
}
.mobile-panel.open { display:block; }
.mobile-panel .nav-link { display:block; margin-top:.35rem; }

.theme-toggle {
  --toggle-width: 3.95rem;
  --toggle-height: 2.25rem;
  --toggle-padding: 0.22rem;
  --thumb-size: 1.8rem;
  --thumb-shift: 1.55rem;
  position: relative;
  width: var(--toggle-width);
  height: var(--toggle-height);
  padding: var(--toggle-padding);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: linear-gradient(180deg, #7dd3fc, #38bdf8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
  overflow: hidden;
  transition: background .45s ease, border-color .25s ease, transform .2s ease, box-shadow .25s ease;
}
.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(17, 32, 54, 0.16);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.theme-toggle-bg,
.theme-toggle-thumb,
.theme-icon,
.theme-toggle-cloud,
.theme-toggle-stars,
.theme-star {
  position: absolute;
}
.theme-toggle-bg {
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.theme-toggle-cloud {
  right: .58rem;
  top: .72rem;
  width: .95rem;
  height: .38rem;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: -.42rem -.12rem 0 .08rem rgba(255,255,255,.88), .18rem -.2rem 0 .06rem rgba(255,255,255,.84);
  transition: opacity .35s ease, transform .35s ease;
}
.theme-toggle-stars {
  inset: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .35s ease, transform .35s ease;
}
.theme-star {
  background: #fef3c7;
  clip-path: polygon(50% 0%, 62% 35%, 100% 50%, 62% 65%, 50% 100%, 38% 65%, 0% 50%, 38% 35%);
}
.theme-star-1 { width: .3rem; height: .3rem; left: .55rem; top: .45rem; opacity: .75; }
.theme-star-2 { width: .42rem; height: .42rem; left: 1.1rem; bottom: .48rem; opacity: .6; }
.theme-star-3 { width: .25rem; height: .25rem; left: 1.55rem; top: .82rem; opacity: .95; }
.theme-toggle-thumb {
  top: 50%;
  left: var(--toggle-padding);
  width: var(--thumb-size);
  height: var(--thumb-size);
  border-radius: 50%;
  background: #facc15;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22);
  transform: translate(0, -50%);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), background .42s ease;
}
.theme-icon {
  inset: 0;
  display: grid;
  place-items: center;
  font-size: .95rem;
  line-height: 1;
  transition: opacity .32s ease, transform .32s ease;
}
.theme-icon-sun { color: #fff7ed; opacity: 1; transform: rotate(0deg) scale(1); }
.theme-icon-moon { color: #fde68a; opacity: 0; transform: rotate(-180deg) scale(.2); }
html.dark .theme-toggle {
  background: linear-gradient(180deg, #0f172a, #1e293b);
  border-color: #334155;
}
html.dark .theme-toggle-cloud {
  opacity: 0;
  transform: translateY(.4rem);
}
html.dark .theme-toggle-stars {
  opacity: 1;
  transform: translateY(0);
}
html.dark .theme-toggle-thumb {
  background: #1e293b;
  transform: translate(var(--thumb-shift), -50%);
}
html.dark .theme-icon-sun { opacity: 0; transform: rotate(180deg) scale(.2); }
html.dark .theme-icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }
@media (max-width: 640px) {
  .theme-toggle {
    --toggle-width: 3.6rem;
    --toggle-height: 2.1rem;
    --thumb-size: 1.65rem;
    --thumb-shift: 1.35rem;
  }
}

.hero {
  position:relative; min-height: calc(100vh - 68px); display:grid; place-items:center;
  overflow:hidden; color:#fff;
}
.hero-media, .hero-overlay { position:absolute; inset:0; }
.hero-media {
  background: url('https://images.unsplash.com/photo-1553512313-64af79fdfe9c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.52), rgba(0,0,0,.72)); }
.hero-content { position:relative; z-index:1; text-align:center; }
.hero-actions { display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; margin-top:2rem; }


.hero-content h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 1.06;
  text-wrap: balance;
}

.typing-text {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.typing-text .typing-track {
  display: inline;
}

.typing-text .typing-word {
  display: inline-block;
  white-space: nowrap;
}

.typing-text .typing-space {
  display: inline;
}

.typing-text .typing-char {
  display: inline-block;
  opacity: 0;
  transform: scale(0.95);
  filter: blur(1.5px);
  will-change: transform, opacity, filter;
}

.typing-text.is-animated .typing-char {
  animation: typingReveal .32s ease-in-out forwards;
}

.typing-text.typing-text-secondary {
  max-width: 760px;
}

@keyframes typingReveal {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(6px);
    filter: blur(1.5px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}


.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  min-height: 3.2rem; padding: .9rem 1.2rem; border-radius: 1rem;
  border:1px solid transparent; font-family:'Sora', sans-serif; font-weight:700;
  transition: .2s ease; text-align:center;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { background: var(--primary-strong); }
.btn-secondary { background: var(--secondary); color: var(--secondary-foreground); }
.btn-outline { background: transparent; color: var(--foreground); border-color: var(--border); }
.btn-whatsapp { background:#25D366; color:#fff; }
.btn-whatsapp:hover { background:#20ba5a; }
.btn-full { width:100%; }

.card {
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-color: rgba(59, 130, 246, 0.18);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--card); border:1px solid var(--border); border-radius:1.25rem;
  padding:1.5rem; box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
  background:
    radial-gradient(260px circle at var(--glow-x) var(--glow-y), var(--glow-color), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  z-index: 0;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary) 32%, transparent);
  z-index: 0;
}
.card > * {
  position: relative;
  z-index: 1;
}
.card.glow-active::before,
.card.glow-active::after,
.card:hover::before,
.card:hover::after {
  opacity: 1;
}
.card.soft-shadow { box-shadow: 0 16px 40px rgba(17,32,54,.08); }
.media-card { border-radius: 1.5rem; overflow:hidden; box-shadow: var(--shadow); }
.media-card img { width:100%; height:100%; object-fit:cover; }
.icon-badge {
  width:3.4rem; height:3.4rem; border-radius:1rem; background: color-mix(in srgb, var(--primary) 14%, transparent);
  display:grid; place-items:center; font-size:1.4rem;
}
.service-card { height:100%; transition:.25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--primary) 30%, var(--border)); box-shadow: 0 18px 45px rgba(17,32,54,.14); }
.why-list { display:grid; gap:1.25rem; max-width: 900px; margin: 0 auto; }
.why-item { display:grid; grid-template-columns: 5rem 1fr; gap:1rem; align-items:flex-start; }
.why-number { font-family:'Sora', sans-serif; font-size:3.6rem; font-weight:800; color: color-mix(in srgb, var(--primary) 22%, transparent); line-height:1; }

.page-intro { padding: 4.5rem 0; }
.values-grid .card, .service-grid .card { height:100%; }
.contact-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; }
.info-list { display:grid; gap:1.2rem; }
.info-item { display:flex; gap:1rem; align-items:flex-start; }
.info-icon {
  width:3rem; height:3rem; border-radius:1rem;
  display:grid; place-items:center; background: color-mix(in srgb, var(--primary) 14%, transparent);
  font-size:1.15rem; flex-shrink:0;
}
.social-links { display:flex; gap:1rem; flex-wrap:wrap; }
.social-links a {
  width:2.5rem; height:2.5rem; border-radius:999px; border:1px solid var(--border);
  display:grid; place-items:center; background: var(--card);
}
.map-placeholder {
  min-height: 24rem; border-radius: 1.5rem; overflow:hidden;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 24%, transparent), color-mix(in srgb, var(--secondary) 24%, transparent));
  display:grid; place-items:center; text-align:center;
}

.form-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.field { display:grid; gap:.45rem; }
.field label { font-family:'Sora', sans-serif; font-weight:600; }
.input, .textarea {
  width:100%; border:1px solid var(--border); background: var(--background); color: var(--foreground);
  border-radius: .95rem; padding: .95rem 1rem;
}
.textarea { min-height: 10rem; resize: vertical; }
.input:focus, .textarea:focus { outline:2px solid color-mix(in srgb, var(--primary) 34%, transparent); outline-offset:1px; }

.tabs, .mega-tabs {
  display:flex;
  align-items:center;
  gap: 2.15rem;
  padding: 1rem .75rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow-x:auto;
  overflow-y:visible;
  white-space:nowrap;
  box-shadow: 0 14px 35px rgba(17,32,54,.06);
}
.mega-tab, .tab-button {
  border:0;
  background:transparent;
  color: var(--foreground);
  padding:.35rem .1rem;
  border-radius:.45rem;
  font-family:'Sora', sans-serif;
  font-weight:600;
  font-size: .98rem;
  cursor:pointer;
}
.mega-tab.active, .tab-button.active { color:#005eff; }
.mega-tab:hover, .tab-button:hover { color: var(--primary); }
.mega-more { position:relative; flex: 0 0 auto; }
.mega-more-menu {
  position:absolute;
  top: calc(100% + .65rem);
  right:0;
  width: 14.5rem;
  z-index:20;
  padding:.55rem;
  border:1px solid var(--border);
  border-radius:1rem;
  background: var(--card);
  box-shadow: var(--shadow);
}
.mega-more-menu button {
  width:100%;
  border:0;
  background:transparent;
  color: var(--foreground);
  text-align:left;
  padding:.75rem .85rem;
  border-radius:.75rem;
  font-family:'Sora', sans-serif;
  font-weight:600;
  cursor:pointer;
}
.mega-more-menu button:hover { background: var(--muted); color: var(--primary); }
.tab-panel[hidden] { display:none; }
.mega-iframe-shell {
  margin-top: 1.5rem;
  width:100%;
  min-height: 75rem;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 16px 45px rgba(17,32,54,.08);
}
.mega-iframe-shell iframe {
  display:block;
  width:100%;
  min-height: 75rem;
  height: 1200px;
  border:0;
  background:#fff;
}

.site-footer { background: var(--muted); border-top:1px solid var(--border); margin-top:auto; }
.footer-grid { display:grid; grid-template-columns: 1.2fr .8fr 1fr; gap:2rem; }
.footer-links { display:grid; gap:.65rem; }
.footer-meta {
  margin-top:2rem; padding-top:2rem; border-top:1px solid var(--border);
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; align-items:center;
}
.footer-policies { margin-top:1rem; display:flex; gap:.8rem; align-items:center; flex-wrap:wrap; font-size:.9rem; }

.floating-whatsapp {
  position:fixed; right:1.4rem; bottom:1.4rem; width:3.7rem; height:3.7rem;
  border:none; border-radius:999px; background:#25D366; color:#fff; font-size:1.4rem;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.4); z-index:60;
}
.floating-whatsapp:hover { transform: scale(1.06); background:#20ba5a; }
.toast-stack {
  position:fixed; top:5rem; right:1rem; display:grid; gap:.75rem; z-index:100;
}
.toast {
  min-width: 260px; max-width: 320px; padding: .95rem 1rem; border-radius: 1rem;
  color:#fff; box-shadow: var(--shadow); animation: slideIn .2s ease;
}
.toast.success { background:#1f9d61; }
.toast.error { background:#d85858; }

.reveal { opacity:0; transform: translateY(26px); transition: opacity .55s ease, transform .55s ease; }
.reveal.from-left { transform: translateX(-26px); }
.reveal.visible { opacity:1; transform:none; }
.fade-in-now { animation: fadeIn .75s ease both; }

@keyframes fadeIn { from { opacity:0; transform: translateY(24px);} to { opacity:1; transform:none; } }
@keyframes slideIn { from { opacity:0; transform: translateX(12px);} to { opacity:1; transform:none; } }

@media (max-width: 900px) {
  .two-col, .grid-4, .grid-3, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid-2, .form-grid { grid-template-columns: 1fr; }
  .nav-links { display:none; }
  .mobile-toggle { display:grid; }
  .brand-sub { display:none; }
  .contact-grid { gap: 2.5rem; }
}

@media (max-width: 640px) {
  .section, .page-intro { padding: 4rem 0; }
  .container { width: min(1120px, calc(100% - 1.25rem)); }
  .hero-actions, .header-actions { gap:.65rem; }
  .why-item { grid-template-columns: 1fr; }
  .why-number { font-size: 2.75rem; }
  .floating-whatsapp { right: 1rem; bottom: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .card, .card::before, .card::after, .service-card { transition: none; }
}

@media (hover: none) {
  .card::before, .card::after { display: none; }
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  transition: filter .25s ease, transform .25s ease;
}

html.dark .brand-logo {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 22px rgba(255, 255, 255, 0.45));
}

.brand-footer .brand-logo {
  height: 88px;
}

@media (max-width: 900px) {
  .brand-logo {
    height: 76px;
  }

  .brand-footer .brand-logo {
    height: 72px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 62px;
  }

  .brand-footer .brand-logo {
    height: 60px;
  }
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 1rem 1.45rem;
  letter-spacing: -.01em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent 45%, rgba(255,255,255,.12));
  opacity: .9;
  pointer-events: none;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp {
  box-shadow: 0 16px 32px rgba(17, 32, 54, 0.18);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--secondary) 26%, var(--primary)));
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), color-mix(in srgb, var(--primary) 22%, var(--secondary)));
}

.btn-secondary:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--secondary) 85%, black), var(--secondary));
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1fb85b);
}

.btn-outline {
  border-color: color-mix(in srgb, var(--border) 72%, var(--primary));
}

.btn-icon,
.social-icon,
.whatsapp-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-block;
  flex-shrink: 0;
}

.social-links a {
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 34%, var(--border));
  box-shadow: 0 12px 22px rgba(17, 32, 54, 0.12);
}

.floating-whatsapp,
.whats-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-whatsapp .whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.whats-icon .whatsapp-icon,
.btn-whatsapp .whatsapp-icon {
  width: 1.2rem;
  height: 1.2rem;
}

@media (max-width: 768px) {
  .mega-tabs { gap: 1.45rem; padding: .85rem .75rem; border-radius: .9rem; }
  .mega-tab { font-size: .92rem; }
  .mega-more-menu { left:0; right:auto; }
  .mega-iframe-shell, .mega-iframe-shell iframe { min-height: 88rem; height: 1400px; }
}

/* Ajustes Destinos: menú More profesional + fondo dinámico */
.destination-hero-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.2)),
    var(--destination-bg-image, none) center/cover no-repeat !important;
}
.destination-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,.65), transparent 42%);
}
.destinations-booking-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: #ffffff;
}
.destinations-booking-card {
  position: relative;
  z-index: 2;
}
.destinations-booking-card .tabs,
.destinations-booking-card .mega-tabs {
  overflow: visible;
  flex-wrap: wrap;
  scrollbar-width: none;
}
.destinations-booking-card .tabs::-webkit-scrollbar,
.destinations-booking-card .mega-tabs::-webkit-scrollbar {
  display: none;
}
.mega-more-button {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .65rem;
  border: 1px solid transparent;
}
.mega-more-button::after {
  content: "⌄";
  font-size: .85rem;
  line-height: 1;
  transition: transform .2s ease;
}
.mega-more-button[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.mega-more-menu {
  min-width: 17rem;
  max-height: 22rem;
  overflow-y: auto;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.96);
  transform-origin: top right;
  animation: megaPop .18s ease both;
}
@keyframes megaPop {
  from { opacity: 0; transform: translateY(-6px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.mega-more-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mega-more-menu button::after {
  content: "→";
  opacity: .35;
}

@media (max-width: 768px) {
  .destinations-booking-card .tabs,
  .destinations-booking-card .mega-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: .95rem;
  }
  .mega-more-menu {
    position: fixed;
    left: 1rem !important;
    right: 1rem !important;
    top: auto !important;
    bottom: 1rem;
    width: auto;
    max-height: 60vh;
    z-index: 9999;
  }
}


/* Mapa de contacto */
.map-embed {
  min-height: 28rem;
  padding: 0;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 28rem;
  display: block;
  border: 0;
}

@media (max-width: 640px) {
  .map-embed,
  .map-embed iframe {
    min-height: 22rem;
    height: 22rem;
  }
}


/* Banner de cookies global */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(960px, calc(100% - 2rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: color-mix(in srgb, var(--card) 92%, transparent);
  box-shadow: 0 22px 60px rgba(17, 32, 54, .18);
  backdrop-filter: blur(16px);
  animation: cookieSlideUp .25s ease both;
}
.cookie-banner-content { display: grid; gap: .2rem; }
.cookie-banner-content strong { font-family: 'Sora', sans-serif; font-size: 1rem; }
.cookie-banner-content p { color: var(--muted-foreground); font-size: .92rem; max-width: 62ch; }
.cookie-banner-actions { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; }
.cookie-link { color: var(--primary); font-family: 'Sora', sans-serif; font-weight: 700; font-size: .9rem; }
.cookie-accept { min-height: 2.75rem; padding: .75rem 1.15rem; }
.cookie-banner-hide { animation: cookieSlideDown .22s ease both; }
.map-embed iframe { width: 100%; height: 100%; min-height: 24rem; border: 0; display: block; }
@keyframes cookieSlideUp { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes cookieSlideDown { from { opacity: 1; transform: translate(-50%, 0); } to { opacity: 0; transform: translate(-50%, 12px); } }
@media (max-width: 720px) {
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-banner-actions { justify-content: space-between; }
  .cookie-accept { flex: 1; }
}
.destination-hero-bg h1,
.destination-hero-bg h2,
.destination-hero-bg p,
.destination-hero-bg .lead {
  color: #111 !important;
  text-shadow:
    0 2px 6px rgba(92, 160, 224, 0.95),
    0 0 14px rgba(255, 255, 255, 0.85);
}