/*Variables*/
:root {
    --fontPrimary:"Raleway", sans-serif;
    --colorOrange:#EA9617;
    --colorBook:#3386FF;
    --colorBlue:#3386FF;
    --colorPrimary:#222222;
    --colorWhite:#FFFFFF;
    --colorMedium:#f4f4f4;
    --colorGrey:#D6D6D6;
    --gradient:linear-gradient(180deg, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 100%);
    --bgPrimary:#156081;
}
/*Estilos genéricos*/
.center{
    text-align: center;
}
.left{
    text-align: left;
}
.right{
    text-align: right;
}
.fontPrimary{
    font-family: var(--fontPrimary);
}
.fontSecondary{
    font-family: var(--fontSecondary);
}
.colorPrimary{
    color:var(--colorPrimary);
}
.colorBlue{
    color:var(--colorBlue);
}
.colorSecondary{
    color:var(--colorSecondary);
}
.white,.white strong, .white span{
    color:#fff;
}
.colorYellowClear{
    color:var(--colorYellowClear);
}
.colorBrownMedium{
    color:var(--colorYellowMedium);
}
.colorBrownDark{
    color:var(--colorBrownDark);
}
a{
    text-decoration:none;
    color:var(--colorPrimary);
}
b, strong {
    font-weight: 500 !important;
}
a:hover {
    text-decoration:none;
    color:var(--colorBlue);
}
.imgRes {
    height: 100%;
}
.img-responsive{
    width:100%;
    object-fit: cover;
    height: 100%;
}
.m0Auto{
    margin:0 auto;
}
.mTop5{
    margin-top: 5px;
}
.mTop20{
    margin-top: 20px;
}
.mTop40{
    margin-top: 40px;
}
.mTop60{
    margin-top: 60px;
}
.mTop120{
    margin-top: 120px;
}
.mBT10{
    margin-bottom:10px;
}
.mBT20{
    margin-bottom:20px;
}
.mBT30{
    margin-bottom:30px;
}
.mBT40{
    margin-bottom: 40px;
}
.mBT60{
    margin-bottom: 60px;
}
.mBT120{
    margin-bottom: 120px;
}
.paddTop20{
    padding-top: 20px;
}
.paddBT20{
    padding-bottom: 20px;
}
.paddTop40{
    padding-top: 40px;
}
.paddBT40{
    padding-bottom: 40px;
}
.paddTop60{
    padding-top: 60px;
}
.paddBT60{
    padding-bottom: 60px;
}
.paddTop120{
    padding-top: 120px;
}
.paddBT120{
    padding-bottom: 120px;
}
.paddTop200{
    padding-top:200px;
}
.paddBT200{
    padding-bottom:200px;
}
.bTop{
    border-top: 1px solid rgba(255,255,255,.1);
}
.w40{
    width:40%;
}
.w50{
    width:50%;
}
.w60{
    width:60%;
}
.w70{
    width:70%;
}
.w80{
    width:80%;
}
.w90{
    width:90%;
}
.w100{
    width:100%;
}
.hide{
    display:none;
}
.uppercase{
    text-transform: uppercase;
}
html{
    overflow-x:hidden;
}
body, .data-protection table {
    font-family:var(--fontPrimary);
    font-size:18px;
    font-weight:300;
    position:relative;
    overflow-x:hidden;
    color:var(--colorPrimary);
    line-height:1.3em;
}

p{
   margin-bottom:0;
}
@media (min-width: 768px) {
    p {
        text-wrap: balance;
        letter-spacing: 0.2px;
    }
}
.container, .container-fluid,.row{
    padding-left:0;
    padding-right:0;
}
#buttonShowSearcherScroll {
    background-color: var(--colorBlue) !important;
    border-radius: 4px;
    padding: 15px 26px !important;
    border: none !important;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    margin-bottom: 0;
    text-wrap: balance;
    letter-spacing: 1px;
    line-height:1.2em;
    font-family: "Newsreader", serif;
}

h1, p.title{
    font-size:42px;
    font-weight:500;
    font-family: "Newsreader", serif;
}
h2{
    font-size:24px;
    font-weight:600;
}
h3{
    font-size:24px;
    font-weight:600;
}

.breadcrumb{
    --bs-breadcrumb-padding-x: 30px;
    margin: 40px;
}
@media (max-width: 768px) {
  #breadcrumb {
   display: none;
  }
}

