@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

/* ===== VARIABLES CSS ===== */
:root{
  --primary-color: #ffffff07;
  --hover-color: #ffffff24;
  --accent-color: #ffffff;
  --text-color: #e6e9e7;
  --max-content-width: 1400px;
  --mobile-content-width: 90%;
  --navbar-max-width: 1500px;
}

/* ===== RESET Y ESTILOS BASE ===== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: var(--text-color);
  scroll-behavior: smooth; 
}

body{
  height: 100vh;
  background-color: #E0E9E9;
  overflow-x: hidden;
  width: 100%;
}

/* ===== MEJORAS DE ACCESIBILIDAD ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background-color: var(--accent-color); 
  color: #e6e9e7;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.skip-link:focus {
  opacity: 1; 
  pointer-events: auto; 
  outline: 3px solid #ffffff; 
}

.hidden {
  display: none !important;
}

/* ===== ESTRUCTURA PRINCIPAL ===== */
#main-content {
  margin-top: 0;
  overflow-x: hidden;
}

.img-background{
  position: relative;
  background-color: #1f5e63;
  background-size: cover;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 65vh;
  animation: slideUp 1s cubic-bezier(.32,0,.07,.99) forwards;
  overflow: hidden;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 15vh;
  margin-top: calc(-1 * (9.8vh + 2vw));
}
.video-background{
    position: absolute;
    z-index: -10;
    width: auto;
    height: 920px;
    top: 80px;
}
.img-background.reveal-gradient::before {
  animation: gradientFade 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.content-container {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 2em;
  overflow-x: hidden;
}

.tittle {
  color: #e6e9e7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  padding: 0;
}

.tittle h1{
  margin: 0;
  line-height: 1.2;
  text-align: left;
  font-weight: 500;
  letter-spacing: 2px;
  padding-bottom: 8px;
  padding-top: 60px;
  margin-bottom: 40px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  border-bottom: 3px solid #e6e9e7;
}

/* ===== RADIO BUTTONS ===== */
.radio-btn{
    margin-top: 1.5em;
    font-size: 1.15rem;
    display: flex;
    justify-content: flex-start;
    gap: 1.5em;
}

.radio-option {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-option:hover {
  transform: translateY(-2px);
}

.radio-option:hover label {
  color: #f0f0f0;
}

.radio-option label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 1.1rem;
  margin: 0;
  font-family: 'Oswald';
  font-weight: 500;
  letter-spacing: 0.5px;
}

.radio-option label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: #e6e9e7;
  box-sizing: border-box;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.radio-option label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  background: #1f5e63;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}

.radio-option input[type="radio"]:checked + label::before {
  background: var(--text-color);
  border-color: var(--text-color);
  animation: radioPulse 0.6s ease-out;
}

.radio-option input[type="radio"]:checked + label::after {
  transform: translateY(-50%) scale(1);
}

.radio-option input[type="radio"]:checked + label {
  color: var(--text-color);
  font-weight: 500;
}

.radio-option input[type="radio"]:focus + label::before {
  outline: 2px solid #3EAEB9;
  outline-offset: 2px;
}

input[type="radio"] {
  display: none;
}

/* ===== FORMULARIO DE RESERVA ===== */


/* Autocomplete de Google Places */
.pac-container {
  border-radius: 8px;
  margin-top: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  width: 400px !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pac-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
}

.pac-item:hover {
  background-color: #f8fafc;
}

.pac-item-selected {
  background-color: #e8f4f8;
}

.pac-icon {
  margin-right: 10px;
}

.pac-item-query {
  font-size: 14px;
  color: #1a5d6e;
}

/* Botones de ubicación personalizada */
.location-options {
  display: flex;
  gap: 10px;
}

.btn-custom-location {
  color: #FFF;
    font-family: 'Oswald';
    font-style: unset;
    padding: 10px;
    border-radius: 6px;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    transition: all 0.2s ease;
    background: #1f5e63;
    align-items: center;
    margin-right: 5px;
    margin-top: 0px;
}

.btn-custom-location:hover {
  background: #1f5e63;
}

/* ===== ESTILOS ESPECÍFICOS PARA MODAL DE UBICACIÓN PERSONALIZADA ===== */
#customLocationModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#customLocationModal.active {
    display: flex !important; /* !important para forzar sobre otros estilos */
}

/* Overlay del mapa - MÁS ESPECÍFICO */
#customLocationModal #modalMapOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85) !important; /* Más oscuro */
    z-index: 1 !important;
    pointer-events: auto;
    display: none;
}

#customLocationModal.active #modalMapOverlay {
    display: block !important;
}

/* Contenido del modal - MÁS ESPECÍFICO */
#customLocationModal .modal-content.map-modal {
    position: relative;
    z-index: 2 !important;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    width: 95%;
    max-height: 85vh;
    pointer-events: auto;
    animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 20px;
    display: none; /* Oculto por defecto */
}

#customLocationModal.active .modal-content.map-modal {
    display: block !important; /* Mostrar cuando está activo */
}

/* Animación más pronunciada */
@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Asegurar que el contenido interno sea visible */
#customLocationModal .modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(85vh - 140px);
}

/* El mapa DEBE tener altura explícita */
#locationMap {
    height: 400px !important;
    width: 100% !important;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e9ecef;
    background: #f8f9fa; /* Fondo de respaldo */
    min-height: 400px;
}

/* Si el mapa de Google está cargando */
#locationMap:empty::before {
    content: "Loading map...";
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    font-style: italic;
}

/* Botones más específicos */
#customLocationModal .btn-confirm-location,
#customLocationModal .btn-cancel-location {
    pointer-events: auto;
}

/* Asegurar visibilidad en móviles */
@media (max-width: 768px) {
    #customLocationModal .modal-content.map-modal {
        width: 98%;
        margin: 10px;
        max-height: 80vh;
    }
    
    #locationMap {
        height: 300px !important;
        min-height: 300px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    #customLocationModal .modal-content {
        width: 98%;
        margin: 10px;
        max-height: 85vh;
    }
    
    #locationMap {
        height: 300px !important;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn-confirm-location,
    .btn-cancel-location {
        width: 100%;
        justify-content: center;
    }
}

/* Para evitar scroll en el body cuando el modal está abierto */
body.modal-open {
    overflow: hidden;
}

/* ============   ESTILOS PARA LOS INPUTS DE GOOGLE  ===============  */
.place-autocomplete{
   height: 60px;
   background: transparent;
   padding: 10px;
   border: none;
}

.place-autocomplete:focus{
  border: none;
  outline: none;
}

/*Formulario*/

.booking-box {
  display: flex;
  justify-content: flex-start;
  margin: 30px 0 0 0;
  width: 100%;
  max-width: 2000px;
  border-radius: 4px;
}

