/* ==========================================================================
   AMOBLADOS MÉRIDA — SISTEMA VISUAL Y ESTILOS CORPORATIVOS
   Filial Oficial de Amoblados.co BnbSocial
   Paleta: Naranja BnbSocial (#EE7838), Slate Oscuro (#1e293b), Blanco (#ffffff)
   Basado en la estructura editorial y rejilla de Orisa index-13
   ========================================================================== */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-700.woff2') format('woff2');
}

:root {
  --amb-primary: #EE7838;
  --amb-orange: #EE7838;
  --amb-primary-hover: #d66a2f;
  --amb-primary-light: #fff7ed;
  --amb-primary-dark: #c2410c;
  --amb-dark: #1e293b;
  --amb-dark-hover: #0f172a;
  --amb-text: #475569;
  --amb-text-light: #64748b;
  --amb-bg: #ffffff;
  --amb-bg-alt: #f8fafc;
  --amb-border: #e2e8f0;
  --amb-border-focus: #fdba74;
  --amb-wa: #25D366;
  --amb-wa-hover: #20ba5a;
  --amb-shadow-sm: 0 2px 8px rgba(30, 41, 59, 0.04);
  --amb-shadow: 0 10px 30px rgba(30, 41, 59, 0.08);
  --amb-shadow-hover: 0 20px 40px rgba(30, 41, 59, 0.12);
  --amb-radius-sm: 8px;
  --amb-radius: 16px;
  --amb-radius-lg: 24px;
  --amb-font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset y Base Ultra-Estricto Antidesplazamiento Horizontal Móvil */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--amb-font-main);
  color: var(--amb-text);
  background-color: var(--amb-bg);
  line-height: 1.6;
  font-size: 16px;
}

/* Blindaje de Secciones y Contenedores contra desbordamiento horizontal */
section, main, header, footer, .amb-hero {
  max-width: 100%;
  overflow-x: clip;
}

.container, .container-fluid {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--amb-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--amb-primary);
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

a:hover {
  color: var(--amb-primary-hover);
}

img, video, iframe, picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header & Barra Superior */
.amb-topbar {
  background-color: var(--amb-dark);
  color: #cbd5e1;
  font-size: 0.8125rem;
  padding: 8px 0;
}

.amb-topbar a {
  color: #cbd5e1;
}

.amb-topbar a:hover {
  color: #ffffff;
}

.amb-header {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--amb-border);
  position: sticky;
  top: 0;
  z-index: 1020;
  transition: all 0.3s ease;
}

.amb-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.amb-nav-link {
  color: var(--amb-dark);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 10px 16px;
  border-radius: var(--amb-radius-sm);
  display: inline-block;
}

.amb-nav-link:hover {
  color: var(--amb-primary);
  background-color: var(--amb-primary-light);
}

/* Botones */
.amb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 24px;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  max-width: 100%;
  box-sizing: border-box;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.amb-btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  min-height: 52px;
}

.amb-btn-primary {
  background-color: var(--amb-primary);
  color: #ffffff;
  border-color: var(--amb-primary);
}

.amb-btn-primary:hover {
  background-color: var(--amb-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(238, 120, 56, 0.3);
}

.amb-btn-wa {
  background-color: var(--amb-wa);
  color: #ffffff;
  border-color: var(--amb-wa);
}

.amb-btn-wa:hover {
  background-color: var(--amb-wa-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.amb-btn-outline {
  background-color: transparent;
  color: var(--amb-dark);
  border-color: var(--amb-border);
}

.amb-btn-outline:hover {
  background-color: var(--amb-bg-alt);
  color: var(--amb-primary);
  border-color: var(--amb-primary);
}

.amb-btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  min-height: 38px;
}

/* Hero Section */
/* Hero Section Cinemático */
.amb-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  padding: 60px 0 70px;
}

.amb-hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.amb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.45) 55%, rgba(15, 23, 42, 0.88) 100%);
  z-index: 2;
}

