
/* Variables */
:root{
    --mx-width: 1320px;
    --color-text-body: #64640A;
    --color-text-logo: #0A4E2D;
    --color-text-our-header: rgba(255, 255, 255, 0.8); 
    --color-text-description: #99A1AA;
    --color-btn-our: #c4bf96;
    --color-btn-our-hover: rgba(19, 44, 3, 0.8);
    --color-text-subtitle-cym: #99A1AA;
    --color-bg-information: #F4F0ED;
    --color-borders: #e3e6e9;
    
}

/* Estilos generales */
html{
    font-size:10px;
    overflow-x:hidden;
}

body{
    width:100%;
    height:100%;
    font-size: 1.6rem;
    font-family: 'Nirmala UI', 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-body);
}

/* Estructura */
.layout__general{
    width: 100%;
    min-width: var(--mx-width);
    height: 100%;
}


/* BARRA NAVEGACIÓN */

.layout__menu{
    position: fixed; /* Agregado para quedar fijo al scroll */
    top: 0; /* Agregado para quedar fijo al scroll */
    width: 100%;
    padding: 0rem 3rem; /* Modificado para quedar fijo al scroll, antes 3.5 rem 3 rem */
    font-family: 'Aniron', 'Nirmala UI', sans-serif;
    background-color: rgba(243, 243, 243, 0.8); /* Agregado aquí para quedar fijo al scroll */
    color: var(--color-text-logo);
    z-index:1000; /* Agregado para quedar fijo al scroll */   
}

