/* hotel-detail.css */

/* ===== Configuración Básica ===== */
body {
    padding-top: 90px;
    /* Altura del navbar */
}

.logo-max {
    max-width: 250px !important;
}

/* ===== Hero Section ===== */
.hotel-hero {
    position: relative;
    width: 100%;
    min-height: clamp(250px, 40vw, 50vh);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-align: center;
    overflow: hidden;
}

.hotel-title-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hotel-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin: 0;
    color: #333;
}

/* ===== Indicador de Sede ===== */
.sede-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff5722;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sede-indicator i {
    font-size: 1.2rem;
}

.sede-subtitle {
    color: #ff5722;
    font-weight: bold;
    margin-top: 8px;
    font-size: 1.4rem;
}

/* ===== Carrusel de imágenes del hotel ===== */
.coverflow-carousel {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
}

.coverflow-item {
    transform: scale(0.8);
    transition: all 0.4s ease;
    opacity: 0.9;
    /* Aumentado de 0.6 a 0.9 para menos filtro blanco */
    padding: 10px;
    cursor: pointer;
    /* Indicador de que es clickeable */
}

.coverflow-item img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: clamp(200px, 40vw, 300px);
    object-fit: cover;
}

/* Estilo para el slide activo */
.slick-center .coverflow-item {
    transform: scale(1.1);
    opacity: 1;
    z-index: 10;
}

/* Efecto hover para indicar que es clickeable */
.coverflow-item:hover {
    transform: scale(0.85);
}

.slick-center .coverflow-item:hover {
    transform: scale(1.15);
}

/* Personalización de flechas de navegación */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.slick-prev {
    left: 15px;
}

.slick-next {
    right: 15px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'FontAwesome';
    color: #ff5722;
    font-size: 24px;
    opacity: 1;
    line-height: 1;
}

.slick-prev:before {
    content: '\f104';
    /* FontAwesome chevron-left */
}

.slick-next:before {
    content: '\f105';
    /* FontAwesome chevron-right */
}

/* Solución alternativa con CSS puro si FontAwesome no carga */
.slick-arrow:after {
    content: '';
    width: 12px;
    height: 12px;
    border-style: solid;
    border-width: 3px 3px 0 0;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-color: #ff5722;
}