/*Animaciones*/
.animationOpac{
    animation:animopac 1.5s forwards;
}
@keyframes animopac{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
.colorWhite{
    color:var(--colorWhite);
}
/* INICIO - CUSTOM MENU MOBILE */

ul.nav-custom-menu {
	list-style-type: none;
	margin: 0;
    padding: 0;
}
.nav-custom-menu li a, .nav-custom-menu li {
    font-family: "Newsreader", serif;
	font-size: 48px;
	font-weight: bold;
	color: #000;
	position: relative;
	z-index: 2;
    line-height: 60px;
}
.nav-custom-menu li a:hover {
	color: #000;
}
.nav-custom-menu li a:before {
	content: '';
	width: 0%;
	height: 5px;
	background: var(--colorBlue);
	position: absolute;
	top: 40px;
	left: 0;
	z-index: -1;
	transition-timing-function: cubic-bezier(.8,.09,1,.44);
	transition-delay: 400ms;
	transition: all 600ms cubic-bezier(1, 0, 0, 1) 0ms;
}

.nav-custom-menu li a:hover:before {
	content: '';
	width: 100%;
	height: 5px;
	position: absolute;
	top: 40px;
	left: 0;
	z-index: -1;
}
p a {
	color: #000;
	text-decoration: none;
}
p a:hover {
	color: #000;
	text-decoration: underline;
}
.side-bar {
	width: 200px;
	background: #ef5350;
	min-height: 90vh;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0px;
	margin: 50px;
	z-index: 1;
}
/* INICIO - NAV CUSTOM DESKTOP */
.nav-bar-log .col {
    display: flex;
    align-items: center;
}
.offcanvas-body {
    display: flex;
    align-items: center;
}
.navbar-nav {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.navbar-nav section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.navbar-nav .nav-item {
	position: relative;
    justify-content: center;
    display: flex;
    line-height: normal;
}

.navbar-nav .nav-link {
	font-family: 'Poppins', sans-serif;
	font-size: 48px;
	font-weight: bold;
	color: #000;
	position: relative;
	z-index: 2;
	border: none;
	background: none;
	padding: 0;
}

.navbar-nav .nav-link:hover {
	color: #000;
}

.navbar-nav .nav-link span a {
	text-decoration: none;
	color: inherit;
	position: relative;
	display: inline-block;
    font-family: "Newsreader", serif;
    letter-spacing: 1px;
}

.navbar-nav .nav-link span a::before {
	content: '';
	width: 0%;
	height: 5px;
	background: var(--colorBlue);
	position: absolute;
	top: 40px;
	left: 0;
	z-index: -1;
	transition: all 600ms cubic-bezier(1, 0, 0, 1);
}

.navbar-nav .nav-link:hover span a::before {
	width: 100%;
}
/* FIN - NAV CUSTOM DESKTOP */
/* INICIO - HEADER */
.header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    background:transparent;
    z-index:4;
    padding: 5px 60px 0 60px;
}
.logo-navbar {
    background-image: url('/dam/monohotel-flamboyan/home/icons/logo-flamboyan.svg');
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center; /* Asegura que el crecimiento sea desde el centro */
    image-rendering: optimizeSpeed;
    background-size: contain;
    background-repeat: no-repeat;
    height: 40px;
    width: 40px;
}

.home .logo-navbar:hover,
.logo-navbar:hover {
    transform: scale(1.1); /* Aumenta el tamaño en un 20% */
}
.header .col-3 .row > .col {
    justify-content: flex-end;
}

.editMode .header{
    position:relative;
}
.accesos-header>.row{
    flex-wrap:nowrap;
}
.navbar-toggler{
    border:none;
    padding-left:0;
}
.hab-menu span {
    font-size: 15px;
    letter-spacing: 0.5px;
}
.group-languages-texts .btn-secondary.open-selector-language {
    background: transparent;
    border: 0;
    color: var(--colorPrimary);
    font-family:var(--fontPrimary);
    font-size:16px;
    font-weight:500;
    position:relative;
}
.open-selector-language span:after{
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 8px;
    content: "\f078";
    font-family: 'FontAwesome';
    color:var(--colorPrimary);
}
.top-menu>.row{
    display:flex;
    align-items:center;
}
.mybooking-content-text, .person-login-text,  span.bi.bi-person-fill,span.bi.bi-cart-fill{
    display:none;
}
@media (min-width: 768px) {
     span.glyphicon.glyphicon-user {
        display: none;
    }
}
.personLogin-content, .mybooking-content{
    width:16px;
}
.personLogin-content:before {
    content: url(/dam/monohotel-flamboyan/home/icons/ic-user.svg);
    position: relative;
}
.mybooking-content:before{
    content: url(/dam/monohotel-flamboyan/home/icons/ic-cart.svg);
    position: relative;
}
.mybooking-content{
    text-align: right;
    line-height: 1.1em;
}
.personLogin-content span{
    font-size:12px;
    color:var(--colorPrimary);
}
/* FIN - HEADER */
/* INICIO - HERO BANNER CABECERA */

/* 1 - Cabecera Home - Blanco */
.cabecera-motor.home {
    width: 100%;
    padding: 0;
    height: 100vh;
}
.cabecera-motor.home .container-hero {
    height: 100vh;
}
.cabecera-motor.home .container-hero img.img-responsive {
    object-fit: cover;
    height: 100%;
    max-height: none;
}
.cabecera-motor.home #video-cabecera {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.cabecera-motor.home .container-hero {
    position: relative;
}
.cabecera-motor.home .container-hero:before {
    content: "";
    position: absolute;
    background: var(--gradient);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
/* 2 - Cabecera Home - Negro Azul */
.price-hero img.img-responsive{
    height:100vh;
    width:100%;
    object-fit:cover;
}
.container-hero{
    position:relative;
}
.container-hero img.img-responsive{
    object-fit:cover;
    max-height: 600px;
}

.container-hero picture:before {
    content: "";
    position: absolute;
    background: var(--gradient);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.container-hero.container-hero-entorno picture:before{
    background: linear-gradient(0deg, rgba(7,32,43,1) 0%, rgba(7,32,43,0) 50%);
}
.containerTxtSlide p{
    font-size: 52px;
    font-style: normal;
    line-height:1.2em;
    font-family: "Newsreader", serif;
}
.containerTxtSlide {
    position: absolute;
    top: 25%;
    width:100%;
    z-index:2;
}
.cabecera-motor{
    position:relative;
}
.cabecera-motor{
    padding-top: 60px;
    width: calc(100% - 120px);
    margin: auto;
}

.grid-motor{
    position:absolute;
    bottom: -48px;
    width:100%;
    z-index:3;
}
#app-container {
    padding: 0 24px;
}
#buttonShowSearcherMobile{
    bottom:20px;
}
#buttonShowSearcherMobile, #buttonShowSearcherScroll{
    background:var(--bgPrimary);
    border:2px solid #fff;
    padding:15px 25px;
}
#buttonShowSearcherScroll{
    transform:scale(.8);
}
@media (max-width: 1500px) {
    .cabecera-motor {
        display: flex;
        flex-direction: column;
    }
    .grid-motor {
        position: static;
        order: 2;
    }

}
@media (max-width: 768px) {
    .cabecera-motor {
        width: 100%;
        margin: 0;
        padding-top: 0;
        height: 60vh;
    }
    .cabecera-motor img {
        height: 60vh;
    }

}
/* FIN - CABECERA */
/* INICIO - VENTAJAS */
.gridVentajas{
    background: var(--colorGrey);
    padding:15px 0;
}
.gridVentajas{
    display:none;
}
.ventajas-area-cliente .gridVentajas{
    display:block;
}
.cabecera-motor .gridVentajas{
    display:block;
    background: var(--colorGrey);
    padding:0;
    font-family:var(--fontPrimary);
    width:100%;
}
.ventajas-mobile .col{
    padding:0;
}
.ventajas-mobile.gridVentajas{
    background:var(--colorPrimary);
}
.swiperVentajas .swiper-button-prev:after,.swiperVentajas  .swiper-button-next:after{
    color: var(--colorPrimary);
    font-size:16px;
}
.gridVentajas img{
  filter:brightness(0) invert(1);
}
.cabecera-motor .gridVentajas br{
    display:none;
}
.ventajas{
    display:flex;
    justify-content:space-around;
}
.ventajas>div{
    flex:1;
}
.ventajas p{
    font-size:18px;
}
.gridVentajas img{
    margin-right:10px;
}
/*Ventajas  motor*/
.cabecera-motor .tab__label,
.cabecera-motor  .tab__close {
    display: flex;
    color: var(--colorPrimary);
    cursor: pointer;
  }
  .cabecera-motor  .tab__label {
    justify-content: space-between;
    padding: 8px;
    align-items: center;
  }
  .cabecera-motor  .tab__label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transform: rotate(90deg);
    transition: all 0.35s;
  }
  .cabecera-motor  .tab input:checked + .tab__label::after {
    transform: rotate(270deg);
  }
  .cabecera-motor  .tab__content p {
    margin: 0;
    padding: 0;
  }
  .cabecera-motor  .tab__close {
    justify-content: flex-end;
    padding: 0.5rem 1rem;
  }
  .cabecera-motor .tab {
    position: relative;
  }
  .cabecera-motor .tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
  .cabecera-motor  .tab__content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s;
  }
  .cabecera-motor  .tab input:checked ~ .tab__content {
    max-height: 10rem;
    margin: 15px 0;
  }

  .cabecera-motor  .tab__content ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    text-align: center;
    opacity: 0;
}

