:root{
  --blanco: #ffffff;
  --negrosecundario: #444;
  --oro: #d4af37;
  --orosecundario: #b8902f;
  --orodifuminado:rgba(212, 175, 55, .7);
  --negro: #000;
  --degradado: #fdf6e3;
  --verde: #123c32;
  
  --fuentePrincipal: "PT Sans", sans-serif;
  --fuente_secundaria: "Open Sans",  sans-serif;
}
html{
    box-sizing: border-box;
    font-size: 62.5%; /* 1 rem = 10px */
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body{
    font-family: var(--fuente_secundaria);
    font-size: 1.6rem;
}
.contenedor{
    max-width: 120rem;
    width: 90%;
    margin: 0 auto;
}

/* Gobales */
a{
    text-decoration: none;
}
h1, h2, h3 {
    font-family: var(--fuentePrincipal);
}

h1{
    font-size: 4.8rem;
}
h2{
    font-size: 4rem;
}
h3{
    font-size: 3.2rem;
}
h4{
    font-size: 2.3rem;
}
img{ /*imagenes con un 100% de vista*/
    max-width: 100%;
}

/*Utilidades*/

.no-margin{ /*Elimina los margenes de los elementos*/
    margin: 0;
}
.no-padding{ /*Elimina los padding de los elementos*/
    padding: 0;
}
.hrsep{
    color: var(--verde);
    margin: 0;
}
.centrar-texto{ 
    text-align: center;
}
.tex__blanco{
    color: var(--blanco);
}
.justificar-texto{
    text-align: justify;
}
.texto_bold{
    font-weight: bold;
}
.background{
    background-color: #fdf6e3;
}
.background1{
    background-color: #f8f5f2;
    margin: 0;
    text-align: center;
}
.margin1{
    margin: .5rem;
}
.margin_latera1rem{
    margin-left: .5rem;
    margin-right: .5rem;
    text-align: center;
}
.padding1{
    padding-top: 1rem;    
}
.paddingb{
    padding-bottom: 2rem;
}
.padding1r{
    padding: 1rem;
}
.h1movil{
    font-size: 4rem;
    text-align: center;
    margin: 1rem;
}
.h2movil{
    font-size: 3rem;
    text-align: center;
    margin: 1rem;
}
.h3oro{
    color: var(--oro);
    margin: 1rem;
    text-align: center;
}
/* header */
.header{
    background-image: url(../Img/Exterior/Realistas/Alberca.jpg);
    height: 60rem;    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.header__texto{
    text-align: center;
    color: var(--blanco);
    margin-top: 1rem;    
}
.barra{
    justify-items: center;    
}
.logo{
    justify-content: center;
    align-content: center;
}
.navegacion__enlace{
    display: block;
    text-align: center;
    font-size: 1.8rem;
    color: var(--blanco);
    padding-top: .3rem;
    padding-bottom: .3rem;
    margin-left: .4rem;
    margin-right: .4rem;    
}
.shadow{
    text-shadow: 2px 2px 5px var(--negro);
}
.deslizar{
    background-color: #f8f5f2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.deslizar1{
    display: flex;
    justify-content: center;
    width: 50%;
    gap: 2rem;    
}
.w-full{
    width: 50%;
}
.btn-luxury{
  display:inline-block;
  padding:1rem 2rem;   
  font-weight:700;
  font-size: 1.5rem;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--blanco);
  background:var(--oro);
  border-radius:8px;
  text-decoration:none;
  transition:all 0.3s;
  box-shadow:0 6px 20px rgba(0,0,0,0.3);
  margin-top: 1rem;  
}
.btn-luxury:hover{
  background:#fff;
  color:#d4af37;
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(0,0,0,0.4);
}
.margin__min{
    margin-bottom: .5rem;
}
/* Nosotros */
.nosot{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;    
}
.nosot h2{
    font-size: 3.2rem;
}
.serv_grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    gap: 4rem;
}
/* Servicios */
.service-content{    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    position: relative;
    z-index: 2;  
}
.serv_card::before{
   content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
  border-radius: 15px;  
}
.serv_card{    
    font-family: var(--fuente_secundaria);
    color: var(--blanco);    
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    padding: 30px 20px 20px;
    background-size: cover;
    background-position: center;        
}
.serv_card h3{
    font-family: var(--fuentePrincipal);
    color: var(--oro);    
}
.serv_card p{
    color: var(--blanco);
}
.icono{
    font-size: 4rem;
}
/* Block video*/
.block-left{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, .5fr);
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.block-left1{
    grid-column: 1/3;
}
.block-left3{
    grid-column: 1/3;
    grid-row: 3/4;    
    margin-left: 9rem;
}
.block-left2{
    grid-column: 1/3;
    grid-row: 2/3;        
}
.block-left video{
    width: 100%;
    align-items: center;
}
.block-left a{
    width: 50%;    
}
.block2h{
    font-size: 3rem;
    padding: .5rem;
}
/* Carrusel Alojamientos*/
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.carousel-track {
  display: flex;
  transition: transform 0.7s ease-in-out;
}
.carousel-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-slide img{
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 15px;
}
.carousel-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: auto;  
  border-radius: 10px;
  max-width: 80%;
  text-align: center;
  padding-bottom: .7rem;
  padding-left: 1rem;
  padding-right: 1rem; 
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}
.carousel-btn.prev { 
  left: 10px; 
}
.carousel-btn.next { 
  right: 10px; 
}
.carousel-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.carousel-overlay p {
  font-size: 1.4rem;
}
/* Formulario */
.contact-section{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    width:100%;
    padding:2rem;
    overflow:hidden;
}
.contact-bg{
    position:absolute;
    inset:0;    
    height:75rem;
    object-fit:cover;
    z-index:1;
}
.contact-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
    height: 50rem;
    backdrop-filter:blur(4px);
    z-index:2;
}
.contact-container{
    display: flex;  
    flex-direction: column;
    z-index:3;      
    border:1px solid #d4af37;
    background:rgba(0,0,0,0.35);
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.4);
}
.contact-subtitle{
  color:var(--oro);
  font-size:2rem;
  text-transform:uppercase;
  text-align: center;
  letter-spacing:3px;
  margin-bottom:15px;
}
.contact-info{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.contact-card{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
}
.contact-info p,h3,h4,h5{
    color: var(--blanco);
}
.contact-card i{
  width:4rem;
  height:4rem;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:50%;
  background:#d4af37;
  color:#000;
  font-size:2rem;
}
.contact-card1{
    grid-column: 1/2;
}
.contact-card2{
    grid-column: 2/4;
}
.contact-form-box{      
  border-radius:18px;  
  padding: 1rem;
}
.contact-form-box h3{
  color:#fff;
  font-size:2rem;  
  text-align:center;
}
.contact-form-box input,select,textarea{
  width:100%;  
  border:none;
  outline:none;
  border-radius:12px;
  background: var(--blanco);
  font-size: 1.8rem;
  font-family:var(--fuente_secundaria);
}
.contact-btn{
  width:100%;
  padding:16px;
  border:none;
  border-radius:12px;
  background: #d4af37;
  color:#000;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s ease;
}

/* Nosotros - Story */
.about-right{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: space-between;        
    padding: 0;
    gap: 1rem;
}

/* Footer */
.footer{
  background:var(--negrosecundario);
  color:var(--blanco);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.footer p,hr,h4{
    color: var(--blanco);
}
.footer-top{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: .5rem;
    justify-content: space-between;
}
.footer-col{
    display: flex;
    flex-direction: column;
}
.footer a{
    color: var(--oro);    
}
.footer-bottom{
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.footer-bottom img{
    width: 10rem;
}
/* MODAL DE RESERVA */
.reservation-modal{
  position:fixed; 
  inset:0; 
  background:rgba(0,0,0,0.85); 
  display:flex; 
  justify-content:center; 
  align-items:center; 
  opacity:0; 
  visibility:hidden; 
  transition:0.3s; 
  z-index:9999; 
  overflow-y:auto; 
  padding:20px;
}
.reservation-modal.active{
  opacity:1; 
  visibility:visible;
}
.reservation-content{
  background:var(--blanco); 
  border-radius:12px; 
  max-width:600px; 
  width:100%; 
  padding:40px; 
  position:relative; 
  animation:fadeInModal 0.5s ease;
}
.reservation-content h2{
  margin-bottom:20px; 
  font-family:var(--fuente_secundaria);
}
.reservation-content input, .reservation-content select, .reservation-content textarea{
  width:100%; 
  padding:12px 15px; 
  margin-bottom:15px; 
  border:1px solid #ccc; 
  border-radius:8px; 
  font-family:var(--fuente_secundaria); 
  font-size:14px;
}
.reservation-content button{
  background: var(--oro); 
  color:var(--blanco);  
  font-weight:700; 
  text-transform:uppercase; 
  padding:12px 25px; 
  border:none; 
  border-radius:8px; 
  cursor:pointer; 
  transition:0.3s; 
  font-family:var(--fuente_secundaria);
}
.reservation-content button:hover{
  background: var(--orosecundario);
}
.reservation-close{
  position:absolute; 
  top:15px; 
  right:15px; 
  font-size:24px; 
  color:#333; 
  cursor:pointer;
}
/* Servicios */
.grid_ser{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: space-between;
}

/* Suite a Villas */
.mroom{
    background-image: url(../Img/Suite/Suite\ sala.jpg);
    height: 22rem;
    background-repeat: no-repeat;
    background-size: cover;
}
.mroom1{        
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0) 0%, rgba(233, 231, 231, 0) 20%, rgba(210, 208, 208, 0) 40%, rgba(210, 208, 208, 0.01) 60%, rgba(169, 167, 167, 0.86) 100%);
}
.msroom{
    background-image: url(../Img/Master\ Suite/Master\ Suite\ Sala.jpg);
    height: 22rem;
    background-repeat: no-repeat;
    background-size: cover;
}
.mvroom{
    background-image: url(../Img/Villas/Villa\ Sala.jpg);
    height: 22rem;
    background-repeat: no-repeat;
    background-size: cover;
}
.iconoroom{
    color: var(--orodifuminado);        
}
.flexroom{
    display: flex;        
    justify-content: center;
    align-items: center;
}
.flexroom p{
    font-size: .5rem;
    text-align: center;
    color: var(--blanco);
}
.abajo{
    padding-top: 13.1rem;
}

/* Grid info cuartos*/
.grid_aloja{
    display: grid;
    grid-template-columns: repeat(1, 1fr);    
}
.grid_aloja h2{
    color: var(--orosecundario);
    font-size: 3rem;
    margin-top: 1rem;    
}
.grid_aloja h4{
    color: var(--verde);
    font-size: 2rem;
    text-align: center;
    margin: 0;
}
.grid_aloja p{
    text-align: justify;
}
.aloja_ti{
    grid-column: 1/2;
    text-align: center;
}
.aloja_carr{
    grid-column: 1/2;
    grid-row: 4/5;
}
.aloja_video{
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}
.text_aloja{
    color: var(--verde);
    text-align: center;
}

/* Carrusel Imagenes*/

.carouselgal{
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-trackgal{
    display: flex;
    transition: transform .5s ease-in-out;
}

.carousel-slide0,
.carousel-slide1,
.carousel-slide2,
.carousel-slide3{
    min-width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;    
}
.carouselgal img{
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
}
.carousel-btn1{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}
.prev0,
.prev1,
.prev2,
.prev3{
    left: 15px;
}

.next0,
.next1,
.next2,
.next3{
    right: 15px;
}
/* Traductor */
.flag{
    width:27px;
    height:15px;
    cursor:pointer;
    margin-left:10px;
    transition:.3s;
}

.flag:hover{
    transform:scale(1.1);
}
.language-selector{
    display: flex;
    justify-content: flex-end;
    padding-left: 2rem;
}
/* El contenedor del Modal (Fondo oscuro) */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
}

/* Caja del Formulario Oculto */
.modal-content {
    background-color: #fff;
    margin: 5% auto;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

/* Encabezado Azul Marino */
.modal-header {
    background-color: #0b1e3f;
    color: white;
    padding: 25px;
    text-align: center;
}
.modal-header h2 { margin: 0 0 10px 0; font-size: 24px; }
.modal-header p { margin: 0; font-size: 13px; color: #b0c4de; }

/* Botón cerrar (X) */
.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* Cuerpo del formulario */
.modal-body { padding: 30px; }
.form-row { display: flex; gap: 15px; margin-bottom: 15px; }
.form-group { display: flex; flex-direction: column; width: 100%; margin-bottom: 15px; }
.form-group label { font-size: 13px; font-weight: bold; color: #0b1e3f; margin-bottom: 5px; }
.form-group input, .form-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

/* Botón Rosa/Magenta de envío */
.btn-submit {
    background-color: #e53e77;
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(229, 62, 119, 0.3);
}

.modal-footer { text-align: center; color: #777; font-size: 11px; padding-bottom: 20px; }

/* Vista del mensaje final exitoso */
.success-message {
    text-align: center;
    padding: 20px;
    color: #0b1e3f;
}
.success-message h3 { color: #e53e77; margin-bottom: 10px; }


/* Contenedor del Modal Formulario Header */
.club-modal {
    display: none; 
    position: fixed; 
    z-index: 2000; /* Un z-index alto para asegurar que se ponga encima de todo */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.6);
    font-family: Arial, sans-serif;
}

/* Caja del Formulario */
.club-modal-content {
    background-color: #fff;
    margin: 5% auto;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    position: relative;
}

/* Encabezado */
.club-modal-header {
    background-color: #0b1e3f;
    color: white;
    padding: 25px;
    text-align: center;
}
.club-modal-header h2 { margin: 0 0 10px 0; font-size: 22px; }
.club-modal-header p { margin: 0; font-size: 13px; color: #b0c4de; }

/* Botón cerrar (X) */
.club-close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* Cuerpo y campos */
.club-modal-body { padding: 30px; }
.club-form-row { display: flex; gap: 15px; margin-bottom: 15px; }
.club-form-group { display: flex; flex-direction: column; width: 100%; margin-bottom: 15px; }
.club-form-group label { font-size: 13px; font-weight: bold; color: #0b1e3f; margin-bottom: 5px; }
.club-form-group input, .club-form-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

/* Botón de envío */
.club-btn-submit {
    background-color: #e53e77;
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

.club-modal-footer { text-align: center; color: #777; font-size: 11px; padding-bottom: 20px; }

.club-success-message {
    text-align: center;
    padding: 20px;
    color: #0b1e3f;
}
.club-success-message h3 { color: #e53e77; margin-bottom: 10px; }

@media (min-width:768px){
    .header{
        height: 45rem;
    }
    .logo img{
        height: 10rem;
    }
    .navegacion{
        display: flex;
        gap: 2rem;
    }
    .barra{
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(0, 0, 0, .2);
        padding-left: 2rem;
        padding-right: 2rem;
    } 
    .header__texto{
        margin-top: 5rem;
    }
    .deslizar{
        grid-template-columns: repeat(4, 1fr);
    }
    .shadow{
        text-shadow: 1rem .5rem 5rem var(--negro);
    }
    .nosot h2{
        font-size: 4rem;
    }
    .serv_grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .contact-card3{
        grid-column: 2/5;
        grid-row: 1/2;
    }
    .block-left{
        grid-template-columns: repeat(3, 1fr);
    }
    .block-left1{
        grid-column: 1/2;
        padding: 1rem;
    }
    .block-left3{
        grid-column: 1/2;
        grid-row: 2/3;    
        margin-left: 5.5rem;
    }
    .block-left2{
        grid-column: 2/4;
        grid-row: 1/3;
        padding: 2rem;        
    }
    .block2h{
        font-size: 4rem;
        padding: 1rem;
    }
    .footer-top{ 
        grid-template-columns: repeat(4,1fr);
        gap: .5rem;
        justify-content: space-between;
    }
    .contact-container{    
        display: grid;    
        grid-template-columns: repeat(2,1fr);
    }
    .contact-form-box{      
        border-radius:18px;  
        padding: 1rem;        
    }
    .contact-info{
        padding-left: 2rem;
    }
    .footer-bottom{
        gap: 4rem;
    }
    .grid_ser{        
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
        gap: 2rem;
    }
    .about-right{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0;
    }
    .about-left{
        grid-column: 1/3;
    }
    .about-left1{
        grid-column: 1/2;
    }
    .about-left2{
        grid-column: 1/3;
        grid-row: 7/8;
    }
    .about-left3{
        grid-column: 1/3;
        grid-row: 8/9;
    }
    .about-left4{
        grid-column: 1/3;
        grid-row: 9/10;
    }
    .about-right1{
        grid-column: 2/3;
        grid-row: 3/4;
    }
    .about-right2{
        grid-column: 2/3;
        grid-row: 4/5;
    }
    .about-right3{
        grid-column: 2/3;
        grid-row: 5/6;
    }
    .about-right4{
        grid-column: 2/3;
        grid-row: 6/7;
    }
    .about-right5{
        grid-column: 1/3;
        grid-row: 9/10;
    }
    .about-center{
        grid-column: 1/3;
        width: 50%;
    }
    .mroom{        
        height: 42rem;        
    }
    .msroom{        
        height: 42rem;        
    }
    .mvroom{        
        height: 42rem;        
    }        
    .abajo{
        padding-top: 31.5rem;
    }
    .flexroom p{
        font-size: 1rem;
    }
    .grid_aloja{    
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;    
    }
    .aloja_ti{
        grid-column: 1/3;
    }
    .aloja_carr{
        grid-column: 1/3;
        padding-bottom: 1rem;        
    }    
}
@media (min-width:1080px){
    .serv_grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-form-box{      
        border-radius:18px;  
        padding: 1rem;
        width: 70%;        
    }
    .contact-info{
        padding-left: 8rem;
    }
    .block-left3{
     
        margin-left: 10rem;
    }
    .contact-card{
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        justify-content: space-between;
    }           
    .contact-card2{
        grid-column: 2/5;
    }
    .contact-card3{
        grid-column: 2/5;
        grid-row: 1/2;
    }
    .grid_ser{        
        grid-template-columns: repeat(3, 1fr);
        justify-content: space-between;
        gap: 2rem;
    }
    .about-left2{
        grid-column: 1/2;
        grid-row: 7/8;
    }
    .about-left3{
        grid-column: 1/2;
        grid-row: 8/9;
    }
    .about-right5{
        grid-column: 2/3;
        grid-row: 7/9;
    }
    .mroom{        
        height: 66rem;        
    }
    .msroom{        
        height: 66rem;        
    }
    .mvroom{        
        height: 66rem;        
    }        
    .abajo{
        padding-top: 54rem;
    }
    .flexroom p{
        font-size: 1.5rem;
    }
    .aloja_carr{
        padding-bottom: 1rem;
    } 
    .text_aloja {
        display: flex;
        justify-content: center;
    }
}
@media (min-width:1680px){
    .contenedor{
        max-width: 180rem;
        width: 90%;
        margin: 0 auto;
    }
    .serv_grid{
        grid-template-columns: repeat(4, 1fr);
    }
    .contact-form-box{      
        border-radius:18px;  
        padding: 1rem;
        width: 70%;        
    }
    .contact-info{
        padding-left: 8rem;
    }
    .block-left3{
     
        margin-left: 10rem;
    }
    .contact-card{
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        justify-content: space-between;
    }           
    .contact-card2{
        grid-column: 2/5;
    }
    .contact-card3{
        grid-column: 2/5;
        grid-row: 1/2;
    }
    .grid_ser{        
        grid-template-columns: repeat(3, 1fr);
        justify-content: space-between;
        gap: 2rem;
    }
    .about-left2{
        grid-column: 1/2;
        grid-row: 7/8;
    }
    .about-left3{
        grid-column: 1/2;
        grid-row: 8/9;
    }
    .about-right5{
        grid-column: 2/3;
        grid-row: 7/9;
    }
    .mroom{        
        height: 110rem;
    }
    .msroom{        
        height: 110rem;
    }
    .mvroom{        
        height: 110rem;
    }        
    .abajo{
        padding-top: 98rem;
    }
    .flexroom p{
        font-size: 1.5rem;
    }
    .grid_aloja{
        grid-template-columns: repeat(3, 1fr);
    }
    .aloja_ti{
        grid-column: 1/5;
    }
    .aloja_carr{        
        grid-column: 2/5;
        grid-row: 2/6;
    }
    .deslizar{
    background-color: #f8f5f2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}
    .deslizar1{
        display: flex;
        justify-content: space-between;
        width: 50%;
        gap: 2rem;
        align-items: center;    
    }
    .w-full{
        width: 20%;
    }
    .contact-container{
        width: 50%;
    }
}