.amb-hero-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.amb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238, 120, 56, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFB380;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9999px;
  margin-bottom: 18px;
  border: 1px solid rgba(238, 120, 56, 0.45);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.amb-hero-title {
  font-size: clamp(1.85rem, 5vw + 0.8rem, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: #ffffff;
  line-height: 1.18;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.text-gradient-orange {
  background: linear-gradient(135deg, #FFA066 0%, #EE7838 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.amb-hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: #E2E8F0;
  margin: 0 auto 24px;
  max-width: 720px;
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

/* Hero para páginas internas con fondo claro */
.amb-hero-light {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%) !important;
  color: var(--amb-text) !important;
  min-height: auto !important;
  padding: 40px 0 50px !important;
}

.amb-hero-light .amb-hero-title {
  color: var(--amb-dark) !important;
  text-shadow: none !important;
}

.amb-hero-light .amb-hero-desc {
  color: var(--amb-text) !important;
  text-shadow: none !important;
}

.amb-hero-light .amb-hero-badge {
  background: rgba(238, 120, 56, 0.12) !important;
  color: var(--amb-primary) !important;
  border-color: rgba(238, 120, 56, 0.3) !important;
  box-shadow: none !important;
}

.amb-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-glass-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  border-radius: 9999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-glass-play:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.play-pulse {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--amb-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
  box-shadow: 0 0 0 0 rgba(238, 120, 56, 0.7);
  animation: amb-pulse 2s infinite;
}

@keyframes amb-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(238, 120, 56, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(238, 120, 56, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(238, 120, 56, 0); }
}

/* Cápsula de Búsqueda Móvil estilo Airbnb */
.amb-search-capsule {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 9999px;
  padding: 10px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  align-items: center;
  text-align: left;
  margin: 16px auto 0;
  max-width: 380px;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amb-search-capsule:active {
  transform: scale(0.98);
}

.amb-capsule-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.amb-capsule-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--amb-dark);
}

.amb-capsule-sub {
  font-size: 0.75rem;
  color: var(--amb-text-light);
}

.amb-capsule-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amb-primary-light);
  color: var(--amb-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

/* Buscador Glassmorphic Flotante */
.amb-search-floating {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  text-align: left;
  transition: all 0.3s ease;
}

/* Barra de Stories / Categorías Táctiles Horizontales */
.amb-stories-wrapper {
  background-color: #ffffff;
  border-bottom: 1px solid var(--amb-border);
  padding: 16px 0;
  box-shadow: var(--amb-shadow-sm);
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}

.amb-stories-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 8px;
  max-width: 100%;
  overscroll-behavior-x: contain;
}

.amb-stories-scroll::-webkit-scrollbar {
  display: none;
}

.amb-story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--amb-dark);
  flex: 0 0 auto;
  scroll-snap-align: start;
  transition: transform 0.25s ease;
}

.amb-story-card:hover {
  transform: translateY(-3px);
  color: var(--amb-primary);
}

.amb-story-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 3px;
  border: 2.5px solid var(--amb-primary);
  position: relative;
  margin-bottom: 8px;
  box-shadow: 0 4px 14px rgba(238, 120, 56, 0.25);
  background: #ffffff;
}

.amb-story-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.amb-story-label {
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Buscador Rápido */
.amb-search-box {
  background-color: #ffffff;
  border-radius: var(--amb-radius);
  padding: 24px;
  box-shadow: var(--amb-shadow);
  border: 1px solid var(--amb-border);
  margin-top: 24px;
}

.amb-search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  align-items: end;
}

.amb-search-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--amb-text-light);
  margin-bottom: 6px;
}

.amb-search-field input,
.amb-search-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--amb-border);
  border-radius: var(--amb-radius-sm);
  font-size: 0.9375rem;
  color: var(--amb-dark);
  background-color: var(--amb-bg-alt);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.amb-search-field input:focus,
