/* ============================================================
   EXPLORER ARGENTINA — Hoja de estilos general
   Tipografía: League Spartan (títulos) y Nunito Sans (texto),
   auto-alojadas en /fonts.
   ============================================================ */

@font-face {
  font-family: "League Spartan";
  src: url("../fonts/LeagueSpartan-Variable.ttf") format("truetype-variations"),
       url("../fonts/LeagueSpartan-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/NunitoSans-Variable.ttf") format("truetype-variations"),
       url("../fonts/NunitoSans-Variable.ttf") format("truetype");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Material Symbols Outlined";
  src: url("../fonts/material-symbols-outlined.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

:root {
  /* Paleta de marca */
  --color-navy: #092646;      /* Azul marino - header, botones principales */
  --color-navy-dark: #06192f;
  --color-teal: #2eb186;      /* Verde/teal - CTAs, badges */
  --color-teal-dark: #24906c;
  --color-blue: #2c74b1;      /* Celeste - precios, links */
  --color-accent: #cc3366;    /* Rosa/magenta - detalles puntuales */
  --color-cream: #ffffff;     /* Fondo de tarjetas: blanco, con sombra para que resalte sobre el fondo gris */
  --color-card-border: #edeff3;
  --color-bg: #f5f7fa;        /* Fondo general del sitio */
  --color-text: #333333;
  --color-text-light: #6b7280;
  --color-white: #ffffff;

  /* Tipografía */
  --font-display: "League Spartan", sans-serif; /* Títulos */
  --font-body: "Nunito Sans", -apple-system, "Segoe UI", sans-serif; /* Texto */
  --font-accent: "Nunito Sans", sans-serif; /* Precios, botones, detalles */

  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow-card: 0 12px 34px rgba(9, 38, 70, 0.12);
  --shadow-hover: 0 20px 46px rgba(9, 38, 70, 0.18);
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 18.5px; /* Base general del sitio (antes 16px): sube proporcionalmente todo el texto */
}

@media (max-width: 480px) {
  html { font-size: 17px; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

.contenedor {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-navy);
  margin: 0 0 16px;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }

p { margin: 0 0 16px; }

.boton {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}

.boton-primario {
  background: var(--color-teal);
  color: var(--color-white);
}
.boton-primario:hover { background: var(--color-teal-dark); transform: translateY(-2px); }

.boton-secundario {
  background: var(--color-navy);
  color: var(--color-white);
}
.boton-secundario:hover { background: var(--color-navy-dark); transform: translateY(-2px); }

.boton-outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}
.boton-outline:hover { background: var(--color-navy); color: var(--color-white); }

.etiqueta-seccion {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal-dark);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ===================== HEADER / NAV ===================== */
.header {
  background: var(--color-navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.header .contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
}

@media (max-width: 480px) {
  .logo img { height: 52px; }
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 36px;
}

.nav-desktop a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nav-desktop a .nav-icono { font-size: 1.3rem; }

.nav-desktop a:hover,
.nav-desktop a.activo {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.nav-item-dropdown { position: relative; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  padding: 8px;
  z-index: 50;
}

.nav-item-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 10px 14px;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover { background: var(--color-bg); color: var(--color-teal-dark); }

.nav-toggle {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nav-movil {
  display: none;
  flex-direction: column;
  background: var(--color-navy-dark);
  padding: 8px 24px 20px;
}

.nav-movil.abierto { display: flex; }

.nav-movil a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
}

.nav-movil-submenu {
  display: flex;
  flex-direction: column;
  padding-left: 32px;
  background: rgba(0,0,0,0.15);
}

.nav-movil-submenu a {
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-movil a .nav-icono { font-size: 1.2rem; }

@media (min-width: 900px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
  .nav-movil { display: none !important; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 78vh;
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
  color: var(--color-white);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slide.activo { opacity: 1; }

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,38,70,0.15) 0%, rgba(9,38,70,0.55) 100%);
}

.hero-contenido {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.hero-contenido h1 {
  color: var(--color-white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.35);
  margin-bottom: 8px;
}

.hero-contenido .boton {
  margin-top: 18px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.hero-dots button.activo { background: var(--color-white); }

.hero-flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--color-white);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-flecha:hover { background: rgba(255,255,255,0.35); }
.hero-flecha.izq { left: 20px; }
.hero-flecha.der { right: 20px; }

/* ===================== SECCIONES ===================== */
.seccion { padding: 72px 0; scroll-margin-top: 84px; }
.seccion-alt { background: var(--color-white); }

.seccion-encabezado {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.subtitulo-grupo {
  font-family: var(--font-display);
  color: var(--color-navy);
  font-size: 1.6rem;
  text-align: center;
  scroll-margin-top: 110px;
  margin: 0 0 32px;
}

/* ===================== SOBRE NOSOTROS ===================== */
.sobre-nosotros-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.sobre-nosotros-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .sobre-nosotros-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ===================== TARJETAS DE PAQUETES ===================== */
.grilla-paquetes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* ===================== OFERTAS MINI (tarjetas sobrepuestas al hero, estilo carrusel) ===================== */
.oferta-mini-seccion {
  position: relative;
  z-index: 5;
  margin-top: -100px;
  padding: 0 0 48px;
}

.oferta-mini-seccion::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: 340px;
  background: linear-gradient(180deg, rgba(6, 25, 47, 0) 0%, rgba(6, 25, 47, 0.5) 35%, rgba(6, 25, 47, 0.28) 60%, rgba(6, 25, 47, 0) 100%);
  z-index: -1;
  pointer-events: none;
}

.ofertas-mini-wrap { position: relative; }

.ofertas-mini-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 18px 16px;
}

.ofertas-mini-scroll::-webkit-scrollbar { display: none; }

.oferta-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: var(--color-white);
  border-radius: 26px;
  padding: 6px 10px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.25s ease;
}

.oferta-mini:hover { box-shadow: 0 6px 16px rgba(9, 38, 70, 0.25); }

.oferta-mini-img { position: relative; width: 140px; height: 115px; border-radius: 18px; overflow: hidden; flex-shrink: 0; }
.oferta-mini-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.oferta-mini-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: var(--radius-lg);
}

.oferta-mini-info { flex: 1; min-width: 0; }

.oferta-mini-tag {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.oferta-mini-info h4 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  color: var(--color-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.oferta-mini-precio { font-family: var(--font-accent); font-weight: 700; color: var(--color-blue); font-size: 1.2rem; }
.oferta-mini-nota { font-size: 0.82rem; color: var(--color-text-light); }

.ofertas-mini-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }

.ofertas-mini-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--color-card-border);
  cursor: pointer;
  padding: 0;
}

.ofertas-mini-dots button.activo { background: var(--color-navy); }

@media (max-width: 900px) {
  .oferta-mini { flex-basis: 85%; }
  .oferta-mini-seccion { margin-top: -60px; }
}

@media (max-width: 640px) {
  .oferta-mini {
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .oferta-mini-img { width: 100%; height: 190px; border-radius: 0; }
  .oferta-mini-info { padding: 14px 16px 16px; }
}

.tarjeta-paquete {
  background: var(--color-cream);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.tarjeta-paquete:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.tarjeta-imagen { position: relative; height: 210px; }
.tarjeta-imagen img { width: 100%; height: 100%; object-fit: cover; }

.tarjeta-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-lg);
}

.tarjeta-cuerpo {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tarjeta-region {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.tarjeta-cuerpo h3 { margin-bottom: 6px; }

.tarjeta-resumen {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex: 1;
}

.tarjeta-precio {
  font-family: var(--font-accent);
  color: var(--color-blue);
  font-weight: 700;
  margin-bottom: 16px;
}

.tarjeta-precio small {
  display: block;
  font-weight: 400;
  color: var(--color-text-light);
  font-size: 0.78rem;
}

/* ===================== FILTROS DE CATEGORÍA ===================== */
.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.filtro-chip {
  background: var(--color-white);
  border: 2px solid var(--color-navy);
  color: var(--color-navy);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.filtro-chip.activo,
.filtro-chip:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* ===================== PÁGINA DE DETALLE ===================== */
.detalle-hero {
  background: var(--color-white);
  padding: 48px 0 0;
}

.detalle-encabezado { text-align: center; margin-bottom: 28px; }

.detalle-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  margin-bottom: 32px;
  background: var(--color-navy-dark);
}

.detalle-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.detalle-slide.activo { opacity: 1; }

.detalle-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detalle-slider-flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.25);
  border: none;
  color: var(--color-white);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detalle-slider-flecha:hover { background: rgba(255,255,255,0.4); }
.detalle-slider-flecha.izq { left: 16px; }
.detalle-slider-flecha.der { right: 16px; }

.detalle-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.detalle-slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
}

.detalle-slider-dots button.activo { background: var(--color-white); }

.detalle-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  margin-bottom: 32px;
}