.cabecera-motor  .tab__content ul li {
    width: 16.6%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items:center;
}
.cabecera-motor  .tab__content ul li p {
    width: 100%;
    color: var(--colorPrimary);
    text-align: center;
    font-size: 13px;
}
.cabecera-motor  .tab input:checked ~ .tab__content {
    max-height: 10rem;
  }

  /* Animación de entrada (fadeIn) */
@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .cabecera-motor   .tab input:checked ~ .tab__content ul {
    animation: fadeIn 0.8s ease-in-out forwards; /* Aplica el fadeIn solo cuando está checked */
  }
  
  .cabecera-motor   .tab input:checked ~ .tab__content ul {
    opacity: 1; /* La opacidad se vuelve 1 al hacer checked */
  }
/* FIN - VENTAJAS */
/* INICIO - HOME */
/* 1 - Welcome - home*/
.welcome-section h1 {
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 63px; /* 105% */
}
.welcome-section h2 {
    font-family: var(--fontPrimary);
    font-weight: 300;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columnas iguales */
    grid-template-rows: repeat(3, auto); /* 3 filas con altura automática */
    gap: 10px; /* Espaciado opcional */
    margin-right: 60px;
    margin-left: 60px;
}
.grid-item {
    display: flex;
    justify-content: center;
    width: 100%; /* Hace que la imagen se adapte al contenedor */
    height: 100%; /* Se ajusta al tamaño del grid-item */
    object-fit: cover; /* Mantiene la proporción y llena el espacio */
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}
.grid-item:nth-child(1) { grid-column: span 2; grid-row: span 2; } /* 2 columnas, 2 filas */
.grid-item:nth-child(2) { grid-column: span 1; grid-row: span 1; } /* 2 columnas, 1 fila */
.grid-item:nth-child(3) { grid-column: span 1; grid-row: span 1; } /* 1 columna, 1 fila */
.grid-item:nth-child(4) { grid-column: span 1; grid-row: span 1; } /* 1 columna, 1 fila */
.grid-item:nth-child(5) { grid-column: span 2; grid-row: span 1; aspect-ratio: 2/1;} /* 2 columnas, 1 fila */
.grid-item:nth-child(6) { grid-column: span 1; grid-row: span 2; } /* 1 columna, 1 fila */
.grid-item:nth-child(7) { grid-column: span 2; grid-row: span 1; } /* 1 columna, 1 fila */
.grid-item:nth-child(8) { grid-column: span 1; grid-row: span 1; } /* 1 columna, 1 fila */
.grid-item:nth-child(9) { grid-column: span 1; grid-row: span 1; } /* 1 columna, 2 filas */
@media (min-width: 769px) and (max-width: 1500px) {
    .grid-item:nth-child(5) {grid-row: span 2; aspect-ratio: 1/1;}
    .grid-item:nth-child(8),
    .grid-item:nth-child(9) {
        display: none;
    }
    .text-welcome.m-5{
        margin: 1rem !important;
    }
}
/* Esconde los elementos 2, 3, 4 y 6 en dispositivos móviles */
@media (max-width: 768px) {
    .welcome-section h1 {
        font-size: 40px;
        line-height: normal;
    }

  .grid-item:nth-child(2),
  .grid-item:nth-child(3),
  .grid-item:nth-child(4),
  .grid-item:nth-child(6),
  .grid-item:nth-child(8),
  .grid-item:nth-child(9) {
    display: none;
  }

  .grid-container {
    grid-template-columns: 1fr 1fr; /* 2 columnas en móvil */
    margin-right: 10px;
    margin-left: 10px;
  }
  .grid-item:nth-child(5) {
    aspect-ratio: 1 / 1;
    }
    .text-welcome.m-5{
        margin: 1rem !important;
    }

  .grid-item:nth-child(1),
  .grid-item:nth-child(5),
  .grid-item:nth-child(7) {
    grid-column: span 2; /* Ocupa 2 columnas */
  }
}
/* 2 - Habitaciones - home*/
.img-overlay::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; /* Ajusta la altura del degradado */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none; /* Evita que afecte la interacción */
    z-index: 1;
}
.info-room h3 {
    font-family: var(--fontPrimary);
}
.info-room {
    z-index: 2; /* Asegura que el texto esté sobre el degradado */
}
.info-room a {
    min-width: 380px;
}

.room-section.home .price_from_container p {
    color: var(--colorWhite);
    font-size: 32px;
    font-weight: 700;
    cursor: pointer;
}
/* 3 - Ofertas y Experiencias home*/
.service-section.home [class^="col-12"] {
    margin-bottom: 24px;
}

