/**
* ------------------------------------
* Tabla de Contenido
* ------------------------------------
*
* 1. Variables y Globales
* 2. Tipografía y Textos
* 3. Utilidades y Helpers
* 4. Layouts y Secciones Principales
* 4.1. Navegación (Navbar y Offcanvas)
* 4.2. Hero Sections
* 4.3. Footer
* 5. Componentes
* 5.1. Botones
* 5.2. Formularios
* 5.3. Tarjetas y Listas
* 5.4. Carousels
* 5.5. Modals
* 6. Páginas Específicas
* 6.1. Habitaciones
* 6.2. Ofertas
* 6.3. Paquetes
* 6.4. Blog
* 6.5. Contacto e Instalaciones
* 6.6. Todo Incluido
* 7. Responsive
*/


/*
 * ------------------------------------
 * 1. Variables y Globales
 * ------------------------------------
 */

:root {
    --bs-body-font-family: 'Outfit', sans-serif;
    --brand-color: #aa8453;
    --light-brand-color: #ceb493;
}

body {
    overflow-x: hidden;
    font-weight: 200 !important;
    font-size: 18px;
    line-height: 24px;
}

.ratio-4x3 {
    width: 100%;
    position: relative;
    height: 0;
    padding-top: 75%;
    /* Esto crea la relación 4:3 (3 / 4 = 0.75) */
}

.ratio-4x3>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}


/*
 * ------------------------------------
 * 2. Tipografía y Textos
 * ------------------------------------
 */

