
body {
  background-color: #f9fafb; /* fondo muy suave */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
  background-color: #ffffff;
  border: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

h3 {
  color: #2c3e50;
  letter-spacing: 1px;
}

.form-label {
  color: #34495e;
}


.img-hover-effect {
  width: 100%;
  height: 250px; /* o el alto que prefieras */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.img-hover-effect:hover {
  transform: scale(1.05);
}

.btn-primary {
  background-color: #007bff;
  border: none;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

input.form-control {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease;
}

input.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}


/* Estilos para el carrusel de cabañas listado */

.cabana-carousel .carousel-item {
  aspect-ratio: 4 / 3; /* Más alto que 16:9 */
  width: 100%;
  overflow: hidden;
}

.cabana-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Estilos para el carrusel de cabañas reserva */

#carouselExample .carousel-item {
  height: 540px; /* O ajustá a gusto */
  overflow: hidden;
}

@media (max-width: 768px) {
  #carouselExample .carousel-item {
    height: 220px; /* Altura para pantallas pequeñas */
  }
}

#carouselExample .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/*
body {
    padding-top: 60px;
    padding-bottom: 60px;
}*/
.description {
    text-align: center;
    /*margin:0 10px ;*/

    
}


  .img-hover-effect {
    transition: transform 0.3s ease;
  }

  .img-hover-effect:hover {
    transform: scale(1.05) rotate(0.5deg);
    animation: shake 0.4s;
  }

  @keyframes shake {
    0% { transform: scale(1.05) translate(0, 0); }
    25% { transform: scale(1.05) translate(2px, -2px); }
    50% { transform: scale(1.05) translate(-2px, 2px); }
    75% { transform: scale(1.05) translate(2px, 2px); }
    100% { transform: scale(1.05) translate(0, 0); }
  }


ul.custom-bullets {
  list-style: none;
  padding-left: 1.2em;
}

ul.custom-bullets li {
  position: relative;
  margin-bottom: 0.5rem;
}

ul.custom-bullets li::before {
  content: "●";
  position: absolute;
  left: -1.2em;
  color: #198754; /* Verde Bootstrap */
  font-size: 1rem;
}
.modal {
  z-index: 1055;
}
.modal-backdrop {
  z-index: 99;
}

 .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #198754;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  width: 64px;
  height: 64px;
  padding: 0 16px;
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.whatsapp-icon {
  font-size: 1.8rem;
  margin: auto;
  display: block;
}

.whatsapp-text {
  opacity: 0;
  margin-left: 12px;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.whatsapp-float:hover,
.whatsapp-float.active {
  width: 400px;
}

.whatsapp-float:hover .whatsapp-text,
.whatsapp-float.active .whatsapp-text {
  opacity: 1;
  pointer-events: auto;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
}

.shake {
  animation: shake 0.5s;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 64px;
    height: 64px;
    padding: 0 12px;
    right: 10px;
  }

  .whatsapp-float.active {
    width: auto;
    max-width: 90vw;
    right: 10px;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-float.active .whatsapp-text {
    display: inline;
    opacity: 1;
  }
}


  .remark {
  border: 4px solid #ffb800 !important; /* Borde amarillo */
  border-radius: 0.75rem; /* Bordes redondeados */
  padding-left: 2.5rem; /* Deja espacio si usas íconos */
  background-color: #fff;
  position: relative;
}