 /* Conflicto menu desplegable y sticky */
.header.hfixed:not(.editMode .header.hfixed) {
    position: absolute;
}
.room-section .row > [class*="col-"] > .htt-text-image {
    height: 100%;
    align-content: center;
}
h3 {
    font-family: var(--fontPrimary);
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 300;
    line-height: 2.7rem;
}
.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
}
.sticky.is-stuck{
    box-shadow: 1px 1px 15px rgba(0, 0, 0, .15);
}
.room-section .sticky > .row > .col {
    padding: 0;
}
.grid-motor {
    position: relative !important;
}
.header .col {
    flex: 1 0 0; 
}
.col {
    flex: 1 0 auto;
}
/* Iconos Servicios */
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}
.service-item {
    display: flex;
    flex-direction:column;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
}
.services-row .service-item:nth-child(3) .service-icon {
  width: 20px;
  height: 20px;
}
/* Menu Ancla sticky + js */
.menu-habitaciones{
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 15px 0;
    justify-content: center;
    gap:30px;
}
.menu-habitaciones.suites {
    justify-content: space-evenly;
}
.menu-habitaciones a {
    color: var(--colorBlue);
    transition: transform 0.2s ease;
    white-space: nowrap;
}
.menu-habitaciones a:hover {
    transform: scale(1.05);
}
.menu-fijo {
    position: fixed;
    background: white;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
    padding-left: 20vw;
    padding-right: 20vw;
}
.w80.title-center{
    gap: 3rem;
}
@media(max-width:1366px){
    .menu-habitaciones {
        gap:20px;
    }
    .menu-habitaciones a {
        font-size: 1rem;
    }
}
@media(min-width:1025px){
    .menu-habitaciones-md{
        display: none;
    }
}
@media(max-width:1024px){
    #menu-habitaciones{
        display: none;
    }
    .htt-text-image .w80  {
        width: 100%;
    }
    .menu-habitaciones a {
        font-size: 0.9rem;
    }
    .w80.title-center{
        gap: 1rem;
    }
    .button-more {
        display: none;
    }
    .sticky {
        top: 10px;
    }
    .menu-habitaciones-md {
        width: 95%;
        margin: auto;
    }
    #menuHabitaciones{
        background-color: var(--colorBlue);
        border: none;
        width: 100%;
    }
    .dropdown-menu.show{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .dropdown-item.active{
        background-color: var(--colorBlue);
    }
    .dropdown-menu.show > *:first-child{
        margin-top: 16px;
    }
    .dropdown-menu.show > *:last-child {
        margin-bottom: 16px;
    }
    .room-section .row>*{
        padding: 0;
    }
    h3 {
        font-size: 2rem;
        margin-top: 20px;
    }
    .services-row {
        gap: 10px;
    }
    .service-item {
        letter-spacing: -0.5px;
        text-wrap: balance;
    }
    .sticky.is-stuck{
        box-shadow: none;
    }
}