.booking-form {
  display: flex;
  align-items: center;
  background: transparent;
  border: 5px solid #e6e9e7;  
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  width: 100%;
  border-radius: 4px;
}

.form-field {
  display: flex;
  align-items: center;
  background: #e6e9e7;
  padding: 2px 2px;
  width: 100%;
  height: 60px;
  position: relative;
}

.form-field::after {
  content: '';
  position: absolute;
  right: -16px;
  transform: translateY(0px);
  rotate: 90deg;
  width: 35px;
  height: 1px;
  background-color: #939598;
}

.form-field select {
  border: none;
  outline: none;
  color: #2E3B3A;
  font-size: 15px;
  background: var(--text-color);
  width: 100%;
  font-family: 'Oswald';
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 8px 30px 8px 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231f5e63' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 18px;
  line-height: 1.5;
}

.form-field select:focus {
  color: #2a8e96;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%232a8e96' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

.form-field select option {
  background: #fff;
  color: #2E3B3A;
  padding: 12px 15px;
  font-size: 14px;
  font-family: 'Oswald';
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
}

.form-field select option:hover {
  background: #89d1cb !important;
  color: #fff !important;
}

.form-field select option:checked {
  background: #1f5e63 !important;
  color: #fff !important;
}

.form-field select option:first-child {
  color: #939598;
  font-style: italic;
}

#passengers + .form-field::after,
#hidden::after {
  display: none;
}

/* ===== FLATPICKR - INPUTS DE FECHA ===== */
.flatpickr-input {
  width: 100%;
  height: 100%;
  padding: 8px 30px 8px 40px;
  border: none;
  background: transparent;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  caret-color: transparent;
  transition: color 0.3s ease;
}

.flatpickr-input:focus {
  outline: none;
  color: #1f5e63;
}

/* Permitir que el calendario salga del contenedor */
.booking-box,
.booking-form,
.form-field {
  overflow: visible !important;
  position: relative;
}


/* === Calendario principal === */
.flatpickr-calendar {
  position: absolute !important;
  z-index: 9999 !important;
  background: white;
  border: 2px solid #1f5e63;
  border-radius: 4px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s ease;
}

/* === Encabezado (mes y navegación) === */
.flatpickr-months {
  background: #1f5e63;
  padding: 10px 0;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flatpickr-month {
  color: #fff;
  fill: #fff;
}

.flatpickr-current-month {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Selector de mes */
.flatpickr-monthDropdown-months {
  appearance: none;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 5px;
  cursor: pointer;
}

.flatpickr-monthDropdown-months:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}

/* === Botones de navegación === */
.flatpickr-prev-month,
.flatpickr-next-month {
  color: #fff;
  fill: #fff;
  padding: 5px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* === Cabecera de los días === */
.flatpickr-weekdays {
  background: #e6f2f1;
  border-bottom: 1px solid #d0e4e2;
}

.flatpickr-weekday {
  color: #1f5e63;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* === Días del calendario === */
.flatpickr-day {
  color: #111;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 500;
  max-width: 38px;
  height: 38px;
  line-height: 38px;
  margin: 2px;
  transition: all 0.2s ease;
}

.flatpickr-day:hover {
  background: #1f5e63;
  border-color: #1f5e63;
  color: #fff;
}

/* Día actual */
.flatpickr-day.today {
  border-color: #1f5e63;
  color: #1f5e63;
  background: transparent;
}

.flatpickr-day.today:hover {
  background: #1f5e63;
  color: #fff;
}

/* Estilo del día seleccionado */
.flatpickr-day.selected {
  background: #1f5e63 !important;
  border-color: #1f5e63 !important;
  border-radius: 4px !important;
  color: #fff !important;
}

/* Rango de días */
.flatpickr-day.inRange {
  background: rgba(31, 94, 99, 0.15);
  border-color: rgba(31, 94, 99, 0.3);
  color: #111;
}

/* Días deshabilitados */
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  background: transparent;
  border-color: transparent;
  color: #ccc;
  cursor: not-allowed;
}

/* === Campo activo === */
.form-field.calendar-open {
  background-color: #1b565a;
  transition: background-color 0.3s ease;
}

/* ===== ICONOS EN FORMULARIO ===== */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 12px;
  z-index: 2;
  pointer-events: none;
  width: 20px;
  height: 20px;
  object-fit: contain;
  top: 50%;
  transform: translateY(-50%);
}

.form-field select,
.form-field .flatpickr-input {
  padding-left: 40px !important;
}

.date-input {
  position: relative;
  cursor: pointer;
}

/* ===== BOTÓN DE BÚSQUEDA ===== */
.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 94, 99, 1);
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 22px 24px;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.3s;
  white-space: nowrap;
  width: 45%;
}

.btn-search:hover {
  background: rgb(23, 69, 72)
}

/* ===== NAVBAR ===== */

#navbar{
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding-top: 4.25vh;
  max-width: var(--navbar-max-width);
  margin: 0 auto;
}

nav{
  background-color: transparent;
  border-bottom: 1px solid var(--hover-color);
  position: relative;
  z-index: 9999;
  border: none;
  max-width: var(--max-content-width);
  margin: 0 auto;
}

nav ul{
  list-style: none;
  display: flex;
  align-items: left;
}
#navbar ul {
  background: transparent !important;
}


nav .home-li{
  margin-right: auto;
}

nav li{
  display: flex;
}

nav a {
  display: flex;
  position: relative;
  text-decoration: none;
  color: var(--text-color);
  padding: 0em 2em 0.5em 2em;
  transition: background-color 150ms cubic-bezier(.32,0,.07,.99);
  font-size: 1.1rem;
  align-items: center;
}

.nav-container {
  position: absolute !important;
  width: 100%;
  background: transparent !important;
  z-index: 10000;
}



nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

nav a:hover::after {
  width: 100%;
}

nav a.accent-link{
  background-color: var(--accent-color);
}

.img-logo{
  width: auto;
  height: 56px;
  transition: height 0.3s ease;
}
#nav-container,
.nav-container {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

/* ===== LOGO PARA MÓVILES ===== */
#mobile-logo {
  display: none;
  position: fixed;
  background-color: transparent;
  top: 20px;
  left: 20px;
  z-index: 1002;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

#mobile-logo:hover {
  background-color: rgba(31, 94, 99, 1);
  transform: scale(1.05);
}

.mobile-logo-img {
  height: 30px;
  width: auto;
  display: block;
}

#mobile-logo a {
  display: block;
  text-decoration: none;
  border: none;
}

#mobile-logo a::after {
  display: none;
}

/* ===== NAVBAR MÓVIL ===== */
#open-sidebar-button {
  display: none;
  background: none;
  border: none;
  padding: 12px;
  margin-left: auto;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: rgba(31, 94, 99, 0.9);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#open-sidebar-button:hover {
  background-color: rgba(31, 94, 99, 1);
  transform: scale(1.05);
}

