/* === RESET GENERAL === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* === HEADER === */
.header-bar {
  background-color: #02325b;
  color: white;
  width: 100%;
}

/* === TOPE CON LOGO + CENTRO + LOGIN === */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 40px;
  background-color: #02325b;
  flex-wrap: nowrap;
}

.logo img {
  height: 78px;
}

/* Logo más grande en páginas de detalle */
body.destino-detalle .logo img {
  height: 80px;
}

.ventas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: bold;
  color: white;
  flex: 1;
  text-align: center;
}

.ventas a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s ease;
}

.ventas a:hover {
  background-color: #1ebe5b;
}

.ventas img {
  height: 20px;
  width: auto;
}

.login {
  flex-shrink: 0;
}

.login a {
  color: white;
  border: 1px solid white;
  border-radius: 20px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.login a:hover {
  background-color: white;
  color: #02325b;
}

/* === Bloque de Información (derecha) === */
.info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  color: #fff;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.info-row .info-icon {
  width: calc(16px * 1.3);
  height: calc(16px * 1.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-row .info-text {
  line-height: 1;
}

/* TRM en texto plano */
.info-trm-plain {
  font-size: 12px;
}

.info-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 16px;
  padding: 6px 10px;
  font-size: 12px;
}

.info-maps-btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.info-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.info-actions .login-btn {
  color: white;
  border: 1px solid white;
  border-radius: 16px;
  padding: 6px 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  transition: 0.3s ease;
}

.info-actions .login-btn:hover {
  background-color: white;
  color: #02325b;
}

.info-block .login a {
  color: white;
  border: 1px solid white;
  border-radius: 16px;
  padding: 6px 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  transition: 0.3s ease;
}

.info-block .login a:hover {
  background-color: white;
  color: #02325b;
}

/* Escalado de iconos en 30% para ubicación y Maps */
.info-row svg {
  width: calc(16px * 1.3);
  height: calc(16px * 1.3);
}
.info-maps-btn svg {
  width: calc(14px * 1.3);
  height: calc(14px * 1.3);
}

/* Teléfonos como texto simple clicable */
.info-phones { gap: 8px; }
.phone-link {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

/* Responsividad del Bloque de Información */
@media (max-width: 768px) {
  .info-block { align-items: flex-start; }
  .info-actions { flex-wrap: wrap; }
  .info-phones { flex-wrap: wrap; }
}

/* Responsividad global mínima: tarjetas y layout */
@media (max-width: 640px) {
  header { padding: 2vw 3vw; }
  .logo img { max-width: 30vw; height: auto; }
  .cards-grid { grid-template-columns: 1fr; gap: 3vw; }
  .info-block { font-size: 3.2vw; }
  .badge-phone, .info-maps-btn, .info-actions .login-btn { padding: 4px 8px; font-size: 3vw; }
}

/* === MENÚ DE ÍCONOS === */
.menu-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  padding: 30px 0;
  background-color: #02325b;
}

.menu-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 13px;
  transition: transform 0.2s ease;
}

.menu-bar a img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  margin-bottom: 6px;
}

.menu-bar a:hover {
  transform: scale(1.05);
}

/* === SECCIÓN PRINCIPAL (Hero) === */
.hero {
  background: linear-gradient(90deg, #00bdf2, #a4f5c6);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
}

/* === SECCIÓN DESTINOS === */
.destinos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background-color: #f7f7f7;
}

.destinos .card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  width: 200px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.destinos .card h3 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #02325b;
}

/* === FORMULARIO DE CONTACTO === */
.seccion-contacto {
  padding: 40px 20px;
  background: #f4f4f4;
  text-align: left;
}

.seccion-contacto h2 {
  text-align: left;
  margin-bottom: 10px;
  color: #02325b;
}

.seccion-contacto p {
  text-align: left;
  margin-bottom: 40px;
}

