/* Estilos base para ViveWayra - paleta suave, tipografías serif para títulos y montserrat para cuerpo */
:root {
  --bg: #ffffff;
  --muted: #555550;
  --accent: #c9bba0;
  --green: #6b8f7a;
  --cream: #ffffff;
  --text: #2b2b2b;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  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: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.6));
  backdrop-filter: saturate(0.9) blur(0.2px);
  border-bottom: 1px solid rgba(43, 43, 43, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.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: auto;
  text-decoration: none;
}

#site-logo {
  height: 120px !important;
  width: auto !important;
  max-height: none !important;
  max-width: none !important;
  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;
}

/* Actions (Right side) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.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: 24px;
  cursor: pointer;
  color: var(--text);
}

.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) {
  .main-nav {
    display: none;
    /* Hidden on mobile, toggled via JS */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin: 0;
    gap: 16px;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .header-inner {
    gap: 10px;
    padding: 8px 0;
  }

  .logo img {
    height: 38px;
    width: auto;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .social-brand-link {
    width: 34px;
    height: 34px;
  }

  .header-actions .social-brand-link svg {
    width: 16px;
    height: 16px;
  }

  .nav-toggle {
    font-size: 22px;
    padding: 4px 6px;
    margin-left: 6px;
  }

  .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');
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .04));
}

.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
}

.hero h1 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 48px;
  margin: 0 0 4px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.lead {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 21px;
  margin: 8px 0 24px;
  opacity: 0.95;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.3px;
}

.btn-primary {
  display: inline-block;
  background: var(--cream);
  color: var(--text);
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600
}

/* 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: 32px;
  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 {
  background: #ffffff;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

/* Accent top line */
.section-razones::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--accent), var(--green));
  opacity: .6;
}

.razones-eyebrow {
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--green);
  text-transform: uppercase;
  margin: 0 0 16px;
  text-align: center;
}

.razones-titulo {
  font-family: Merriweather, serif;
  font-size: clamp(26px, 3.3vw, 38px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px;
  text-align: center;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.razones-sub {
  font-family: Merriweather, serif;
  font-size: 17px;
  color: var(--muted);
  text-align: center;
  margin: 0 auto 56px;
  max-width: 520px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.razones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.razon-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(107, 143, 122, 0.15);
  border-radius: 18px;
  padding: 32px 20px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 8px rgba(107, 143, 122, 0.06);
}

.razon-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
  border-radius: 0 0 14px 14px;
}

.razon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(107, 143, 122, 0.14);
  border-color: var(--green);
}

.razon-card:hover::after {
  transform: scaleX(1);
}

.razon-emoji {
  font-size: 40px;
  margin-bottom: 14px;
  line-height: 1;
  display: block;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.razon-card:hover .razon-emoji {
  transform: scale(1.15) rotate(-6deg);
}

.razon-card h3 {
  font-family: Merriweather, serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.razon-card p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  letter-spacing: -0.1px;
}

.razones-cta {
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .razones-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .razones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .razones-titulo {
    font-size: 24px;
  }

  .razon-card {
    padding: 26px 16px 20px;
  }

  .razon-emoji {
    font-size: 34px;
  }

  .razon-card h3 {
    font-size: 12.5px;
  }

  .razon-card p {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .razones-grid {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════
   SECCIÓN "CÓMO FUNCIONA"
══════════════════════════════════════════ */
.section-como {
  background: linear-gradient(180deg, #f5f0eb 0%, #faf8f6 100%);
  padding: 64px 0 64px;
}

.como-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--green);
  text-transform: uppercase;
  margin: 0 0 12px;
  text-align: center;
}

.como-titulo {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.5px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.como-sub {
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  margin: 0 auto 44px;
  max-width: 620px;
  line-height: 1.65;
  font-weight: 400;
}

.como-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto 36px;
  gap: 12px;
}

.como-paso {
  flex: 1;
  max-width: 205px;
  text-align: center;
  min-height: 285px;
  padding: 26px 16px 20px;
  background: #ffffff;
  border: 1px solid rgba(107, 143, 122, 0.12);
  border-radius: 18px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(107, 143, 122, 0.07);
}

.como-paso:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(107, 143, 122, 0.12);
  border-color: var(--accent);
}

.paso-numero {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 13px;
  font-weight: 800;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(107, 143, 122, 0.3);
  letter-spacing: 0.5px;
}

.paso-icon {
  font-size: 34px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
  transition: transform 0.3s ease;
}

.como-paso:hover .paso-icon {
  transform: scale(1.15) rotate(5deg);
}

.como-paso h3 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
}

.como-paso p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

.como-conector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 54px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.6;
}