.slick-prev:after {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.slick-next:after {
    transform: translate(-60%, -50%) rotate(45deg);
}

/* Ajustes para móviles */
@media (max-width: 768px) {

    .slick-prev,
    .slick-next {
        width: 35px;
        height: 35px;
    }

    .slick-prev {
        left: 10px;
    }

    .slick-next {
        right: 10px;
    }

    .slick-arrow:after {
        width: 10px;
        height: 10px;
    }
}

/* Estilos para el modal de imagen */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.gallery-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 2001;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus {
    color: #ff5722;
    text-decoration: none;
    cursor: pointer;
}

.gallery-modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Animación para entrada del modal */
.gallery-modal-content,
.gallery-modal-caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* ===== Información del Hotel ===== */
section {
    padding: 0 20px !important;
}

.hotel-info-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.hotel-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.hotel-name-section {
    flex-grow: 1;
}

.hotel-name-section .hotel-name {
    margin: 0;
}

.hotel-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hotel-header-right .btn {
    margin-right: 1rem;
}

.hotel-name {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.hotel-logo {
    max-width: 120px;
    height: auto;
}

.hotel-info-body {
    padding: 1.5rem;
}

.hotel-description {
    font-size: 1.1rem;
    color: #666;
}

/* ===== Servicios ===== */
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.hotel-services {
    list-style: none;
    padding: 0;
}

.hotel-services li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.hotel-services li i {
    color: #ff5722;
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

/* Estilos para la sección de servicios */
.services-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-title {
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ff5722;
}

.hotel-services li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.hotel-services li i {
    color: #ff5722;
    position: absolute;
    left: 0;
    top: 3px;
}


/* ===== Mapa ===== */
.map-container iframe {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hotel-address {
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
}

.hotel-address i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.5rem;
}





/* ===== Habitaciones ===== */
.hotel-rooms-section {
    background-color: #f8f9fa;
}

.room-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.room-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0c0e1c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.room-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.room-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 8px 0 15px;
    flex-grow: 1;
}

.room-amenities {
    font-size: 0.85rem;
    color: #e3784f;
    margin-bottom: 10px;
}

.room-amenities li {
    display: inline;
    margin-right: 10px;
}

/* ===== Modal ===== */
.modal-content {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-body {
    padding: 20px;
}

.room-details img {
    max-height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

#modalRoomType {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

#modalRoomDescription {
    font-size: 1rem;
    color: #555;
}

.room-features {
    padding-left: 0;
    list-style-type: none;
}

.room-features li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.room-features li i {
    color: #007bff;
    margin-right: 8px;
    margin-top: 4px;
}

.carousel-item img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Capacidad de habitación */
.room-capacity {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.capacity-item {
    display: flex;
    align-items: center;
}

.capacity-item i {
    margin-right: 8px;
    color: #0c0e1c;
}


/* Estilos para el modal de detalle de habitación */

/* Modal general */
.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 20px;
}

.modal-title {
    font-weight: 600;
    color: #333;
}

.modal-body {
    padding: 20px;
}

/* Carrusel de imágenes */
#roomCarousel {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

#roomCarousel .carousel-item img {
    max-height: 400px;
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Información principal de la habitación */
.room-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.room-info-main {
    flex: 1;
}

#modalRoomType {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.room-price {
    font-size: 1.3rem;
    color: #555;
}

.price-amount {
    font-weight: 700;
    color: #ff5722;
    font-size: 1.4rem;
}

.price-period {
    font-size: 1rem;
    color: #777;
}

.room-capacity-info {
    text-align: right;
    min-width: 200px;
}

.capacity-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.room-capacity {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.capacity-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.capacity-item i {
    color: #ff5722;
    margin-right: 5px;
    font-size: 1.1rem;
}

/* Secciones de la habitación */
.room-section {
    margin-bottom: 25px;
}

.section-subheading {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ff5722;
    display: inline-block;
}

#modalRoomDescription {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Características especiales */
#modalRoomFeatures {
    padding-left: 0;
    list-style-type: none;
}

#modalRoomFeatures ul {
    padding-left: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 0;
}

#modalRoomFeatures li {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    background-color: #f8f9fa;
    padding: 8px 12px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#modalRoomFeatures li i {
    color: #ff5722;
    margin-right: 8px;
    margin-top: 3px;
    font-size: 0.9rem;
}