.contacto-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contacto-info {
  background: linear-gradient(to bottom right, #015b69, #009578);
  color: white;
  padding: 30px;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  text-align: left;
}

.contacto-info h3,
.contacto-info h4 {
  margin-bottom: 10px;
  color: white;
}

.contacto-info p {
  margin: 10px 0;
  font-size: 14px;
}

.contacto-info .redes a img {
  width: 24px;
  height: 24px;
  margin: 10px 8px 0 0;
  border-radius: 4px;
  object-fit: contain;
}

.formulario-contacto {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  padding: 30px;
  text-align: left;
}

.formulario-contacto input,
.formulario-contacto select,
.formulario-contacto textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.formulario-contacto button {
  width: 100%;
  padding: 12px;
  background: #ff7a00;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.formulario-contacto button:hover {
  background: #e96c00;
}

/* === FOOTER === */
.footer-horizontal {
  background-color: #02325b;
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer-section {
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-section h4,
.footer-section h3 {
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  font-size: 12px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 10px;
}

.footer-title.yellow {
  color: #ffc107;
  font-weight: bold;
}

/* === BOTÓN WHATSAPP === */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
}

.whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

body {  
  background: #f5f5f5;  
  font-family: 'Segoe UI', Arial, sans-serif;  
  margin: 0;  
  padding: 0;  
}  
.form-bg {  
  width: 100vw;  
  display: flex;  
  justify-content: center;  
  margin-top: 60px;  
}  
.form-tarjeta {  
  width: 50vw;  
  min-width: 340px;  
  max-width: 700px;  
  background: #fff;  
  border-radius: 18px;  
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);  
  padding: 24px 18px;  
  display: flex;  
  flex-wrap: wrap;  
  gap: 18px;  
  align-items: flex-end;  
}  
.form-group {  
  background: #fff;  
  border-radius: 12px;  
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);  
  padding: 14px 14px 8px 14px;  
  display: flex;  
  flex-direction: column;  
  min-width: 200px;  
  flex: 1;  
  position: relative;  
  height: 90px;  
  justify-content: flex-start;  
}  
.form-label {  
  font-size: 13px;  
  color: #2d2d2d;  
  letter-spacing: 1.1px;  
  font-weight: bold;  
  margin-bottom: 8px;  
  text-transform: capitalize;  
  display: flex;  
  align-items: center;  
  gap: 6px;  
}  
.input-icon {  
  position: relative;  
  display: flex;  
  align-items: center;  
  height: 44px;  
}  
.input-icon i {  
  position: absolute;  
  left: 12px;  
  color: #2d2d2d;  
  font-size: 16px;  
  opacity: 0.8;  
}  
.input-icon input {  
  padding: 10px 12px 10px 38px;  
  border: 1px solid #e0e0e0;  
  border-radius: 8px;  
  background: #fff;  
  font-size: 15px;  
  font-style: italic;  
  color: #2d2d2d;  
  width: 100%;  
  margin-bottom: 4px;  
  outline: none;  
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);  
  transition: border 0.2s;  
  height: 44px;  
}  
.input-icon input:focus {  
  border: 1.5px solid #FFC727;  
}  
.fechas-flex {  
  display: flex;  
  gap: 8px;  
}  
.habitaciones-flex {  
  display: flex;  
  gap: 10px;  
  margin-top: 4px;  
  align-items: center;  
}  
.habitacion-item {  
  display: flex;  
  align-items: center;  
  gap: 4px;  
  background: #fff;  
  border-radius: 8px;  
  padding: 6px 10px;  
  border: 1px solid #e0e0e0;  
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);  
  height: 44px;  
}  
.habitacion-item label {  
  font-size: 14px;  
  color: #2d2d2d;  
}  
.habitacion-item select {  
  border: none;  
  background: transparent;  
  font-size: 15px;  
  color: #2d2d2d;  
  outline: none;  
  font-weight: bold;  
  padding-left: 2px;  
  height: 30px;  
}  
.habitaciones-detalle {  
  display: flex;  
  gap: 8px;  
  flex-wrap: wrap;  
  margin-top: 8px;  
}  
.habitacion-detalle-box {  
  display: flex;  
  align-items: center;  
  gap: 4px;  
  background: #f7f7fa;  
  border-radius: 8px;  
  padding: 6px 8px;  
  border: 1px solid #e0e0e0;  
  height: 44px;  
}  
.habitacion-detalle-box label {  
  font-size: 13px;  
  color: #2d2d2d;  
  margin-right: 2px;  
}  
.btn-buscar {  
  background: #FFC727;  
  color: #1a237e;  
  border: none;  
  border-radius: 24px;  
  padding: 14px 32px;  
  font-size: 16px;  
  font-weight: bold;  
  cursor: pointer;  
  margin-left: 12px;  
  display: flex;  
  align-items: center;  
  gap: 8px;  
  box-shadow: 0 2px 8px rgba(255,199,39,0.15);  
  transition: background 0.2s;  
  height: 44px;  
}  
.btn-buscar:hover {  
  background: #e6b800;  
}  
.icono-alojamiento {  
  cursor: pointer;  
  color: #1a237e;  
  font-size: 18px;  
  margin-right: 4px;  
  transition: color 0.2s;  
}  
.icono-alojamiento.active {  
  color: #FFC727;  
}  
@media (max-width: 900px) {  
  .form-tarjeta {  
    width: 98vw;  
    flex-direction: column;  
    gap: 12px;  
    align-items: stretch;  
  }  
  .btn-buscar {  
    width: 100%;  
    margin-left: 0;  
    justify-content: center;  
  }  
}
/* Estilos para la selección */
.btn-destinica {
    background-color: #FF6B00;
    color: white;
}
.btn-success {
    background-color: #28a745 !important;
}
.select-room {
    transition: all 0.3s ease;
}
.room-card {
    transition: border-color 0.3s ease;
}

