﻿/* Estilos base para ViveWayra - paleta suave, tipografías serif para títulos y montserrat para cuerpo */
:root {
  --bg: #ffffff;
  --muted: #555550;
  --accent: #c9bba0;
  --logo-blue: #1e508b;
  --logo-blue-dark: #133a67;
  --logo-blue-soft: #8ec2ff;
  --logo-blue-pale: #d8e8fb;
  --green: var(--logo-blue);
  --cream: #ffffff;
  --text: #2b2b2b;
  --font-title: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.modal-open {
  overflow: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px
}

/* Header Layout */
.site-header {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(1.15) blur(10px);
  backdrop-filter: saturate(1.15) blur(10px);
  border-bottom: 1px solid rgba(43, 43, 43, 0.04);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

body,
p,
li,
a,
span,
small,
label,
input,
textarea,
select,
button {
  font-family: var(--font-body) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title) !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 20px;
  /* Más espacio entre logo, nav y acciones */
  width: 100%;
}

.site-header .container {
  max-width: 1200px;
  /* Un poco más de aire para las palabras largas */
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  margin-right: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.site-header #site-logo {
  height: 68px !important;
  width: auto !important;
  max-height: 68px !important;
  max-width: 224px !important;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover #site-logo {
  transform: scale(1.05);
}

.WAYRA-brand-container {
  /* Sin restricción de ancho para no comprimir el logo */
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
}

.WAYRA-logo {
  width: 250px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover .WAYRA-logo {
  transform: scale(1.05);
}

.WAYRA-svg {
  width: 100%;
  height: auto;
  display: block;
}

.WAYRA-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 4px;
  fill: #3D5A44;
}

.WAYRA-slogan {
  font-family: 'Merriweather', serif;
  font-size: 10px;
  letter-spacing: 0.5px;
  fill: #3D5A44;
  font-weight: 400;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: clamp(12px, 2vw, 32px);
  align-items: center;
  margin: 0 auto;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: var(--green);
}

.main-nav a.active {
  color: var(--green);
  font-weight: 600;
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
}

.mobile-nav-social,
.mobile-nav-email {
  display: none;
}

/* Actions (Right side) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-icon-link {
  color: var(--text);
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
}

.social-icon-link:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: var(--green);
  /* Optional: add a subtle brand color on hover */
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 0;
  cursor: pointer;
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  transition: color .18s ease, transform .18s ease;
}

.nav-toggle:hover {
  background: transparent;
  color: #151515;
}

.nav-toggle:active {
  transform: scale(0.98);
}

.nav-toggle:focus,
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: none;
}

.nav-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.nav-toggle-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.btn-whatsapp {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 8px 16px;
  border-radius: 20px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-whatsapp:hover {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .header-inner {
    gap: 12px;
    padding: 10px 0;
  }

  .site-header #site-logo {
    height: 66px !important;
    max-height: 66px !important;
    max-width: 212px !important;
  }

  .main-nav {
    display: flex;
    /* Visible container on mobile, hidden via animation states */
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    z-index: 1002;
    background:
      radial-gradient(100% 80% at 70% 18%, rgba(170, 194, 215, 0.18) 0%, rgba(170, 194, 215, 0) 58%),
      radial-gradient(90% 70% at 25% 32%, rgba(150, 176, 199, 0.14) 0%, rgba(150, 176, 199, 0) 62%),
      linear-gradient(135deg, rgba(12, 16, 29, 0.86) 0%, rgba(18, 22, 34, 0.83) 46%, rgba(24, 30, 42, 0.8) 100%);
    -webkit-backdrop-filter: saturate(1.15) blur(16px);
    backdrop-filter: saturate(1.15) blur(16px);
    flex-direction: column;
    padding: 10px 10px 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: none;
    margin: 0;
    gap: 8px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top center;
    transition: max-height .32s ease, opacity .24s ease, transform .24s ease, visibility .24s ease;
  }

  .main-nav::before {
    content: "";
    position: absolute;
    left: 10%;
    width: 34%;
    top: 22%;
    height: 68px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(160, 190, 214, 0.28) 0%, rgba(160, 190, 214, 0.07) 48%, rgba(160, 190, 214, 0) 72%);
    filter: blur(14px);
    opacity: 0;
    transition: opacity .24s ease;
    pointer-events: none;
  }

  .main-nav::after {
    content: "";
    position: absolute;
    right: 12%;
    width: 36%;
    top: 16%;
    height: 74px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(170, 200, 220, 0.24) 0%, rgba(170, 200, 220, 0.07) 52%, rgba(170, 200, 220, 0) 74%);
    filter: blur(15px);
    opacity: 0;
    transition: opacity .24s ease;
    pointer-events: none;
  }

  .main-nav.open {
    max-height: 72vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 34px rgba(6, 7, 18, 0.45);
  }

  .main-nav.open::before {
    opacity: 1;
  }

  .main-nav.open::after {
    opacity: 1;
  }

  .main-nav a {
    color: rgba(240, 241, 255, 0.94);
    width: min(88%, 340px);
    align-self: center;
    padding: 9px 11px;
    border-radius: 10px;
    border: 1px solid transparent;
    white-space: normal;
    line-height: 1.2;
    font-size: 13px;
    text-align: center;
  }

  .main-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .main-nav a.active {
    color: #ffffff;
    border-bottom-color: transparent;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
  }

  .main-nav a {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .main-nav.open a {
    opacity: 1;
    transform: translateY(0);
  }

  .header-actions .social-brand-link {
    display: none;
  }

  .mobile-nav-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    width: min(90%, 340px);
    align-self: center;
  }

  .mobile-nav-social .social-brand-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow:
      0 10px 24px rgba(8, 11, 22, 0.34),
      0 2px 6px rgba(8, 11, 22, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .mobile-nav-social .social-brand-link::before {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 7px;
    height: 9px;
    border-radius: 999px;
    filter: blur(8px);
    opacity: .55;
    z-index: 0;
  }

  .mobile-nav-social .social-brand-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 1px;
    height: 3px;
    border-radius: 999px 999px 0 0;
    z-index: 1;
  }

  .mobile-nav-social .social-brand-link svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2;
  }

  .mobile-nav-social .social-brand-link svg,
  .mobile-nav-social .social-brand-link svg * {
    fill: currentColor !important;
  }

  .mobile-nav-social .fb-link::before,
  .mobile-nav-social .fb-link::after {
    background: linear-gradient(90deg, #81b8ff 0%, #b8d2ff 100%);
  }

  .mobile-nav-social .ig-link::before,
  .mobile-nav-social .ig-link::after {
    background: linear-gradient(90deg, #6f53ff 0%, #ff7a59 50%, #ffb24a 100%);
  }

  .mobile-nav-social .tt-link::before,
  .mobile-nav-social .tt-link::after {
    background: linear-gradient(90deg, #39d8ff 0%, #a37bff 50%, #ff5bb2 100%);
  }

  .mobile-nav-social .fb-link {
    color: #ecf3ff;
  }

  .mobile-nav-social .ig-link {
    color: #fff1f7;
  }

  .mobile-nav-social .tt-link {
    color: #eff7ff;
  }

  .mobile-nav-social .social-brand-link span {
    display: none;
  }

  .mobile-nav-email {
    display: block;
    width: min(90%, 340px);
    align-self: center;
    margin-top: 0;
    padding: 2px 0 0;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.2px;
    color: rgba(230, 238, 255, 0.88);
    text-decoration: none;
  }

  .mobile-nav-email:hover {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.7);
    text-underline-offset: 2px;
  }

  .nav-toggle {
    display: inline-flex;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .header-inner {
    gap: 8px;
    padding: 9px 0;
  }

  .site-header #site-logo {
    height: 64px !important;
    max-height: 64px !important;
    max-width: 204px !important;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .social-brand-link {
    width: 40px;
    height: 40px;
  }

  .header-actions .social-brand-link svg {
    width: 19px;
    height: 19px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    margin-left: 4px;
  }

  .wa-float {
    width: 50px;
    height: 50px;
    right: 18px;
    bottom: 20px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}



/* HERO */
.hero {
  height: 68vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #d9cfc6;
  background-image: url('https://i.ibb.co/6J0yYy4R/Whats-App-Image-2026-03-05-at-11-08-55-PM.jpg');
}

/* En móviles altos, el hero debe ocupar (casi) toda la pantalla para evitar el "hueco" blanco. */
@media (max-width: 600px) {
  .hero {
    height: calc(100vh - 92px);
    min-height: calc(100vh - 92px);
    background-position: center 60%;
  }
}
@supports (height: 100svh) {
  @media (max-width: 600px) {
    .hero {
      height: calc(100svh - 92px);
      min-height: calc(100svh - 92px);
    }
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(0.2px)
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  margin: 0 auto;
  max-width: 920px;
}

.hero h1 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: clamp(30px, 4.1vw, 50px);
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 0.98;
  white-space: pre-line;
  text-transform: none;
}

.hero-eyebrow {
  margin: 0 0 12px;
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 245, 226, 0.72);
}

.hero-title-brand {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: #fff8eb;
  font-family: 'Allura', 'Segoe Script', 'Brush Script MT', cursive !important;
  font-size: clamp(86px, 12vw, 154px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.34);
  white-space: nowrap;
  width: 100%;
  padding-bottom: 0;
}

.hero-title-brand span {
  font-family: 'Allura', 'Segoe Script', 'Brush Script MT', cursive !important;
}

.hero-title-nuqui {
  position: relative;
  display: inline-block;
}

.lead {
  font-family: Inter, sans-serif;
  font-size: clamp(13px, 1.25vw, 16px);
  margin: 16px auto 24px;
  opacity: 0.48;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.04em;
  max-width: 760px;
}

.hero-tagline {
  margin: 10px 0 0;
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: clamp(15px, 1.6vw, 21px);
  font-style: italic;
  color: rgba(255, 245, 226, 0.58);
  letter-spacing: 0.03em;
}

.hero-inclusive-pill {
  display: block;
  margin: 4px 0 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 245, 226, 0.9);
  font-family: Inter, sans-serif;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  pointer-events: none;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 176px;
  padding: 9px 14px;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
  opacity: 0.82;
}

.hero-action svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.hero-action-primary {
  background: rgba(0, 0, 0, 0.08);
  color: #fff8eb;
  border: 1px solid rgba(255, 245, 226, 0.16);
  box-shadow: none;
}

.hero-action-secondary {
  background: rgba(0, 0, 0, 0.08);
  color: #fff8eb;
  border: 1px solid rgba(255, 245, 226, 0.16);
  box-shadow: none;
}

.hero-action:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.14);
}