.amb-search-field select:focus {
  outline: none;
  border-color: var(--amb-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(238, 120, 56, 0.15);
}

/* Filtros por Chips */
.amb-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.amb-chip {
  background-color: var(--amb-bg-alt);
  color: var(--amb-dark);
  border: 1px solid var(--amb-border);
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.amb-chip:hover {
  background-color: #ffffff;
  border-color: var(--amb-primary);
  color: var(--amb-primary);
}

.amb-chip.active {
  background-color: var(--amb-primary);
  color: #ffffff;
  border-color: var(--amb-primary);
}

/* Catálogo de Inmuebles */
.amb-prop-card {
  background-color: #ffffff;
  border-radius: var(--amb-radius);
  border: 1px solid var(--amb-border);
  overflow: hidden;
  box-shadow: var(--amb-shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.amb-prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--amb-shadow-hover);
}

.amb-prop-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #e2e8f0;
}

.amb-prop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amb-prop-card:hover .amb-prop-media img {
  transform: scale(1.05);
}

.amb-prop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  z-index: 2;
}

.amb-prop-price-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background-color: var(--amb-primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: var(--amb-radius-sm);
  box-shadow: 0 4px 12px rgba(238, 120, 56, 0.35);
  z-index: 2;
}

.amb-prop-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.amb-prop-zone {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--amb-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.amb-prop-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--amb-dark);
}

.amb-prop-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background-color: var(--amb-bg-alt);
  padding: 12px 14px;
  border-radius: var(--amb-radius-sm);
  margin-bottom: 16px;
  font-size: 0.8125rem;
  color: var(--amb-text);
}

.amb-prop-specs-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.amb-prop-note {
  font-size: 0.75rem;
  color: var(--amb-text-light);
  font-style: italic;
  margin-bottom: 16px;
}

.amb-prop-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

/* Zonas de Mérida */
.amb-zone-card {
  position: relative;
  border-radius: var(--amb-radius);
  overflow: hidden;
  height: 240px;
  box-shadow: var(--amb-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.amb-zone-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--amb-shadow);
}

.amb-zone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.amb-zone-card:hover img {
  transform: scale(1.08);
}

.amb-zone-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
}

.amb-zone-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.amb-zone-sub {
  font-size: 0.8125rem;
  color: #e2e8f0;
}

/* Cómo Reservar en 4 Pasos (Adaptado de Orisa sec-6) */
.amb-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.amb-step-card {
  background-color: #ffffff;
  border-radius: var(--amb-radius);
  border: 1px solid var(--amb-border);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--amb-shadow-sm);
  transition: transform 0.3s ease;
}

.amb-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--amb-primary);
}

.amb-step-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--amb-primary);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 16px;
}

.amb-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--amb-dark);
}

.amb-step-desc {
  font-size: 0.875rem;
  color: var(--amb-text);
  line-height: 1.5;
}

/* Pilares / Por Qué Reservar */
.amb-pillar-card {
  background: var(--amb-bg-alt);
  border: 1px solid var(--amb-border);
  border-radius: var(--amb-radius);
  padding: 28px 24px;
  height: 100%;
}