#open-sidebar-button svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

#close-sidebar-button {
  display: none;
  background: none;
  border: none;
  padding: 16px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 255px;
  z-index: 1001;
  background-color: rgba(31, 94, 99, 0.9);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

#close-sidebar-button:hover {
  background-color: rgba(31, 94, 99, 1);
  transform: scale(1.1);
}

#close-sidebar-button svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#overlay.active {
  display: block;
  opacity: 1;
}

/* ===== SECCIÓN DE CARACTERÍSTICAS ===== */
.features-section {
  width: 100%;
  max-width: 1350px;
  margin: 30px auto 80px;
}

.features-inline {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  color: var(--text-color);
}

.feature-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: #1f5e63;
}

#feature-adjust{
  position: relative;
  margin-top: 8px;
}

/* ===== SECCIÓN DE BOOKINGS MÁS FRECUENTES ===== */
.popular-bookings-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.popular-bookings-header {
  text-align: center;
  margin-bottom: 60px;
}

.popular-bookings-header h2 {
  font-size: 3rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}

.popular-bookings-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === NUEVO CARRUSEL VERTICAL === */
.bookings-slider-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
  width: 100%;
  overflow: hidden;
}

.slider-track-vertical {
  overflow: hidden;
  width: 100%;
  height: auto;
  position: relative;
  min-height: 400px;
}

.booking-slide-group {
  display: none;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  transition: all 1s cubic-bezier(0.98, -0.02, 0.25, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.booking-slide-group.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.booking-slide-horizontal {
  flex: 1;
  min-width: 280px;
  max-width: 300px;
  transition: all 0.3s ease;
}

.booking-slide-horizontal:hover {
  transform: translateY(-5px);
}

.slider-control-vertical {
  background-color: transparent;
  color: #1f5e63;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.slider-control-vertical:hover {
  background: #1f5e63;
  color: white;
  transform: scale(1.1);
}

.slider-control-vertical.prev-vertical {
  order: 1;
}

.slider-control-vertical.next-vertical {
  order: 3;
}

.slider-track-vertical {
  order: 2;
}

/* Indicadores del carrusel */
.slider-indicators-vertical {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  order: 4;
}

.indicator-vertical {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-vertical.active {
  background: #1f5e63;
  transform: scale(1.2);
}

.indicator-vertical:hover {
  background: #89d1cb;
}

/* Estilos de las tarjetas del carrusel */
.booking-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.booking-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.booking-card:hover .booking-image img {
  transform: scale(1.05);
}

.booking-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #1f5e63, #2a8e96);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.booking-content h3 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}

.booking-content p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.booking-content strong {
  color: #1f5e63;
  font-size: 1.1rem;
}

.booking-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.booking-features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  color: #555;
  font-size: 0.85rem;
}

.booking-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1f5e63;
  font-weight: bold;
  font-size: 0.9rem;
}

.btn-booking-select {
  background: #1f5e63;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  margin-top: auto;
}

.btn-booking-select:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(31, 94, 99, 0.3);
}

/* ===== CARRUSEL SWIPER HORIZONTAL ===== */
.bookings-swiper-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: auto;
  padding: 20px 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 10px;
  height: auto;
}

.swiper-slide .booking-card {
  width: 100%;
  height: 100%;
  margin: 0;
  transition: all 0.3s ease;
}

.swiper-slide .booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: #1f5e63;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #1f5e63;
  color: white;
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next {
  bottom: -60px;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-button-prev {
  top: -60px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
}

/* ===== BARRA DE BÚSQUEDA DE HOTELES MEJORADA ===== */
.hotel-search-section{
  background:#fff;
  padding: 50px 0;
}

.content-container{
  margin: 0 auto;
}

/* 🔹 UNA SOLA LÍNEA */
.hotel-line{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 30px;
}

/* Izquierda: label + input */
.hotel-line-left{
  flex: 1 1 auto;
  max-width: 520px;
}

.hotel-line-left label{
  display:block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color:#111;
}

.hotel-line-left input{
  width:100%;
  border:none;
  border-bottom: 1px solid #e6e9e7;
  padding: 10px 4px;
  font-size: 1.1rem;
  background: transparent;
  outline:none;
}

/* Flecha */
.hotel-line-arrow{
  font-size: 2.0rem;
  padding: 0 10px;
  color:#000;
  transform: translateY(6px);
}

/* Derecha */
.hotel-line-right{
  display:flex;
  align-items:flex-end;
  gap: 10px;
  white-space: nowrap;
}

.hotel-line-right span{
  font-size: 1rem;
  font-weight: 500;
  color:#111;
}

.hotel-line-right strong{
  font-size: 1.1rem;
  font-weight: 700;
  color:#000;
}

/* 📱 Responsive */
@media (max-width: 900px){
  .hotel-line{
    flex-direction: column;
    align-items: stretch;
  }

  .hotel-line-arrow{
    align-self: center;
    transform: rotate(90deg);
    padding: 0;
  }

  .hotel-line-right{
    justify-content: center;
    font-size: 1.1rem;
  }
}


/* ===== CLIMA EN NAVBAR ===== */
.weather-dropdown {
  position: relative;
}

.weather-toggle {
  cursor: pointer;
}

.weather-dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  min-width: 300px;
  padding: 20px;
  z-index: 1000;
  display: none;
  color: #333;
}

.weather-dropdown:hover .weather-dropdown-content {
  display: block;
}

.weather-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}

.weather-current {
  text-align: center;
  margin-bottom: 20px;
}

.weather-temp {
  font-size: 2rem;
  font-weight: 500;
  color: #1f5e63;
}

.weather-desc {
  color: #666;
  font-size: 0.9rem;
}

.weather-forecast {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.weather-day {
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  background: #f8f9fa;
}

.weather-day-name {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 5px;
}

.weather-day-temp {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}

.weather-loading {
  text-align: center;
  color: #666;
  padding: 20px;
}

/* ===== SECCIÓN DE VIDEO ===== */
.video-section {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto 0;
}

.video-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.video-text {
  margin-top: 48px;
  flex: 1;
  text-align: left;
}

.video-text h3 {
  font-size: 3rem;
  font-weight: 500;
  color: #333;
  line-height: 55px;
}

.services-text {
  margin-bottom: 50px;
  margin-top: 40px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0px auto 65px;
}

.service-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.item-adjust{
  margin-left: 10px;
}

.service-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* ===== CONTENEDOR DE VIDEO CON RELACIÓN 16:9 ===== */
.video-container {
  flex: 1;
  position: relative;
  cursor: pointer;
  margin: auto;
  width: 100%;
  /* Contenedor con relación de aspecto 16:9 */
  aspect-ratio: 16 / 9;
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  transition: all 0.3s ease;
  display: block;
  border-radius: 4px;
}

/* Contenedor del botón de play y texto - AHORA SE OCULTA COMPLETO */
.play-button-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
}