@font-face {
    font-family: 'aesthetic';
    src: url('/fonts/aesthetic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
p,
span,
input {
    font-weight: 200 !important;
}

h2 {
    font-size: 36px !important;
    line-height: 36px !important;
}

.welcome-text {
    font-weight: 200 !important;
    font-size: 1.15rem;
    margin-left: 69px;
    margin-right: 48px;
    line-height: 1.6rem;
}

.highlight-title {
    font-size: 3.2rem !important;
    line-height: 3.2rem !important;
}

.fnt-300 {
    font-weight: 300 !important;
}

.fnt-350 {
    font-weight: 350 !important;
}

.fnt-400 {
    font-weight: 400 !important;
}

.fw-bold {
    font-weight: 600 !important;
}

.fnt-aesthetic {
    font-family: 'aesthetic', serif;
}

.text-justify {
    text-align: justify !important;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--brand-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align: center;
}

.section-detail-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--brand-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-title {
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 1rem;
}

.package-description {
    font-weight: 400;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.offer-card-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.offer-card-text {
    font-size: 1rem;
    margin-bottom: 1rem;
}


/*
 * ------------------------------------
 * 3. Utilidades y Helpers
 * ------------------------------------
 */

.rounded-0 {
    border-radius: 0 !important;
}

.card-shadowed {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.brand-bg {
    background-color: var(--brand-color);
    color: #000;
}

.text-brand {
    color: var(--brand-color) !important;
}

.gold-filter {
    filter: invert(57%) sepia(72%) saturate(278%) hue-rotate(354deg) brightness(82%) contrast(84%) !important;
}

.white-filter {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(283deg) brightness(109%) contrast(101%) !important;
}

.black-filter {
    filter: brightness(0) saturate(100%) !important;
}

.ms-15 {
    margin-left: 15px;
}

.me-15 {
    margin-right: 15px;
}

.ms-20 {
    margin-left: 20px;
}

.me-20 {
    margin-right: 20px;
}

.ms-30 {
    margin-left: 30px;
}

.me-30 {
    margin-right: 30px;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.amenities-gap {
    gap: 1rem;
}

.separator {
    border-top: 2px solid var(--brand-color);
    margin: 2rem 0;
    opacity: 0.3;
}

.section-detail-separator {
    border-top: 1px solid #ddd;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.sticky-top-custom {
    top: 150px;
    position: sticky;
}

.promo-modal {
    --modal-width: 320px;
    position: fixed;
    left: 5px;
    bottom: 5px;
    width: var(--modal-width);
    max-width: calc(100% - 10px);
    height: calc(var(--modal-width) * 3 / 3);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transform: translateX(-105%);
    transition: transform 0.5s ease-out;
    z-index: 99999;
}

.promo-modal.show {
    transform: translateX(0);
}


/*
 * ------------------------------------
 * 4. Layouts y Secciones Principales
 * ------------------------------------
 */


/* 4.1. Navegación (Navbar y Offcanvas) */

.top-navbar {
    transition: all 0.3s ease-in-out;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
    color: white;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030;
}

.top-navbar.scrolled {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    backdrop-filter: none;
}

.top-navbar.scrolled .nav-link,
.top-navbar.scrolled .navbar-brand,
.top-navbar.scrolled .btn {
    color: black !important;
}

.top-navbar.scrolled .navbar-brand,
.top-navbar.scrolled .nav-link {
    font-weight: 200;
}

.top-navbar.scrolled .btn-reserva {
    background-color: var(--brand-color);
    color: #000000 !important;
}

.top-navbar.scrolled .nav-btn-square {
    color: #000 !important;
    border-color: var(--brand-color) !important;
    background-color: transparent !important;
}

.nav-link,
.navbar-brand,
.btn {
    color: white;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover,
.navbar-brand:hover,
.btn:hover {
    color: var(--brand-color) !important;
}

.nav-square {
    margin-left: 0.5rem;
    border: solid 1px #FFF !important;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
}

.nav-btn-square {
    margin-left: 0.5rem;
    border: solid 1px var(--brand-color) !important;
    color: #000;
    background-color: #FFF !important;
    height: 38px;
    padding-left: 10px !important;
    padding-right: 10px !important;
    display: flex;
    align-items: center;
}

.nav-selected {
    text-decoration: underline !important;
}

.menu-selected {
    color: var(--brand-color) !important;
    text-decoration: underline !important;
}

.offcanvas.offcanvas-start {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    color: black;
}

.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.2);
}

.offcanvas-header {
    border-bottom: 1px solid #dee2e6;
    padding-left: 2.5rem !important;
}

.offcanvas-title {
    color: black;
    font-weight: bold;
}

.offcanvas-body {
    color: black;
    padding-left: 2.5rem !important;
}

.sideMenu {
    width: 100% !important;
    max-width: 700px;
}

.tree-menu,
.first-tree-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tree-menu>li,
.first-tree-menu>li {
    font-weight: 400;
    color: black;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.first-tree-menu>li {
    padding: 0.4rem 0;
}

.tree-menu>li>a,
.first-tree-menu>li>a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
}

.tree-menu>li:last-child,
.first-tree-menu>li:last-child {
    border-bottom: none;
}

.tree-menu .sub-menu,
.first-tree-menu .sub-menu {
    list-style: none;
    padding-left: 1.5rem;
    font-weight: normal;
}

.tree-menu .sub-menu li,
.first-tree-menu .sub-menu li {
    padding: 0.5rem 0;
}

.tree-menu .sub-menu a,
.first-tree-menu .sub-menu a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
}

.tree-menu .sub-menu a:hover,
.first-tree-menu .sub-menu a:hover {
    color: var(--brand-color);
}


/* 4.2. Hero Sections */

.hero-section,
.hero-top,
.hero-group-packages,
.hero-blog,
.hero-contact,
.hero-all-inclusive,
.hero-main-offers,
.hero-offers {
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section {
    background-image: url('https://tesoromanzanillo.com//webp/videobanner-MZO/');
}

.hero-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: brightness(0.8);
    opacity: 0;
}

.hero-section video.visible {
    opacity: 1;
    filter: brightness(0.8);
}

.mzo-hero {
    background-image: url('/webp/MZO-stream-min/');
}

.mzo-footer {
    background-image: linear-gradient(180deg, rgba(0, 0, 2505, 0.1) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.3) 100%), url('/webp/MZO-footer-min/');
    background-size: cover;
    background-position: center;
    height: 65vh;
    min-height: 400px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 130px;
}

.hero-top {
    height: 50vh;
    min-height: 300px;
    align-items: flex-end;
    padding: 2rem;
}

.hero-group-packages,
.hero-blog,
.hero-contact,
.hero-all-inclusive,
.hero-main-offers,
.hero-offers {
    height: 35vh;
    min-height: 250px;
}

.hero-blog {
    min-height: 450px;
    align-items: end;
}

.hero-top::after,
.hero-group-packages::after,
.hero-blog::after,
.hero-contact::after,
.hero-all-inclusive::after,
.hero-main-offers::after,
.hero-offers::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.hero-group-packages::after,
.hero-blog::after,
.hero-contact::after,
.hero-all-inclusive::after,
.hero-main-offers::after,
.hero-offers::after {
    background: rgba(0, 0, 0, 0.5);
}

.hero-main-offers::after,
.hero-offers::after {
    background: rgba(0, 0, 0, 0.3);
}

.hero-top-content,
.hero-group-packages-content,
.hero-blog-content,
.hero-contact-content,
.hero-all-inclusive-content,
.hero-main-offers-content,
.hero-offers-content {
    position: relative;
    z-index: 1;
}

.hero-top-content h1 {
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.hero-top-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0.25rem;
}

.hero-group-packages-content h1,
.hero-blog-content h1,
.hero-contact-content h1,
.hero-all-inclusive-content h1,
.hero-main-offers-content h1,
.hero-offers-content h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-blog-content p {
    font-size: 1.1rem;
    font-weight: 300;
}

.main-detail-container,
.contact-container,
.all-inclusive-container,
.packages-container,
.amenity-details-container,
.blog-list-container,
.post-container,
.offers-query-container,
.restaurant-details-container,
.room-details-container,
.welcome {
    position: relative;
    z-index: 2;
    margin-top: -3rem;
}

.room-details-container,
.amenity-details-container,
.restaurant-details-container {
    margin-top: -5rem;
}

.welcome {
    margin-top: 250px !important;
    z-index: 3;
}


/* 4.3. Footer */

.site-footer {
    padding: 3rem 0;
}

.footer-logo {
    width: 250px;
    margin-bottom: 1rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 0.5rem;
}

.footer-links-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-list a:hover {
    color: var(--brand-color);
}

.footer-social-icons a {
    color: #495057;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.2s;
}

.footer-social-icons a:hover {
    color: var(--brand-color);
}

.footer-contact-info {
    padding-top: 1.5rem;
    border-top: 1px solid #e9e9e9;
}

.footer-contact-info p {
    margin-bottom: 0;
}

.footer-awards-logos {
    padding-top: 1.5rem;
    border-top: 1px solid #e9e9e9;
}

.footer-awards-logos img {
    height: 50px;
    margin-right: 1rem;
    object-fit: contain;
}

.site-footer-bottom {
    padding: 1rem 0;
    text-align: center;
}

.site-footer-bottom .text-muted {
    font-size: 0.9rem;
}

.site-footer-bottom .footer-legal-links a {
    color: #495057;
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.site-footer-bottom .footer-legal-links a:hover {
    color: var(--brand-color);
}


/*
 * ------------------------------------
 * 5. Componentes
 * ------------------------------------
 */


/* 5.1. Botones */

.btn-flex {
    flex-basis: 50%;
    flex-grow: 0;
    flex-shrink: 0;
}

.btn.p-0 small {
    margin-top: 0.1rem;
}

.btn-reserva {
    background-color: var(--brand-color);
    color: #000000 !important;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.btn-reserva:hover {
    background-color: #92734a;
}

.btn-solid-brand {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
    color: #000;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-solid-brand:hover {
    background-color: #92734a;
    border-color: #92734a;
    color: #000 !important;
}

.btn-outline-brand {
    background-color: transparent;
    border-color: var(--brand-color);
    color: #000;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-outline-brand:hover {
    background-color: var(--brand-color);
    color: white !important;
}

.btn-outline-white-brand {
    background-color: #FFF;
    border-color: var(--brand-color);
    color: #000;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-outline-white-brand:hover {
    background-color: var(--brand-color);
    color: white !important;
}

.form-outline-brand {
    border-color: var(--brand-color) !important;
}

.btn-brand {
    background-color: var(--brand-color);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 0px !important;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-brand:hover {
    background-color: #92754c;
    color: #fff !important;
}

.btn-booking {
    font-weight: 400 !important;
    font-size: 18px;
}

.main-btn {
    font-weight: 400 !important;
    font-size: 16px !important;
}

.btn-newsletter-brand {
    background-color: var(--brand-color);
    border-color: white;
    color: #000;
    padding: 0.75rem 2rem;
    font-weight: 400 !important;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-newsletter-brand:hover {
    background-color: #92734a;
    border-color: #92734a;
    color: #000 !important;
}

.offer-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.offer-button:hover {
    background-color: white;
    color: var(--brand-color);
}


/* 5.2. Formularios */

.form-control {
    border-radius: 0.25rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--brand-color);
}

.booking-form-container {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-top: -150px;
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
}

.booking-form-container .form-group {
    flex: 1 1 200px;
    margin-right: 1rem;
}

.booking-form-container .form-control {
    border: 1px solid #ced4da;
    padding: 0.75rem;
    width: 100%;
    height: auto;
}

.booking-form-container .btn-check-availability {
    flex: 1 1 200px;
}

.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-selector .btn {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
}

.quantity-selector .form-control {
    text-align: center;
    width: 60px;
    border-left: none;
    border-right: none;
}

.quantity-selector .btn.btn-outline-brand {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    border: 1px solid var(--brand-color);
    color: var(--brand-color);
}

.quantity-selector .btn.btn-outline-brand:hover {
    color: white;
}

.promo-code-container {
    position: relative;
}

.promo-code-container .dropdown-toggle::after {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.promo-code-container input {
    padding-right: 2rem;
}

.no-arrow-dropdown .dropdown-toggle::after {
    display: none !important;
}

.booking-form-label {
    font-weight: 200 !important;
    font-size: 16px !important;
}


/* 5.3. Tarjetas y Listas */

.main-content-card,
.sidebar-card,
.info-detail-card,
.offer-query-content-card {
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-content-card,
.info-detail-card,
.offer-query-content-card {
    border-radius: 0.5rem;
}

.sidebar-card {
    margin-bottom: 2rem;
}

.horizontal-card {
    display: flex;
    align-items: stretch;
    margin-bottom: 2rem;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: #f8f9fa;
    border-radius: 0;
}

.horizontal-card .row {
    width: 100%;
    margin: 0;
}

.horizontal-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horizontal-card .card-img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.odd .card-img-container {
    order: 2;
}

.odd .card-body-container {
    order: 1;
}

.even .card-img-container {
    order: 1;
}

.even .card-body-container {
    order: 2;
}

.amenities-list,
.amenity-list-mice {
    list-style: none;
    padding: 0;
}

.amenities-list {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.amenities-list li,
.amenity-list-mice li,
.all-inclusive-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.amenities-list li i,
.amenity-list-mice li i,
.all-inclusive-item i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    color: var(--brand-color);
}

.amenity-list-mice li {
    font-size: 1.1rem;
    color: var(--text-color);
}

.all-inclusive-item {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    background-color: transparent;
    border: none;
}

.all-inclusive-item .icon {
    margin-right: 0.75rem;
}

.list-group-item.all-inclusive-item {
    padding: 0.5rem 0;
}


/* 5.4. Carousels */

.vertical-carousel,
.horizontal-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.vertical-carousel-track,
.horizontal-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vertical-carousel-item-container,
.horizontal-carousel-item-container {
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 1rem;
    width: 100%;
    transition: opacity 0.3s ease;
}

.vertical-carousel-item,
.horizontal-carousel-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.vertical-carousel-item {
    padding-top: 133.33%;
}

.horizontal-carousel-item {
    padding-top: 63.33%;
    margin-bottom: 1rem;
}

.vertical-carousel-item-image,
.horizontal-carousel-item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease-out;
}

.vertical-carousel-item-container:hover .vertical-carousel-item-image,
.horizontal-carousel-item-container:hover .horizontal-carousel-item-image {
    transform: scale(1.05);
}

.vertical-carousel-item-content,
.horizontal-carousel-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.vertical-carousel-nav-container,
.horizontal-carousel-nav-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.vertical-carousel-nav[disabled],
.horizontal-carousel-nav[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}


/* 5.5. Modals */

.modal-content.rounded-0 {
    overflow: hidden;
    border: none;
}

.modal-header.rounded-0 {
    background-color: #f7f7f7;
    border-bottom: 1px solid #e9e9e9;
    padding: 1rem 1.5rem;
}

.modal-footer.rounded-0 {
    background-color: #f7f7f7;
    border-top: 1px solid #e9e9e9;
    padding: 1rem 1.5rem;
}

.promo-modal .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
}

.modal-foreground-content {
    position: relative;
    z-index: 5;
    color: white;
    text-align: center;
    height: 100%;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.promo-modal h1 {
    font-size: 2rem;
    margin-bottom: 0;
}

.promo-modal p {
    margin-bottom: 1.5rem;
}


/*
 * ------------------------------------
 * 6. Páginas Específicas
 * ------------------------------------
 */


/* 6.1. Habitaciones */

.room-carousel-section {
    padding: 5rem 0;
}

.room-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.room-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.room-image-container:hover .room-image {
    transform: scale(1.05);
}

.room-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: all 0.5s ease-in-out;
}

.room-image-container:hover::after {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
}

.main-room-image {
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.room-price-section {
    background-color: #f8f9fa;
    border-left: 5px solid var(--brand-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.room-price-section h3 {
    font-weight: 600;
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.room-price-section span {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-color);
}


/* 6.2. Ofertas */

.offers-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.offer-section-container {
    padding: 5rem 1rem;
}

.offer-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.offer-cards-container {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.offer-card {
    flex: none;
    width: 80%;
    scroll-snap-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    padding-bottom: 133.33%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

.offer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 10;
}

.offer-query-card {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.offer-query-card:hover,
.offer-query-shadow {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.offer-query-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-query-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-query-title {
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.offer-query-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.offer-query-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    text-align: justify;
}

.hero-detail-banner {
    background-size: cover;
    background-position: center;
    height: 40vh;
    min-height: 250px;
}

.image-detail-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 0.5rem;
}

.image-detail-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.icon-detail-item i {
    font-size: 1.5rem;
    color: var(--brand-color);
    margin-right: 1rem;
}

.notice-detail-box {
    background-color: #f1f1f1;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 5px solid var(--brand-color);
    position: relative;
}

.notice-detail-warning-box {
    background-color: #f1f1f1;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 5px solid var(--bs-warning);
    position: relative;
}


/* 6.3. Paquetes */

.gallery-item-mice {
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-mice:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item-mice img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-group-image {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


/* 6.4. Blog */

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

.post-card-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.post-card-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-preview .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-card-preview .card-title {
    font-weight: 600;
    color: var(--brand-color);
}

.post-card-preview .card-text {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

.category-list .list-group-item {
    background-color: transparent;
    border: none;
    padding-left: 0;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.category-list .list-group-item:hover {
    color: var(--brand-color);
}

.category-list .list-group-item.active {
    background-color: var(--brand-color);
    color: #fff;
    border-radius: 0.25rem;
}

.post-card-with-date {
    position: relative;
}

.post-date-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--brand-color);
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
}

.post-image {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.post-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}


/* 6.5. Contacto e Instalaciones */

.amenity-main-image,
.restaurant-main-image {
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.restaurant-main-image {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.amenity-hours,
.info-card {
    background-color: #fff;
    border-left: 5px solid var(--brand-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-card {
    color: var(--text-color);
}

.amenity-hours h3,
.info-card h3 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: #333;
}

.info-card h3 {
    color: var(--brand-color);
}

.amenity-hours .icon-text,
.info-card .icon-text {
    display: flex;
    align-items: center;
}

.amenity-hours .icon-text i,
.info-card .icon-text i {
    color: var(--brand-color);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.info-card .icon-text i {
    color: var(--light-gold);
}


/* 6.6. Todo Incluido */

.all-inclusive-image {
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}


/*
 * ------------------------------------
 * 7. Chatbot
 * ------------------------------------
 */

.chatbot-container {
    max-width: 600px;
    margin: 5px auto;
    padding: 1rem;
}

.chatbot-header {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--brand-color);
    /* Color similar al del formulario de la imagen */
    font-size: 1.5rem;
    font-weight: 400;
}

.chatbot-messages {
    height: 400px;
    overflow-y: auto;
    border-radius: 0px !important;
    padding: 1rem;
    background-color: #f1f5f9;
    margin-bottom: 1rem;
    scroll-behavior: smooth;
    position: relative;
    /* Agregado para posicionar el indicador de escritura */
}

.chatbot-message {
    margin-bottom: 1rem;
    max-width: 80%;
    border-radius: 0px !important;
    padding: 0.75rem 1rem;
}

.user-message {
    background-color: #e2f4ff;
    align-self: flex-end;
    margin-left: auto;
}

.bot-message {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    margin-right: auto;
}

.chatbot-input-group {
    display: flex;
}

.chatbot-input {
    flex-grow: 1;
    border-radius: 0px !important;
}

.chatbot-send-btn {
    background-color: transparent;
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    border-radius: 0px !important;
    margin-left: 0.5rem;
}

.chatbot-send-btn:hover {
    background-color: var(--brand-color);
    color: #FFF !important;
}


/* Estilos para el spinner de carga */

.spinner {
    display: none;
    text-align: center;
    margin-top: 1rem;
}


/* Estilos para los botones de confirmación */

.confirmation-buttons {
    display: none;
    /* Se mostrará con jQuery */
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}


/* Estilos para la animación de 'escribiendo' */

.typing-indicator-message {
    position: absolute;
    /* Posicionado dentro de la caja de mensajes */
    bottom: 10px;
    left: 10px;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    display: none;
    /* Se mostrará con jQuery */
}

.typing-indicator-message span {
    display: inline-block;
    background-color: #5d4a34;
    width: 8px;
    height: 8px;
    margin: 0 2px;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite;
}

.typing-indicator-message span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator-message span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}


/*
 * ------------------------------------
 * 8. Responsive
 * ------------------------------------
 */

@media (max-width: 991.98px) {
    .booking-form-container {
        flex-direction: column;
    }
    .booking-form-container .form-group,
    .booking-form-container .btn-check-availability {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .room-card-content {
        order: 2;
        text-align: center;
    }
    .room-image-container {
        order: 1;
        height: 300px;
        margin-bottom: 1.5rem;
    }
    .footer-contact-info .row>div,
    .footer-awards-logos .row>div {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .offer-cards-container {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
        overflow-x: unset;
        scroll-snap-type: none;
        padding: 0;
    }
    .offer-card {
        width: auto;
    }
}

@media (max-width: 767.98px) {
    .horizontal-card {
        flex-direction: column;
    }
    .odd .card-img-container,
    .odd .card-body-container,
    .even .card-img-container,
    .even .card-body-container {
        order: unset !important;
    }
    .horizontal-card .card-img-container {
        height: 250px;
    }
}