
/* Agregar padding superior para evitar superposición con navbar y botón de WhatsApp */
#tour-reservation {
  padding-top: 4rem !important;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

/* Asegurar que el navbar tenga mayor z-index */
.navbar {
  z-index: 1030 !important;
}

/* Asegurar que el botón de WhatsApp tenga mayor z-index */
.whatsapp-float {
  z-index: 1020 !important;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
  #tour-reservation {
    padding-top: 2rem !important;
  }
  
  /* Ajustar el navbar colapsado */
  .navbar-collapse {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
}

/* Asegurar que el contenido del formulario no se superponga */
#tour-reservation .card {
  position: relative;
  z-index: 1;
}

.tour-booking-background {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(92, 92, 92, 0.75)), 
                url('./../../moonRiverImages/data_carruseles/aventura/raws/raw_img_tenorio_waterfall.jpeg') center/cover no-repeat fixed;
    min-height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}