/* BOTÓN PLAY */
.play-button {
  width: 120px;
  height: 70px;
  background: rgba(31, 94, 99, 1);;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 4px;
}

/* TRIÁNGULO DE REPRODUCCIÓN */
.play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 5px;
}

.play-button:hover {
  background: rgba(31, 94, 99, 1);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.play-button-container.hidden {
  display: none;
}

/* Texto "See how it works" debajo del botón */
.video-caption {
  text-align: center;
}

.see-how-text {
  color: black;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Controles del video */
.video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 11;
  display: flex;
  gap: 10px;
}

.control-btn {
  background: rgba(31, 94, 99, 0.8);
  border: none;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.control-btn:hover {
  background: rgba(31, 94, 99, 1);
  transform: scale(1.1);
}

/* ===== MODAL DE VIDEO ===== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: auto;
  max-height: 80vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1002;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  z-index: 1003;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

#modalVideo {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
}

/* ===== SECCIÓN DE REVIEWS ===== */
.reviews-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1f5e63, transparent);
}

.reviews-header {
  text-align: left;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reviews-header.animate {
  opacity: 1;
  transform: translateY(0);
}

.reviews-header h2 {
  font-size: 3rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
  margin-top: 15px;
  line-height: 1.2;
}

.reviews-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 500px;
  margin: 0;
  line-height: 1.6;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.review-card {
  background: white;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  border-radius: 4px;
}

.review-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1f5e63, #2a8e96);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.reviewer-details h4 {
  margin: 0 0 5px 0;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
}

.reviewer-details span {
  color: #666;
  font-size: 0.9rem;
}

.tripadvisor-logo {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.review-card:hover .tripadvisor-logo {
  opacity: 1;
}

.review-stars {
  margin-bottom: 15px;
}

.star {
  color: #FFD700;
  font-size: 1.2rem;
  margin-right: 2px;
}

.review-card h3 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.review-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.review-date {
  color: #888;
  font-size: 0.9rem;
  font-style: italic;
}

/* Animaciones escalonadas para las tarjetas */
.review-card:nth-child(1) { transition-delay: 0.1s; }
.review-card:nth-child(2) { transition-delay: 0.2s; }
.review-card:nth-child(3) { transition-delay: 0.3s; }

/* ===== FOOTER ===== */
.footer {
  background: #1f5e63;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 2em;
}

.footer-section h3.footer-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #89d1cb;
  position: relative;
}

.footer-section h3.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #89d1cb;
}

/* Contact Info Styles */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-item, .email-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phone-type, .email-label {
  font-size: 0.9rem;
  color: #89d1cb;
  font-weight: 500;
}

.phone-number, .email-address {
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-number:hover, .email-address:hover {
  color: #89d1cb;
}

/* Social Links Styles */
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(137, 209, 203, 0.3);
  transform: translateX(5px);
}

.social-icon {
  width: 20px;
  height: 20px;
  color: #89d1cb;
  transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
  transform: scale(1.2);
}