.btn-primary {
  display: inline-block;
  background: var(--cream);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* SECCIONES */
.section {
  padding: 64px 0
}

/* Fachada lazy del iframe de YouTube */
/* ── Facade de video (thumbnail + play antes de cargar iframe) ── */
.yt-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  overflow: hidden;
}
.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.yt-facade:hover .yt-thumb {
  transform: scale(1.04);
}
.yt-facade-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.48) 100%);
  transition: background 0.3s;
}
.yt-facade:hover .yt-facade-overlay {
  background: linear-gradient(160deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}
.yt-facade-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.95);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.18);
}
.yt-big-play {
  width: 76px;
  height: 76px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
  transition: transform 0.2s ease, filter 0.2s ease;
}
.yt-facade:hover .yt-big-play {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.65));
}
.yt-facade-location {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.pale {
  background: #ffffff;
}

.light {
  background: var(--cream)
}

.section h2 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 26px;
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
}

.subtitle {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.2px;
}

/* ══════════════════════════════════════════
   SECCIÓN "5 RAZONES" — ¿Por qué Nuquí?
══════════════════════════════════════════ */
.section-razones {
  padding: 26px 0 34px;
  position: relative;
}

.razones-titulo {
  font-family: Merriweather, serif;
  font-size: clamp(20px, 2.6vw, 31px);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-align: center;
  line-height: 1.05;
  letter-spacing: -1px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.razones-sub {
  font-family: Merriweather, serif;
  font-size: clamp(11px, 0.82vw, 12.5px);
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  margin: 6px auto 10px;
  max-width: 560px;
  line-height: 1.2;
  letter-spacing: -0.2px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.razones-mosaic {
  display: grid;
  grid-template-columns: 2.65fr 0.85fr 0.85fr;
  grid-template-areas:
    "one two three"
    "one four four";
  gap: 8px;
}

.razon-card {
  position: relative;
  min-height: 130px;
  border-radius: 20px;
  overflow: hidden;
  padding: 9px 11px;
  display: flex;
  align-items: flex-end;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.razon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 16, 0.03) 42%, rgba(5, 8, 16, 0.48) 100%);
}

.razon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.razon-card-content,
.razon-season {
  position: relative;
  z-index: 1;
}

.razon-card-content h3 {
  margin: 0;
  font-family: Merriweather, serif;
  font-size: clamp(14px, 2vw, 22px);
  letter-spacing: -0.4px;
  line-height: 1;
  color: #ffffff;
}

.razon-card-content p {
  margin: 3px 0 0;
  font-size: clamp(10px, 0.78vw, 12px);
  line-height: 1.08;
  color: rgba(255, 255, 255, 0.86);
  max-width: 92%;
}

.razon-season {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #e8dba9;
  color: #1c2230;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.razon-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 700;
  letter-spacing: 0.15px;
  line-height: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0.10) 100%),
    linear-gradient(120deg, rgba(143, 194, 255, 0.26) 0%, rgba(255, 182, 124, 0.2) 100%);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
}

.razon-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  filter: saturate(1.08);
}

.razon-card-main {
  grid-area: one;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
}

.razon-card-main::before {
  background: linear-gradient(180deg, rgba(5, 8, 16, 0.08) 0%, rgba(5, 8, 16, 0.48) 100%);
}

.razon-card-main .razon-card-content {
  max-width: 540px;
}