.detalle-galeria img {
  border-radius: var(--radius-sm);
  height: 90px;
  object-fit: cover;
  width: 100%;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.15s ease, outline 0.15s ease;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.detalle-galeria img:hover { opacity: 0.85; }
.detalle-galeria img.activa { opacity: 1; outline-color: var(--color-teal); }

@media (max-width: 700px) {
  .detalle-slider { height: 280px; }
  .detalle-galeria img { height: 70px; }
}

.detalle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 8px;
  padding-bottom: 64px;
}

@media (min-width: 900px) {
  .detalle-grid { grid-template-columns: 1.6fr 1fr; }
}

.detalle-caja {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.detalle-lista-incluye li,
.detalle-lista-noincluye li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.98rem;
}

.detalle-lista-incluye li::before { content: "✔"; color: var(--color-teal); font-weight: 700; }
.detalle-lista-noincluye li::before { content: "✕"; color: var(--color-accent); font-weight: 700; }

.detalle-precio-caja {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  position: sticky;
  top: 110px;
}

.detalle-precio-caja .precio-numero {
  font-family: var(--font-accent);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-white);
  display: block;
  margin: 6px 0;
}

.detalle-precio-caja .precio-nota { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

.detalle-precio-caja .boton { width: 100%; margin-top: 20px; }

.detalle-dato {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 0.9rem;
}

/* ===================== ALOJAMIENTOS ===================== */
.seccion-alojamientos {
  background: var(--color-white);
  padding: 16px 0 72px;
}

.alojamientos-lista {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.alojamiento-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

@media (min-width: 800px) {
  .alojamiento-card { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); }
  .alojamiento-galeria { height: 100%; }
  .alojamiento-img-principal { height: auto; flex: 7; min-height: 0; }
  .alojamiento-miniaturas { flex: 3; min-height: 0; align-items: center; }
  .alojamiento-miniaturas img { height: 100%; width: auto; aspect-ratio: 4 / 3; }
}

.alojamiento-galeria { display: flex; flex-direction: column; min-width: 0; }

.alojamiento-info { min-width: 0; }

.alojamiento-img-principal {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.alojamiento-miniaturas {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: rgba(0,0,0,0.04);
  overflow-x: auto;
}

.alojamiento-miniaturas img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}

.alojamiento-miniaturas img:hover { opacity: 0.85; }
.alojamiento-miniaturas img.activa { opacity: 1; outline: 2px solid var(--color-teal); }

.alojamiento-info { padding: 26px 28px; }

.alojamiento-encabezado { margin-bottom: 4px; }

.alojamiento-rating .estrellas { color: #f0a52c; font-size: 1.1rem; letter-spacing: 2px; }

.alojamiento-encabezado h3 { margin: 6px 0 10px; }

.alojamiento-ubicacion {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--color-text-light);
  font-size: 0.94rem;
  margin: 0 0 14px;
}

.alojamiento-ubicacion .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--color-accent);
}

