        :root {
            --dark-blue: #2c467a;
            --navy: #0c1a3a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Gotham', Arial, sans-serif;
        }

        body {
            overflow-x: hidden;
        }

        /* Hero / Slider Area */
        .hero {
            position: relative;
            height: 800px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            transition: background-image 1s ease-in-out;
        }

        /* Contenedor del slider */
        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            
        }

        .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;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            color: white;
            max-width: 500px;
            position: relative;
            z-index: 2;
            margin-left: 15%;
            padding: 20px;
            margin-top: 10%;
        }

        .slide-content h1 {
            font-family: 'Georgia', serif;
            font-size: 56px;
            line-height: 1.1;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .slide-content p {
            font-size: 18px;
            margin-bottom: 25px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .btn-outline {
            display: inline-block;
            padding: 12px 24px;
            border: 1px solid white;
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 13px;
            letter-spacing: 1px;
            transition: 0.3s;
            background: rgba(0,0,0,0.3);
        }

        .btn-outline:hover {
            background: white;
            color: var(--navy);
        }

        /* Search Bar Container */
     .search-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 90%;
    max-width: 1100px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 10; /* Reducido de 10 a 100 para que esté por encima pero permita ver modales */
    border-radius: 4px;
    overflow: visible; /* Cambiado de hidden a visible para que se vea el dropdown */
}

        /* Tabs */
        .tabs {
            display: flex;
            background: #f8f8f8;
        }

        .tab {
            padding: 15px 30px;
            border: none;
            background: none;
            cursor: pointer;
            font-weight: bold;
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }

        .tab:hover {
            background: rgba(255,255,255,0.5);
        }

        .tab.active {
            background: white;
            color: var(--navy);
            border-bottom: 3px solid var(--navy);
        }

        /* Search Form */
        .search-form {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 0.8fr auto;
            align-items: stretch;
        }

        .input-group {
            border-right: 1px solid #eee;
            padding: 15px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
            position: relative;
        }

        .input-group:hover {
            background: #fafafa;
        }

        .input-group:last-child {
            border-right: none;
        }

        .input-group label {
            font-size: 11px;
            color: #999;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .input-val {
            font-size: 14px;
            color: #333;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .promo-input {
            border: none;
            outline: none;
            width: 100%;
            font-size: 14px;
            color: #333;
            background: transparent;
        }

        .btn-search {
            background: var(--navy);
            color: white;
            border: none;
            padding: 0 40px;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            transition: 0.3s;
            font-size: 14px;
        }

        .btn-search:hover {
            background: var(--dark-blue);
        }

        /* Dots Position */
        .dots-container {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 5;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .dot:hover {
            background: rgba(255,255,255,0.8);
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
            border-color: var(--navy);
        }

        /* Modal Styles */
      .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1100; /* Aumentado de 1000 a 1100 */
    justify-content: center;
    align-items: center;
}


        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 8px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            border-bottom: 1px solid #eee;
            background: var(--navy);
            color: white;
        }

        .modal-header h3 {
            margin: 0;
            font-size: 18px;
        }

        .close-modal {
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .close-modal:hover {
            color: #ff6b6b;
        }

        /* Calendar Modal */
        .calendar-container {
            padding: 20px 30px;
        }

        .calendar-month {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .month-nav {
            background: none;
            border: none;
            color: var(--navy);
            font-size: 16px;
            cursor: pointer;
            padding: 10px;
            transition: 0.3s;
        }

        .month-nav:hover {
            color: var(--dark-blue);
        }

        #current-month {
            font-size: 20px;
            font-weight: 600;
            color: #333;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
        }

        .calendar-day {
            padding: 15px;
            text-align: center;
            border: 1px solid #eee;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 4px;
            background: white;
        }

        .calendar-day:hover {
            background: #f0f0f0;
        }

        .calendar-day.selected {
            background: var(--navy);
            color: white;
            border-color: var(--navy);
        }

        .calendar-day.disabled {
            color: #ccc;
            cursor: not-allowed;
            background: #f9f9f9;
        }

        .day-name {
            font-weight: bold;
            color: #666;
            padding: 10px;
            text-align: center;
        }

        .modal-actions {
            padding: 20px 30px;
            border-top: 1px solid #eee;
            text-align: right;
        }

        .save-btn {
            background: var(--navy);
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            border-radius: 4px;
            transition: 0.3s;
            text-transform: uppercase;
        }

        .save-btn:hover {
            background: var(--dark-blue);
        }

        /* Guests Modal */
        .guests-modal-content {
            max-width: 500px;
        }

        .guest-controls {
            padding: 30px;
        }

        .guest-type {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }

        .guest-type:last-child {
            border-bottom: none;
        }

        .guest-info h5 {
            margin: 0 0 5px 0;
            color: #333;
            font-size: 16px;
        }

        .guest-info p {
            margin: 0;
            color: #666;
            font-size: 14px;
        }

        .guest-counter {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .counter-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: white;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .counter-btn:hover:not(:disabled) {
            background: var(--navy);
            color: white;
            border-color: var(--navy);
        }

        .counter-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .counter-value {
            font-size: 20px;
            font-weight: bold;
            min-width: 40px;
            text-align: center;
        }

        /* Estilos para el dropdown de destinos */
.destination-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1001; /* Menor que el modal (1100) pero mayor que otros elementos */
    max-height: 300px;
    overflow-y: auto;
}

        .destination-dropdown.active {
            display: block;
        }

        .destination-option {
            padding: 12px 20px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

        .destination-option:hover {
            background: #f5f5f5;
        }

        .destination-option:last-child {
            border-bottom: none;
        }

        .destination-option i {
            color: #666;
            font-size: 12px;
            width: 20px;
        }

        .selected-destination {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            cursor: pointer;
        }

        .destination-text {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .dropdown-arrow {
            font-size: 10px;
            color: #999;
            transition: transform 0.3s;
        }

        .input-group.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        @media (max-width: 900px) {
            .search-form {
                grid-template-columns: 1fr 1fr;
            }
            
            .hero {
                height: 550px;
            }
            
            .slide-content h1 {
                font-size: 36px;
            }
            
            .search-wrapper {
                transform: translate(-50%, 30%);
                width: 95%;

            }
            
            .dots-container {
                bottom: 120px;
            }
            
            .destination-dropdown {
                position: fixed;
                top: auto;
                left: 0;
                width: 100%;
                max-width: 100%;
                z-index: 1001;
            }
        }

        @media (max-width: 600px) {
            .search-form {
                grid-template-columns: 1fr;
            }
            
            .hero {
                height: 600px;
            }
            
            .slide-content {
                text-align: center;
                margin: 0 auto;
                                margin-top: 30%;

            }
            
            .slide-content h1 {
                font-size: 28px;
            }
            
            .slide-content p {
                font-size: 16px;
            }
            
            .dots-container {
                bottom: 160px;
            }
            
            .modal-content {
                width: 95%;
                margin: 20px;
            }
            
            .calendar-grid {
                gap: 5px;
            }
            
            .calendar-day {
                padding: 10px 5px;
                font-size: 14px;
            }
            
            .destination-dropdown {
                position: fixed;
                top: auto;
                left: 0;
                width: 100%;
                max-width: 100%;
                z-index: 1001;
            }
        }



        /* CSS NAVBAR DESPUES DEL SLIDER */
.hotel-nav {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 20px;
}

.nav-list {
    display: flex;
    justify-content: center; /* Centra los elementos */
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 80px; /* Espacio entre secciones */
    overflow-x: auto; /* Permite scroll horizontal en móviles si no caben */
    white-space: nowrap;
}

/* Estilo de los enlaces */
.nav-link {
    display: inline-block;
    text-decoration: none;
    color: #666; /* Color gris suave original */
    font-family: 'Arial', sans-serif; /* O la tipografía que prefieras */
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 20px 0;
    position: relative;
    transition: color 0.3s ease;
}

/* Cambio a negro profundo al pasar el cursor */
.nav-link:hover, 
.nav-link.active {
    color: #000;
}

/* Línea azul debajo (Efecto de la imagen) */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3b5a7d; /* Azul de la marca */
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* --- RESPONSIVIDAD --- */

/* Ocultar barra de scroll en móviles pero permitir el deslizamiento */
.nav-list::-webkit-scrollbar {
    display: none;
}
.nav-list {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media (max-width: 768px) {
    .nav-list {
        justify-content: flex-start; /* Alinea a la izquierda para que se entienda el scroll */
        gap: 20px;
    }
    
    .nav-link {
        font-size: 11px; /* Un poco más pequeño en móviles */
    }
}


        /* CONTENIDO DESPUES DEL SLIDER */
        /* --- SECCIÓN PRINCIPAL CON PREFIJO ÚNICO --- */
:root {
    --oce-txt-main: #1a1a1a;
    --oce-txt-light: #666;
    --oce-font-serif: 'Playfair Display', serif;
    --oce-font-sans: 'Roboto', sans-serif;
    --primary-blue: #1a2b4e;
    --accent-blue: #3a5082;
    --light-blue: #eef2f8;
    --text-dark: #333;
    --border-color: #ddd;
    --white: #ffffff;
}

/*CSS FORMULARIO*/
/* Contenedor Principal */
.search-container {
    background: var(--white);
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    border-radius: 4px;
}

.input-group { flex: 1; min-width: 220px; position: relative; }

label { 
    display: block; 
    font-size: 11px; 
    font-weight: 700; 
    margin-bottom: 8px; 
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-input {
    width: 100%;
    height: 55px;
    border: 1px solid var(--border-color);
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    background: #fff;
}

.submit-btn {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    height: 55px;
    padding: 0 25px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    min-width: 220px;
}

/* MODALES RESPONSIVOS */
.modal {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    z-index: 1000;
    padding: 20px;
    border-radius: 8px;
    width: 100%; /* Ocupa el ancho del grupo en escritorio */
    min-width: 320px;
}

/* Modal Calendario */
.modal-calendar { max-width: 400px; height: 450px;}
.calendar-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 15px;
}
.calendar-header select { 
    border: 1px solid #eee; 
    padding: 5px; 
    font-weight: bold; 
    border-radius: 4px;
}

.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.day-name { font-size: 11px; font-weight: bold; color: #aaa; text-align: center; padding-bottom: 5px; }
.day {
    padding: 10px 0;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    border-radius: 4px;
}
.day:hover:not(.empty) { background: var(--light-blue); }
.day.selected { background: var(--primary-blue) !important; color: white !important; }
.day.in-range { background: var(--light-blue); }
.day.disabled {
        color: #ccc !important;
        cursor: not-allowed !important;
        background: none !important;
    }

/* Modal Habitaciones */
.modal-rooms { max-width: 400px; height: 400px; overflow-y: auto; }
.room-block {
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    background: #fcfcfc;
}
.room-title { 
    position: absolute; top: -10px; left: 15px;
    background: white; padding: 0 5px; font-size: 11px; font-weight: bold;
   
}
.room-controls { display: flex; justify-content: space-between; align-items: center; }
.counter-btn {
    width: 35px; height: 35px; border: 1px solid var(--accent-blue);
    background: white; color: var(--accent-blue); border-radius: 50%;
    cursor: pointer; font-size: 18px;
}

/* Contacto */
.contact-fields { display: flex; gap: 5px; }
.lada { width: 90px; border: 1px solid var(--border-color); }
.full-input { width: 100%; height: 55px; border: 1px solid var(--border-color); padding: 15px; }

/* Responsividad para móviles */
@media (max-width: 768px) {
    .search-container { flex-direction: column; align-items: stretch; }
    .modal { 
        position: fixed; 
        top: 50%; 
        height: 50%;
        left: 50%; 
        transform: translate(-50%, -50%); 
        width: 90vw; 
    }
}

.oce-main-wrapper {
    max-width: 100%;
    margin: 40px auto;
    padding: 20px;
}

/* --- BLOQUE SUPERIOR (HERO) --- */
.oce-hero-box {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    margin-top: 10%;
}

.oce-img-container {
    flex: 1.2;
    position: relative;
}

.oce-img-main {
    width: 100%;
    height: auto;
    float: left;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.oce-location-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #004b87; /* Azul exacto de la imagen */
    color: #fff;
    padding: 6px 15px;
    font-family: var(--oce-font-sans);
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.oce-title-side {
    flex: 1;
}

.oce-title-side h1 {
    font-family: var(--oce-font-serif);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--oce-txt-main);
    margin-bottom: 20px;
}

.oce-desc-italic {
    font-family: var(--oce-font-sans);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--oce-txt-light);
    text-align: right;
}

.oce-desc {
  font-family: "Gotham", Arial, sans-serif;
  font-style: italic;
  line-height: 1.7;
  color: #444;

  max-height: 8.5em; /* texto visible */
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}

/* Degradado inferior */
.oce-desc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3.5em;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    #ffffff
  );
}

/* Expandido */
.oce-desc.expanded {
  max-height: 1000px;
}

.oce-desc.expanded::after {
  display: none;
}

/* Botón */
.oce-toggle {
  margin-top: 0.5rem;
  background: none;
  border: none;
  padding: 0;

  font-family: "Gotham", Arial, sans-serif;
  font-size: 0.95rem;
  color: #010025;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.oce-toggle .arrow { 
  transition: transform 0.3s ease;
}

/* Flecha al abrir */
.oce-toggle.open .arrow {
  transform: rotate(180deg);
}

.brand-container {
    display: flex;
    flex-wrap: wrap;             /* Permite saltos de línea en móviles */
    justify-content: center;     /* Centra los elementos */
    align-items: flex-end;       /* Alinea todo hacia abajo */
    gap: 30px;                   /* Espacio entre cada marca */
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Tarjeta individual */
.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 160px;            /* Crece y se ajusta, base de 160px */
    max-width: 200px;
    transition: transform 0.3s ease;
}

/* Área de la imagen (El "SRC" que vas a consumir) */
.brand-logo {
    width: 100%;
    height: 70px;               /* Altura controlada para logos */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;        /* No deforma la imagen */
    filter: grayscale(100%) brightness(0.7); 
    opacity: 0.50;
    transition: all 0.3s ease;   /* Hace que los logos se vean grises/oscuros */
}

/* Punto decorativo azul */
.brand-dot {
    width: 5px;
    height: 5px;
    background-color: #21548a;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Texto de la marca */
.brand-text {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: #444;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* --- RESPONSIVIDAD --- */

/* Tablets: 3 por fila */
@media (max-width: 1024px) {
    .brand-card {
        flex: 1 1 30%;
    }
}

/* Celulares: 2 por fila */
@media (max-width: 600px) {
    .brand-container {
        gap: 40px 15px;
    }
    .brand-card {
        flex: 1 1 45%;
    }
    .brand-text {
        font-size: 9px;
    }
}

/* Contenedor Principal */
.mosaic-gallery {
    display: grid;
    /* Creamos 4 columnas iguales */
    grid-template-columns: repeat(4, 1fr);
    /* Definimos filas automáticas */
    grid-auto-rows: 200px; 
    gap: 10px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Configuración de los Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantiene la proporción */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

/* EFECTO ZOOM */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- ASIGNACIÓN DE ESPACIOS (EL MOSAICO) --- */

/* La primera imagen ocupa 2 columnas y 2 filas */
.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* La segunda imagen ocupa 1 columna y 2 filas */
.item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

/* Las imágenes de la fila de abajo son normales (span 1), 
   pero CSS Grid las acomoda solas en los huecos sobrantes. */


/* --- RESPONSIVIDAD --- */

/* Tablets: Pasamos a 2 columnas */
@media (max-width: 992px) {
    .mosaic-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    .item-large, .item-tall {
        grid-column: span 2; /* En tablet todas ocupan el ancho completo o mitad */
    }
}

/* Móviles: 1 sola columna */
@media (max-width: 600px) {
    .mosaic-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .item-large, .item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/*CSS PARA SECCION DE PROMOCION*/

:root {
    --blue-brand: #1a4d8c;
    --text-main: #333;
    --text-light: #666;
}

.promo-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
}

.main-title {
    text-align: center;
    font-family: 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 40px;
}

/* Layout de dos columnas */
.promo-container {
    display: flex;
    align-items: stretch;
    border: 1px solid #eee; /* Opcional: para definir el área */
    gap: 0;
}

.image-side {
    flex: 1.2;
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-side {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #fff;
}

/* Caja del Contador Estilo Imagen */
.countdown-box {
    border: 1px solid var(--blue-brand);
    padding: 20px 10px;
    position: relative;
    margin-bottom: 30px;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
}

.countdown-item span {
    font-size: 2.2rem;
    font-weight: bold;
    display: block;
}

.countdown-item label {
    font-size: 0.6rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.separator {
    font-size: 1.8rem;
    font-weight: bold;
    padding-bottom: 10px;
}

.reserve-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 15px;
    font-size: 0.7rem;
    color: #999;
}

/* Estilos de Texto */
.ocean-week-title {
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 10px;
}

.promo-code {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.promo-code span {
    color: var(--blue-brand);
}

.description {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 20px;
    padding: 0 10px;
}

.offer-details {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.extra-info {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.all-inclusive {
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.footer-link {
    font-size: 0.9rem;
}

.footer-link a {
    color: var(--text-main);
    font-weight: bold;
}

/* Responsividad */
@media (max-width: 850px) {
    .promo-container {
        flex-direction: column;
    }
    
    .image-side {
        height: 300px;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .content-side {
        padding: 30px 15px;
    }
}
/*GRID DE OFFERS*/

/* Contenedor general */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1300px;
    margin: 0 auto;
    font-family: 'Helvetica', Arial, sans-serif;
    background-color: #fff;
}

/* Estructura de la Tarjeta */
.offer-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
}

/* Imagen con Zoom */
.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offer-card:hover .card-image img {
    transform: scale(1.1);
}

/* Bloque Azul de Contenido */
.card-content {
    background-color: #d8ebf2; /* Azul cielo de la imagen */
    padding: 60px 20px 40px 20px;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* --- VARIACIONES DE CORTE --- */
/* Cada una define un ángulo y un solapamiento distinto */

.corte-alto {
    margin-top: -65px;
    clip-path: polygon(0 65px, 100% 0, 100% 100%, 0% 100%);
}

.corte-medio {
    margin-top: -45px;
    clip-path: polygon(0 45px, 100% 15px, 100% 100%, 0% 100%);
}

.corte-bajo {
    margin-top: -35px;
    clip-path: polygon(0 35px, 100% 5px, 100% 100%, 0% 100%);
}

/* Tipografía */
.card-content h3 {
    color: #3e515d; /* Gris azulado oscuro */
    font-size: 1.15rem;
    line-height: 1.3;
    margin: 0 0 12px 0;
    font-weight: bold;
}

.stay-period {
    color: #5a6d7a;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsividad */
@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .card-image {
        height: 220px;
    }
}

/*CSS SERVICIO*/

.services-section {
    background-color: #f0f7fa;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    overflow: hidden; /* Evita desbordes horizontales */
}

.services-title {
    font-size: 80px; /* Tamaño Desktop */
    color: #00050c;
    margin-bottom: 50px;
    font-weight: 400;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.1;
}

/* Grilla Principal: 6 columnas en Desktop */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contenedor Extra: Ocupa todo el ancho disponible */
.extra-services {
    /* Por defecto oculto, JS le quita la clase .is-hidden para mostrarlo */
    grid-column: 1 / -1; /* Esto hace que ocupe SIEMPRE todo el ancho de la fila */
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Mantiene la misma estructura interna */
    gap: 40px 20px;
    width: 100%;
}

/* Clase de utilidad para ocultar */
.is-hidden {
    display: none !important;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%; /* Asegura centrado en su celda */
}

.icon-circle {
    width: 60px;
    height: 60px;
    border: 1px solid #1a4d8c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: white;
    flex-shrink: 0; /* Evita que el círculo se aplaste */
}

.icon-circle img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.service-item p {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
    max-width: 150px;
    margin: 0 auto;
}

/* Botón Ver Más/Menos */
.toggle-button {
    margin-top: 40px;
    background: none;
    border: none;
    color: #000811;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px; /* Ajustado para móvil/desktop */
    font-family: "Gotham", Arial, sans-serif;
    text-decoration: underline;
    text-underline-offset: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.toggle-button.active .arrow {
    transform: rotate(180deg);
}

/* =========================================
   MEDIA QUERIES (RESPONSIVIDAD)
   ========================================= */

/* Tablets y Laptops Pequeñas (max 1024px) */
@media (max-width: 1024px) {
    .services-title {
        font-size: 50px; /* Reducción de título */
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr); /* Cambia a 3 columnas */
        gap: 30px;
    }

    .extra-services {
        grid-template-columns: repeat(3, 1fr); /* Internamente también 3 columnas */
        /* grid-column: 1 / -1;  <-- Ya está definido arriba, funciona automático */
    }
}

/* Móviles (max 600px) */
@media (max-width: 600px) {
    .services-title {
        font-size: 32px; /* Título apto para móvil */
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Cambia a 2 columnas */
        gap: 20px;
    }

    .extra-services {
        grid-template-columns: repeat(2, 1fr); /* Internamente también 2 columnas */
    }

    .service-item p {
        font-size: 0.8rem; /* Texto un poco más pequeño */
        max-width: 100%;
    }
    
    .toggle-button {
        font-size: 16px;
    }
}

/* CSS UBICACION */

.location-section {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
}

.location-container {
    max-width: 1400px; /* Ancho amplio para que luzca el mapa */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Columna de Texto (40%) */
.location-text-col {
    flex: 0 0 40%;
    padding-left: 50px;
}

.location-title {
    font-family: 'Times New Roman', serif;
    font-size: 5rem; /* Título grande como la imagen */
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
}

/* Columna de Imagen (60%) */
.location-image-col {
    flex: 0 0 60%;
    display: flex;
    justify-content: flex-end;
}

.location-image-col img {
    width: 100%; /* La imagen ocupa todo su contenedor de 60% */
    height: auto;
    object-fit: contain;
}

/* Link Leer más */
.read-more-link {
    background: none;
    border: none;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s;
}

.active .arrow {
    transform: rotate(180deg);
}

.is-hidden { display: none; }

/* Botón Google Maps */
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #1a4d8c;
    background-color: floralwhite;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    
    /* Transición para que el sombreado entre suavemente */
    transition: all 0.3s ease;
}

/* Estado al pasar el cursor (Hover) */
.btn-outline:hover {
    /* Sombreado: desplazamiento x, desplazamiento y, desenfoque, color con transparencia */
    box-shadow: 0 8px 15px rgba(26, 77, 140, 0.2);
    
   
}

/* Responsive */
@media (max-width: 1024px) {
    .location-container { flex-direction: column; text-align: center; }
    .location-text-col { padding: 0 20px; flex: 0 0 100%; }
    .location-image-col { flex: 0 0 100%; justify-content: center; }
    .location-title { font-size: 3.5rem; }
}

/* CSS HABITACIONES */

.habitaciones-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.main-title {
    font-family: 'Times New Roman', serif;
    font-size: 4rem;
    margin-bottom: 40px;
}

.tabs-navbar {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 50px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 5px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
}

.tab-btn.active { color: #000; }
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1a4d8c;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.room-card {
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex; 
    flex-direction: column;
    text-align: left;
    width: 100%;
}

/* BLOQUEO DE ERROR AL CARGAR */
.is-hidden {
    display: none !important;
}

.room-img img { width: 100%; height: 260px; object-fit: cover; }
.room-info { padding: 30px; flex-grow: 1; }
.room-info h3 { color: #000; font-size: 1.2rem; margin-bottom: 10px; font-family: 'Segoe UI', sans-serif;}
.room-info p { font-size: 0.9rem; color: #666; line-height: 1.6; margin: 0; font-family: 'Segoe UI', sans-serif;}

/* REGLA DE CENTRADO (Mismo tamaño que las de arriba) */
.centered-card {
    grid-column: span 2;
    width: 100%;
    max-width: calc(50% - 20px); 
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cards-grid { grid-template-columns: 1fr; }
    .centered-card { grid-column: span 1; max-width: 100%; }
}

/*CSS ALL INCLUSIVE*/

.all-inclusive-section {
    background-color: #f0f7fa; /* Fondo azul claro como la imagen */
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.all-inclusive-container {
    max-width: 900px;
    margin: 0 auto;
}

.all-inclusive-title {
    font-family: 'Times New Roman', serif;
    font-size: 5rem; /* Tamaño grande idéntico a Ubicación */
    color: #1a1a1a;
    margin-bottom: 20px;
}

.all-inclusive-subtitle {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #333;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.benefits-grid {
    display: flex;
    justify-content: space-between;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    gap: 40px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    flex: 1;
}

.benefits-list li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

/* El punto (bullet) azul */
.benefits-list li::before {
    content: '•';
    color: #1a4d8c; /* El azul de tu marca */
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .benefits-grid {
        flex-direction: column;
        gap: 0;
    }
    .all-inclusive-title {
        font-size: 3.5rem;
    }
}

/*CSS EXPERIENCIAS*/

.experiencias-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.experiencias-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px; /* Espacio entre cada experiencia */
}

.experiencia-item {
    display: flex;
    align-items: flex-start; /* Alinea al inicio para que el texto largo no se vea raro */
    gap: 60px;
}

/* CONTENEDOR DE IMAGEN CON POSICIÓN RELATIVA */
.exp-image-container {
    position: relative;
    flex: 0 0 480px; /* Ancho fijo de la imagen */
    height: 320px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.main-exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* LOGO SUPERPUESTO (ARRIBA IZQUIERDA) */
.exp-logo-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 90px; /* Tamaño del logo */
    z-index: 10;
    /* Se elimina el background-color anterior para que sea transparente */
    background-color: rgba(207, 203, 203, 0.85); /* Fondo blanco traslúcido */
}

.exp-logo-overlay img {
    width: 100%;
    height: auto;
    display: block;
    /* Esta sombra es opcional, pero ayuda a que el logo se vea si la foto es clara */
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

/* CONTENIDO DE TEXTO */
.exp-content {
    flex: 1;
    text-align: left;
}

.exp-content h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.2;
}

.exp-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

/* LISTAS DE BENEFICIOS */
.exp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exp-list li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.exp-list li::before {
    content: '•';
    color: #01050a; /* Azul corporativo */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* RESPONSIVE: De 2 columnas a 1 sola para móviles */
@media (max-width: 992px) {
    .experiencia-item {
        flex-direction: column;
        gap: 30px;
    }

    .exp-image-container {
        flex: 0 0 auto;
        width: 100%;
        height: 280px;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .exp-content h3 {
        font-size: 1.8rem;
    }
}

/*CSS EVENTOS*/

.eventos-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.section-title {
    font-family: 'Times New Roman', serif;
    font-size: 4rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.eventos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tarjeta principal */
.evento-card {
    flex: 1;
    max-width: 550px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Contenedor de Imagen con el Logo superpuesto */
.evento-image-container {
    position: relative;
    width: 100%;
    height: 350px; /* Altura fija para que ambas imágenes sean iguales */
    overflow: hidden;
}

.evento-image-container img:not(.exp-logo-overlay img) {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Logo en la esquina superior izquierda */
.exp-logo-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    z-index: 10;
    background-color: transparent; /* Fondo transparente */
}

.exp-logo-overlay img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

/* Texto de la tarjeta */
.evento-info {
    padding: 30px;
    flex-grow: 1;
}

.evento-info h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: bold;
        font-family: 'Segoe UI', sans-serif;

}

.evento-info p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsivo para móviles */
@media (max-width: 850px) {
    .eventos-container {
        flex-direction: column;
        align-items: center;
    }
    .evento-card {
        width: 100%;
    }
    .section-title {
        font-size: 3rem;
    }
}

/* CSS PREMIOS*/

.premios-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
}

/* Cabecera centrada sin botón */
.premios-header {
    text-align: center;
    margin-bottom: 60px;
}

.premios-title {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: normal;
}

/* Cuadrícula de Premios */
.premios-grid {
    display: flex;
    justify-content: center;
    gap: 120px; /* Espacio entre los certificados */
    text-align: center;
}

.premio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
}

/* Contenedor de los logos para asegurar alineación horizontal */
.premio-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.premio-logo img {
    max-width: 200px;
    max-height: 100%;
    object-fit: contain;
}

/* Estilo del texto informativo */
.premio-info .dot {
    color: #1a4d8c;
    font-size: 1.8rem;
    display: block;
    margin-bottom: 5px;
    line-height: 1;
}

.premio-info h4 {
    font-size: 0.95rem;
    font-weight: bold;
    color: #222;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.premio-info p {
    font-size: 0.85rem;
    color: #555;
    margin: 3px 0;
    text-transform: uppercase;
    line-height: 1.4;
}

.premio-info .year {
    color: #999;
    font-weight: normal;
    margin-top: 6px;
}

/* RESPONSIVE: Adaptación a dispositivos móviles */
@media (max-width: 768px) {
    .premios-title {
        font-size: 2.5rem;
    }

    .premios-grid {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }
    
    .premios-section {
        padding: 50px 20px;
    }
}

/* STAY GREEN CSS*/

.stay-green-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

/* Header Stay Green */
.stay-green-container {
    max-width: 1000px;
    margin: 0 auto 100px auto;
}

.sg-logo {
    width: 140px;
    margin-bottom: 20px;
}

.sg-title, .contact-title {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.sg-intro {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

/* Grids de Iconos */
.sg-icons-grid, .contact-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

/* Círculos de Iconos */
.icon-circle, .contact-circle {
    width: 70px;
    height: 70px;
    border: 1.5px solid #1a4d8c; /* Azul marino corporativo */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    padding: 15px;
}

.icon-circle img, .contact-circle img {
    width: 100%;
    height: auto;
}

/* Textos de Sostenibilidad */
.sg-icon-item p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

/* Estilos de Contacto */
.contact-hub {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-info {
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.contact-link {
    display: block;
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
}

.contact-address {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    max-width: 220px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sg-title, .contact-title {
        font-size: 2rem;
    }
    .sg-icons-grid, .contact-grid {
        flex-direction: column;
        align-items: center;
    }
    .contact-item {
        margin-bottom: 30px;
    }
}

/*CSS SUGERENCIAS*/

.sugeridos-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.sugeridos-title {
    font-family: 'Times New Roman', serif;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.sugeridos-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Permite que bajen en móviles */
}

/* Tarjeta de Hotel */
.hotel-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-img {
    width: 100%;
    height: 220px;
}

.hotel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Información del Hotel */
.hotel-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hotel-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    letter-spacing: 0.5px;
}

.stars {
    color: #c5a059; /* Dorado para estrellas */
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Etiquetas (Badges) */
.hotel-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.hotel-badges span {
    font-size: 0.65rem;
    background-color: #eef2f6;
    color: #555;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Ubicación */
.location {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto; /* Empuja la ubicación al final */
}

.loc-icon {
    width: 14px;
    opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .sugeridos-grid {
        gap: 20px;
    }
    .hotel-card {
        max-width: 45%; /* 2 por fila en tablets */
    }
}

@media (max-width: 768px) {
    .sugeridos-title {
        font-size: 2.2rem;
    }
    .hotel-card {
        max-width: 100%; /* 1 por fila en móviles */
        flex: 0 0 100%;
    }
}



/* Estilos del Botón Flotante */
.rating-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #3b5388;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  font-family: Arial, sans-serif;
  cursor: pointer;
  display: block !important; /* Fuerza la visibilidad */
}

.rating-content { display: flex; align-items: center; gap: 15px; }
.big-score { font-size: 24px; font-weight: 300; }
.small-total { font-size: 16px; opacity: 0.9; }
.rating-text { display: flex; flex-direction: column; }
.status { font-size: 15px; font-weight: 500; }
.count { font-size: 12px; opacity: 0.8; }

/* Estilos de la Ventana Modal */
.modal-overlay {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 10000;
}

.modal-container {
  width: 280px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  overflow: hidden;
  color: #333;
}

.modal-header-blue {
  background-color: #3b5388;
  color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.modal-main-score { padding: 20px; text-align: center; border-bottom: 1px solid #eee; }
.score-big { font-size: 40px; font-weight: bold; }
.modal-breakdown { padding: 15px; }
.breakdown-item { display: flex; justify-content: space-between; margin-bottom: 8px}

/* --- BLOQUE DE TARJETAS (GRID) --- */


.oce-services-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.oce-item-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

.oce-item-card h3 {
    font-family: var(--oce-font-sans);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--oce-txt-main);
}

.oce-item-card p {
    font-family: var(--oce-font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--oce-txt-light);
}

/* --- AJUSTE PARA MÓVILES --- */
@media (max-width: 850px) {
    .oce-hero-box {
        flex-direction: column;
    }
    .oce-main-wrapper {
 
    margin-top: 40%;
}

    
    .oce-services-layout {
        grid-template-columns: 1fr;
    }

    .oce-title-side h1 {
        font-size: 2.5rem;
    }
    
    .oce-desc-italic {
        text-align: left;
    }
}

/* Seccion 3 */
/* --- ESTILOS FINALES IDENTICOS --- */

.sig-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Header */
.sig-header {
    text-align: center;
    margin-bottom: 50px;
}

.sig-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900; /* Negrita extrema */
    color: #1a1a1a;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.sig-benefits-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem; /* Más grande */
    color: #000;
    margin-bottom: 8px;
}

.sig-benefits-nav strong {
    font-weight: 900;
}

.sig-divider {
    color: #ddd;
}

.sig-checkout-info {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #444;
}

/* Grid & Slider */
.sig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card Visuals */
.sig-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 15px;
}

.sig-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* La caja celeste con inclinación exacta */
.sig-info-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 94%;
    background-color: #e9f2f8; 
    padding: 25px 20px;
    min-height: 110px;
    display: flex;
    align-items: center;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

.sig-info-box p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem; /* Texto de tarjeta más grande */
    font-weight: 800; /* Negrita pesada */
    line-height: 1.1;
    color: #1a1a1a;
}

/* Link Ver detalles */
.sig-more-link {
    text-decoration: none;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    font-weight: 900; /* Negrita máxima */
    display: flex;
    align-items: center;
    gap: 12px;
}

.sig-arrow {
    font-size: 1.6rem;
    font-weight: 300;
}

/* --- RESPONSIVO MÓVIL (SLIDER OPTIMIZADO) --- */

/* --- RESPONSIVO MÓVIL: MINI CARDS COMPACTAS --- */

@media (max-width: 900px) {
    .sig-slider-container {
        margin: 0 -20px; 
        padding: 0 20px;
        overflow-x: auto;
        scrollbar-width: none; /* Oculta scroll en Firefox */
        -webkit-overflow-scrolling: touch;
    }

    .sig-slider-container::-webkit-scrollbar {
        display: none; /* Oculta scroll en Chrome/Safari */
    }

    .sig-slider-mobile {
        display: flex; 
        gap: 12px; 
        scroll-snap-type: x mandatory;
        padding-bottom: 15px;
    }

    .sig-card {
        /* Tamaño mini: permite ver casi 2.5 tarjetas en pantalla */
        min-width: 180px; 
        max-width: 280px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .sig-img-wrapper {
        /* Proporción vertical para que se vean más estilizadas */
        aspect-ratio: 4 / 5; 
        margin-bottom: 8px;
    }

    /* Caja celeste mini */
    .sig-info-box {
        width: 100%; 
        padding: 8px;
        min-height: 50px; 
        clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    }

    

    .sig-info-box p {
        font-size: 1rem; /* Texto pequeño y compacto */
        font-weight: 800;
        line-height: 1.1;
    }

    /* Ajuste de textos de cabecera para que no queden gigantes al lado de las cards */
    .sig-main-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .sig-benefits-nav {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 4px;
    }

    .sig-checkout-info {
        font-size: 0.85rem;
    }

    .sig-more-link {
        font-size: 0.75rem;
        font-weight: 900;
    }

    .sig-arrow {
        font-size: 1rem;
    }
}

/* Ajuste extremo para pantallas de menos de 350px */
@media (max-width: 350px) {
    .sig-card {
        min-width: 125px;
    }
}

/* Ajuste para pantallas muy pequeñas */
@media (max-width: 400px) {
    .sig-card {
        min-width: 190px; /* Aún más pequeña en teléfonos mini */
    }
}

/* Seccion 3 */
/* RESET DE SEGURIDAD PARA ESTA SECCIÓN */
#cl-h10-loyalty, #cl-h10-loyalty * {
    box-sizing: border-box !important;
    margin: 0; padding: 0;
    border: none;
}

#cl-h10-loyalty {
    padding: 80px 20px !important;
    background-color: #ffffff !important;
    font-family: 'Roboto', sans-serif !important;
    display: block !important;
}

.cl-h10-main-container {
    max-width: 1300px;
    margin: 0 auto !important;
    display: flex !important;
    align-items: stretch !important; /* Mismo nivel de altura */
    gap: 60px !important;
}

/* LADO VISUAL */
.cl-h10-visual-box {
    flex: 1 !important;
    display: flex !important;
}

.cl-h10-img-fluid {
    width: 100% !important;
    height: 100% !important; /* Llena el alto del contenedor nivelado */
    object-fit: cover !important;
    display: block !important;
}

/* LADO CONTENIDO */
.cl-h10-content-box {
    flex: 1.2 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* Centrado vertical con la imagen */
}

.cl-h10-hero-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 4rem !important;
    font-weight: 900 !important;
    line-height: 0.95 !important;
    color: #1a2b4e !important;
    margin-bottom: 25px !important;
}

.cl-h10-italic-quote {
    font-size: 1.25rem !important;
    font-style: italic !important;
    text-align: right !important;
    color: #555555 !important;
    margin-bottom: 50px !important;
    line-height: 1.4 !important;
}

/* MARCO DE BENEFICIOS */
.cl-h10-features-frame {
    border: 1px solid #d1d9e0 !important;
    padding: 50px 30px 0 30px !important;
    position: relative !important;
}

.cl-h10-features-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    text-align: center !important;
}

.cl-h10-feature-card {
    display: flex !important;
    flex-direction: column !important; /* WEB: Icono arriba */
    align-items: center !important;
}

.cl-h10-icon-container {
    margin-bottom: 15px !important;
    color: #1a2b4e !important;
}

.cl-h10-icon-container svg { width: 35px; height: 35px; }

.cl-h10-feature-desc {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    color: #333333 !important;
}

/* BOTÓN */
.cl-h10-btn-anchor {
    text-align: center !important;
    margin-top: 40px !important;
    margin-bottom: -28px !important;
}

.cl-h10-cta-button {
    display: inline-block !important;
    background-color: #3e527a !important;
    color: #ffffff !important;
    padding: 16px 45px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    letter-spacing: 1px !important;
}

/* --- MÓVIL --- */
@media (max-width: 900px) {
    #cl-h10-loyalty { background-color: #f0f7fb !important; padding: 40px 15px !important; }
    .cl-h10-main-container { flex-direction: column !important; gap: 30px !important; }
    .cl-h10-visual-box { display: none !important; }
    .cl-h10-hero-title { font-size: 2.8rem !important; text-align: center !important; }
    .cl-h10-italic-quote { text-align: center !important; font-size: 1.1rem !important; }
    .cl-h10-features-frame { border: none !important; padding: 0 !important; }
    .cl-h10-features-grid { display: flex !important; flex-direction: column !important; text-align: left !important; gap: 25px !important; }
    
    .cl-h10-feature-card {
        flex-direction: row !important; /* MÓVIL: Icono izquierda */
        gap: 15px !important;
    }

    .cl-h10-icon-container {
        min-width: 50px !important; height: 50px !important;
        border: 1px solid #1a2b4e !important;
        border-radius: 50% !important;
        display: flex !important; align-items: center !important; justify-content: center !important;
        margin-bottom: 0 !important;
    }
    .cl-h10-icon-container svg { width: 24px; height: 24px; }
    .cl-h10-feature-desc { font-size: 1.05rem !important; }
    .cl-h10-btn-anchor { margin-bottom: 0 !important; margin-top: 40px !important; }
    .cl-h10-cta-button { width: 100% !important; }
}


/* Slider 2 */

/* Añade estas reglas al CSS existente */

#gastro-responsive-sec {
    max-width: 1350px;
    margin: 60px auto !important;
    padding: 0 20px !important;
    font-family: 'Roboto', sans-serif !important;
    overflow: hidden !important;
    width: 100%;
    box-sizing: border-box !important;
}

.g-header { 
    text-align: center; 
    margin-bottom: 40px; 
    max-width: 1200px; /* Limita el ancho del header */
    margin-left: auto;
    margin-right: auto;
}

.g-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem; 
    margin-bottom: 10px; 
    padding: 0 20px; /* Añade padding para que no toque los bordes */
}

.g-subtitle {
    padding: 0 20px; /* Añade padding para que no toque los bordes */
}

/* Contenedor principal del slider - LIMITA SU ANCHO */
.g-viewport {
    position: relative;
    overflow: hidden !important;
    width: 100%;
    max-width: 1200px; /* ¡IMPORTANTE! Limita el ancho máximo */
    margin: 0 auto; /* Centra el slider */
    cursor: grab;
    touch-action: pan-y;
}

.g-track {
    display: flex;
    gap: 15px;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

/* --- AJUSTES DE TARJETAS PARA WEB --- */
.g-card {
    min-width: calc(25% - 11.25px);
    flex-shrink: 0;
    max-width: calc(25% - 11.25px); /* Añade max-width para controlar tamaño máximo */
}

/* Contenedor de imagen con ancho controlado */
.g-img-box {
    position: relative;
    aspect-ratio: 1 / 1.3;
    overflow: hidden;
    border-radius: 4px;
    width: 100%; /* Asegura que ocupe el 100% del contenedor padre */
    height: 100%;
}

/* La imagen NO debe exceder el contenedor */
.g-img-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    pointer-events: none;
    display: block; /* Elimina espacio fantasma debajo de la imagen */
}

/* --- MEDIA QUERIES --- */

/* Tablet (hasta 1024px): 2 Tarjetas */
@media (max-width: 1024px) {
    .g-card {
        min-width: calc(50% - 7.5px);
        max-width: calc(50% - 7.5px); /* Añade también en tablet */
    }
    .g-title { font-size: 2rem; }
    
    /* Ajusta el viewport para tablet */
    .g-viewport {
        max-width: 90%; /* Usa porcentaje en tablet */
    }
}

/* Móvil (hasta 600px): 1 Tarjeta + asomo */
@media (max-width: 600px) {
    #gastro-responsive-sec { 
        padding: 0 15px !important; 
    }

    .g-viewport {
        max-width: 100%; /* En móvil usa el 100% menos padding */
        padding: 0 5px; /* Pequeño padding lateral */
    }

    .g-track {
        gap: 10px !important; 
    }

    .g-card {
        min-width: 85vw !important; 
        max-width: 85vw !important;
    }

    .g-img-box {
        width: 100% !important;
        aspect-ratio: 1 / 1.4 !important; 
    }
    
    .g-nav {
        display: none;
    }
}

/* Para pantallas muy grandes (más de 1400px) puedes opcionalmente limitar aún más */
@media (min-width: 1400px) {
    .g-viewport {
        max-width: 1300px;
    }
}

/* Resto de tus estilos existentes... */
.g-overlay {
    position: absolute;
    top: 15px; left: 15px; right: 15px; bottom: 15px;
    border: 1px solid rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.2);
}



/* --- CONTENEDOR PRINCIPAL --- */
.hotel-top {
    display: flex;
    flex-direction: column;
    /* Ajusta este padding-top según el alto de tu header real */
    padding: 65px 20px 30px 20px; 
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    font-family: 'Gotham', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

/* --- BLOQUE DE INFORMACIÓN --- */
.hotel-info {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start asegura que todo se pegue a la izquierda en web */
    align-items: flex-start; 
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* Centra el bloque en pantallas muy grandes, pero el texto sigue a la izquierda */
}

/* --- TÍTULO Y ESTRELLAS --- */
.hotel-info h1 {
    margin: 0 0 15px 0;
    font-size: 28px;
    font-weight: 600;
    color: #0c1a3a;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.stars {
    color: #9e8141;
    font-size: 18px;
}

/* --- ETIQUETAS (TAGS) --- */
.hotel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px; /* Espacio antes de la sección de contacto */
}

.tag {
    background-color: #b8d0ee;
    color: #000;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- SECCIÓN DE CONTACTO (UBICACIÓN, TEL, EMAIL) --- */
.contact-container {
    display: flex;
    flex-direction: column;
    /* Aquí controlas el espacio ligero entre cada dato de contacto */
    gap: 12px; 
    width: 100%;
    align-items: flex-start;
}

.hotel-meta, .hotel-contact {
    margin: 0;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: flex-start; /* Alineación perfecta incluso si el texto se rompe en 2 líneas */
    text-align: left;
}

.hotel-meta i, .hotel-contact i {
    color: #999;
    margin-right: 12px;
    min-width: 18px;
    text-align: center;
    padding-top: 2px; /* Alineación visual con el texto */
}

/* --- RESPONSIVO PARA MÓVIL --- */
@media (max-width: 768px) {
    .hotel-top {
        padding-top: 30px; /* Menos espacio superior en móviles si el header es más pequeño */
    }

    .hotel-info h1 {
        font-size: 22px;
    }

    .contact-container {
        gap: 10px; /* Un poco más compacto en móviles */
    }
}


.g-overlay h3 { 
    color: white; 
    text-align: center; 
    font-size: 1.2rem; 
    text-transform: uppercase; 
    padding: 10px; /* Añade padding para que el texto no toque los bordes */
}

/* Flechas Navegación */
.g-nav {
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%);
    background: white; 
    border: none; 
    border-radius: 50%;
    width: 40px; 
    height: 40px; 
    z-index: 10; 
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.g-nav.prev { left: 10px; }
.g-nav.next { right: 10px; }


/* ICONOS SECCION 4 */



        .x-section {
            width: 100%;
            color: black;
            background-color: #e6f5fc;
        }

        .x-hero {
            height: 450px;
            background-image: url('https://pro-static.h10hotels.com/gallery/T5D3/AllInclusiveOcean.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            position: relative;
                        color: black;

        }

        .x-hero-box {
            background-color: #e6f5fc;
            padding: 40px 60px;
            text-align: center;
            transform: translateY(50%);
            z-index: 10;
            width: 80%;
                        color: black;

            max-width: 900px;
        }

        .x-title {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            color: #1a2b48;
            margin: 0 0 10px 0;
            font-weight: 700;
        }

        .x-subtitle {
            font-size: 28px;
            color: black;
            margin: 0;
            font-weight: 300;
        }

        .x-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 140px 20px 40px;
            text-align: center;
        }

        .x-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px 20px;
        }

        .x-extra {
            display: flex;
            justify-content: center;
            gap: 120px;
            margin-top: 50px;
        }

        .hidden { display: none !important; }

        .x-item {
            display: flex;
            flex-direction: column; /* Vertical en escritorio */
            align-items: center;
            text-align: center;
        }

        .x-icon {
            width: 80px;
            height: 80px;
            border: 1px solid #1a2b48;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #1a2b48;
            margin-bottom: 20px;
            flex-shrink: 0; /* Evita que el círculo se deforme en móvil */
        }

        .x-item p {
            font-size: 15px;
            color: black;
            line-height: 1.4;
            margin: 0;
            max-width: 200px;
        }

        .x-btn {
            margin-top: 60px;
            background: #1a2b48;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s;
        }

        /* --- AJUSTES PARA MÓVIL --- */
        @media (max-width: 768px) {
            .x-grid {
                grid-template-columns: 1fr; /* Una sola columna para que luzca mejor el horizontal */
                gap: 30px;
                text-align: left;
            }

            .x-item {
                flex-direction: row; /* Icono a la izquierda, texto a la derecha */
                align-items: center;
                text-align: left;
            }

            .x-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
                margin-bottom: 0; /* Quitamos el margen inferior */
                margin-right: 20px; /* Añadimos margen a la derecha */
            }

            .x-item p {
                max-width: 100%; /* El texto puede ocupar el resto de la fila */
            }

            .x-extra {
                flex-direction: column;
                gap: 30px;
                margin-top: 30px;
            }

            .x-title { font-size: 28px; }
            .x-hero-box { padding: 30px 20px; width: 85%; }
            
            .x-hero { height: 350px; }
            .x-content { padding-top: 100px; }
        }


        /* Seccion 5 */

        .exp-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.exp-header {
    text-align: center;
    margin-bottom: 50px;
}

.exp-title {
    font-size: 2.8rem;
    font-family: serif;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.exp-subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Nav Tabs */
.exp-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 5px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.exp-tab-btn {
    background: none;
    border: none;
    padding: 15px 15px;
    cursor: pointer;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    font-weight: bold;
    color: #999;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
    text-transform: uppercase;
}

.exp-tab-btn.active {
    color: #000;
    border-bottom: 3px solid #000;
}

/* Tab Panels */
.exp-panel {
    display: none;
    animation: expFade 0.4s ease-in-out;
}

.exp-panel.active {
    display: block;
}

.exp-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.exp-flex.exp-reverse {
    flex-direction: row-reverse;
}

.exp-img-box {
    flex: 1.2;
}

.exp-img-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.exp-text-box {
    flex: 1;
}

.exp-panel-title {
    font-family: serif;
    font-size: 3rem;
    color: #1a2b48;
    margin-bottom: 25px;
}

.exp-panel-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
}

/* Botón CTA */
.exp-cta {
    display: inline-block;
    background: #3b507d;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.exp-cta:hover {
    background: #2a3a5c;
}

/* Animación de entrada */
@keyframes expFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .exp-flex, .exp-flex.exp-reverse {
        flex-direction: column;
        gap: 30px;
    }
    .exp-text-box {
        text-align: center;
    }
    .exp-img-box img {
        height: 350px;
    }
}


/* Footer */

.exp-footer {
    background-color: #fff;
    border-top: 1px solid #eee;
    padding: 60px 20px 20px 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.exp-footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.exp-footer-col {
    flex: 1;
    min-width: 200px;
}

.exp-footer-title {
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #000;
}

.exp-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exp-list-header {
    font-size: 0.75rem;
    font-weight: bold;
    margin: 15px 0 5px 0;
    color: #333;
}

.exp-footer-list li a {
    text-decoration: none;
    color: #666;
    font-size: 0.75rem;
    line-height: 1.8;
}

.exp-footer-list li a:hover {
    color: #000;
    text-decoration: underline;
}

/* Columna de Acción (Derecha) */
.exp-footer-action {
    flex: 1.5;
}

.exp-newsletter p {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.exp-footer-btn {
    background-color: #3b507d;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 30px;
}

.exp-social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.exp-icon {
    width: 30px;
    height: 30px;
    background-color: #999;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    cursor: pointer;
}

.exp-app-links {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.exp-copyright p {
    font-size: 0.7rem;
    color: #666;
    margin: 2px 0;
}

/* Barra inferior */
.exp-footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.exp-footer-bottom a {
    font-size: 0.65rem;
    color: #666;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .exp-footer-main {
        flex-direction: column;
    }
    .exp-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ==========================================================================
   BLOQUE DE OPTIMIZACIÓN RESPONSIVA GLOBAL (AGREGAR AL FINAL DEL CSS)
   ========================================================================== */

/* 1. Ajuste Global de Imágenes y Contenedores */
img {
    max-width: 100%;
    height: auto;
}

body, html {
    overflow-x: hidden; /* Evita desplazamiento horizontal accidental */
    width: 100%;
}

/* 2. Optimización del HERO y SLIDER en Móviles */
@media (max-width: 768px) {
    .hero {
        height: auto; /* Dejar que el contenido defina la altura */
        min-height: 500px;
        display: flex;
        flex-direction: column;
    }

    .slider-container {
        height: 400px; /* Altura fija para la imagen en móvil */
        position: absolute;
        top: 0;
    }

    .slide-content {
        margin: 0;
        padding: 60px 20px 20px 20px;
        text-align: center;
        width: 100%;
        margin-top: 60px; /* Espacio para header si existe */
    }

    .slide-content h1 {
        font-size: 2rem; /* Reducción drástica de fuente */
    }

    /* Buscador: Ya no flotante, sino estático debajo del slider */
    .search-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 380px; /* Empujarlo debajo del slider */
        box-shadow: none;
        border-radius: 0;
    }

    .search-form {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .input-group {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px;
    }

    .btn-search {
        padding: 20px;
        width: 100%;
    }

    .dots-container {
        bottom: auto;
        top: 350px; /* Posicionar los puntos dentro del área de imagen */
    }
}

/* 3. Ajuste de Tipografía Global (Clamp para escalado suave) */
@media (max-width: 1024px) {
    h1, .oce-title-side h1, .services-title, .location-title, 
    .main-title, .all-inclusive-title, .section-title, 
    .premios-title, .sugeridos-title, .sig-main-title, 
    .cl-h10-hero-title, .x-title, .exp-panel-title {
        /* Usa clamp: mínimo 2rem, ideal 5vw, máximo el tamaño original aprox */
        font-size: clamp(2rem, 5vw, 3.5rem) !important; 
        line-height: 1.2;
    }
}

/* 4. Sección Principal y Marcas */
@media (max-width: 900px) {
    .oce-main-wrapper {
        margin-top: 20px; /* Quitar el margen gigante del original */
        padding: 10px;
    }

    .oce-hero-box {
        margin-top: 0;
        gap: 20px;
    }

    .brand-container {
        gap: 20px;
        padding: 30px 10px;
    }

    .brand-card {
        flex: 1 1 40%; /* 2 columnas en móvil */
    }
}

/* 5. Mosaico de Imágenes */
@media (max-width: 600px) {
    .mosaic-gallery {
        grid-template-columns: 1fr; /* 1 columna */
        grid-auto-rows: 250px;
    }
    
    .item-large, .item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* 6. Grid de Ofertas (Offers) */
@media (max-width: 768px) {
    .offers-grid {
        padding: 20px 10px;
        grid-template-columns: 1fr;
    }

    .offer-card {
        margin-bottom: 20px;
    }
}

/* 7. Servicios (Iconos circulares) */
@media (max-width: 768px) {
    .services-grid, .extra-services {
        grid-template-columns: repeat(2, 1fr) !important; /* Forzar 2 columnas */
        gap: 30px 10px;
    }

    .services-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
}

/* 8. Ubicación y Mapas */
@media (max-width: 900px) {
    .location-container {
        flex-direction: column-reverse; /* Pone el texto arriba, mapa abajo */
    }
    
    .location-text-col, .location-image-col {
        flex: 0 0 100%;
        padding: 0 20px;
        text-align: center;
    }

    .location-image-col {
        margin-bottom: 30px;
    }
}

/* 9. Habitaciones (Tabs y Cards) */
@media (max-width: 768px) {
    .tabs-navbar {
        flex-wrap: wrap; /* Permitir que los tabs bajen de línea */
        gap: 15px;
    }

    .tab-btn {
        font-size: 0.8rem;
        padding: 10px;
        flex: 1 1 auto; /* Ancho automático */
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .room-card, .centered-card {
        max-width: 100%;
        grid-column: auto;
    }
}

/* 10. Experiencias (Imagen izquierda, texto derecha) */
@media (max-width: 900px) {
    .experiencia-item {
        flex-direction: column;
        gap: 20px;
    }

    .exp-image-container {
        width: 100%;
        height: 250px;
        flex: auto;
    }
    
    .exp-content {
        padding: 0 10px;
    }
}

/* 11. Eventos (Tarjetas verticales) */
@media (max-width: 850px) {
    .eventos-container {
        flex-direction: column;
    }
    
    .evento-image-container {
        height: 200px; /* Reducir altura en móvil */
    }
}

/* 12. Premios */
@media (max-width: 768px) {
    .premios-grid {
        gap: 40px;
    }
    
    .premio-item {
        max-width: 100%;
    }
}

/* 13. Stay Green (Iconos) */
@media (max-width: 600px) {
    .sg-icons-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en vez de flex wrap desordenado */
        gap: 30px;
    }
    
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* 14. Modales */
@media (max-width: 600px) {
    .modal-content {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .calendar-grid {
        gap: 2px;
    }

    .calendar-day {
        padding: 10px 2px;
        font-size: 12px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* 15. Ajustes finales para Section X (Hero azul claro) */
@media (max-width: 768px) {
    .x-hero-box {
        position: relative;
        transform: none; /* Quitar el centrado absoluto */
        width: 90%;
        margin: -50px auto 0 auto; /* Subir un poco sobre la imagen */
    }
    
    .x-hero {
        align-items: flex-start; /* Alinear imagen arriba */
        height: 300px;
    }

    .x-extra {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}