.razon-card-main .razon-card-content h3 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.02;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.razon-card-main .razon-card-note {
  margin: 8px 0 0;
  font-family: Inter, sans-serif;
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.razon-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.razon-actions .razon-link {
  margin-top: 0;
  padding: 9px 15px;
  font-size: clamp(11px, 0.82vw, 13px);
}

.razon-link-secondary {
  background: rgba(255, 255, 255, 0.1);
}

.razon-card-two {
  grid-area: two;
}

.razon-card-three {
  grid-area: three;
}

.razon-card-four {
  grid-area: four;
}

.razon-card-two .razon-card-content h3,
.razon-card-three .razon-card-content h3 {
  font-size: clamp(14px, 1.45vw, 21px);
}

.razon-card-two .razon-card-content p,
.razon-card-three .razon-card-content p {
  font-size: clamp(10px, 0.72vw, 12px);
}

.razon-card-soft::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 52%, rgba(255, 255, 255, 0.58) 100%);
}

.razon-card-soft .razon-card-content h3 {
  color: #161c26;
}

.razon-card-soft .razon-card-content p {
  color: #242e3f;
}

@media (max-width: 1100px) {
  .razones-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "one one"
      "two three"
      "four four";
  }

  .razon-card-main {
    min-height: 330px;
  }
}

@media (max-width: 760px) {
  .section-razones,
  .section-razones .container {
    background: transparent !important;
    box-shadow: none !important;
  }

  .razones-titulo,
  .razones-sub {
    background: transparent !important;
  }

  .razones-titulo {
    color: #1f2733;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.45);
  }

  .razones-sub {
    color: rgba(31, 39, 51, 0.88);
    text-shadow: none;
  }

  .section-razones {
    padding: 20px 0 24px;
  }

  .razones-titulo {
    font-size: clamp(19px, 7.2vw, 28px);
    line-height: 1.08;
  }

  .razones-sub {
    font-size: clamp(10px, 3.3vw, 12px);
    margin-bottom: 8px;
  }

  .razones-mosaic {
    grid-template-columns: 1fr;
    grid-template-areas:
      "one"
      "two"
      "three"
      "four";
    gap: 7px;
  }

  .razon-card {
    min-height: 154px;
    border-radius: 14px;
    padding: 8px 8px 9px;
  }

  .razon-card-main {
    min-height: 280px;
    width: 100%;
    justify-self: stretch;
    padding: 18px;
  }

  .razon-card-main .razon-card-content h3 {
    font-size: clamp(21px, 6vw, 29px);
  }

  .razon-card:not(.razon-card-main) {
    width: min(92%, 660px);
    justify-self: center;
  }

  .razon-card-content h3,
  .razon-card-two .razon-card-content h3,
  .razon-card-three .razon-card-content h3 {
    font-size: clamp(16px, 5.8vw, 22px);
  }

  .razon-card-content p,
  .razon-card-two .razon-card-content p,
  .razon-card-three .razon-card-content p {
    font-size: clamp(11px, 3.4vw, 14px);
  }

  .razon-season {
    font-size: 10px;
    padding: 2px 6px;
    right: 7px;
    top: 7px;
  }

  .razon-link {
    margin-top: 7px;
    font-size: clamp(11px, 3.3vw, 14px);
    padding: 7px 11px;
  }
}
.section-como {
  background: #f3f1ef;
  padding: 30px 0 32px;
}

.como-eyebrow {
  font-family: Montserrat, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #7d847f;
  text-transform: uppercase;
  margin: 0 0 4px;
  text-align: center;
}

.como-titulo {
  font-family: Merriweather, serif;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  color: #2f3238;
  margin: 0 0 6px;
  text-align: center;
  line-height: 1.07;
  letter-spacing: -0.5px;
}

.como-sub {
  font-size: clamp(11px, 0.9vw, 14px);
  color: #7a7d82;
  text-align: center;
  margin: 0 auto 14px;
  max-width: 560px;
  line-height: 1.3;
}

.como-timeline {
  max-width: 980px;
  margin: 0 auto;
}

.como-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 10px;
}

.como-row::before {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  top: 14px;
  height: 1px;
  background: #ded8d0;
  z-index: 0;
}

.como-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.como-bubble {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #d9d3ca;
  background: #ece9e4;
  color: #7a867f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  box-shadow: 0 0 0 6px #f3f1ef;
}

.como-step h3 {
  margin: 8px 0 2px;
  font-family: Merriweather, serif;
  font-size: clamp(13px, 1.1vw, 18px);
  line-height: 1.1;
  color: #2f3238;
  letter-spacing: -0.4px;
}

.como-step p {
  margin: 0;
  font-size: clamp(11px, 0.95vw, 14px);
  color: #666b71;
  line-height: 1.35;
}

.como-row-bottom {
  margin-top: 8px;
}

.como-row-bottom::before {
  top: 18px;
}

.como-bubble-icon {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  color: #6b726f;
  box-shadow: 0 0 0 6px #f3f1ef;
}

.como-bubble-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 760px) {
  .section-como {
    padding: 24px 0 26px;
    background: #f3f1ef;
  }

  .como-titulo {
    font-size: clamp(16px, 5.4vw, 20px);
  }

  .como-sub {
    font-size: clamp(11px, 3.7vw, 13px);
    margin-bottom: 10px;
  }

  .como-row {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .como-row::before,
  .como-row-bottom::before {
    display: none;
  }

  .como-step {
    border: 1px solid #dfdad2;
    background: #f7f5f2;
    border-radius: 12px;
    padding: 10px 9px;
    text-align: center;
    display: block;
    max-width: 94%;
    margin: 0 auto;
    box-shadow: none;
  }

  .como-step .como-bubble {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    font-size: 13px;
    border-color: #d9d3ca;
    background: #ece9e4;
    box-shadow: 0 0 0 5px #f3f1ef;
  }

  .como-step h3 {
    font-size: clamp(14px, 4.8vw, 18px);
    margin-top: 6px;
    line-height: 1.1;
  }

  .como-step p {
    font-size: clamp(12px, 3.6vw, 15px);
    line-height: 1.35;
  }

  .como-row-bottom {
    margin-top: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    opacity: 0.82;
  }

  .como-bubble {
    width: 40px;
    height: 40px;
    font-size: 13px;
    box-shadow: 0 0 0 5px #f3f1ef;
  }

  .como-bubble-icon {
    width: 36px;
    height: 36px;
    box-shadow: 0 0 0 5px #f3f1ef;
  }

  .como-bubble-icon svg {
    width: 16px;
    height: 16px;
  }
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px
}

.card {
  background: #ffffff;
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .10);
  color: var(--text)
}

.card h3 {
  margin: 10px 0;
  font-size: 16px;
  color: var(--text)
}

.card p {
  color: #2b2b2b !important;
  line-height: 1.6
}

.card-image {
  height: 150px;
  background-color: #cfc3b9;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  margin-bottom: 8px
}

/* Act card body text */
.act-body {
  padding: 4px 0;
}