.amb-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--amb-radius-sm);
  background-color: var(--amb-primary-light);
  color: var(--amb-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* Testimonios */
.amb-review-card {
  background-color: #ffffff;
  border: 1px solid var(--amb-border);
  border-radius: var(--amb-radius);
  padding: 28px;
  box-shadow: var(--amb-shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.amb-review-stars {
  color: #f59e0b;
  margin-bottom: 14px;
  font-size: 1.125rem;
}

.amb-review-quote {
  font-size: 0.9375rem;
  color: var(--amb-text);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.amb-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.amb-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amb-primary);
}

.amb-review-name {
  font-weight: 700;
  color: var(--amb-dark);
  font-size: 0.9375rem;
}

.amb-review-meta {
  font-size: 0.75rem;
  color: var(--amb-text-light);
}

/* Acordeón FAQ */
.amb-accordion-item {
  border: 1px solid var(--amb-border);
  border-radius: var(--amb-radius-sm);
  margin-bottom: 12px;
  background-color: #ffffff;
  overflow: hidden;
}

.amb-accordion-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--amb-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  min-height: 48px;
}

.amb-accordion-btn:hover {
  color: var(--amb-primary);
}

.amb-accordion-content {
  padding: 0 24px 20px;
  color: var(--amb-text);
  font-size: 0.9375rem;
  display: none;
}

.amb-accordion-content.show {
  display: block;
}

/* Footer Compacto y Discreto Amoblados.co */
.amb-footer {
  background-color: #0b1329;
  color: #94a3b8;
  padding: 38px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
}

.amb-footer .amb-logo-img {
  height: 32px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
}

.amb-footer h4,
.amb-footer h5 {
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.amb-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amb-footer-links li {
  margin-bottom: 6px;
  line-height: 1.35;
}

.amb-footer-links a {
  color: #94a3b8;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.amb-footer-links a:hover {
  color: #ffffff;
}

.amb-footer-desc {
  font-size: 0.8rem;
  line-height: 1.45;
  color: #94a3b8;
  margin-bottom: 12px;
  max-width: 280px;
}

.amb-footer-contact-item {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.amb-footer-avales {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.amb-footer-avales span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  font-weight: 600;
}

.amb-footer-aval-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 4px;
  padding: 2px 6px;
  height: 22px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.amb-footer-aval-badge img {
  height: 16px !important;
  max-height: 16px !important;
  width: auto !important;
  max-width: 55px !important;
  object-fit: contain !important;
  display: block;
}

.amb-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 26px;
  padding-top: 14px;
  font-size: 0.75rem;
  color: #64748b;
}

.amb-footer-bottom a {
  color: #cbd5e1;
  text-decoration: none;
}

.amb-footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Botón Sticky WhatsApp Flotante para Móvil */
.amb-sticky-wa {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: 20px;
  background-color: var(--amb-wa);
  color: #ffffff;
  border-radius: 9999px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1040;
  transition: transform 0.25s ease, background-color 0.25s ease;
  text-decoration: none;
}

.amb-sticky-wa:hover {
  background-color: var(--amb-wa-hover);
  color: #ffffff;
  transform: scale(1.05);
}

/* Modal Lightbox */
.amb-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.amb-modal-backdrop.show {
  display: flex;
}

.amb-modal-box {
  background-color: #ffffff;
  border-radius: var(--amb-radius);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.amb-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--amb-bg-alt);
  border: 1px solid var(--amb-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

/* Modal Video Cinemático */
.amb-video-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.amb-video-modal.show {
  display: flex;
}

.amb-video-wrapper {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #000000;
  border-radius: var(--amb-radius);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.amb-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.amb-video-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 10;
}

.amb-video-close:hover {
  background-color: var(--amb-primary);
}

/* App Bottom Bar para Móviles */
.amb-bottom-bar {
  display: none;
}

/* Responsive */
@media (max-width: 767.98px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }
  
  .amb-hero {
    min-height: 78vh;
    padding: 40px 16px 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  
  .amb-hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 12px;
  }
  
  .amb-hero-title {
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  
  .amb-hero-desc {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .amb-hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 14px;
  }
  
  .amb-hero-actions .amb-btn,
  .amb-hero-actions .btn-glass-play {
    flex: 1 1 calc(50% - 8px);
    min-width: 130px;
    font-size: 0.8125rem;
    padding: 10px 8px;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .amb-hero-actions .btn-catalogo-link {
    display: none;
  }
  
  .amb-search-capsule {
    display: flex;
  }
  
  .amb-search-floating {
    display: none;
    margin-top: 12px;
    padding: 16px;
    border-radius: 16px;
  }
  
  .amb-search-floating.is-open {
    display: block;
    animation: amb-fade-in 0.3s ease;
  }
  
  .amb-search-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .amb-prop-specs {
    grid-template-columns: 1fr;
  }
  
  .amb-sticky-wa {
    display: none; /* Reemplazado por App Bottom Bar */
  }
  
  .amb-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--amb-border);
    padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
  }
  
  .amb-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--amb-text-light);
    font-size: 0.6875rem;
    font-weight: 700;
    gap: 3px;
    transition: color 0.2s ease;
  }
  
  .amb-bottom-item i {
    font-size: 1.25rem;
  }
  
  .amb-bottom-item:hover,
  .amb-bottom-item.active {
    color: var(--amb-primary);
  }
  
  .amb-bottom-wa {
    background-color: var(--amb-wa);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 9999px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  }

  .amb-btn-lg {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    white-space: normal !important;
    text-align: center;
  }
}