.como-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-secondary-link {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.btn-secondary-link:hover {
  color: var(--text);
  border-color: var(--green);
  padding-bottom: 6px;
}

@media (max-width: 700px) {
  .section-como {
    padding: 48px 0 48px;
  }

  .como-titulo {
    font-size: 28px;
  }

  .como-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .como-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .como-conector {
    margin-top: 0;
    transform: rotate(90deg);
    padding: 0;
    margin-bottom: 0;
  }

  .como-paso {
    max-width: 100%;
    width: 100%;
    min-height: auto;
    padding: 30px 20px 22px;
  }

  .paso-numero {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .paso-icon {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .como-paso h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .como-paso p {
    font-size: 13px;
    line-height: 1.5;
  }
}

.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;
  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: 18px;
  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-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 */
.how-hero {
  display: flex;
  gap: 18px;
  align-items: stretch
}

.how-text {
  flex: 1;
  padding: 6px 0
}

.how-text h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin: 0 0 12px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}

.how-text .subtitle {
  margin-bottom: 18px;
}

.how-text p {
  margin: 0;
  line-height: 1.55;
}

.how-video-wrap {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  align-self: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(107,143,122,0.08);
  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(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
  align-items: start;
}

.benefit-card {
  background: #ffffff;
  padding: 16px 16px 14px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(107, 143, 122, 0.07);
  border: 1px solid rgba(107, 143, 122, 0.1);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  align-self: start;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(107, 143, 122, 0.12);
}

.benefit-icon {
  font-size: 24px;
  margin-bottom: 0;
  line-height: 1;
  flex-shrink: 0;
}

.benefit-copy {
  flex: 1;
  min-width: 0;
}

.benefit-card h3 {
  margin: 0 0 4px;
  font-family: Merriweather, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.benefit-card p {
  margin: 0;
  color: var(--muted) !important;
  font-size: 12px;
  line-height: 1.4;
  max-width: none;
}

@media (max-width:820px) {
  .how-hero {
    flex-direction: column;
    gap: 16px;
  }

  .how-video-wrap {
    width: 100%;
  }

  .how-grid {
    margin-top: 14px;
  }

  .benefit-card {
    padding: 15px 14px 13px;
    gap: 10px;
  }

  .benefit-card h3 {
    font-size: 14px;
  }

  .benefit-card p {
    font-size: 12px;
    max-width: none;
  }
}

/* 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, #061510 0%, #0d2a1e 55%, #071420 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(127,255,212,.08);
}
.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: #1a3028;
  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(127,255,212,.75);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .4px;
  transition: color .2s;
}
.fgs-cta:hover { color: #7fffd4; }
@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%, #1aa050 30%, #7fffd4 50%, #1aa050 70%, transparent 100%);
}

/* ── Franja CTA superior ── */
.footer-cta-strip {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(127,255,212,.1);
  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: #7fffd4;
}

.footer-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #1aa050);
  color: #fff;
  padding: 11px 26px;
  border-radius: 28px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(37,211,102,.3);
  transition: transform .2s, box-shadow .2s;
}

.footer-cta-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
}

/* ── 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(127,255,212,.08);
}

@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: #7fffd4;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(127,255,212,.15);
}

.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: #7fffd4;
  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: #7fffd4; gap: 14px; }

.contact-item svg { color: #7fffd4; 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: #7fffd4;
  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: #7fffd4; 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: #7fffd4; font-weight: 600; }

/* ── Redes sociales ── */
.footer-social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
}

.footer-social-icon:hover { transform: translateY(-4px); }

.footer-social-icon.facebook { color: #5b9aff; }
.footer-social-icon.facebook:hover { background: rgba(91,154,255,.18); border-color: #5b9aff; }

.footer-social-icon.whatsapp { color: #25d366; }
.footer-social-icon.whatsapp:hover { background: rgba(37,211,102,.18); border-color: #25d366; }

.footer-social-icon.instagram { color: #f08; }
.footer-social-icon.instagram:hover {
  background: rgba(255,0,136,.15);
  border-color: #f08;
}

.footer-social-icon.tiktok { color: #f5f5f5; }
.footer-social-icon.tiktok:hover {
  background: rgba(255,255,255,.12);
  border-color: #f5f5f5;
}

.footer-social-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Trust Badges ── */
.footer-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid rgba(127,255,212,.08);
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(127,255,212,.15);
  transition: all .25s;
}

.badge:hover {
  background: rgba(127,255,212,.1);
  border-color: rgba(127,255,212,.4);
  transform: translateY(-2px);
}

.badge svg { width: 20px; height: 20px; color: #7fffd4; 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(127,255,212,.7);
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom a:hover { color: #7fffd4; }


/* ── 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: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  justify-content: center;
  gap: 0;
}

.header-actions .social-brand-link span {
  display: none;
}

.header-actions .social-brand-link svg {
  width: 18px;
  height: 18px;
}

/* Facebook */
.fb-link {
  color: #1877F2;
  border-color: #1877F220;
  background: #1877F208;
}

.fb-link:hover {
  background: #1877F2;
  color: #fff;
  border-color: #1877F2;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px #1877F240;
}

/* Instagram */
.ig-link {
  color: #cc2366;
  border-color: #cc236620;
  background: #e6683c08;
}

.ig-link:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px #dc274340;
}

.tt-link {
  color: #111;
  border-color: rgba(17,17,17,.14);
  background: rgba(17,17,17,.04);
}

.tt-link:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(17,17,17,.22);
}

/* ── 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 {
  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;
}

@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: 34px
  }

  .section h2 {
    font-size: 28px
  }

  .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 desde ── */
.air-departures {
  text-align: center;
  padding: 2px 0 0;
}

.dep-title {
  font-family: Montserrat, sans-serif;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 900;
  letter-spacing: 0.3px;
  color: var(--text, #1a1a1a);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.dep-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(20px, 4vw, 52px);
  flex-wrap: wrap;
}

.dep-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 132px;
  text-align: center;
}

.dep-icon-wrap {
  width: 78px;
  height: 46px;
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.dep-underline {
  width: 56px;
  height: 4px;
  background: #1e508b;
  border-radius: 999px;
  opacity: 1;
}

.dep-item svg {
  fill: #1e508b;
  width: 40px;
  height: 40px;
  transform-origin: center;
}

.dep-takeoff .dep-icon-wrap svg {
  transform: rotate(-28deg) translateY(2px);
}

.dep-cruise .dep-icon-wrap {
  align-items: center;
}

.dep-cruise .dep-icon-wrap svg {
  transform: translateY(1px);
}

.dep-cruise .dep-underline {
  width: 58px;
}

.dep-landing .dep-icon-wrap svg {
  transform: rotate(28deg) translateY(3px);
}

.dep-item strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.15;
  color: #000;
  margin-bottom: 3px;
}

.dep-item p {
  margin: 0;
  font-size: clamp(11px, 1.05vw, 14px);
  line-height: 1.25;
  color: #7b7f87;
}

@media (max-width: 540px) {
  .air-departures {
    padding: 2px 0 0;
  }

  .dep-title {
    font-size: clamp(15px, 6vw, 18px);
    margin: 0 auto 8px;
    line-height: 1.12;
    max-width: 240px;
  }

  .dep-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
  }

  .dep-item {
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .dep-icon-wrap {
    width: 56px;
    height: 38px;
    margin-bottom: 4px;
  }

  .dep-item strong {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .dep-item p {
    font-size: 10px;
    line-height: 1.25;
  }

  .dep-item svg {
    width: 32px;
    height: 32px;
  }

  .dep-underline {
    width: 36px;
    height: 3px;
  }
}

@media (max-width: 420px) {
  .dep-title {
    font-size: clamp(14px, 5.4vw, 17px);
    max-width: 210px;
  }

  .dep-grid {
    gap: 8px 4px;
  }

  .dep-item strong {
    font-size: 15px;
  }

  .dep-item p {
    font-size: 9px;
  }

  .dep-item svg {
    width: 30px;
    height: 30px;
  }
}


.quote-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin-top: 20px;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-form h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-family: Merriweather, serif;
  font-size: clamp(22px, 2vw, 28px);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.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: 13px;
  color: var(--text);
  font-weight: 600;
  width: 100%;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  margin-top: 6px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 14px;
  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: 96px;
  resize: vertical;
}

.quote-form .btn-primary {
  padding: 10px 18px;
}

/* ── 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.65rem, 1vw + 1.1rem, 2rem);
  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;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.act-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  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;
}

.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-section {
  margin-top: 40px;
}

.detail-section h3 {
  font-family: Merriweather, serif;
  font-size: 22px;
  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-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;
}