/* Estilos para las tarjetas de hoteles */
.hotel-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.hotel-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.hotel-card img {
    border-radius: 12px 0 0 12px;
    object-fit: cover;
    height: 200px;
}

.hotel-card .card-title {
    color: #02325b;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.hotel-card .text-muted {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hotel-card .room-options {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.hotel-card .border {
    border-radius: 8px;
    background: #f8f9fa;
}

.hotel-card .price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #02325b;
}

.hotel-card .btn-destinica {
    background: #ff6b35;
    border: none;
    color: white;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hotel-card .btn-destinica:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

/* Estilos para filtros */
.filters-section .btn {
    transition: all 0.3s ease;
}

.filters-section .btn:hover {
    background: #f0f0f0 !important;
    border-color: #ccc !important;
}

.filters-section .btn.active {
    background: #ff6b35 !important;
    border-color: #ff6b35 !important;
    color: white !important;
}

.filters-section .btn.active i {
    color: white !important;
}

/* Ocultar reward points */
.reward-points {
    display: none !important;
}

@media (max-width: 768px) {
    .hotel-card img {
        border-radius: 12px 12px 0 0;
        height: 180px;
    }
    
    .hotel-card .card-title {
        font-size: 1.1rem;
    }
    
    .filters-section .d-flex {
        padding-left: 5px !important;
    }
}


/* === CARRUSEL HERO DINÁMICO === */
.carrusel-wrapper{
  position:relative;
  width:100%;
  height:90vh;
  overflow:hidden;
}
.carrusel-wrapper img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.carrusel-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45));
  padding:0 20px;
  pointer-events:none;
}
#hero-title{
  font-size:3.2rem;
  font-weight:700;
  margin-bottom:.5rem;
}
#hero-subtitle{
  font-size:1.25rem;
}
/* Swiper bullets sobre fondo */
.swiper-pagination-bullets .swiper-pagination-bullet{
  background:#fff;
  opacity:.7;
}
.swiper-pagination-bullet-active{opacity:1;}