.menu__navbar{
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navbar__logo{
    width: 187px;
}

.nav__list{
    
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.nav__item{
    position: relative;
    margin: 0 2.4rem;
}

.nav__title{
    position: relative;
    display: inline-block;
    font-weight: 500;
    transition: all 300ms ease-in-out;

}

.nav__title:hover{
    color: var(--color-text-body);
}

.nav__title::before{
    content: "";
    height: 0.2rem;
    width: 0; 
    background-color: var(--color-text-body);
    position: absolute; /* Es absolute para poder posicionar el elemento donde yo quiera */
    bottom: -0.7rem; /* Desde el bottom se llegará a colocar a esta distancia */
    left: 0;
    opacity: 0; /* Para que esté oculto */
    transition: 500ms;
}

.nav__title:hover::before{
    width: 100%;
    opacity: 1;
}



/* ESTILOS DE NOSOTROS */

.layout__our{
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.our__header{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: var(--color-text-our-header); /* Asegura contraste sobre las fotos */
    padding: 2rem;
    font-family: 'Aniron', 'DM Sans', sans-serif;
}

.our__subtitle{
    font-size: 30px;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.our__title{
    padding-top: 25px;
    padding-bottom: 150px;
    font-size: 65px;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
}

.our__btn{
    display: inline-block;
    overflow: hidden;
    padding: 1rem 2rem;
    background-color: var(--color-btn-our);
    border-radius: 10px;
    font-weight: 500;
    transition: all 500ms ease-in-out;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 1.5s;
    opacity: 0;
}

.our__btn:hover{
    background-color: var(--color-btn-our-hover);
}


.our__photos{
    position: relative;
    width: 100%;
    height: 90rem;
    margin: 0 auto;
    overflow: hidden;
}

.photo__img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Para redimensionar. Con cover mantiene la spect ratio. */
    opacity: 0;
    z-index: 2;
    animation: fadeZoom 16s infinite; 
}

.photo__img:nth-child(1){
    object-position: center 35%;
    animation-delay: 0s;
}

.photo__img:nth-child(2){
    object-position: center 5%;
    animation-delay: 4s;
}

.photo__img:nth-child(3){
    animation-delay: 8s;
}

.photo__img:nth-child(4){
    object-position: center 35%;
    animation-delay: 12s;
}

@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  5% {
    opacity: 1;
    transform: scale(1.05);
  }
  25% {
    opacity: 1;
    transform: scale(1.1);
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ESTILOS DE CYM */

.layout__cym{
    position: relative;
    z-index: 0;
    margin-top: 10rem;
    margin-bottom: 10rem;
    width: 100%;
}

.cym__container{
    position: relative;
    z-index: 0;
/*  
    max-width: var(--mx-width);
    margin: 0 auto;
 */
    max-width: 100%;
    padding: 0 5rem;
}

.cym__header{
    margin-bottom: 4rem;
    text-align: center;
}

.cym__title{
    font-family: 'Aniron', 'DM Sans', sans-serif; 
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height:  1.2;
}

.cym__subtitle{
    font-size: 2.5rem;
    font-weight: 500;
    padding-top: 3rem;
    color: var(--color-text-subtitle-cym);
}

.cym__list{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 6rem;
    z-index: 2;
}

.cym__crisyman{
    width: 33%;
    overflow: hidden;
    border-radius: 30px;
}

.cym__crisyman:nth-child(2){
    margin-top: 30px;
}

.crisyman__img{
    width: 100%;
    height: auto;
    transition: transform 0.6s ease-in-out;
}

.crisyman__img:hover{
    transform: scale(1.1);
}

.cym__icons {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.cym__icon{
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 35rem;
    margin: -18rem auto 2rem auto;
    pointer-events: none;
}



/* ESTILOS PARA INFORMACIÓN (SIDDHARTA) */

.layout__informations{
    position: relative;
    padding: 3rem 6rem;
    z-index: 0;
    margin-bottom: 10rem;
}

.informations__grid{
    position: relative;
    max-width: 100%;
    padding: 0 1rem;

}

.informations__header{
    margin-bottom: 4rem;
    text-align: center;
}

.informations__title{
    font-family: 'Aniron', 'Nirmala UI', sans-serif;
    font-size: 4rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height:  1.2;
    padding-top: 2rem;
}

.informations__subtitle,
.informations__subtitle02,
.localization__subtitle{
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-text-subtitle-cym);
}

.informations__list{
    display:flex;
    flex-direction: row;
    gap: 26rem;
}

.informations__information{
    position: relative;
    z-index: 2;
}

.information__container-img{
    width: 100%;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.informations__information--left{
    flex: 1.1;
}

.informations__information--right{
    flex: 1;  
}

.information-shapes{
    position: absolute;
    z-index: 1;
    pointer-events: none; 
}

.information__img{
    width: 100%;
    height: auto;
    transition: all 1s ease-in-out;
}

.information__img:hover{
    transform: scale(1.1);
}

.information__shapes--shape01{
    position: absolute;
    top: 62%; 
    left: 52%; 
    transform: translate(-50%, -50%); 
    z-index: 0;
    opacity: 0.4; 
    pointer-events: none;
    width: 1000px; 
} 

.information__title{
    text-align: center;
    font-size: 2.8rem;
}

.information__paragraph{
    text-align: center;
    font-size: 2rem;
    color: var(--color-text-subtitle-cym);

}


/* ESTILOS DE LOCALIZACIÓN */

.layout__localization{
    position: relative;
    margin-top: 3rem;
    margin-bottom: 10rem;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: var(--color-bg-information);
    padding-bottom: 8rem;
}

.localization__grid{
    position: relative;
    max-width: 100%;
    padding: 0 5rem;
    text-align: center;
    z-index: 2;
     
}

.localization__title{
    font-family: 'Aniron', 'Nirmala UI', sans-serif;
    font-size: 4rem;
    font-weight: 500;
    margin-top: 6rem;
    margin-bottom: 1.5rem;
    line-height:  1.2;
    padding-top: 8rem;
}

.localization__map-item{
    /* display: block;
    width: 100rem;
    height: 60rem;
    border: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4rem; */

    position: relative;
    width: 60%;
    aspect-ratio: 16 / 9; /* O usa 4 / 3 si prefieres */
    border: 0;
    margin: 3rem auto 0 auto;
}

.localization__bg-item{
    position: absolute;
    top: 50%;
    z-index: 1;
}


/* ESTILOS DE COMO LLEGAR */

.layout__arrives{
    position: relative;
    padding: 2rem 5rem;
    margin-bottom: 10rem;
}

.arrives__grid{
    position: relative;
    max-width: 100%;
    padding: 0 2rem;
}

.arrives__header{
    margin-bottom: 4rem;
    text-align: center;
}

.arrives__title{
    font-family: 'Aniron', 'Nirmala UI', sans-serif;
    font-size: 4rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;  
}

.arrives__content{
    display: flex;
    flex-direction: row;
    gap: 3rem; 
}

.arrive__description{
    padding-bottom: 2rem;
    font-size: 2rem;
    font-weight: 550;
    color:var(--color-text-logo);
    text-align: center;
}

.arrive__img{
    width: 100%;
    height: 50rem;
    object-fit: cover;
    border-radius: 20px;
}

.arrives__arrive{
    border-radius: 20px;
    box-shadow: 0 24px 48px -15px #ddd;
    /* Un sombreado de 0px, 24px de movimiento en y, 48 de difuminado, -15 de extensión de sombra, y el color. */
    border: 1px transparent gray;
}


/* ESTILOS DE TRANSPORTE */

.layout__transports{
    position: relative;
    padding: 0 5rem;
    margin-bottom: 8rem;
}

.transports__container{
    position: relative;
    max-width: 100%;
    padding: 0 2rem;
}

.transports__header{
    text-align: center;
    font-family: 'Aniron', 'Nirmala UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.2; 
}

.transports__list{
    margin-top: 6rem;
    display: flex;
    flex-direction: row;
    gap: 4rem; 
}

.transports__transport{
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    overflow: hidden;
}

.transports__transport--001{
    flex: 70%;
}
.transports__transport--002{
    flex: 30%;
}

.transport__img{
    width: 100%;
    height: 50rem;
    object-fit: cover;
    border-radius: 20px;
    object-position: center 80%;
}

.transport__title{
    padding-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text-logo);
}

.transport__paragraph{
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text-logo);
}


/* ESTILO DE ALOJALMIENTOS */

.layout__hotels{
    position: relative;
    padding: 0 4rem;
    z-index: 0;
    margin-bottom: 10rem;
}

.hotels__container{
    position: relative;
    max-width: 100%;
    padding: 0 2rem;
}

.hotels__header{
    margin-bottom: 4rem;
    text-align: center;
    padding-top: 3rem;
}

.hotels__subtitle{
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-text-subtitle-cym);
}

.hotels__title{
    font-family: 'Aniron', 'Nirmala UI', sans-serif;
    font-size: 4rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 6rem;
    line-height: 1.2;
}

.hotels__list{
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.hotels__hotel{

    background-color: #fff; /* Fondo blanco (ajústalo según tu diseño) */
    border-radius: 20px;     /* Esquinas redondeadas */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    overflow: hidden;       /* Para que las imágenes no sobresalgan */
    transition: box-shadow 300ms ease, transform 300ms ease;
    padding: 1.5rem;
    z-index: 2;
}

.hotel__img{
    width: 100%;
    height: 50rem;
    overflow: hidden;
    object-fit: cover;
}


.hotel__link{
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative; /* Necesario para posicionar ::before */
    text-decoration: none;
    color: inherit;
    transition: color 300ms ease-in-out;
}

.hotel__link:hover{
    color: var(--color-text-logo);
}

.hotel__text{
    position: relative;
    display: inline-block;
    line-height: 1;
}


.hotel__text::before{
    content: "";
    height: 0.2rem;
    width: 0; 
    background-color: var(--color-text-logo);
    position: absolute; /* Es absolute para poder posicionar el elemento donde yo quiera */
    bottom: -0.3rem; /* Desde el bottom se llegará a colocar a esta distancia */
    left: 0;
    opacity: 0; /* Para que esté oculto */
    transition: width 300ms ease-in-out, opacity 300ms ease-in-out;
}
.hotel__link:hover .hotel__text::before{
    width: 100%;
    opacity: 1;
}

.hotel__icon{
    font-size: 1.2rem;
    line-height: 1;
    transform: translateY(1.5px); /* Para alinear la flecha con el texto */
}


/* ESTILOS DE FORMULARIO */

.layout__forms{
    position: relative;
    margin-bottom: 6rem;
    padding-top: 5rem;
    padding-bottom: 10rem;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.forms__container{
    position: relative;
    max-width: 100%;
    padding: 0 5rem;
    z-index: 2;
}

.forms__header{
    z-index: 2;
    text-align: center;
}

.forms__title{
    font-family: 'Aniron', 'Nirmala UI', sans-serif;
    font-size: 4rem;
    font-weight: 500;
    line-height:  1.2;
}

.forms__subtitle{
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-text-subtitle-cym);
    padding-top: 2rem;
    padding-bottom: 2rem;
}


/* FORMULARIO EN CAJA CON SOMBRA */
.forms__form {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 4rem;
    max-width: 700px;
    margin: 0 auto;
}

/* GRUPOS DE FORMULARIO */
.form__group {
    margin-bottom: 2.5rem;
}

.form__label {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--color-text-logo);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 1.2rem 1.6rem;
    font-size: 1.6rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 300ms;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--color-text-logo);
    outline: none;
}

/* BOTÓN DE ENVÍO */
.form__button {
    background-color: var(--color-btn-our);
    color: #000;
    font-weight: 600;
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: 10px;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 300ms ease;
    margin: 0 auto;
}

.form__button:hover {
    background-color: var(--color-btn-our-hover);
    color: #fff;
}

.forms__bg-item{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;         /* Escala la imagen para llenar el contenedor sin deformarse */
    pointer-events: none;      /* Para que no interfiera con los clics del formulario */
}


/* ESTILOS PARA NUMERO DE CUENTA */

.layout__account{
    position: relative;
    margin-top: 0;
    z-index: 1;
    margin-bottom: 5rem;
}

.account__container{
    position: relative;
    width: var(--mx-width);
    margin: 0 auto;
    z-index: 1;
}

.account__header{
    margin: 0;
    padding: 0;
    text-align: center;
}

.account__title{
    font-family: 'Aniron', 'Nirmala UI', sans-serif;
    font-size: 4rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height:  1.2;
    padding-top: 2rem;
    overflow: hidden;
}

.account__subtitle{
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-text-subtitle-cym);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.account__content{
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 6rem auto 0 auto;
    padding: 2rem 8rem;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    z-index: 1;
}

.account__bg-item{

    position: absolute;
    width: 90%;
    height: auto;
    aspect-ratio: 2 / 1; /* opcional: mantiene proporción */
    z-index: 0;
    top: 5%;
    left: 5%;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ESTILOS DE PIE DE PÁGINA */


.layout__foot{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 10rem;
    margin-top: 20rem;
    font-size: 2rem;
}


/* NAVEGACIÓN RESPONSIVE:  */

.navbar__mobile-btn{
    display: none;
    cursor: pointer;
}
.mobile-btn__wrap{
    height: 5rem;
    width: 5rem;
    background-color: var(--color-btn-our);
    border: none;
    border-radius: 3.2rem; 
    transition: all 300ms ease-in-out;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    /* Ahora centramos los elementos tanto vertical como horizontalmente:   */
    align-items: center;
    justify-content: center; 
}
.mobile-btn__line{
    width: 2rem;
    height: 0.2rem;
    background-color: var(--color-bg-information);
    margin-bottom: 0.4rem;
    border-radius: 1rem;
    transition: all 300ms ease-in-out;
}
.mobile-btn__line:last-child{
    width: 1rem;
    margin-bottom: 0rem;
    margin-right: -1rem;
}
.menu-mobile{
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 1001;
    width: 30rem;
    height: 100%;
    background-color: var(--color-bg-information);
    padding: 5rem 1rem;
    padding-top: 0;
    box-shadow: 0px 0px 85px -35px rgba(0, 0, 0, 0.5); 
    overflow-y: auto;
    transition: all 800ms cubic-bezier(0.77, 0.2, 0.05, 1);
}
.menu-mobile--show{
    visibility: visible;
    opacity: 1;
    left: 0;
}
.menu-mobile__header{
    display: flex;
    align-items: center;
    justify-content: space-between; 
    margin: 0rem 1rem;
    padding: 2rem 0rem;
    border-bottom: 1px solid var(--color-borders);
}
.menu-mobile__container-logo{
    width: 15rem;
}
.menu-mobile__close{
    background-color: transparent;
    height: 3rem;
    width: 3rem;
    border: 2px solid var(--color-text-description);
    border-radius: 1rem;
    columns: var(--color-text-body);
    font-size: 1.6rem;
    cursor: pointer;
}
.menu-mobile__list{
    display: block;
    height: 100%;
    overflow: auto;
}
.menu-mobile__item{
    position: relative;
    border-bottom: 1px solid var(--color-borders);
    margin: 0 1rem;
}
.menu-mobile__link{
    position: relative;
    height: 5rem;
    line-height: 5rem;
}

