.service-section h2,
.room-section h2,
.exp-section h2 {
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.exp-section h3 {
    font-size: 40px;
}
.exp-section .htt-text-image {
    height: 100%;
}
.exp-section .textExp {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-section a,
.exp-section a,
.room-section a {
    font-size: 20px;
    color: var(--colorBlue);
    align-items: center;  /* Alinea el ícono con el texto */
    text-decoration: none; /* Opcional: Eliminar subrayado */
}
.service-section a:hover,
.exp-section a:hover,
.room-section a:hover {
    color: #009fc0;
}
.service-section a .fa-arrow-right,
.room-section a .fa-arrow-right,
.exp-section a .fa-arrow-right {
    margin-left: 16px;  /* Añadir margen a la izquierda del ícono */
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}
.service-section a:hover .fa-arrow-right,
.room-section a:hover .fa-arrow-right,
.exp-section a:hover .fa-arrow-right {
    display: inline-block;
    animation: wiggle 1s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}
.exp-section .oferta{
    position:relative;
    cursor:pointer;
    overflow: hidden;
}

.exp-section .oferta .imgOferta{
    position:relative;
    height:100%;
}

.exp-section .oferta .textOferta{
    position:absolute;
    z-index:2;
    width:100%;
    height:100%;
    top:0;
    left:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:start;
    padding:40px;
    transition:.3s all;
}

.exp-section a.linkMore {
    padding: 16px 32px;
    border: 1px solid var(--colorWhite);
    font-size: 14px;
    color: var(--colorWhite);
    letter-spacing: 2.8px;

}
.exp-section a.linkMore:hover {
    background-color: rgba(255, 255, 255, .6);
    transition:.3s all;
    
}

@media (min-width: 768px) and (max-width: 1024px) {
    .service-section h2,
    .room-section h2,
    .exp-section h2 {
        font-size: 32px;
    }
  }
@media (max-width: 767px) {
    .personLogin-content button, .mybooking-content button{
        display:none;
    }
    .service-section h2,
    .room-section h2,
    .exp-section h2 {
        font-size: 42px;
    }
    .service-section a, .exp-section a, .room-section a {
        font-size: 16px;
    }
    .exp-section .mBT40 {
        margin-bottom: 20px;
    }
    .exp-section .mBT20 {
        margin-bottom: 10px;
    }
    .exp-section .mBT120 {
        margin-bottom: 40px;
    }
    .exp-section .masServicio.w70 {
        width: 100%;
    }
    .exp-section.home .row {
        gap: 20px;
    }
    .exp-section.home .oferta .imgOferta {
        max-height: 300px;
    }
    .room-section.home .justify-content-between,
    .service-section.home .justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px;
    }
}

/* 4 - Ofertas y habitaciones home*/
.oferta, .room{
    position:relative;
}
.oferta .textOferta, .room .textRoom{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 40%, rgba(0,0,0,.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.oferta .textOferta{
    padding:40px 80px;
}
.oferta .textOferta h3, .room .textRoom h3{
    font-weight:400;
}
.swiper-container{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
}
.swiper-pagination{
    position:relative;
    margin-top:20px;
}
.swiper-pagination-progressbar{
    height:1px;
    background: rgba(7, 32, 43, 0.30);
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background:var(--colorPrimary);
}
.ofertas .swiper-slide img.img-responsive{
    min-height:550px;
    object-fit:cover
}
.room .textRoom{
     justify-content:space-between;
     padding:40px 130px;
}
.room .imgRoom img.img-responsive{
    min-height:450px;
    object-fit:cover;
}
.room .bottomRoom{
    display:flex;
    justify-content:space-between;
    width:100%;
}
.room .bottomRoom>div{
    flex:1;
}
.room .bottomRoom p img{
    filter:brightness(0) invert(1);
}

/* 5 - Magaluf */
.magaluf-section .container-hero img.img-responsive {
    max-height: 1100px;
}
/* FIN - HOME */
/* INICIO - PROMOCIONES */
.room-section h1,
.exp-section h1{
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 63px; /* 105% */
}
@media (min-width: 768px) and (max-width: 1024px) {
    /* Estilos específicos para tabletas */
    .exp-section h1 {
        font-size: 42px;
        line-height: normal;
    }
    .exp-section h2 {
        font-size: 32px;
        line-height: normal;
    }
  }
@media (max-width: 767px) {
    .exp-section h1 {
        font-size: 32px;
        line-height: normal;
    }
    .exp-section .order-sm-2 h2 {
        margin-top: 10px;
    }
    .exp-section .textExp p:first-of-type {
        margin-top: 10px;
    }
}
/* FIN - PROMOCIONES */
/* INICIO - EXPERIENCIAS */
.servicio{
    position:relative;
    cursor:pointer;
    overflow: hidden;
}

.servicio .imgServicio{
    position:relative;
    height:100%;
}

.servicio .textServicio{
    position:absolute;
    z-index:2;
    width:100%;
    height:100%;
    top:0;
    left:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:60px;
    transition:.3s all;
}
.servicio .textServicio h3 {
    font-size: 32px;
}
.servicio .textServicio .masServicio{
    display:none;
    cursor:pointer;
}

.servicio:hover .masServicio{
    display:block;
}
.experiencias .servicio{
    margin:0 10px;
}

.servicio img.img-responsive{
    object-fit:cover;
    height:100%;
}

.imgServicio::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); /* Degradado de abajo hacia arriba */
  }
  
  .servicio .subtitle{
      color: #FFF;
      font-size: 48px;
      font-weight: 400;
      line-height: 60px;
      font-family: "Newsreader", serif;
  }
  .servicio .textServicio h2 {
      color: #FFF;
      font-size: 13px;
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 2px;
      padding-left: 2px;
      font-family: var(--fontPrimary)
  }
.servicio .masServicio p {
    font-style: normal;
    font-weight: 200;
    letter-spacing: 0.3px;
  }
  .servicio .imgServicio img {
  transition: transform 0.4s ease-in-out; /* Suaviza la animación */
}

.servicio:hover .imgServicio img {
  transform: scale(1.1); /* Aumenta un 10% el tamaño de la imagen */
}
.servicio:hover .imgServicio::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)); /* Degradado de abajo hacia arriba */
}
@media (max-width: 767px) {
    .servicio .subtitle{
        font-size: 32px;
        font-weight: 400;
        line-height: 42px;
        font-family: "Newsreader", serif;
    }
}
/* FIN - EXPERIENCIAS */
/* INICIO - FOOTER */
.footer p, .footer a{
    color: var(--colorWhite);
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
    line-height: 30px;
    letter-spacing: 0.3px;
}
.footer {
    background: #112437;
}
.footer ul {
    list-style: none;
    text-align: center;
}
.footer li {
    color: var(--colorWhite);
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
    line-height: 30px;
    letter-spacing: 0.3px;
}
.footer li.list-title {
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.3px;
}
.footer-columns{
    padding-top: 60px;
    padding-bottom: 60px;
}
.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-bottom: 30px;
}
.footer .copyright p {
    font-size: 14px;
    color: #A5A5A5;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    letter-spacing: 0.3px;
}
.footer .phone {
    font-weight: 500;
}
.footer .copyright i {
    color: var(--colorBlue);
}
.redesFooter:not(.editMode .redesFooter){
    display:none;
}
.footer-section a:hover {
    color: var(--colorBlue);
    transition: transform 0.4s ease-in-out;
}
.social-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .social-links {
    display: flex;
  }
  
  .social-links a {
    width: 60px;
    height: 60px;
    text-align: center;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.05);
    margin: 0 30px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s;
  }
  
  .social-links a .fab {
    font-size: 30px;
    line-height: 60px;
    position: relative;
    z-index: 10;
    transition: color 0.5s;
  }
  
  .social-links a::after {
    content: '';
    width: 100%;
    height: 100%;
    top: -90px;
    left: 0;
    background: #000;
    background: linear-gradient(-45deg,#3386FF, #5e98f0);
    position: absolute;
    transition: 0.5s;
  }
  
  .social-links a:hover::after {
    top: 0;
  }
  
  .social-links a:hover .fab {
    color: #fff;
  }
  
  .social-links a:hover {
    transform: translateY(-10px);
  }
  
@media (max-width: 767px) {
    .footer-section ul {
        padding-left: 0;
    }
}
/* FIN - FOOTER */
/* INICIO - HABITACIONES */
.menu-habitaciones a {
    color: var(--colorPrimary);
}
.menu-habitaciones.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white; /* Ajusta según tu diseño */
    padding-top: 16px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra opcional */
    transform: translateY(0); /* Se mantiene en su lugar */
    transition: transform 0.5s ease-in-out;
    padding-left: 10vw;
    padding-right: 10vw;
}