.act-body h3 {
  font-family: Merriweather, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 12px 0 8px;
  letter-spacing: -0.3px;
}

.act-body p {
  font-size: 14px;
  color: var(--muted) !important;
  line-height: 1.7;
  margin: 0 0 12px
}

.btn-outline {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, .06);
  text-decoration: none;
  color: var(--text)
}

/* Planes */
.plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 18px
}

.plan-card {
  background: rgba(255, 255, 255, .95);
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.plan-card h3 {
  margin: 0;
  font-size: 18px;
  font-family: Merriweather, serif
}

.price {
  background: linear-gradient(180deg, #f6f0e8, #e6d8cb);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700
}

.plan-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  align-items: center
}

.plan-card p {
  margin: 8px 0
}

/* Imagen representativa del plan */
.plan-image {
  height: 160px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-bottom: 12px
}

/* Imagen grande en la página de detalle */
.detail-image {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px
}

.split {
  display: flex;
  gap: 24px;
  align-items: center
}

.split .image-block {
  flex: 1;
  height: 220px;
  border-radius: 8px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .02));
  background-size: cover;
  background-position: center
}

.split>div:first-child {
  flex: 1
}

/* Cómo viajamos: hero split y beneficios */
#como-viajamos.section {
  padding: 44px 0 28px;
}

.how-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.how-text {
  padding: 4px 0;
}

.how-text h2 {
  font-size: clamp(24px, 2.2vw, 28px);
  margin: 0 0 10px;
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.how-text .subtitle {
  margin: 0 0 10px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.35;
}

.how-text p {
  margin: 0;
  line-height: 1.4;
  font-size: clamp(14px, 1.02vw, 16px);
}

.how-text p + p {
  margin-top: 10px;
}

.how-process-inline {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(50, 57, 68, 0.16);
}

.how-process-kicker {
  margin: 0 0 7px;
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(61, 73, 84, 0.75);
}

.how-process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.how-process-step {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(73, 82, 93, 0.22);
  background: rgba(255, 255, 255, 0.55);
  color: #2f3947;
  font-size: 12px;
  line-height: 1;
}

.how-process-step strong {
  font-weight: 700;
}

.how-video-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  align-self: stretch;
  border: 2px solid rgba(37, 86, 171, 0.8);
  box-shadow: 0 14px 30px rgba(5, 11, 24, 0.34);
  background: #0a0f0c;
}

.how-video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
  align-items: stretch;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  background-image: var(--benefit-bg);
  background-size: cover;
  background-position: center;
  padding: 10px 11px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(250, 249, 246, 0.78) 28%, rgba(247, 245, 241, 0.67) 62%, rgba(246, 243, 236, 0.44) 100%);
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.benefit-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon {
  font-size: 15px;
  line-height: 1;
}

.benefit-copy {
  flex: 1;
  min-width: 0;
}

.benefit-copy .benefit-kicker {
  margin: 0 0 3px;
  font-size: 9px;
  font-weight: 700;
  color: rgba(35, 43, 59, 0.67) !important;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: 1.1;
}

.benefit-card h3 {
  margin: 0 0 2px;
  font-family: Merriweather, serif;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 700;
  color: #1e232d;
  letter-spacing: -0.45px;
  line-height: 1.06;
}

.benefit-card p {
  margin: 0;
  color: #2f3947 !important;
  font-size: clamp(13px, 0.84vw, 15px);
  line-height: 1.22;
}

.benefit-card-sustain {
  background-position: center;
}

.benefit-card-culture {
  background-position: right center;
}

.benefit-card-curaduria {
  background-position: center right;
}

.benefit-card-curaduria::before {
  background: linear-gradient(115deg, rgba(250, 249, 246, 0.76) 28%, rgba(247, 245, 241, 0.63) 62%, rgba(247, 244, 238, 0.42) 100%);
}

.benefit-card-sustain .benefit-icon-wrap {
  background: rgba(229, 238, 210, 0.9);
  color: #6e9348;
}

.benefit-card-culture .benefit-icon-wrap {
  background: rgba(252, 236, 198, 0.9);
  color: #cc8f15;
}

.benefit-card-curaduria .benefit-icon-wrap {
  background: rgba(233, 229, 240, 0.9);
  color: #736e87;
}

@media (max-width: 1040px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  #como-viajamos.section {
    padding: 34px 0 18px;
  }

  .how-hero {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .how-text h2 {
    font-size: clamp(22px, 6.4vw, 26px);
  }

  .how-process-inline {
    margin-top: 10px;
    padding-top: 9px;
  }

  .how-process-kicker {
    font-size: 8px;
    margin-bottom: 6px;
  }

  .how-process-step {
    font-size: 11px;
    padding: 5px 9px;
  }

  .how-video-wrap {
    width: 100%;
  }

  .how-grid {
    margin-top: 8px;
    gap: 8px;
    justify-items: center;
  }

  .benefit-card {
    width: min(90%, 620px);
    margin-inline: auto;
    padding: 9px;
  }

  .benefit-copy .benefit-kicker {
    font-size: 8px;
    letter-spacing: 1.3px;
  }

  .benefit-card h3 {
    font-size: clamp(15px, 5vw, 18px);
  }

  .benefit-card p {
    font-size: clamp(12px, 3.6vw, 14px);
  }
}
/* CONTACT */
.contact-hero {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .03));
  color: var(--text)
}

.contact-inner {
  display: flex;
  justify-content: center
}

.contact-card {
  background: rgba(255, 255, 255, .9);
  padding: 28px;
  border-radius: 10px;
  max-width: 680px;
  width: 100%
}

.contact-card h2 {
  margin-top: 0
}

.contact-form label {
  display: block;
  margin-bottom: 12px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e6e0dc;
  border-radius: 6px;
  font-family: inherit
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px
}

.muted {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px
}

/* Mejora de estilos para formularios (contacto y reserva) */
.contact-form {
  display: block
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.contact-form .form-grid .full {
  grid-column: 1/-1
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form input[type="date"],
.contact-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: box-shadow .15s ease, transform .08s ease;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text)
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px)
}

/* Estilos específicos para modal de reserva */
.modal-content form {
  display: block
}

.modal-content .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px
}

.modal-content .form-row.inline {
  flex-direction: row;
  gap: 8px
}

.modal-content .form-row.inline input {
  flex: 1
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="tel"],
.modal-content input[type="date"],
.modal-content select,
.modal-content textarea {
  padding: 10px;
  border: 1px solid #e8e2db;
  border-radius: 8px
}

/* Botones reuse (estilo WAYRA: tonos suaves, bajo contraste) */
.btn-primary {
  background: linear-gradient(180deg, var(--cream), #efe6db);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(43, 43, 43, 0.06);
  display: inline-block
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 43, 43, 0.04)
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(43, 43, 43, 0.06);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text)
}


/* Botones del modal de reserva (estilo unificado: WhatsApp / correo / llamada) */
.modal-content .form-actions .btn-whatsapp,
.modal-content .form-actions .btn-primary,
.modal-content .form-actions .btn-outline {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 700;
  color: var(--text);
  background: #ffffff;
}