/* ==========================================================================
   DROPDOWN PARTNERS & NAVEGACIÓN UNIVERSAL (DESKTOP & MOBILE)
   ========================================================================== */
.amb-header .nav-item.dropdown,
.site-header .nav-item.dropdown,
.dropdown {
  position: relative;
}

.amb-nav-link {
  color: var(--amb-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: var(--amb-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.amb-nav-link:hover,
.amb-nav-link:focus {
  color: var(--amb-primary);
  background-color: var(--amb-primary-light);
}

.amb-nav-link.dropdown-toggle::after,
.nav-link.dropdown-toggle::after {
  display: none !important;
}

/* En Desktop: Hover inmediato + Click toggle */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu,
  .dropdown:hover > .dropdown-menu,
  .nav-item.dropdown .dropdown-menu.show,
  .dropdown .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
}

/* Menú flotante estilizado */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1060;
  min-width: 320px;
  padding: 8px 0;
  margin-top: 6px;
  background: #ffffff !important;
  border: 1px solid rgba(238, 120, 56, 0.25) !important;
  border-radius: 12px !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12) !important;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu.show {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.dropdown-header {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--amb-orange);
  padding: 6px 18px 4px 18px;
}

.dropdown-item {
  display: flex !important;
  align-items: center;
  width: 100%;
  padding: 9px 18px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  text-decoration: none !important;
  background-color: transparent;
  border: none;
  transition: all 0.18s ease;
}

.dropdown-item:hover, 
.dropdown-item:focus {
  background-color: #fff7ed !important;
  color: var(--amb-orange) !important;
  padding-left: 22px !important;
}

.dropdown-divider {
  height: 1px;
  margin: 6px 0;
  overflow: hidden;
  background-color: #e2e8f0;
  border: none;
}

/* En Móviles y Tablets: Adaptabilidad dentro del menú colapsable */
@media (max-width: 991.98px) {
  .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin-top: 6px !important;
    background-color: #f8fafc !important;
    box-shadow: none !important;
    border: 1px solid #e2e8f0 !important;
    padding: 6px 0 !important;
  }
  .dropdown-menu.show {
    display: block !important;
  }
  .navbar-collapse {
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 10px;
  }
}

/* ==========================================================================
   ESTILOS PARA PERFILES DE VIAJERO, COMBOS Y GUÍA DEL ALOJAMIENTO
   ========================================================================== */
.amb-persona-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.amb-persona-card:hover {
  transform: translateY(-4px);
  border-color: var(--amb-orange);
  box-shadow: 0 14px 30px rgba(238, 120, 56, 0.12);
}

.amb-persona-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.amb-combo-card {
  background: #ffffff;
  border: 2px solid rgba(238, 120, 56, 0.25);
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.amb-combo-card:hover {
  transform: translateY(-5px);
  border-color: var(--amb-orange);
  box-shadow: 0 18px 36px rgba(238, 120, 56, 0.15);
}

.amb-combo-ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--amb-orange);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 36px;
  transform: rotate(45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.amb-guide-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  transition: all 0.2s ease;
}

.amb-guide-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}