.alojamiento-ver-mapa {
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: none;
}
.alojamiento-ver-mapa:hover { text-decoration: underline; }

.alojamiento-descripcion-texto {
  color: var(--color-text);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.alojamiento-descripcion.expandida .alojamiento-descripcion-texto {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.alojamiento-leer-mas {
  background: none;
  border: none;
  color: var(--color-blue);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 14px;
}
.alojamiento-leer-mas:hover { text-decoration: underline; }

.alojamiento-separador {
  border: none;
  border-top: 1px solid var(--color-card-border);
  margin: 4px 0 16px;
}

.alojamiento-habitaciones {
  font-size: 0.96rem;
  margin: 0 0 16px;
}

.alojamiento-servicios-header {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.alojamiento-servicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 20px;
}

.servicio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-text);
}

.servicio-icono {
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--color-teal-dark);
}

/* ===================== OPCIONES (paquete con varios hoteles) ===================== */
.seccion-opciones { background: var(--color-bg); padding: 16px 0 72px; }
.seccion-opciones .alojamientos-lista { display: flex; flex-direction: column; gap: 52px; }
.seccion-opciones .alojamiento-card { background: var(--color-white); }

.opcion-destino {
  color: var(--color-teal-dark);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 8px;
}

.opcion-precio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-card-border);
}

.opcion-desde { display: block; font-size: 0.8rem; color: var(--color-text-light); }

.opcion-precio-numero {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-navy);
}

.opcion-precio-nota { display: block; font-size: 0.78rem; color: var(--color-text-light); max-width: 260px; }

.opcion-precio-cta .boton { white-space: nowrap; }

/* ===================== CONTACTO ===================== */
.form-contacto,
.form-a-medida {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.form-contacto input,
.form-contacto textarea,
.form-a-medida input,
.form-a-medida textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid #d7dce3;
  background: var(--color-white);
  width: 100%;
}

.form-contacto textarea,
.form-a-medida textarea { min-height: 130px; resize: vertical; }

.form-contacto button,
.form-a-medida button { justify-self: center; min-width: 220px; }

.form-a-medida .fila-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .form-a-medida .fila-2 { grid-template-columns: 1fr 1fr; }
}

/* Campo trampa para bots: fuera de pantalla, invisible para personas */
.campo-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 24px;
}

.footer h4 { color: var(--color-white); margin-bottom: 14px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-redes { display: flex; gap: 16px; margin-top: 12px; }

.footer-redes a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.footer-redes a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-redes a.icono-fondo-blanco {
  background: var(--color-white);
  border-radius: 50%;
  padding: 7px;
}

.footer-redes a:hover { transform: translateY(-3px); }

.footer-inferior {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ===================== WHATSAPP FLOTANTE ===================== */
.whatsapp-flotante {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  transition: transform 0.15s ease;
}

.whatsapp-flotante:hover { transform: scale(1.06); }

.whatsapp-flotante img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

/* ===================== UTILIDADES ===================== */
.centrado { text-align: center; }
.mb-0 { margin-bottom: 0; }
.oculto { display: none !important; }

/* En la home, Destinos y Próximos eventos muestran hasta 6 en escritorio;
   en celular se recortan a 4 y aparece un botón para ver el resto. */
.ver-mas-movil { display: none; }

@media (max-width: 640px) {
  .grilla-limite-movil > a:nth-child(n + 5) { display: none; }
  .ver-mas-movil { display: block; }
}

.placeholder-imagen {
  background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-accent);
  font-weight: 600;
  text-align: center;
  height: 100%;
  width: 100%;
}