.modal-content .form-actions .btn-whatsapp {
  background: linear-gradient(180deg, #eef9ef, #dff3e5)
}

.modal-content .form-actions .btn-primary {
  background: #ffffff;
}

.modal-content .form-actions .btn-outline {
  background: transparent
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

/* Contact chooser (mini modal / action sheet) shown when user clicks 'Reservar' */
.contact-chooser {
  position: fixed;
  z-index: 140;
  min-width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 8px
}

.contact-chooser.visible {
  display: flex
}

.contact-chooser .chooser-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px
}

.contact-chooser .chooser-title {
  font-weight: 700
}

.contact-chooser .chooser-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px
}

.contact-chooser .chooser-actions a,
.contact-chooser .chooser-actions button {
  display: block;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
  text-decoration: none;
  color: var(--text);
  font-weight: 700
}

.contact-chooser .chooser-actions a.btn-whatsapp {
  background: linear-gradient(180deg, #eef9ef, #dff3e5)
}

.contact-chooser .chooser-actions a.btn-outline {
  background: transparent
}

@media (max-width:640px) {
  .contact-chooser {
    left: 8px;
    right: 8px;
    bottom: 20px;
    min-width: auto
  }
}

/* pequeños ajustes responsivos */
@media (max-width:720px) {
  .contact-form .form-grid {
    grid-template-columns: 1fr
  }

  .modal-content {
    width: 95%
  }

  .modal-content .form-row.inline {
    flex-direction: column
  }
}

/* ── PROFESSIONAL FOOTER ── */
/* ════════════════════════════════════════════════════
   FOOTER – Rediseño profesional WAYRA
════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(160deg, #041326 0%, #0a2340 55%, #071a33 100%);
  color: #ffffff;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  position: relative;
}

/* ── Mini-strip galería en footer ── */
.footer-gallery-strip {
  display: none; /* se muestra solo si hay fotos reales */
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 24px 28px;
  border-bottom: 1px solid rgba(142,194,255,.1);
}
.fgs-label {
  color: rgba(255,255,255,.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
}
.fgs-track {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: hidden;
  justify-content: center;
  width: 100%;
  max-width: 780px;
}
.fgs-thumb {
  flex: 0 0 calc((100% - 40px) / 6);
  aspect-ratio: 1/1;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: #173862;
  transition: transform .25s ease, brightness .25s;
  filter: brightness(.85) saturate(.9);
}
.fgs-thumb:hover {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}
.fgs-cta {
  color: rgba(142,194,255,.82);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .4px;
  transition: color .2s;
}
.fgs-cta:hover { color: var(--logo-blue-soft); }
@media(max-width:600px){
  .fgs-thumb { flex: 0 0 calc((100% - 16px) / 3); }
  .fgs-track { flex-wrap: wrap; }
}

/* Línea superior de acento */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--logo-blue) 30%, var(--logo-blue-soft) 50%, var(--logo-blue) 70%, transparent 100%);
}

/* ── Franja CTA superior ── */
.footer-cta-strip {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(142,194,255,.12);
  padding: 28px 0;
  text-align: center;
}

.footer-cta-strip p {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  margin: 0 0 14px;
  line-height: 1.6;
}

.footer-cta-strip p strong {
  color: var(--logo-blue-soft);
}

.footer-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--logo-blue), #2d6fb2);
  color: #fff;
  padding: 11px 26px;
  border-radius: 28px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(30,80,139,.3);
  transition: transform .2s, box-shadow .2s;
}

.footer-cta-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30,80,139,.42);
}

/* ── Grid principal ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding: 44px 0 32px;
  border-bottom: 1px solid rgba(142,194,255,.09);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding: 36px 0 28px; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 28px 0; }
}

/* ── Columnas ── */
.footer-col h3 {
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--logo-blue-soft);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(142,194,255,.2);
}

.footer-logo-area img {
  height: 68px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(1) drop-shadow(0 3px 10px rgba(0,0,0,.5));
  transition: transform .3s;
}

.footer-logo-area img:hover { transform: scale(1.05); }

.footer-rnt {
  font-size: 12.5px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: rgba(255,255,255,.72);
}

.footer-rnt strong {
  color: var(--logo-blue-soft);
  font-style: italic;
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  transition: color .2s, gap .2s;
}

.contact-item:hover { color: var(--logo-blue-soft); gap: 14px; }

.contact-item svg { color: var(--logo-blue-soft); flex-shrink: 0; }

/* ── Listas de navegación ── */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li { margin-bottom: 11px; padding-left: 14px; position: relative; }

.footer-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--logo-blue-soft);
  font-size: 15px;
  line-height: 1.3;
  opacity: .7;
}

.footer-list a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s, padding-left .2s;
}

.footer-list a:hover { color: var(--logo-blue-soft); padding-left: 4px; }

/* ── Horarios ── */
.footer-hours {
  font-size: 12.5px;
  line-height: 1.9;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}

.footer-hours p { margin: 0; }

.footer-hours span { color: var(--logo-blue-soft); font-weight: 600; }

/* ── Redes sociales ── */
.footer-social-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 8px 0 0;
  max-width: 260px;
}