/* Tarifas detalladas */
.tariff-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tariff-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tariff-title {
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tariff-title i {
    color: #ff5722;
    margin-right: 8px;
}

.tariff-details {
    padding-left: 25px;
}

.tariff-details p {
    margin-bottom: 5px;
}

.tariff-price {
    font-weight: 600;
    color: #333;
}

.additional-rate {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.additional-price {
    font-weight: 600;
}

/* Tarifas por ocupación */
.occupancy-table {
    width: 100%;
}

.occupancy-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed #ddd;
}

.occupancy-row:last-child {
    border-bottom: none;
}

.occupancy-type {
    font-weight: 500;
}

.occupancy-price {
    font-weight: 600;
}

/* Servicios de la habitación */
.amenities-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.amenity-category {
    margin-bottom: 15px;
}

.category-name {
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.category-name i {
    color: #ff5722;
    margin-right: 8px;
}

.amenity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 25px;
}

.amenity-item {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.amenity-item i {
    color: #ff5722;
    margin-right: 8px;
    font-size: 0.9rem;
}

.amenity-tooltip {
    display: inline-block;
    margin-left: 5px;
    color: #aaa;
    cursor: help;
}

/* Servicios incluidos en la tarifa */
.included-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.included-service {
    background-color: #fff;
    border: 1px solid #ff5722;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    color: #ff5722;
}

.included-service i {
    margin-right: 8px;
    font-size: 0.9rem;
}

/* Botones del modal */
.modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 15px 20px;
}

.modal-footer .btn-primary {
    background-color: #ff5722;
    border-color: #ff5722;
    padding: 8px 20px;
    font-weight: 500;
}

.modal-footer .btn-primary:hover {
    background-color: #e64a19;
    border-color: #e64a19;
}

.modal-footer .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Responsive */
/* OPTIMIZACIÓN DESKTOP PEQUEÑO - REDISEÑO DRÁSTICO */
@media (max-width: 1400px) and (min-width: 992px) {
    .hotel-hero {
        min-height: 25vh;
        /* DRÁSTICO: de 50vh → 25vh (-50%) */
    }

    .hotel-title {
        font-size: 1.6rem;
        /* DRÁSTICO: de 3rem → 1.6rem (-47%) */
    }

    .sede-subtitle {
        font-size: 0.85rem;
        /* DRÁSTICO */
    }

    .sede-indicator {
        padding: 6px 12px;
        /* Compacto */
        font-size: 0.75rem;
        /* Pequeño */
    }

    .coverflow-carousel {
        padding: 15px 0;
        /* DRÁSTICO: de 30px → 15px */
    }

    .coverflow-item img {
        height: 180px;
        /* DRÁSTICO: de 300px → 180px (-40%) */
    }

    .hotel-info-card {
        margin-bottom: 1rem;
        /* DRÁSTICO: de 2rem → 1rem */
    }

    .hotel-info-header {
        padding: 0.8rem;
        /* DRÁSTICO: de 1.5rem → 0.8rem (-47%) */
    }

    .hotel-info-body {
        padding: 0.8rem;
        /* DRÁSTICO */
    }

    .hotel-name {
        font-size: 1.3rem;
        /* DRÁSTICO: de 2rem → 1.3rem (-35%) */
    }

    .hotel-description {
        font-size: 0.85rem;
        /* DRÁSTICO: de 1.1rem → 0.85rem (-23%) */
        line-height: 1.4;
        /* Compacto */
    }

    .section-title {
        font-size: 1rem;
        /* DRÁSTICO: de 1.5rem → 1rem (-33%) */
        margin-bottom: 8px;
        /* DRÁSTICO: de 15px → 8px */
    }

    .hotel-services li {
        font-size: 0.8rem;
        /* DRÁSTICO: de 1rem → 0.8rem (-20%) */
        margin-bottom: 4px;
        /* DRÁSTICO: de 8px → 4px */
        padding: 4px 0;
        /* Compacto */
    }

    .hotel-services li i {
        font-size: 0.75rem;
        /* Icono pequeño */
        margin-right: 6px;
    }

    #roomCarousel .carousel-item img {
        max-height: 180px;
        /* DRÁSTICO: de 400px → 180px (-55%) */
        height: 160px;
        /* DRÁSTICO: de 350px → 160px (-54%) */
    }

    .room-card {
        margin-bottom: 15px;
        /* DRÁSTICO: de 20px → 15px */
    }

    .room-image {
        height: 120px;
        /* DRÁSTICO: de 200px → 120px (-40%) */
    }

    .room-info {
        padding: 8px;
        /* DRÁSTICO: de 15px → 8px (-47%) */
    }

    .room-title {
        font-size: 0.95rem;
        /* DRÁSTICO: de 1.2rem → 0.95rem (-21%) */
        margin-bottom: 4px;
    }

    .room-description {
        font-size: 0.75rem;
        /* DRÁSTICO: de 0.9rem → 0.75rem (-17%) */
        line-height: 1.3;
    }

    .room-price {
        font-size: 0.9rem;
    }

    /* Modal ajustes */
    .modal-header {
        padding: 10px 12px;
        /* Ultra-compacto */
    }

    .modal-body {
        padding: 12px;
        /* Ultra-compacto */
    }

    .room-info-header h3 {
        font-size: 1.1rem;
        /* Reducido */
    }

    .amenity-item {
        font-size: 0.75rem;
        /* Mini */
        padding: 4px 8px;
        /* Compacto */
    }
}