/* === PROMOS / DESTINOS FAVORITOS === */
.promo-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}
.promo-card{
  background:#fff;
  border-radius:10px;
  width:260px;
  height:400px;
  display:flex;
  flex-direction:column;
  box-shadow:0 2px 6px rgba(0,0,0,.1);
  overflow:hidden;
  transition:transform .25s ease,box-shadow .25s;
}
.promo-card:hover{transform:translateY(-6px);box-shadow:0 6px 14px rgba(0,0,0,.15);}
.promo-card img{
  width:100%;
  height:150px;
  object-fit:cover;
}
.promo-card h3{
  color:#02325b;
  margin-bottom:5px;
}
.promo-card p{font-size:14px;margin-bottom:10px;}
.promo-card .price{font-weight:bold;color:#ff7a00;}

/* === DESTINOS PROMOCIONES (grid y tarjetas) === */
.promociones-grid .card-big { grid-column: span 2; grid-row: span 2; }
.promociones-grid .card-rect { grid-column: span 2; grid-row: span 1; }
.promociones-grid .card-small { grid-column: span 1; grid-row: span 1; }

.promociones-grid .promocion-card { position: relative; transform: translateY(0); cursor: pointer; text-decoration: none; color: inherit; display: block; }
.promociones-grid .promocion-card .card-content { position: absolute; bottom: 0; left: 0; right: 0; color: white; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%); border-radius: 0 0 15px 15px; }
.promociones-grid .promocion-card.card-big .card-content { padding: 25px; }
.promociones-grid .promocion-card.card-rect .card-content { padding: 20px; }
.promociones-grid .promocion-card.card-small .card-content { padding: 15px; }

.price-label { margin-bottom: 8px; }
.promocion-card.card-big .price-label { margin-bottom: 12px; }

.price-from { opacity: 0.9; }
.promocion-card.card-big .price-from { font-size: 1rem; }
.promocion-card.card-rect .price-from { font-size: 0.9rem; }
.promocion-card.card-small .price-from { font-size: 0.8rem; }

.price-value { font-weight: 700; display: block; }
.promocion-card.card-big .price-value { font-size: 2rem; }
.promocion-card.card-rect .price-value { font-size: 1.4rem; }
.promocion-card.card-small .price-value { font-size: 1.1rem; }

.card-title { margin: 0 0 5px; font-weight: 600; line-height: 1.2; }
.promocion-card.card-big .card-title { font-size: 1.6rem; margin-bottom: 8px; }
.promocion-card.card-rect .card-title { font-size: 1.2rem; }
.promocion-card.card-small .card-title { font-size: 0.95rem; }

.card-desc { margin: 0 0 5px; opacity: 0.85; line-height: 1.3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
.promocion-card.card-big .card-desc { font-size: 0.9rem; -webkit-line-clamp: 3; line-clamp: 3; margin-bottom: 8px; }
.promocion-card.card-rect .card-desc { font-size: 0.8rem; -webkit-line-clamp: 2; line-clamp: 2; }
.promocion-card.card-small .card-desc { font-size: 0.75rem; -webkit-line-clamp: 2; line-clamp: 2; }

.card-extra { opacity: 0.9; }
.promocion-card.card-big .card-extra { font-size: 1rem; margin-bottom: 15px; }
.promocion-card.card-rect .card-extra { font-size: 0.9rem; margin-bottom: 10px; }
.promocion-card.card-small .card-extra { font-size: 0.8rem; margin-bottom: 10px; }

/* === CONTACTO DINÁMICO === */
#contact-zone p{
  margin:6px 0;
  font-size:15px;
}

/* === FOOTER LEGAL === */
#footer-legal{font-size:14px;}

/* === ESTILOS PARA TARJETAS DE HOTELES === */
#hotel-results .card {
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

#hotel-results .card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

#hotel-results .card .row {
    margin: 0;
}

#hotel-results .card .col-md-4,
#hotel-results .card .col-md-8 {
    padding: 0;
}

#hotel-results .card-body {
    padding: 0;
}

/* Imagen del hotel */
#hotel-results .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}

/* Contenido de la tarjeta */
#hotel-results .card .border-bottom {
    border-bottom: 1px solid #f0f0f0 !important;
}

/* Botones de reserva */
#hotel-results .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #02325b;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#hotel-results .btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    transform: translateY(-1px);
}

/* Ocultar elementos de reward points */
#hotel-results .small.text-success:contains('Reward Points'),
#hotel-results .text-success:has(.fa-star) {
    display: none !important;
}

/* Ajustes de tipografía */
#hotel-results .card-title {
    color: #02325b;
    font-size: 1.25rem;
    font-weight: 700;
}

#hotel-results .text-warning {
    color: #ffc107 !important;
}

#hotel-results .text-primary {
    color: #02325b !important;
}