.footer-social-icon {
  --size: 68px;
  position: relative;
  width: var(--size);
  height: var(--size);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(180deg, #f5f4f4 0%, #f1efef 100%);
  border: 1px solid #e7e4e4;
  box-shadow:
    0 12px 26px rgba(113, 105, 101, 0.08),
    0 2px 7px rgba(113, 105, 101, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-social-icon::before {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 8px;
  height: 10px;
  border-radius: 999px;
  filter: blur(10px);
  opacity: .58;
  z-index: 0;
}

.footer-social-icon::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 1px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  z-index: 1;
}

.footer-social-icon:hover {
  transform: translateY(-1px);
  box-shadow:
    0 15px 30px rgba(113, 105, 101, 0.10),
    0 4px 10px rgba(113, 105, 101, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.footer-social-icon:focus-visible {
  outline: 3px solid #2f7df6;
  outline-offset: 4px;
}

.footer-social-icon.facebook {
  color: #6f7783;
}

.footer-social-icon.whatsapp {
  color: #26b55b;
}

.footer-social-icon.instagram {
  color: #b24b9f;
}

.footer-social-icon.instagram svg {
  fill: #d4578e;
}

.footer-social-icon.tiktok {
  color: #616974;
}

.footer-social-icon.whatsapp {
  display: none;
}

.footer-social-icon.facebook::before,
.footer-social-icon.facebook::after {
  background: linear-gradient(90deg, #81b8ff 0%, #b8d2ff 100%);
}

.footer-social-icon.instagram::before,
.footer-social-icon.instagram::after {
  background: linear-gradient(90deg, #6f53ff 0%, #ff7a59 50%, #ffb24a 100%);
}

.footer-social-icon.tiktok::before,
.footer-social-icon.tiktok::after {
  background: linear-gradient(90deg, #39d8ff 0%, #a37bff 50%, #ff5bb2 100%);
}

.footer-social-icon.whatsapp::before,
.footer-social-icon.whatsapp::after {
  background: linear-gradient(90deg, #7be7a6 0%, #2f80ed 100%);
}

.footer-social-icon svg {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .footer-social-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 234px;
  }

  .footer-social-icon {
    --size: 64px;
    border-radius: 16px;
  }

  .footer-social-icon svg {
    width: 27px;
    height: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-social-icon {
    transition: none;
  }
}

/* ── Trust Badges ── */
.footer-badges {
  display: none;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(142,194,255,.2);
  transition: all .25s;
}

.badge:hover {
  background: rgba(142,194,255,.12);
  border-color: rgba(142,194,255,.5);
  transform: translateY(-2px);
}

.badge svg { width: 20px; height: 20px; color: var(--logo-blue-soft); flex-shrink: 0; }

.badge span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
}

/* ── Barra inferior ── */
.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  letter-spacing: .2px;
}

.footer-bottom p { margin: 0; }

.footer-bottom a {
  color: rgba(142,194,255,.82);
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom a:hover { color: var(--logo-blue-soft); }

.footer-list a[href="pqrs.html"] {
  color: var(--logo-blue-soft) !important;
  font-weight: 700;
}


/* ── Social links con colores de marca ── */
.social-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 25px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
  border: 1.5px solid transparent;
}

.social-brand-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-brand-link span {
  display: inline;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.header-actions .social-brand-link {
  width: clamp(36px, 3.4vw, 42px);
  height: clamp(36px, 3.4vw, 42px);
  padding: 0;
  border-radius: 12px;
  justify-content: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f4f4 0%, #f1efef 100%);
  border: 1px solid #e7e4e4;
  box-shadow:
    0 7px 16px rgba(113, 105, 101, 0.07),
    0 2px 6px rgba(113, 105, 101, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.header-actions .social-brand-link::before {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 5px;
  height: 7px;
  border-radius: 999px;
  filter: blur(8px);
  opacity: .55;
  z-index: 0;
}

.header-actions .social-brand-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 1px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  z-index: 1;
}

.header-actions .social-brand-link span {
  display: none;
}

.header-actions .social-brand-link svg {
  width: clamp(18px, 1.7vw, 21px);
  height: clamp(18px, 1.7vw, 21px);
  position: relative;
  z-index: 2;
}

.header-actions .social-brand-link svg,
.header-actions .social-brand-link svg * {
  fill: currentColor !important;
}

.header-actions .social-brand-link:hover {
  transform: translateY(-1px);
  box-shadow:
    0 10px 20px rgba(113, 105, 101, 0.09),
    0 4px 8px rgba(113, 105, 101, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Facebook */
.fb-link {
  color: #6f7783;
}

.header-actions .fb-link::before,
.header-actions .fb-link::after {
  background: linear-gradient(90deg, #81b8ff 0%, #b8d2ff 100%);
}

/* Instagram */
.ig-link {
  color: #c65798;
}

.header-actions .ig-link::before,
.header-actions .ig-link::after {
  background: linear-gradient(90deg, #6f53ff 0%, #ff7a59 50%, #ffb24a 100%);
}

.tt-link {
  color: #616974;
}

.header-actions .tt-link::before,
.header-actions .tt-link::after {
  background: linear-gradient(90deg, #39d8ff 0%, #a37bff 50%, #ff5bb2 100%);
}

.wa-link {
  color: #1fa855;
  border-color: rgba(31, 168, 85, 0.2);
  background: rgba(37, 211, 102, 0.09);
}

.wa-link:hover {
  background: #2F80ED;
  color: #fff;
  border-color: #2F80ED;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

/* ── Botón flotante WhatsApp ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  padding: 0;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.5s infinite;
}

.wa-float:hover {
  background: #1ebe5b;
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}

.wa-float-text {
  display: none;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* Mostrar el badge de reCAPTCHA debajo de los formularios, no como flotante lateral. */
.WAYRA-recaptcha-dock {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 62px;
  margin-top: 10px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.WAYRA-recaptcha-dock .grecaptcha-badge {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  box-shadow: none !important;
  z-index: auto !important;
}

@media (max-width: 700px) {
  .WAYRA-recaptcha-dock {
    justify-content: center;
    padding-bottom: 4px;
  }

  .WAYRA-recaptcha-dock .grecaptcha-badge {
    transform-origin: center center;
  }
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.75);
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 120
}

.modal[aria-hidden="false"] {
  display: flex
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15)
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: transparent;
  font-size: 22px
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px
}

.modal h3 {
  margin-top: 0
}

/* Responsive */
@media (max-width:800px) {
  .hero h1 {
    font-size: 30px
  }

  .hero-title-brand {
    font-size: clamp(40px, 15vw, 70px);
    gap: 10px;
    padding-bottom: 12px;
    white-space: normal;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-action {
    min-width: min(100%, 240px);
    padding: 11px 16px;
  }

  .section h2 {
    font-size: 24px
  }

  .subtitle {
    font-size: 15px
  }

  .split {
    flex-direction: column
  }
}

/* Toasts para confirmaciones rápidas */
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #222;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(8px);
  transition: all .28s ease;
  z-index: 9999;
  font-weight: 600
}

.toast.visible {
  opacity: 1;
  transform: translateY(0)
}

.toast.success {
  background: linear-gradient(90deg, #2ecc71, #27ae60)
}

.toast.error {
  background: linear-gradient(90deg, #e74c3c, #c0392b)
}

.toast.info {
  background: linear-gradient(90deg, #3498db, #2b86d6)
}

/* Input with icon wrapper (icon on the left, soft WAYRA visuals) */
.input-icon {
  position: relative;
  display: flex;
  align-items: center
}

.input-icon .icon {
  position: absolute;
  left: 12px;
  opacity: .75;
  color: var(--muted);
  pointer-events: none
}

.input-icon input,
.input-icon textarea {
  padding-left: 44px
}

/* Inputs: estilo WAYRA — crema suave, borde tenue, placeholder más amable */
input,
textarea,
select {
  background: #ffffff;
  border: 1px solid rgba(43, 43, 43, 0.15);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: none;
  transition: box-shadow .16s ease, transform .08s ease, border-color .12s ease;
  font-size: 15px;
}

input::placeholder,
textarea::placeholder {
  color: #9f948a
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(43, 43, 43, 0.14);
  box-shadow: 0 12px 30px rgba(66, 62, 55, 0.06)
}

/* Button spinner */
.btn-spinner {
  display: inline-flex;
  align-items: center;
  margin-right: 8px
}

.spinner {
  animation: spin 1s linear infinite
}

@keyframes spin {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

.btn-spinner .spinner circle {
  stroke: rgba(43, 43, 43, 0.45)
}


/* ── Salidas En Avión ── */
.flight-departures-exact {
  background:
    radial-gradient(120% 110% at 0% 0%, rgba(240, 222, 187, 0.38) 0%, rgba(240, 222, 187, 0) 48%),
    radial-gradient(95% 95% at 100% 100%, rgba(144, 188, 181, 0.24) 0%, rgba(144, 188, 181, 0) 52%),
    linear-gradient(135deg, #fcfbf8 0%, #ffffff 45%, #f4f8f7 100%);
  border: 1px solid rgba(24, 57, 63, 0.16);
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(21, 49, 54, 0.1);
  padding: clamp(10px, 1.8vw, 14px);
  overflow: visible;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
}

.flight-premium-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flight-departures-heading {
  width: auto;
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(16px, 1.6vw, 23px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #17383e;
  text-align: left;
}

.flight-premium-note {
  margin: 0;
  color: #567074;
  font-size: clamp(11px, 0.95vw, 13px);
  letter-spacing: 0.01em;
}

.flight-departures-exact + .quote-form {
  margin-top: 10px;
}

.flight-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 450px;
  width: 100%;
  margin-right: auto;
  gap: 6px;
}

.flight-premium-card {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 249, 0.92) 100%);
  border: 1px solid rgba(60, 116, 110, 0.22);
  border-radius: 11px;
  padding: 7px 8px 6px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.flight-premium-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.flight-premium-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 103, 99, 0.36);
  box-shadow: 0 12px 20px rgba(30, 82, 86, 0.14);
}

.flight-premium-code {
  display: inline-flex;
  width: fit-content;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #2d6468;
  text-transform: uppercase;
}

.flight-plane-icon {
  width: 14px;
  height: 14px;
  color: #1b6d72;
  background: rgba(27, 109, 114, 0.16);
  border-radius: 999px;
  padding: 2px;
  flex: 0 0 auto;
}

.flight-premium-card h3 {
  margin: 0;
  font-size: clamp(12px, 1.25vw, 15px);
  font-weight: 700;
  font-family: var(--font-title);
  color: #16393f;
  line-height: 1.05;
}

.flight-premium-card p {
  margin: 0;
  font-size: 9px;
  font-family: var(--font-body);
  color: #4f6d72;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .flight-departures-exact {
    max-width: 100%;
    padding: 10px;
    gap: 8px;
  }

  .flight-departures-heading {
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .flight-premium-note {
    font-size: 11px;
  }

  .flight-premium-grid {
    grid-template-columns: 1fr;
    gap: 5px;
    max-width: none;
    margin-right: 0;
  }

  .flight-premium-card {
    min-height: 0;
  }

  .flight-premium-card h3 {
    font-size: 15px;
  }
}

.flight-departures {
  padding: 10px 12px 12px;
  background: #f3f3f3;
}

.flight-title {
  display: none;
}

.flight-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 42px);
  max-width: 980px;
  margin: 0 auto;
}

.flight-card {
  width: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.flight-icon-box {
  width: 72px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px;
}

.flight-icon-box svg {
  width: 42px;
  height: 42px;
  fill: #2f67b1;
  transform-origin: center;
  margin: 0;
}

.flight-card:nth-child(1) .flight-icon-box svg {
  transform: rotate(-28deg);
}

.flight-card:nth-child(2) .flight-icon-box svg {
  transform: rotate(0deg);
}

.flight-card:nth-child(3) .flight-icon-box svg {
  transform: rotate(28deg);
}

.flight-line {
  display: block;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: #2f67b1;
}

.flight-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flight-label {
  display: none;
}

.flight-content h3 {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 40px);
  line-height: 1.08;
  font-weight: 600;
  color: #0f1114;
  font-family: "Segoe UI", "Montserrat", sans-serif;
}

.flight-content p {
  margin: 6px 0 0;
  font-size: clamp(12px, 1vw, 20px);
  color: #6d7380;
  line-height: 1.25;
  font-family: "Segoe UI", "Montserrat", sans-serif;
}

@media (max-width: 1100px) {
  .flight-card {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .flight-departures {
    padding: 8px 8px 8px;
  }

  .flight-cards {
    gap: 6px;
  }

  .flight-card {
    gap: 6px;
  }

  .flight-icon-box {
    width: 54px;
    height: 38px;
    gap: 4px;
  }

  .flight-icon-box svg {
    width: 30px;
    height: 30px;
  }

  .flight-line {
    width: 36px;
    height: 3px;
  }

  .flight-content h3 {
    font-size: clamp(16px, 5.2vw, 24px);
  }

  .flight-content p {
    margin-top: 4px;
    font-size: clamp(10px, 2.5vw, 12px);
  }
}


.quote-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin-top: 20px;
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.quote-form h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Merriweather, serif;
  font-size: clamp(18px, 1.4vw, 22px);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.form-row.two-cols {
  flex-direction: row;
  gap: 12px;
}

@media (max-width: 600px) {
  .form-row.two-cols {
    flex-direction: column;
  }
}

.quote-form label {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
  width: 100%;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  margin-top: 5px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  color: var(--text);
  box-sizing: border-box;
}

.quote-form textarea {
  min-height: 88px;
  resize: vertical;
}

.quote-form .btn-primary {
  padding: 9px 16px;
}

/* ── ACTIVIDADES EN NUQUÍ ── */
.whale-vivid-area {
  position: relative;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  transition: background 0.5s ease;
}

/* En móviles, background-attachment:fixed no funciona en iOS/Safari — se usa scroll */
@media (max-width: 768px) {
  .whale-vivid-area {
    background-attachment: scroll !important;
  }
}

.act-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  align-items: stretch;
}

@media (max-width: 1180px) {
  .act-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .act-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.act-card {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.act-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
}

.act-img {
  height: 190px;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

/* Overlay animado al hacer hover en la tarjeta */
.act-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.act-card:hover .act-img::after {
  opacity: 1;
}

.act-img-sm {
  height: 160px;
}

.act-badge {
  background: rgba(255, 255, 255, .95);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
}

.act-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.act-body h3 {
  font-size: clamp(1.35rem, 0.8vw + 1rem, 1.6rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.act-body p {
  font-size: 0.98rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.act-body h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-family: Merriweather, serif;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.act-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 18px;
  flex: 1;
}

.btn-act-plan {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid rgba(43,43,43,0.15);
  color: var(--text);
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  letter-spacing: 0.1px;
}
.btn-act-plan:hover {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

@media (max-width: 760px) {
  #porque-nuqui .razones-titulo {
    color: #1b2431 !important;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.55) !important;
  }

  #porque-nuqui .razones-sub {
    color: rgba(27, 36, 49, 0.92) !important;
    text-shadow: none !important;
    font-weight: 600;
  }

  .act-grid {
    gap: 16px;
    margin-top: 16px;
  }

  .act-card {
    position: relative;
    height: 320px;
    min-height: 320px;
    border-radius: 24px;
    background: #06182b;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.32);
  }

  .act-img {
    position: absolute;
    inset: 0;
    height: auto;
    padding: 14px;
    justify-content: flex-end;
    align-items: flex-start;
    background-size: cover;
    background-position: center;
  }

  .act-img::after {
    opacity: 1;
    background: linear-gradient(0deg, rgba(4, 16, 10, 0.68) 0%, rgba(4, 16, 10, 0.36) 44%, rgba(4, 16, 10, 0.1) 76%, transparent 100%);
  }

  .act-badge {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: 10.5px;
    position: relative;
    z-index: 3;
  }

  .act-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 20px 16px 18px;
    background: transparent;
    color: #fff;
  }

  #actividades .act-body h3 {
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(18px, 6.2vw, 24px);
    margin: 0 0 8px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.46);
  }

  #actividades .act-body p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: clamp(13px, 4vw, 16px);
    line-height: 1.45;
    margin: 0 0 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.48);
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
  }

  .btn-act-plan {
    background: rgba(255, 255, 255, 0.16);
    border: 1.5px solid rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 22px;
    font-size: 13px;
  }

  .btn-act-plan:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.62);
    color: #ffffff;
  }
}

.btn-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #fff, #f5ede6);
  border: 1px solid rgba(43, 43, 43, .08);
  padding: 12px 28px;
  border-radius: 30px;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  transition: all 0.2s ease;
}

.btn-ver-mas:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.btn-ver-mas-icon {
  font-size: 16px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-ver-mas-icon.rotated {
  transform: rotate(180deg);
}

.mas-actividades-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease;
}

.mas-actividades-wrap.open {
  max-height: 1400px;
  opacity: 1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.act-card-extra {
  animation: fadeUp 0.35s ease both;
}

/* ── MODAL QUIÉNES SOMOS ── */
#modal-quienes-somos[aria-hidden="false"] {
  display: flex;
  animation: qs-fade-in 0.22s ease;
}

@keyframes qs-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.qs-modal {
  max-width: 640px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  text-align: center;
  position: relative;
  padding: 40px 36px 32px;
  border-radius: 14px;
  animation: qs-slide-up 0.28s ease;
  display: flex;
  flex-direction: column;
}

@keyframes qs-slide-up {
  from {
    transform: translateY(22px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.qs-modal h2 {
  font-family: Merriweather, serif;
  font-size: 28px;
  margin: 0 0 12px;
  color: #1a1a1a;
  font-weight: 700;
}

.qs-modal .subtitle {
  font-size: 15px;
  color: #888;
  margin-bottom: 22px;
  font-weight: 400;
}

.qs-image {
  width: 100%;
  max-height: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin: 20px 0;
  display: none;
  flex-shrink: 0;
  /* Hidden by default, shown if image exists */
}

.qs-body {
  font-size: 1.05em;
  line-height: 1.85;
  color: #2a2a2a;
  text-align: left;
  flex: 1;
  overflow-y: auto;
  padding: 12px 8px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.qs-body::-webkit-scrollbar {
  width: 6px;
}

.qs-body::-webkit-scrollbar-track {
  background: transparent;
}

.qs-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.qs-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.qs-body p {
  margin: 0 0 18px;
  font-size: 1em;
}

.qs-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  #modal-quienes-somos {
    z-index: 1400;
    align-items: flex-start;
    padding: 12px;
  }

  .qs-modal {
    max-height: 90vh;
    padding: 28px 24px 24px;
    width: 95%;
    margin-top: 8px;
  }

  .qs-modal h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .qs-modal .subtitle {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .qs-image {
    max-height: 220px;
    margin: 16px 0;
  }

  .qs-body {
    font-size: 0.95em;
    line-height: 1.75;
    padding: 8px 6px;
  }

  .qs-body p {
    margin-bottom: 14px;
  }
}

/* ── MODAL ACTIVIDADES ── */
.act-modal {
  max-width: 860px;
  width: 95%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px 36px 32px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  animation: qs-slide-up 0.28s ease;
}

.act-modal h2 {
  font-family: Merriweather, serif;
  font-size: 26px;
  margin: 0 0 6px;
}

.act-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
  text-align: left;
}

@media (max-width: 700px) {
  .act-modal-grid {
    grid-template-columns: 1fr;
  }

  .act-modal {
    padding: 28px 18px 24px;
  }
}

.act-modal-card {
  background: rgba(255, 255, 255, .95);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
  transition: transform 0.18s ease;
}

.act-modal-card:hover {
  transform: translateY(-2px);
}

.act-modal-img {
  height: 130px;
  display: flex;
  align-items: flex-start;
  padding: 10px;
  background-size: cover;
  background-position: center;
}

/* ── CREA TU PAQUETE IDEAL (WAYRA STYLE) ── */
.personalized-package-card {
  background: #2b2b2b;
  /* WAYRA Dark */
  color: #ffffff;
  border-radius: 24px;
  padding: 50px;
  margin: 60px 0;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.personalized-content {
  flex: 1.2;
}

.personalized-content h2 {
  font-family: Merriweather, serif;
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 20px;
  color: var(--accent);
  /* Sand/Arena accent */
}

.personalized-content p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.personalized-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.personalized-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.personalized-features li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.personalized-actions {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.personalized-actions .btn-custom {
  display: block;
  text-align: center;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  transition: all 0.25s ease;
  font-size: 15px;
}

.btn-white {
  background: #ffffff;
  color: #2b2b2b;
}

.btn-white:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.btn-whatsapp-full {
  background: var(--green);
  color: #ffffff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp-full:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

@media (max-width: 950px) {
  .personalized-package-card {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }

  .personalized-features {
    grid-template-columns: 1fr;
    text-align: left;
    display: inline-block;
  }

  .personalized-features li {
    margin-bottom: 10px;
  }

  .personalized-actions {
    width: 100%;
  }
}

/* ── Detalles del Plan (detail.html) ── */
.detail-content {
  padding: 40px;
}

.detail-inclusions {
  margin-top: 40px;
}

.detail-inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.detail-inclusions-grid .detail-section {
  margin-top: 0;
}

.detail-section-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.detail-section-card h3 {
  margin-top: 0;
}

.detail-section {
  margin-top: 40px;
}

.detail-section h3 {
  font-family: Merriweather, serif;
  font-size: 19px;
  margin-bottom: 16px;
  color: var(--text);
}

.detail-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.detail-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.4;
  color: #444;
}

.detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
  font-size: 18px;
}

.detail-list.not-included li::before {
  content: "✕";
  color: #c53030;
}

.detail-section-card .detail-list {
  margin-bottom: 0;
}

.detail-inclusions > .detail-section-span {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .detail-inclusions-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .detail-inclusions-grid .detail-section-card {
    width: 100%;
    max-width: 560px;
  }

  .detail-inclusions > .detail-section-span {
    margin-top: 20px;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .detail-notes {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .detail-content {
    padding: 20px;
  }
}

.detail-description-long {
  line-height: 1.8;
  font-size: 16px;
  color: #444;
  margin-bottom: 32px;
}

.detail-notes {
  background: #fff;
  border: 1px dashed var(--accent);
  padding: 24px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 40px;
}

.detail-notes strong {
  color: var(--text);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}