/* FIN - HABITACIONES */
/* INICIO - DETALLE HABITACION */
.room-section .room-detail h2 {
    font-size: 24px;
    font-family: var(--fontPrimary);
    font-weight: 300;
}
/* FIN - DETALLE HABITACION */
.detailRoom h2, .gridOferta h2{
    font-size:26px;
    font-weight:400;
    text-transform:uppercase;
}
ul.servicesRoom{
    column-count: 2;
    list-style-type: none;
}
ul.servicesRoom.list1{
    column-count:2;
}
ul.servicesRoom.listBar{
    column-count:1;
    padding-left:0;
}
.gridImgRoom:not(.editMode .gridImgRoom){
    display:none;
}
.imgMainRoom img{
    height:80vh;
    width:100%;
    object-fit:cover;
}
@media (max-width: 768px) {
    .room-section h1 {
        font-size: 40px;
        line-height: normal;
    }
}
/*Landing ofertas*/
.gridOferta img.img-responsive{
    min-height:500px;
    object-fit:cover;
}
p.readMoreLink, p.readLessLink{
    padding: 10px 0;
    border-top: 1px solid var(--colorPrimary);
    border-bottom: 1px solid var(--colorPrimary);
    text-transform: uppercase;
}

/* INICIO - DESTINO MAGALUF */
.containerMagaluf{
    position:absolute;
    width:100%;
    top:10%;
    z-index:2;
}
.magaluf-section .titleMagaluf{
    color: var(--colorWhite);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.magaluf-section .titleMagaluf{
    color: var(--colorWhite);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.magaluf-section .titleMagaluf > span {
    font-size: 120px;
    font-style: normal;
    font-weight: 600;
    line-height: 140px;
    text-transform: none;
    font-family:  "Newsreader", serif;
    letter-spacing: 5px;
}
.magaluf-section .textMagaluf{
    color: var(--colorWhite);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px; /* 162.5% */
    text-wrap: balance;
    letter-spacing: 0.3px;
}
.magaluf-section a {
    padding: 8px 64px;
    border: 1px solid white;
    background-color: transparent;
}
@media (max-width: 767px) {
    .containerMagaluf .w40 {
        width: 90%;
    }
    .magaluf-section .titleMagaluf > span {
        font-size: 42px;
    }
    .magaluf-section .container-hero img {
        height: 60vh;
    }
}
/* FIN - DESTINO MAGALUF */
/*Landing galería*/
.lightbox img{
    object-fit:cover;
    min-height:500px;
}
.lightbox img a{
    position:relative;
}
.lightbox .image{
    padding:20px;
    transition:.3s all;
}
.lightbox .image a:before{
    content: "\f002";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    color:#fff;
    font-size:36px;
    font-family: 'FontAwesome';
    animation:animopac 1s forwards;
    display:none;
    z-index:2;
    opacity:.8;
}
.lightbox .image:hover{
    transform:scale(1.1);
}
.lightbox .image:hover img{
    filter:brightness(.8);
}
.lightbox .image:hover a:before{
    display:block;
}
.galeria .modal-content{
    width:70%;
    max-width:900px;
}
.galeria .modal-content button{
    background: rgba(255, 255, 255, .6);
    border: none;
    color: #000;
    width:50px;
    height:50px;
    padding:5px;
    z-index:2;
}
@media (max-width: 767px) {
    html.with-fancybox {
        overflow: hidden !important;
    }
}
/*Landing contacto*/
h1.upper{
    text-transform:uppercase;
    font-size:26px;
    font-weight:400;
}
.gridContacto>.container-fluid>.row>.col-12{
    padding:0;
}
.gridContacto>.container-fluid>.row>.col-12:first-child .htt-text-image,
.gridContacto>.container-fluid>.row>.col-12:first-child .htt-text-image img{
    height:100%;
    object-fit:cover;
}
.formulario{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.formulario>.row>.col{
    padding: 20px 80px;
}
.form-wrapper .form-row {
    display:flex;
    flex-direction:column;
}
.form-wrapper .form-row label{
    color:var(--colorPrimary);
    margin:5px 0;
}
.grecaptcha-logo{
    margin-top:20px;
}
.form-wrapper .form-item:has(.user-success){
    margin-top:12px;
}
.form-wrapper .form-row input:not(.form-wrapper .form-row input[type=checkbox]),.form-wrapper .form-row textarea{
    width:100%;
    border:none;
    border-bottom:1px solid var(--colorPrimary);
    background:transparent;
}
.form-wrapper .button-wrapper{
    min-width:350px;
    display:inline-block;
}
.form-wrapper .button-wrapper input[type=submit]{
    width:100%;
    background:var(--colorBlue);
    color:#fff;
    padding:16px;
    margin-top:30px;
    border:none;
}
.form-wrapper label[for=aceptar]:first-child{
    display:block;
    margin-top:20px;
    opacity:0;
}
div#mgnlhp {
    position: absolute;
    left: -20000px;
}
input.user-success{
    margin-top:10px;
}
.nap{
    margin-top:-10px;
}
.nap-contacto i{
    width: 60px;
    height: 60px;
    border: 1px solid var(--colorPrimary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
}
.como-llegar .row{
    align-items:center;
}
.como-llegar .row>.col-12{
    padding:0;
}
table.interes td{
    padding:15px;
}
table.interes tr{
    border-bottom:1px solid rgba(7, 32, 43,.3);
}
table.interes tr td:last-child{
    border-left:1px solid rgba(7, 32, 43,.3);
}
/*Landing gastronomia*/
.banner-intro picture img{
    max-height:50vh;
    object-fit:cover;
}
/*Faqs*/
.faqs .accordion{
    --bs-accordion-bg:transparent;
    --bs-accordion-border-radius:none;
}
.faqs .accordion-button:not(.collapsed){
    background-color:transparent;
    box-shadow:none;
}
.faqs .accordion-item{
    border:none;
    border-bottom: 1px solid rgba(0,0,0,.6);
}
.faqs .accordion-button::after{
    opacity:.8;
}
.accordion-button:focus{
    border:none;
    box-shadow:none;
}
/*404*/
.error404 h1 span{
    display:block;
    font-size:64px;
    font-weight:800;
}
/*Protección de datos*/
.data-protection h4{
    margin:20px 0;
}
.header-mobile{
    display:none;
}

@media(min-width:1200px){
    .header-mobile{
        display:none;
    }
    /*.editMode .header-mobile{
        display:block;
    }*/
}
@media(min-width:1025px){
     .lightbox>.row{
         flex-wrap:nowrap;
     }
    .flexServicios .servicio{
        flex:1;
        transition:.5s all;
    }
    .flexServicios .servicio:hover{
        flex:3;
    }
}
@media(min-width:992px){
    .bar .col-xxl-6{
        padding-right:0;
        padding-left:0;
    }
    .snack-bar .bar .text-bar{
        padding-left:40px;
    }
    .snack-bar .bar.invert .text-bar{
        padding-right:40px;
    }
}
@media(min-width:768px) and (max-width:1199px){
    /*.header .navbar{
        position:absolute;
        top:0;
    }*/
    .accesos-header{
        margin-right:-40px;
    }
    .imgBanner .servicio .textServicio{
        min-height:350px;
    }
    .imgBanner .servicio .textServicio .masServicio{
        padding-bottom:40px;
    }
    .tabsRooms .nav-tabs .nav-link{
        padding:50px 20px;
    }
}
@media(min-width:768px){
    .flex768>.row{
        display:flex;
        align-items:center;
    }
    .flexServicios{
        display:flex;
    }
    .paddLeft10{
        padding-left:10%;
    }
}
@media(max-width:1680px){
    .textSectionRoom{
        padding:20px;
    }
    .imgBanner .servicio{
        width:40%;
    }
    .containerTxtSlide{
        top:25%;
    }
    .oferta .textOferta{
        padding:40px;
    }
    .w50{
        width:65%;
    }
}
@media(max-width:1366px){
    .w50{
        width:60%;    
    }
    .w80{
        width:90%;
    }
    body, .data-protection table{
        font-size:16px;
    }
    body a.linkMore{
        font-size:18px;
    }
    h1, h2, p.title{
        font-size:36px;
    }
    .intro, .seccion{
        padding:60px;
    }
    .icRoom span{
        padding-right:20px;
    }
    .room .textRoom{
        padding:40px 80px;
    }
    .opiniones>.row>.col:last-child{
        right:5%;
        width:30%;
    }
    .imgBanner .servicio{
        width:45%;
    }
    .formulario>.row>.col{
        padding:10px 80px;
    }
    .buttons-swiper-offers{
        display:flex;
    }
}
@media(max-width:1280px){
    .top-menu.w90{
        width:98%;
    }
    .intro, .seccion{
        padding:60px 40px;
    }
    .banner-gastro .w50.textBannerGastro{
        width:50%;
    }
}
@media(min-width:1200px){
    .logo-mobile, .grid-languages-menu .navbar{
        display:none;
    }
    .editMode .grid-languages-menu .navbar{
        display:block;
    }
}
@media(max-width:1199px){
    .grid-languages-menu .w100,.grid-languages-menu>.row>.col>.group-languages-texts{
        display:none;
    }
    .gridLanguagesMobile .dropdown{
        float:right;
        margin-right:20px;
    }
    .gridLanguagesMobile  .group-languages-texts .btn-secondary.open-selector-language{
        color:var(--colorPrimary);
    }
    .offcanvas-header .btn-close{
        margin-right:20px;
    }
    .open-selector-language span:after{
        right:5px;
    }
    .group-languages-texts .btn-secondary.open-selector-language{
        width: 65px;
    }
    .header .row, .cabecera-motor .row{
        margin-left:0;
        margin-right:0;
    }
    .header .col, .cabecera-motor .col{
        padding-left:0;
        padding-right:0;
    }
    .header{
        padding:10px 15px;
    }
    .header-mobile>.container-fluid >.row, .accesos-mobile>.row{
        flex-wrap:nowrap;
        align-items:center;
    }
    .editMode .header-mobile>.container-fluid >.row,.editMode .accesos-mobile>.row{
        flex-wrap:wrap;
    }
    .header-mobile>.container-fluid >.row, .accesos-mobile>.row>.col{
        flex-basis:50%;
    }
    .gridLoginMobile>.row>.col,.gridBookingMobile>.row>.col{
        display:flex;
        justify-content:center;
    }
    .header-mobile>.container-fluid >.row>.col:first-child,
    .header-mobile>.container-fluid >.row>.col:last-child{
        flex:0 0 25%;
    }
    .header-mobile>.container-fluid >.row>.col:nth-child(2){
        flex:0 0 50%;
    }
    .top-menu .menu{
        display:none;
    }
    .imgBanner .servicio{
        position:relative;
        width:100%;
        left:0;
    }
    .imgBanner .servicio .textServicio{
        position:relative;
    }
    .imgIntro{
        margin-top:20px;
    }
    .imgIntro2{
        display:none;
    }
    .grid-imgIntro .htt-text-image, .grid-imgIntro .imgIntro, .grid-imgIntro .imgIntro img.img-responsive:first-child{
        height:auto;
    }
    .grid-imgIntro .imgIntro img.img-responsive{
        min-height:350px;
    }
}
@media(max-width:1024px){
    .w50, .w60, .w70{
        width:80%;
    }
    .containerTxtSlide{
        top:24%;
    }
    .containerTxtSlide p{
        font-size:30px;
    }
    .pet-friendly{
        top:140px;
    }
    .grid-motor{
        bottom:0;
    }
    .ventajas p{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .ofertas .swiper{
        margin-top:40px;
    }
    .gridOpiniones .w50{
        width:100%;
    }
    .gridOpiniones .left{
        text-align:center;
    }
    .opiniones>.row>.col:last-child{
        flex:0;
        width:80%;
        left:10%;
        top:20px;
    }
    .opiniones>.row>.col:first-child{
        margin-top:150px;
    }
    .galeria .modal-content{
        width:90%;
    }
    .lightbox img{
        margin-top:10px;
        min-height:350px;
    }
    .imgMainRoom img{
        height:60vh;
    }
    .room .imgRoom img.img-responsive{
        height:40vh;
    }
    .room .textRoom{
        padding:40px;
    }
    .servicio{
        height:auto;
    }
    .servicio img.img-responsive{
        min-height:550px;
    }
    .servicio .textServicio{
        padding:40px 20px;
    }
    .gridImg img.img-responsive, .tabsRooms img.img-responsive{
        min-height:350px;
    }
    .gridImg .servicio{
        height:auto;
        
    }
    .textSectionRoom h3, .textSectionRoom p.left{
        text-align:center;
    }
    .textSectionRoom .price_from_container{
        margin:0 auto;
    }
    .textSectionRoom{
        padding:10px;
    }
    ul.servicesRoom.list1{
        column-count:1;
    }
}
@media (max-width: 768px) {
    .header {
        background: white;
    }
}

/* INICIO - LANDING HABITACIONES */
.grid-template{
    grid-template-columns: 1fr 2fr;
}
.grid-template-2{
    grid-template-columns: 2fr 1fr;
}

.btnBook {
  border: 1px solid var(--colorBlue);
  color: var(--colorBlue);
  cursor: pointer;
  clear: both;
  display: block;
  padding: 15px 60px;
  text-align: center;
  text-decoration: none;
  transition: all 500ms linear;
  position: relative;
  overflow: hidden; /* Ensure the background doesn't overflow */
}

.btnBook::after {
  background-color: rgba(51, 134, 255, 0.8);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 300ms ease-out, background-color 300ms ease-out;
  width: 0;
  z-index: -1;
}

.btnBook:hover {
  background-color: rgba(51, 134, 255, 0.8);
  box-shadow: 0 0 10px 0 #3386FF;
  color: #fff !important;
  text-decoration: none;
}

.btnBook:hover::after {
  background-color: var(--colorBlue);
  width: 100%;
}
.btnBlue {
    background: var(--colorBlue);
    color: var(--colorWhite) !important;
}

.price_from_container a.p-from {
    color:var(--colorPrimary);
    font-size:16px;
    font-weight: 300;
}

.price_from_container a {
    color:var(--colorPrimary);
    font-size:32px;
    font-weight:300;
    line-height: normal;
    cursor:pointer;
}
.price_from_container.rooms a {
    font-size:18px;
    cursor:pointer;
}
.price_from_container.home a {
    color:var(--colorWhite);
}
.price_from_container.home a.price_from{
    margin-top:8px;
}
.price_from_container a.p-from.home {
    color:var(--colorWhite);
}

/* FIN - LANDING HABITACIONES */
/* INICIO - DETALLE HABITACIONES */
.menu-habitaciones{
    border-bottom: 1px solid #D2D2D7;
    padding-bottom: 15px;
    transition: opacity 0.3s;
}

.menu-habitaciones:hover a:not(:hover) {
    opacity: 0.5; /* Los enlaces que no están en hover tendrán opacidad 0.5 */
}
.text-room {
    border-right: 1px solid #e0e0e0;
    height: 100%;
    padding-right: 50px;
}

.grid-list {
    list-style: none; /* Oculta los bullets */
    padding-left: 0;
}

.grid-list li {
    position: relative;
    padding-left: 20px; /* Espacio para la flecha */
}
.grid-list li::before {
    content: "›"; /* Flecha */
    position: absolute;
    left: 0;
    color: var(--colorPrimary);
    font-weight: bold;
}
.grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Tres columnas */
    gap: 10px; /* Espacio entre los elementos */
    width: 100%;
}
.more-room-section .price_from_container p{
    font-size:16px;
}
.more-rooms-section h2{
    font-size: 40px;
}
.more-rooms-section h3{
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 8px;
}
.more-rooms-section img{
    overflow: hidden;
}
.more-rooms-section a img:hover{
    transition: transform 0.4s ease-in-out; /* Suaviza la animación */
    transform: scale(1.1); /* Aumenta un 10% el tamaño de la imagen */
}
.more-rooms-section h3 a {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    font-family: var(--fontPrimary);
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* Agrega la flecha después del texto del enlace */
.more-rooms-section h3 a::after {
    content: "›";
    position: absolute;
    right: -15px; /* Posición inicial fuera del texto */
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    color: var(--colorBlue);
}

/* Animación de rebote en la flecha al hacer hover */
.more-rooms-section h3 a:hover::after {
    opacity: 1;
    animation: bounce 1.5s infinite; /* Animación continua */
}
.rowRooms .col:not(:first-child)  {
    margin-bottom: 60px; /* Añade espacio entre columnas */
}

.rowRooms .order-sm-2 {
    align-items: center;
    display: flex;
}
.editMode .rowRooms .order-sm-2{
    display:block;
}
.rowRooms .order-sm-2 > .htt-text-image:first-of-type {
    flex-grow: 1;
}

/* Definición de la animación de rebote */
@keyframes bounce {
    0% {
        transform: translateX(0); /* Inicia en la posición original */
    }
    50% {
        transform: translateX(5px); /* Rebote en dirección contraria */
    }
    100% {
        transform: translateX(0); /* Regresa a la posición original */
    }
}
@media(max-width:1024px){
    .menu-habitaciones a {
        font-size: 16px;
    }
}
/* Móvil (hasta 767px) */
@media (max-width: 767px) {
    .more-rooms-section h3 {
        margin-top: 10px;
    }
    .more-rooms-section .more-rooms .row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px; /* Ajusta el espacio entre las columnas */
    }
    .grid-list{
        grid-template-columns: repeat(1, 1fr); /* Tres columnas */
        gap: 4px;
    }
    .grid-template-2{
        grid-template-columns: 1fr;
        gap: 1rem !important;
    }
    .room-section .info-room {
        order: 1;
        gap: 1rem !important;
    }
    .text-room {
        border-bottom: 1px solid #e0e0e0;
        border-right: none;
        height: 100%;
        padding-bottom: 30px;
        padding-right: 0px;
    }
    .room-section a,
    a.btnBook{
        display:block;
        width:100%;
        min-width:unset;
        margin:0 auto;
    }
    .menu-habitaciones {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .rowRooms .col:not(:first-child)  {
        margin-bottom: 40px; /* Añade espacio entre columnas */
    }
    
}
/* FIN - DETALLE HABITACIONES */
/* INICIO - GALERIA */
.nav-tabs {
    display: flex;
    justify-content: center;
}
.nav-tabs .nav-link {
    margin-bottom: none;
    color: var(--colorPrimary);
}
.nav-tabs .nav-link.active {
    border: none;
    border-bottom: 1px solid var(--colorBlue);
    color: var(--colorBlue);
}
.gallery-section .d-block {
    display: flex !important;
    justify-content: center;
}
.dropdown .btn-secondary {
    --bs-btn-bg: var(--colorBlue);
    border: none;
}
.dropdown .btn-secondary:checked {
    --bs-btn-bg: var(--colorBlue);
}

/* FIN - GALERIA */
.swiper-pagination-bullet-active {
    width: 16px; /* Tamaño más alargado del bullet activo */
    border-radius: 4px;
    transition: all 0.3s ease-in-out; /* Aplica la misma transición */
}

.cardSlider__section {
    position: relative;
    .swiper {
      width: calc(100% - 60px);
      margin: 0 auto;
      .swiper-wrapper {
        @media (min-width: 992px) {
          flex-flow: row wrap;
          align-items: stretch;
        }
        .cardItem {
          width: 33.333333%;
          height: auto;
          padding: 15px;
          @media (max-width: 991px) {
            width: 100%;
          }
        }
        .card__wrapper {
          height: 100%;
          border: 1px solid #ddd;
          padding: 45px 30px;
          display: flex;
          flex-flow: column;
          align-items: center;
          justify-content: center;
          .card__title {
            margin-bottom: 15px;
            text-align: center;
          }
          .card__desc {
            margin-bottom: 15px;
            text-align: center;
            font-size: 14px;
            line-height: 1.4;
          }
          .card__btn {
            border-radius: 5px;
            padding: 12px 24px;
            text-decoration: none;
            color: #000;
          }
        }
      }
    }
    .swiper-pagination {
      display: none;
      @media (max-width: 991px) {
        display: flex;
        justify-content: center;
        bottom: -30px;
      }
      .swiper-pagination-bullet {
        background-color: #000;
      }
    }
    .swiper-button-prev,
    .swiper-button-next{
      display: none;
      color: #000;
      @media (max-width: 991px) {
        display: flex;
      }
      &:after {
        font-size: 30px;
      }
    }
  }
/*TEST RIPPLE*/
  .full-landing-image{
    width: 100%;
    height: 100vh;
    background: url('https://i.postimg.cc/J07vSC9q/hero-background.jpg') no-repeat center;
    background-size: cover;
  }
/* AJUSTES DE RESOLUCION */
@media(max-width:1920px){
    .container-fluid.w60{
        width: 80% !important;
        transition: width 0.5s ease;
    }
    .container-fluid.w70{
        width: 80% !important;
        transition: width 0.5s ease;
    }
    .container-fluid.w80{
        width: 80% !important;
        transition: width 0.5s ease;
    }
}
@media(max-width:1400px){
    .container-fluid.w60{
        width: 95% !important;
        transition: width 0.5s ease;
    }
    .container-fluid.w70{
        width: 95% !important;
        transition: width 0.5s ease;
    }
    .container-fluid.w80{
        width: 95% !important;
        transition: width 0.5s ease;
    }
    .grid-container {
        margin-right: 25px;
        margin-left: 25px;
    }
}
@media(max-width:1024px){
    .menu-habitaciones a {
        font-size: 16px;
    }
    .paddBT60,
    .paddBT120{
        padding-bottom:60px;
    }
    .mTop60,
    .mTop120{
        margin-top: 60px;
    }
    .mBT60,
    .mBT120{
        margin-bottom: 60px;
    }
}
@media(max-width:767px){
    .paddTop120, .paddTop60{
        padding-top: 40px;
    }
    .paddBT60,
    .paddBT120{
        padding-bottom:30px;
    }
    .mTop60,
    .mTop120{
        margin-top: 30px;
    }
    .mBT60,
    .mBT120{
        margin-bottom: 30px;
    }
    .lightbox img{
        min-height:350px;
    }
    .imgBanner .servicio{
        position:relative;
        left:0;
        width:100%;
    }
    .gridEntorno .imgBanner .servicio{
        top: -50px;
        width: calc(100% - 20px);
        left: 10px;
    }
    .grid-container {
        margin-right: 10px;
        margin-left: 10px;
    }
}

 /* class area */
 .card-content {
    display: flex;
    padding:15px;
    width: 100%;
  }
  .card-info {
    padding: 20px;
    background-color: #f9f9f9;
    display: table-cell;
    line-height: 1.363em;
    vertical-align: middle;
    word-break: break-all;
  }
  
  .card-icon {
    font-size: 2em;
    color: #191919;
    text-align: center;
    width: 10%;
    background-color:#3385ff24;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    display: flex;
      justify-content: center;
      align-items: center; 
  }
  .card-icon .fa {
    font-size: 20px;
  }
  
  .text-area {
    color: #191919;
    font-size: 1em;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .text-area span {
    display: flex;
    gap: 20px;
  }
    
    @media (max-width: 768px) {
    .text-area {
      flex-direction: column;
      font-size: 0.9em;
    }
    .card-icon {
      font-size: 1em;
    }
    img.room-home {
        min-height: 500px;
    }
  }
  @media (min-width: 576px) {
    .d-sm-block {
      display: flex !important;
    }
  }
  /* AREA CLIENTE */
  /*Area cliente*/

.custom-menu {
    display: flex;
    gap: 15px;
    border-bottom: 2px solid  #e6e6e6;
    padding-bottom: 5px;
    list-style: none;
    margin: 0;
    position:relative;
}

.custom-menu ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.custom-menu li {
    list-style: none;
}
.custom-menu__item {
   font-family: var(--fontRegular), sans-serif;
   font-size: 20px;
   color: var(--colorSecondary);
   text-decoration: none;
   padding: 10px 20px;
   border-radius: 5px 5px 0 0;
   transition: all 0.3s ease;
   position: relative;
}
.custom-menu__item::after {
    content: "";
    display: block;
    height: 3px;
    background: transparent;
    position: absolute;
    bottom:0;
    left: 0;
    width: 100%;
    transition: background 0.3s;
}
.custom-menu__item:hover, .custom-menu__item.active {
    color: var(--colorPrimary);
}
.custom-menu__item.active::after {
    background: var(--colorPrimary);
}