/* Responsive */
@media (max-width: 768px) {
    #hotel-results .card .row {
        flex-direction: column;
    }
    
    #hotel-results .card img {
        height: 200px;
        border-radius: 8px 8px 0 0;
    }
    
    #hotel-results .card .col-md-4,
    #hotel-results .card .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* === MODAL DE ALOJAMIENTOS === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #02325b 0%, #0a4a7a 100%);
  color: white;
  border-radius: 12px 12px 0 0;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.close-modal:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 0;
}

/* === BUSCADOR DE HOTELES DENTRO DEL MODAL === */  
.hotel-search {
  display: none; /* Inicialmente oculto */
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin: 20px auto;
  max-width: 1200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  position: relative;
  z-index: 1000;
}

/* Mostrar el formulario cuando tenga la clase 'open' */
.hotel-search.open {
  display: block;
}

.hotel-search form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-end;
}

.hotel-search input,
.hotel-search select {
  flex: 1;
  padding: 12px 15px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  font-size: 14px;
  min-width: 150px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hotel-search input:focus,
.hotel-search select:focus {
  outline: none;
  border-color: #02325b;
  box-shadow: 0 0 0 3px rgba(2, 50, 91, 0.1);
}

.hotel-search button {
  padding: 12px 25px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #02325b;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 120px;
}

.hotel-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Responsive para el modal */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 10px;
  }
  
  .modal-content {
    max-height: 95vh;
  }
  
  .hotel-search {
    padding: 20px;
  }
  
  .hotel-search form {
    flex-direction: column;
  }
  
  .hotel-search input,
  .hotel-search select {
    min-width: 100%;
  }
}  
/* ---------- Carrusel hero (una sola copia) ---------- */  
.hero-band{  
  position:relative;  
  width:100%;  
  height:500px !important;     /* alto fijo aumentado para mejor visualización */  
  overflow:hidden;  
  background:#000;             /* fondo negro */  
}  
/* Sobrescribir estilos de Bootstrap para el carrusel */  
.hero-band .carousel,  
.hero-band .carousel-inner{  
  height:500px !important;  
  width:100% !important;  
}  
.hero-band .carousel-item{  
  height:500px !important;                /* Altura fija absoluta */  
  width:100% !important;  
  position:relative;  
  overflow:hidden !important;             /* Oculta cualquier desbordamiento */  
  display:block !important;               /* Elemento de bloque simple */  
}  
/* Estilos específicos para imágenes del carrusel hero */  
.hero-band .carousel-item img,  
.hero-band img,  
section.hero-band img{  
  width:100% !important;  
  height:500px !important;                /* Altura fija absoluta igual al contenedor */  
  object-fit:cover !important;            /* Recorta y llena completamente el contenedor */  
  object-position:center !important;      /* Centra la imagen al recortar */  
  display:block !important;               /* Asegura que sea un elemento de bloque */  
  max-width:none !important;              /* Elimina restricciones de ancho máximo */  
  max-height:none !important;             /* Elimina restricciones de alto máximo */  
  min-width:100% !important;              /* Ancho mínimo completo */  
  min-height:500px !important;            /* Altura mínima fija */  
  margin:0 !important;                    /* Sin márgenes */  
  padding:0 !important;                   /* Sin padding */  
  border:none !important;                 /* Sin bordes */  
  /* vertical-align en elementos block es ignorado; usar flex en contenedor si se requiere alineación */  
}  
/* Overlay */  
.hero-overlay{  
  position:absolute;  
  inset:0;  
  background:rgba(0,0,0,.5);  
  display:flex;  
  align-items:center;  
  justify-content:center;  
  text-align:center;  
  color:#fff;  
  text-shadow:0 2px 4px rgba(0,0,0,.6);  
  z-index:2;                              /* Asegura que esté encima de la imagen */  
  pointer-events:none;                    /* Permite interacción con controles del carrusel */  
}  
.hero-overlay .hero-caption{  
  pointer-events:auto;                    /* Permite interacción con el contenido del caption */  
}
.hero-detalle { background-size: cover; background-position: center; background-repeat: no-repeat; min-height: 60vh; }