.sep {
  border: none;
  height: 0px;
  background: none;
  margin: 2rem 0;
}

.navbar { background: #fff; 
  box-shadow: 0 6px 30px rgba(0,0,0,.06); 
  display: flex; align-items: center; 
  min-height: 80px; /* altura mínima del nav */ 
  padding: 0 1.25rem; }

  .navbar .nav-link {
  color: #333;
  font-size: 1.05rem;    /* ligeramente más grande */
  font-weight: 600;      /* opcional: texto un poco más grueso */
  line-height: 1.2;      /* mejora la legibilidad */
}

.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
  z-index: 10;
}

.hero-content {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none; /* evita bloquear los botones */
}

.hero-content a {
  pointer-events: auto; /* permite hacer clic en el botón */
}







.gallery-img {
    cursor: pointer;
    border-radius: 6px;
    transition: transform .2s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}

.lightbox-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: rgba(0,0,0,0.4);
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 4px;
}

.lightbox-control.left {
    left: 10px;
}

.lightbox-control.right {
    right: 10px;
}

.lightbox-control:hover {
    background: rgba(0,0,0,0.7);
}





.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.whatsapp-float:hover {
  background-color: #1ebe5d;
  color: #fff;
}


  .precio-dia {
    font-size: 0.75rem;     /* letra más pequeña */
    color: #777;            /* gris suave */
    text-align: left;       /* alineado a la izquierda */
    padding-left: 4px;      /* un pequeño margen */
    font-weight: 500;       /* un poco más marcado */
  }

  .cta-booking-full {
  background: url("img/fachada-2.jpg")
              center / cover no-repeat;
  min-height: 40vh;
  width: 100%;
  display: flex;
  align-items: center;
}

.cta-overlay {
  background: rgba(0,0,0,0.55);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.cta-booking-full h2 {
  color: white;
  font-weight: 600;
  font-size: 2.5rem;
}

.cta-booking-full p {
  color: rgba(255,255,255,0.9);
}


.section-alta {
  min-height: 500px; /* ajusta a tu gusto */
  display: flex;
  align-items: center; /* opcional: centra el contenido verticalmente */
}