.social-text {
  font-size: 1rem;
  padding: 2px 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-text:hover {
  border-color: rgba(137, 209, 203, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.social-text:focus {
  outline: none;
  border-color: #89d1cb;
  background: rgba(255, 255, 255, 0.1);
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 20px 2em 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #89d1cb;
  font-size: 0.9rem;
}

/* ===== CARRUSEL ADVENTURES AUTOMÁTICO SIN BOTONES ===== */
.adventures-hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  background-color: #1f5e63;
  margin-top: -10vh;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

/* Imágenes de fondo para cada slide */
.slide:nth-child(1) {
  background-image: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('./images/hermosa-playa-de-diamantes-en-la-isla-de-penida-bali-indonesia.jpg');
}

.slide:nth-child(2) {
  background-image: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('./images/playa.jpg');
}

.slide:nth-child(3) {
  background-image: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('./images/Foto-arco-Sari-editada-a-ver.png');
}

.slide-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.slide-content h1 {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
  font-size: 1.5rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* ===== FORMULARIO ADVENTURES ===== */
.adventures-booking-section {
  background: white;
  padding: 80px 0;
}

.adventures-booking-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.adventures-booking-box h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 500;
}

.adventures-booking-box p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.adventures-booking-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  text-align: left;
}

.form-group.full-width {
  flex: 0 0 100%;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1f5e63;
  box-shadow: 0 0 0 3px rgba(31, 94, 99, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  margin-top: 30px;
  text-align: center;
}

.btn-adventures {
  background: linear-gradient(135deg, #1f5e63 0%, #2a8e96 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-adventures:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(31, 94, 99, 0.3);
}

.security-note {
  margin-top: 15px;
  color: #666;
  font-size: 0.9rem;
}

/* ===== ESTILOS ESPECÍFICOS PARA ABOUT US ===== */
.about-page {
  background: #f8f9fa;
}

/* Hero Section */
.about-hero-section {
  background: linear-gradient(135deg, #1f5e63 0%, #2a8e96 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.about-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

.about-title h1 {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-title p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* Content Container */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

/* Story Section */
.about-story {
  padding: 100px 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: 500;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.story-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: white;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}

.values-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  background: white;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1f5e63, #2a8e96);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  color: white;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 500;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Team Section */
.team-section {
  padding: 100px 0;
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}

.team-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.member-photo {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1f5e63, #2a8e96);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
  font-weight: 600;
}

.team-member h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

.role {
  color: #1f5e63;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
}

.team-member p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1f5e63 0%, #2a8e96 100%);
  color: white;
  border-radius: 20px;
  margin: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}

.cta-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-cta {
  background: linear-gradient(135deg, #1f5e63 0%, #2a8e96 100%);
  color: white;
  border: none;
  padding: 18px 45px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(31, 94, 99, 0.3);
}

/* ===== ESTILOS PARA PÁGINA DE BOOKING ===== */
.booking-header {
  background-color: #1f5e63;
  padding: 20px 0;
}

.booking-hero-section {
  background: linear-gradient(135deg, #1f5e63 0%, #2a8e96 100%);
  color: white;
  padding: 60px 0 40px;
  text-align: center;
}

.booking-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2em;
}

.booking-title h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.booking-details-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.booking-summary-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.booking-summary {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 100%;
}

.booking-summary h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}

.summary-label {
  font-weight: 600;
  color: #666;
}

.summary-value {
  color: #333;
  font-weight: 500;
}

.booking-details-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 100%;
}

.form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e9ecef;
}

.form-section:last-of-type {
  border-bottom: none;
}

.section-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 500;
}

.subsection-title {
  font-size: 1.2rem;
  color: #1f5e63;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1f5e63;
  box-shadow: 0 0 0 3px rgba(31, 94, 99, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group.full-width {
  flex: 0 0 100%;
}

.phone-input-group {
  display: flex;
  gap: 10px;
}

.country-code {
  flex: 0 0 120px;
}

.form-hint {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: 0.85rem;
}

.price-section {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
}

.price-total {
  text-align: center;
}

.total-amount {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.total-label {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}

.total-price {
  font-size: 2rem;
  color: #1f5e63;
  font-weight: 600;
}

.price-note {
  color: #666;
  font-size: 0.9rem;
}

.form-actions {
  text-align: center;
  margin-top: 40px;
}

.btn-booking {
  background: linear-gradient(135deg, #1f5e63 0%, #2a8e96 100%);
  color: white;
  border: none;
  padding: 18px 45px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  max-width: 400px;
}

.btn-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(31, 94, 99, 0.3);
}

.security-note {
  margin-top: 15px;
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ===== ANIMACIONES ===== */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  70% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes radioPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ANIMACIONES PARA SCROLL ===== */
.video-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.video-content.animate {
  opacity: 1;
  transform: translateY(0);
}

.video-text.animate {
  animation: slideInLeft 0.8s ease forwards;
}

.video-container.animate {
  animation: slideInRight 0.8s ease forwards;
}

.service-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.service-item.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Retrasos escalonados para los service items */
.service-item:nth-child(1) { transition-delay: 0.2s; }
.service-item:nth-child(2) { transition-delay: 0.4s; }
.service-item:nth-child(3) { transition-delay: 0.6s; }

/* Animación para el footer */
.footer {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.footer.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CLASES DE UTILIDAD ===== */
.adjust{
  margin: 0 auto;
}

#img-adjust{
  width: 28.5px;
  height: 28.5px;
}

/* ===== CARRUSEL HORIZONTAL SOLO PARA MÓVILES - CORREGIDO ===== */
/* ===== CARRUSEL HORIZONTAL SOLO PARA MÓVILES - UNA TARJETA A LA VEZ ===== */
.mobile-transfer-slider {
  display: none;
}

.mobile-arrows-container {
  display: none;
}

/* Mostrar solo en móviles pequeños - UNA TARJETA A LA VEZ */
@media (max-width: 768px) {
  .mobile-transfer-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 16px;
    scroll-behavior: smooth;
    width: 100%;
  }
  
  .mobile-transfer-slider::-webkit-scrollbar {
    display: none;
  }

  .booking-card {
    flex: 0 0 calc(100% - 32px); /* Una tarjeta ocupa casi todo el ancho */
    min-width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    scroll-snap-align: center;
    transition: transform .3s ease;
    margin: 0 auto;
  }

  .mobile-arrows-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
  }

  .mobile-arrow {
    background: #1f5e63;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-arrow:hover {
    background: #2a8e96;
    transform: scale(1.1);
  }

  .mobile-arrow:active {
    transform: scale(0.95);
  }

  /* Ocultar el carrusel vertical en móviles */
  .bookings-slider-vertical {
    display: none !important;
  }
}



/* Estilos para Mercado Pago */
.mercado-pago-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid #009ee3;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #009ee3;
  font-weight: bold;
}

.accepted-cards {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.accepted-cards span {
  color: #666;
  font-size: 14px;
}

.card-icons {
  display: flex;
  gap: 10px;
}

.card-icon {
  font-size: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.card-icon.active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .accepted-cards {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

/* En escritorio solo se ve el vertical */
@media (min-width: 769px) {
  .mobile-transfer-slider {
    display: none !important;
  }
  
  .mobile-arrows-container {
    display: none !important;
  }
  
  .bookings-slider-vertical {
    display: flex !important;
  }
}

/* En escritorio solo se ve el vertical */
@media (min-width: 769px) {
  .mobile-transfer-slider {
    display: none !important;
  }
  
  .mobile-arrows-container {
    display: none !important;
  }
  
  .bookings-slider-vertical {
    display: flex !important;
  }
}

/* En escritorio solo se ve el vertical */
@media (min-width: 769px) {
  .mobile-transfer-slider {
    display: none !important;
  }
  
  .mobile-arrows-container {
    display: none !important;
  }
  
  .bookings-slider-vertical {
    display: flex !important;
  }
}

/* En escritorio solo se ve el vertical */
@media (min-width: 769px) {
  .mobile-transfer-slider {
    display: none !important;
  }
  
  .mobile-arrows-container {
    display: none !important;
  }
  
  .bookings-slider-vertical {
    display: flex !important;
  }
}

/* En escritorio solo se ve el vertical */
@media (min-width: 769px) {
  .mobile-transfer-slider {
    display: none !important;
  }
  
  .mobile-arrows-container {
    display: none !important;
  }
  
  .bookings-slider-vertical {
    display: flex !important;
  }
}

}


/* Estilos para las flechas móviles */
.mobile-arrow {
  background: #1f5e63;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-arrow:hover {
  background: #2a8e96;
  transform: scale(1.1);
}

.mobile-arrow:active {
  transform: scale(0.95);
}


/* ===== ESTILOS PARA PÁGINA DE PAGO ===== */
.payment-details-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.payment-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.payment-summary {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: fit-content;
}

.payment-summary h2 {
  color: #333;
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: 500;
}

.summary-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-item.total {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1f5e63;
}

.summary-label {
  color: #666;
}

.summary-value {
  color: #333;
  font-weight: 500;
}

.summary-divider {
  height: 1px;
  background: #e9ecef;
  margin: 15px 0;
}

.security-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #666;
  font-size: 0.9rem;
}

.payment-form-container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-form h2 {
  color: #333;
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: 500;
}

.payment-methods {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.payment-method {
  flex: 1;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.payment-method.active {
  border-color: #1f5e63;
  background: rgba(31, 94, 99, 0.05);
}

.payment-method:hover {
  border-color: #1f5e63;
}

.payment-method label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  margin: 0;
}

.card-form,
.paypal-form {
  transition: all 0.3s ease;
}

.card-input-container {
  position: relative;
}

.card-icons {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 5px;
}

.card-icon {
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.card-icon.active {
  opacity: 1;
}

.paypal-info {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
}

.paypal-info p {
  color: #666;
  margin-bottom: 20px;
}

.btn-paypal-preview {
  background: #0070ba;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  transition: background 0.3s ease;
}

.btn-paypal-preview:hover {
  background: #005ea6;
}

.terms-section {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: #666;
  font-size: 0.9rem;
}

.checkbox-container input {
  margin-top: 2px;
}

.terms-link {
  color: #1f5e63;
  text-decoration: none;
}

.terms-link:hover {
  text-decoration: underline;
}

.payment-actions {
  text-align: center;
}

.btn-payment {
  background: linear-gradient(135deg, #1f5e63 0%, #2a8e96 100%);
  color: white;
  border: none;
  padding: 18px 30px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.btn-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(31, 94, 99, 0.3);
}

.btn-payment:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-text {
  font-size: 1.1rem;
}

.btn-amount {
  font-weight: 600;
  font-size: 1.2rem;
}


/* Modal de confirmación */
.confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.confirmation-modal.active {
  opacity: 1;
  visibility: visible;
}

.confirmation-modal.hidden {
  display: none;
}

.confirmation-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
}

.confirmation-modal .modal-content {
  position: relative;
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10002;
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.confirmation-modal.active .modal-content {
  transform: scale(1);
}

.confirmation-success h2 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 500;
}

.confirmation-success p {
  color: #7f8c8d;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.confirmation-details {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: left;
}

.confirmation-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.confirmation-item:last-child {
  margin-bottom: 0;
}

.confirmation-label {
  color: #666;
  font-weight: 500;
}

.confirmation-value {
  color: #333;
  font-weight: 600;
}

.confirmation-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-confirmation {
  background: linear-gradient(135deg, #1f5e63 0%, #2a8e96 100%);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-confirmation.secondary {
  background: transparent;
  color: #1f5e63;
  border: 2px solid #1f5e63;
}

.btn-confirmation:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== CORRECCIÓN PARA OPCIONES DE PAGO ===== */

/* Estilos para opciones de pago corregidas */
.payment-option {
  position: relative;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 10px;
  overflow: hidden;
}

.payment-option:last-child {
  margin-bottom: 0;
}

.payment-option.active {
  border-color: #1f5e63;
  background: rgba(31, 94, 99, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(31, 94, 99, 0.1);
}

.payment-option:hover {
  border-color: #89d1cb;
  transform: translateY(-2px);
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.payment-label:hover {
  background-color: rgba(137, 209, 203, 0.05);
}

/* Indicador visual de selección */
.payment-option::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: white;
  transition: all 0.3s ease;
}

.payment-option.active::after {
  background: #1f5e63;
  border-color: #1f5e63;
}

.payment-option.active::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  z-index: 2;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.payment-option.active::before {
  transform: scale(1);
  animation: checkPop 0.3s ease;
}

@keyframes checkPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Efecto de focus para accesibilidad */
.payment-option input[type="radio"]:focus + .payment-label {
  outline: 2px solid #1f5e63;
  outline-offset: 2px;
}

/* Estilos para los iconos de pago */
.payment-icon {
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.payment-option.active .payment-icon {
  background: rgba(31, 94, 99, 0.1);
  color: #1f5e63;
  transform: scale(1.05);
}

.payment-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  text-align: left;
}

.payment-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  transition: all 0.3s ease;
}

.payment-option.active .payment-title {
  color: #1f5e63;
  font-weight: 700;
}

.payment-desc {
  font-size: 0.9rem;
  color: #666;
  transition: all 0.3s ease;
}

.payment-option.active .payment-desc {
  color: #2a8e96;
}

/* Efecto de pulsación al seleccionar */
@keyframes paymentSelect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}

.payment-option input[type="radio"]:checked + .payment-label {
  animation: paymentSelect 0.3s ease;
}

/* Responsive para opciones de pago */
@media screen and (max-width: 768px) {
  .payment-label {
    padding: 15px;
    gap: 12px;
  }
  
  .payment-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .payment-title {
    font-size: 1rem;
  }
  
  .payment-desc {
    font-size: 0.85rem;
  }
  
  .payment-option::after {
    top: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
  }
  
  .payment-option.active::before {
    top: 17px;
    right: 17px;
    width: 8px;
    height: 8px;
  }
}


/* Términos y condiciones */
.terms-agreement {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.checkbox-container input {
  margin-top: 2px;
}

.terms-link {
  color: #1f5e63;
  text-decoration: none;
}

.terms-link:hover {
  text-decoration: underline;
}

/* Modal de confirmación */
.confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.confirmation-modal.active {
  opacity: 1;
  visibility: visible;
}

.confirmation-modal.hidden {
  display: none;
}

.confirmation-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
}

.confirmation-modal .modal-content {
  position: relative;
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10002;
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.confirmation-modal.active .modal-content {
  transform: scale(1);
}

.confirmation-success h2 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 500;
}

.confirmation-success p {
  color: #7f8c8d;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.confirmation-details {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: left;
}

.confirmation-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.confirmation-item:last-child {
  margin-bottom: 0;
}

.confirmation-label {
  color: #666;
  font-weight: 500;
}

.confirmation-value {
  color: #333;
  font-weight: 600;
}

.confirmation-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-confirmation {
  background: linear-gradient(135deg, #1f5e63 0%, #2a8e96 100%);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-confirmation.secondary {
  background: transparent;
  color: #1f5e63;
  border: 2px solid #1f5e63;
}

.btn-confirmation:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


/* Estilos para Mercado Pago */
.mercado-pago-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid #009ee3;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #009ee3;
  font-weight: bold;
}

.accepted-cards {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.accepted-cards span {
  color: #666;
  font-size: 14px;
}

.card-icons {
  display: flex;
  gap: 10px;
}

.card-icon {
  font-size: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.card-icon.active {
  opacity: 1;
}


/* ===== RESPONSIVE DESIGN ===== */

/* Móvil: 0px a 768px */
@media screen and (max-width: 768px) {
  /* Logo móvil */
  #mobile-logo {
    display: block;
  }
  
  /* Navbar móvil */
  #open-sidebar-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 20px;
    left: auto;
  }
  
  #close-sidebar-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  #navbar {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 85%);
    z-index: 999;
    background-color: #ffffff;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding-top: 60px;
  }
  
  #navbar.show {
    right: 0;
  }
  
  #navbar ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin-top: 50px;
    margin-left: 20px;
  }
  
  #navbar .home-li {
    display: none;
  }
  
  #navbar .list {
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }
  
  #navbar .list:last-child {
    border-bottom: none;
  }
  
  #navbar a {
    width: 100%;
    padding: 20px 25px;
    color: #333333 !important;
    font-size: 1.1rem;
    font-weight: 500;
    justify-content: flex-start;
    transition: all 0.3s ease;
    border: none !important;
  }
  
  #navbar a:hover {
    background-color: #f8f9fa;
    color: #1f5e63 !important;
    transform: translateX(5px);
  }
  
  #navbar a::after {
    display: none;
  }
  
  #navbar a.active-link {
    background-color: #1f5e63;
    color: #ffffff !important;
  }

  /*ajustes en el form*/
  .form-field::after{
    background-color: transparent;
  }

  /* Weather en móvil */
  .weather-dropdown-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    z-index: 1001;
  }

  .weather-forecast {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Layout principal */
  .img-background {
    min-height: 1000px;
    padding-top: 10vh;
    align-items: center;
    justify-content: center;
  }
  
  .content-container {
    width: var(--mobile-content-width);
    padding: 2em 1em;
    align-items: center;
    text-align: center;
  }
  
  .tittle {
    align-items: flex-start;
    text-align: left;
  }
  
  .tittle h1, .tittle h2 {
    text-align: center;
  }
  
  .radio-btn {
    justify-content: center;
  }
  
  .booking-box {
    justify-content: center;
  }
  
  .booking-form {
    flex-direction: column;
    border: 3px solid #fff;
  }
  
  .form-field {
    width: 100%;
  }
  
  .btn-search {
    width: 100%;
    padding: 15px 20px;
    font-size: 14px;
  }
  
  .features-inline {
    gap: 30px;
    flex-direction: column;
  }
  
  .features-section, .video-section {
    margin: 8vh auto;
    padding: 0 5em;
  }

  /* MEJORAS PARA LA SECCIÓN DE VIDEO EN MÓVILES */
  .video-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .video-text {
    margin-top: 0;
    text-align: left;
  }
  
  .video-text h3 {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  
  .services-text {
    margin-bottom: 30px;
    margin-top: 30px;
  }
  
  .service-item {
    justify-content: left;
    text-align: left;
    margin: 0px auto 40px;
    gap: 20px;
  }
  
  .service-item img {
    width: 35px;
    height: 35px;
  }
  
  .service-item p {
    font-size: 1rem;
  }
  
  .video-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    /* Eliminamos cualquier altura fija que pudiera interferir */
    height: auto;
  }

  .video-container video {
    height: 100%;
    /* Aseguramos que el video ocupe todo el contenedor */
    object-fit: cover;
  }
  
  .play-button {
    width: 80px;
    height: 50px;
  }
  
  .play-button::before {
    border-width: 8px 0 8px 14px;
  }
  
  .video-caption {
    margin-top: 15px;
  }
  
  .see-how-text {
    font-size: 1rem;
  }
  
  .modal-content {
    width: 95%;
    max-height: 70vh;
  }
  
  /* Responsive para reviews */
  .reviews-section {
    padding: 60px 0;
  }
  
  .reviews-header h2 {
    font-size: 2.2rem;
  }
  
  .reviews-header p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .reviews-carousel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  
  .review-card {
    padding: 25px;
  }
  
  /* Responsive para Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 1em;
  }
  .adjust{
    margin: 0;
  }

  .footer-section h3.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .contact-item {
    flex-direction: column;
    gap: 20px;
  }
  
  .phone-number, .email-address {
    font-size: 1rem;
  }
  
  .social-link {
    padding: 8px 12px;
  }
  
  .social-text {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding: 20px 1em 0;
  }
  
  /* Adventures responsive */
  .adventures-hero-slider {
    height: 50vh;
  }
  
  .slide-content h1 {
    font-size: 2.5rem;
  }
  
  .slide-content p {
    font-size: 1.2rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .adventures-booking-form {
    padding: 25px;
  }
  
  .adventures-booking-box h2 {
    font-size: 2rem;
  }
  
  /* About Us responsive */
  .about-title h1 {
    font-size: 2.5rem;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-text h2,
  .values-section h2,
  .team-section h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
  
  /* Responsive para página de booking */
  .booking-hero-section {
    padding: 40px 0 30px;
  }
  
  .booking-title h1 {
    font-size: 2rem;
  }
  
  .booking-details-section {
    padding: 40px 0;
  }
  
  .booking-container {
    padding: 0 1em;
  }
  
  .booking-summary {
    padding: 20px;
  }
  
  .booking-summary h2 {
    font-size: 1.5rem;
  }
  
  .booking-details-form {
    padding: 25px;
  }
  
  .form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .phone-input-group {
    flex-direction: column;
  }
  
  .country-code {
    flex: 1;
  }
  
  .total-price {
    font-size: 1.8rem;
  }
  
  .btn-booking {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .payment-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .payment-summary,
  .payment-form-container {
    padding: 25px;
  }
  
  .payment-methods {
    flex-direction: column;
  }
  
  .confirmation-actions {
    flex-direction: column;
  }
  
  .btn-confirmation {
    flex: none;
  }

  .payment-option label {
    padding: 15px;
  }
  
  .payment-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .confirmation-actions {
    flex-direction: column;
  }
  
  .btn-confirmation {
    flex: none;
  }

/*RESPONSIVE PARA PAYMENT*/
  .accepted-cards {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

}

/* Móvil muy pequeño: 0px a 480px */
@media screen and (max-width: 480px) {
  .bookings-slider-vertical {
    gap: 15px;
  }
  
  .slider-control-vertical {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .booking-content {
    padding: 15px;
  }
  
  .booking-content h3 {
    font-size: 1.2rem;
  }
  
  /* Logo móvil pequeño */
  #mobile-logo {
    top: 15px;
    left: 15px;
    padding: 6px 10px;
  }
  
  .mobile-logo-img {
    height: 25px;
  }

  /* Navbar móvil pequeño */
  #open-sidebar-button {
    top: 15px;
    right: 15px;
    padding: 10px;
  }
  
  #open-sidebar-button svg {
    width: 25px;
    height: 25px;
  }
  
  #close-sidebar-button {
    top: 16px;
    right: 205px;
    padding: 15px;
    background-color: #1b565a;
  }
  
  #close-sidebar-button svg {
    width: 20px;
    height: 20px;
  }
  
  #navbar {
    width: min(280px, 90%);
  }
  
  #navbar a {
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  /* Layout principal móvil pequeño */
  .content-container {
    width: 95%;
  }
  
  .tittle h1 {
    font-size: 1.8rem;
  }
  
  .radio-btn {
    font-size: 1rem;
    gap: 1em;
  }
  
  .booking-form {
    border: 2px solid #fff;
  }
  
  .form-field {
    padding: 10px 12px;
  }
  
  .form-field select,
  .form-field input {
    font-size: 13px;
  }
  
  .features-inline {
    gap: 20px;
  }
  
  .feature-item {
    font-size: 1rem;
  }

  /* MEJORAS PARA LA SECCIÓN DE VIDEO EN MÓVILES PEQUEÑOS */
  .video-section {
    margin: 5vh auto;
  }

  .video-text{
    width: 100%;
  }
  
  .video-text h3 {
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: center;
  }
  
  .service-item {
    flex-direction: column;
    gap: 10px;
    margin: 0px auto 30px;
  }
  
  .service-item img {
    width: 30px;
    height: 30px;
  }
  
  .service-item p {
    font-size: 0.9rem;
  }
  
  .video-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
  }

  .video-container video {
    height: 100%;
    object-fit: cover;
  }
  
  .play-button {
    width: 70px;
    height: 40px;
  }
  
  .play-button::before {
    border-width: 6px 0 6px 10px;
  }
  
  .video-caption {
    margin-top: 10px;
  }
  
  .see-how-text {
    font-size: 0.9rem;
  }
  
  .modal-content {
    width: 98%;
    max-height: 60vh;
  }
  
  /* Responsive para reviews móvil pequeño */
  .reviews-header h2 {
    font-size: 1.8rem;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .reviewer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Responsive para Footer móvil pequeño */
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-section h3.footer-title {
    font-size: 1.2rem;
  }
  
  .phone-number, .email-address {
    font-size: 0.9rem;
  }
  
  .social-icons {
    gap: 10px;
  }
  
  .social-link {
    padding: 6px 10px;
  }
  
  .social-text {
    font-size: 0.85rem;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
  }
  
  /* Adventures mobile pequeño */
  .adventures-hero-slider {
    height: 40vh;
  }
  
  .slide-content h1 {
    font-size: 2rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .adventures-booking-form {
    padding: 20px;
  }
  
  /* About Us mobile pequeño */
  .about-hero-section {
    padding: 100px 0 60px;
  }
  
  .about-title h1 {
    font-size: 2rem;
  }
  
  .about-title p {
    font-size: 1.1rem;
  }
  
  .story-text h2,
  .values-section h2,
  .team-section h2,
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .value-card,
  .team-member {
    padding: 30px 20px;
  }
  
  /* Responsive para página de booking en móviles pequeños */
  .booking-hero-section {
    padding: 30px 0 20px;
  }
  
  .booking-title h1 {
    font-size: 1.8rem;
  }
  
  .booking-details-form {
    padding: 20px;
  }
  
  .section-title {
    font-size: 1.2rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .phone-input-group {
    flex-direction: column;
  }
  
  .country-code {
    flex: 1;
  }
  
  .total-price {
    font-size: 1.5rem;
  }
  
  .btn-booking {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Tablet: 769px a 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .img-background {
    min-height: 600px;
    padding-top: 12vh;
  }
  
  .content-container {
    padding: 0 2em;
  }
  
  .booking-form {
    flex-wrap: wrap;
  }
  
  .form-field {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
  }

  .form-field::after{
    background-color: transparent;
  }
  
  .btn-search {
    flex: 1 1 100%;
  }
  
  .img-logo{
    height: 3.5vh;
    transition: height 0.3s ease;
  }
  
  nav a{
    padding-left: 1em;
    padding-right: 1em;
    transition: ease-in;
  }
  
  .booking-slide-group {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .booking-slide-horizontal {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin-bottom: 20px;
  }

  /* MEJORAS PARA LA SECCIÓN DE VIDEO EN TABLETAS */
  .video-section{
    padding: 0 40px;
  }

  .video-content{
    gap: 30px;
  }

  .video-text h3 {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  
  .service-item {
    gap: 25px;
    margin: 0px auto 50px;
  }
  
  .service-item img {
    width: 35px;
    height: 35px;
  }
  
  .service-item p {
    font-size: 1rem;
  }
  
  .video-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
  }

  .video-container video {
    height: 100%;
    object-fit: cover;
  }
  
  /* Responsive para página de booking en tabletas */
  .booking-container {
    padding: 0 1.5em;
  }
  
  .booking-details-form {
    padding: 30px;
  }
  
  .form-row {
    gap: 15px;
  }
}

/* Escritorio: 1025px+ */
@media screen and (min-width: 1025px) {
  .img-background {
    min-height: 800px;
    padding-top: 24vh;
  }
  
  .content-container {
    padding: 7px 4em;
  }
  
  .video-content{
    gap: 60px;
    padding: 0 80px;
  }

  .video-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
  }

  .video-container video {
    height: 100%;
    object-fit: cover;
  }
}
/* ===== ANIMACIONES Y EFECTOS MEJORADOS ===== */

/* Animaciones de carga */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Efectos de hover para tarjetas mejorados */
.booking-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.booking-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Botones animados con efecto onda */
.btn-booking, .btn-confirmation, .btn-payment {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-booking::after, .btn-confirmation::after, .btn-payment::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn-booking:focus:not(:active)::after,
.btn-confirmation:focus:not(:active)::after,
.btn-payment:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Pulsos sutiles para elementos importantes */
@keyframes gentlePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 94, 99, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(31, 94, 99, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 94, 99, 0);
  }
}

.pulse {
  animation: gentlePulse 2s infinite;
}

/* Animación para campos requeridos */
.form-group.required label::after {
  content: '*';
  color: #e74c3c;
  margin-left: 4px;
}

.form-group.required input:invalid,
.form-group.required select:invalid {
  border-color: #e74c3c;
  animation: gentlePulse 1s infinite;
}

/* Transición para cambios de estado */
.status-change {
  transition: all 0.5s ease;
}

/* Animación para iconos de carga */
.rotating {
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Efecto de onda en botones */
.wave-effect {
  position: relative;
  overflow: hidden;
}

.wave-effect:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.wave-effect:focus:not(:active):after {
  animation: wave 1s ease-out;
}

@keyframes wave {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Animación para nuevos elementos */
.slide-in-right {
  animation: slideInRight 0.5s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.5s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Efecto de rebote sutil */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bounce {
  animation: bounce 0.5s ease;
}

/* Transiciones para el formulario */
.form-group {
  transition: all 0.3s ease;
}

.form-group.focused {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(31, 94, 99, 0.1);
}

/* Animación para mensajes de validación */
.validation-message {
  animation: slideDown 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

.validation-message.show {
  max-height: 100px;
  margin-top: 8px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
  }
}

/* Efecto de brillo para elementos importantes */
.highlight {
  position: relative;
  overflow: hidden;
}

.highlight::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

/* Animaciones para checkboxes y radio buttons */
.checkbox-container input:checked ~ .checkmark {
  animation: checkPop 0.3s ease;
}

@keyframes checkPop {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Animación para tarjetas de pago */
.payment-option {
  transition: all 0.3s ease;
}

.payment-option:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-option.active {
  animation: selectPayment 0.5s ease;
}

@keyframes selectPayment {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

/* Animación para elementos que aparecen al hacer scroll */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Efecto de carga para imágenes */
.image-loading {
  position: relative;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Animación para notificaciones */
.notification {
  animation: notificationSlide 0.5s ease;
}

@keyframes notificationSlide {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Efecto de flotación */
.float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animación para iconos de carga personalizados */
.loading-dots::after {
  content: '';
  animation: dots 1.5s infinite;
}

@keyframes dots {
  0%, 20% {
    content: '.';
  }
  40% {
    content: '..';
  }
  60%, 100% {
    content: '...';
  }
}

/* Responsive para animaciones */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Ajustes para dispositivos móviles */
@media screen and (max-width: 768px) {
  .scroll-reveal {
    transition: all 0.5s ease;
  }
  
  .booking-card:hover {
    transform: translateY(-5px);
  }
}