@media (max-width: 1280px) and (min-width: 992px) {
    .hotel-hero {
        min-height: 22vh;
        /* ULTRA-BAJO */
    }

    .hotel-title {
        font-size: 1.4rem;
        /* Todavía más pequeño */
    }

    .coverflow-item img {
        height: 150px;
        /* ULTRA: de 300px → 150px (-50%) */
    }

    #roomCarousel .carousel-item img {
        max-height: 150px;
        /* ULTRA-REDUCIDO */
        height: 140px;
    }

    .hotel-name {
        font-size: 1.2rem;
    }

    .hotel-description {
        font-size: 0.8rem;
    }

    .room-image {
        height: 100px;
        /* ULTRA: de 200px → 100px (-50%) */
    }

    .room-info {
        padding: 6px;
        /* Mínimo */
    }

    .section-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 1100px) and (min-width: 992px) {
    .hotel-hero {
        min-height: 20vh;
        /* MÍNIMO ABSOLUTO */
    }

    .hotel-title {
        font-size: 1.3rem;
    }

    .coverflow-item img {
        height: 130px;
        /* MÍNIMO: de 300px → 130px (-57%) */
    }

    #roomCarousel .carousel-item img {
        max-height: 130px;
        height: 120px;
    }

    .room-image {
        height: 90px;
        /* MÍNIMO: de 200px → 90px (-55%) */
    }
}

/* Móvil pequeño */
@media (max-width: 575.98px) {
    .hotel-hero {
        min-height: 250px;
    }

    .hotel-title {
        font-size: 1.5rem;
    }

    .coverflow-item img {
        height: 200px;
    }

    .hotel-name {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    #roomCarousel .carousel-item img {
        max-height: 250px;
        height: 250px;
    }

    .room-card {
        margin-bottom: 15px;
    }

    .hotel-info-header {
        padding: 1rem;
    }

    .room-info-header {
        flex-direction: column;
    }

    .room-capacity-info {
        text-align: left;
        margin-top: 15px;
    }

    .room-capacity {
        justify-content: flex-start;
    }

    .amenity-list,
    .included-services {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .room-info-header {
        flex-direction: column;
    }

    .room-capacity-info {
        text-align: left;
        margin-top: 15px;
    }

    .room-capacity {
        justify-content: flex-start;
    }

    #roomCarousel .carousel-item img {
        max-height: 300px;
        height: 250px;
    }

    .amenity-list,
    .included-services {
        flex-direction: column;
        gap: 8px;
    }

    .hotel-info-header {
        padding: 1rem;
    }

    .hotel-description {
        font-size: 1rem;
    }

    .hotel-services li {
        font-size: 0.9rem;
    }
}
























/* ===== Botón Flotante de Reserva ===== */
.floating-reserve-btn {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    background-color: #ff5722 !important;
    border-color: #e64a19 !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease-in-out !important;
    animation: pulse 2s infinite !important;
}

.floating-reserve-btn:hover {
    background-color: #e64a19 !important;
    border-color: #d84315 !important;
    transform: scale(1.05) !important;
    animation: none !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
}

/* ===== Media Queries ===== */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
        /* Altura del navbar en móviles */
    }

    .hotel-hero {
        height: 30vh;
    }

    .hotel-title {
        font-size: 1.8rem;
    }

    .sede-indicator {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .sede-subtitle {
        font-size: 1rem;
    }

    .hotel-info-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hotel-header-right {
        margin-top: 1rem;
        align-self: flex-end;
    }

    .hotel-carousel .carousel-item {
        height: 200px;
    }

    .hotel-name {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 15px;
    }

    .hotel-logo {
        max-width: 100px;
    }

    .section-title {
        text-align: center;
    }

    .check-container {
        grid-template-columns: 1fr;
    }

    .floating-reserve-btn {
        font-size: 14px !important;
        padding: 10px 15px !important;
        right: 10px !important;
        bottom: 10px !important;
    }

    .room-card {
        margin-bottom: 20px;
    }
}

/* Sticky navbar */
.navbar.fixed-top {
    transition: all 0.3s ease;
}