/* General */
body {
    margin: 0;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    color: #1e434e;
}









/* Estilo predeterminado del enlace */
a.label-recorridovirtual {


    text-decoration: none;
    /* Opcional, si no quieres subrayado */
    color: initial;
    /* Usar el color que prefieras */
}

/* Estilo cuando el mouse pasa sobre el enlace */
a.label-recorridovirtual:hover {
    color: #327184;
    /* No cambia el color */
    background-color: transparent;
    /* Evita que el fondo cambie */
}

a.label-recorridovirtual:active {
    color: #479FBA;
    /* Cambia el color cuando el enlace está presionado */
}

/* Estilo cuando el mouse pasa sobre el botón (solo las letras cambian) */
button.button-brochure:hover .label-brochure {

    color: #CBEC9E;
    /* Cambia el color del texto cuando el mouse pasa sobre el botón */
}

/* Estilo cuando el botón está presionado (solo las letras cambian) */
button.button-brochure:active .label-brochure {
    color: #E7F6D2;
    /* Cambia el color del texto cuando el botón está presionado */
}






.navbar {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    box-sizing: border-box;
    transition: none;
}

/* Logo */
.navbar-logo {
    width: 180px;
    height: auto;
    transition: none
}


/* Elimina cualquier animación y cambio de color en hover */
.navbar a:hover,
.navbar-logo:hover {
    color: inherit;
    /* Mantiene el color original */
    background-color: inherit;
    /* Mantiene el color de fondo original */
    transition: none;
    /* Elimina cualquier transición */
}




/* Menu Items */
.nav-options {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu-item {
    position: relative;
    cursor: pointer;
    font-weight: 600;
    padding-bottom: 8px;
    /* espacio debajo del texto */
}

.menu-item a {
    text-decoration: none;
    /* Elimina el subrayado de los enlaces */
    color: #1e434e;
    /* Color del texto */
    font-size: 16px;
    /* Tamaño de la fuente */
    font-weight: bold;
    /* Fuente en negrita */
    display: block;
    /* Hace que cada enlace ocupe todo el espacio del div */
    padding: 10px;
    /* Espaciado dentro de cada enlace */
    transition: background-color 0.3s;
    /* Efecto suave para cambios de fondo */
}

.menu-item a:hover {
    background-color: #f0f0f0;
    /* Fondo gris claro cuando el enlace se pasa por encima */
}

.menu-item:hover {
    color: #327184;
}

/* Redes Sociales */
.social-media {
    display: flex;
    gap: 12px;
}

.social-media-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-media-icon:hover {
    background-color: #f0f0f0;
}

/* Responsividad  de dispositivos moviles y tablet ya en el menu inicio con las rallas y tod
si vas agregar algo en esta parte asegurate que sea para estos dispositivos*/

/* Tablets */
@media (max-width: 768px) {
    .navbar {
        padding: 16px;
        flex-direction: column;
        /* Cambiar la dirección del flex a columna */
        align-items: flex-start;
        /* Alineación del logo y menú */
        position: relative;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .menu {
        gap: 16px;
        flex-direction: column;
        /* Hacer que el menú se apile en vertical */
        width: 100%;
        /* El menú ocupa el ancho completo */
    }

    .social-media {
        display: flex;
        gap: 10px;
        margin-left: auto;
        /* Alinea los iconos de redes sociales al lado derecho */
    }

    .social-media-icon {
        width: 28px;
        height: 28px;
    }

    .menu-toggle {
        position: absolute;
        left: 50%;
        /* Centrado horizontal */
        top: 50%;
        /* Centrado vertical */
        transform: translate(-50%, -50%);
        /* Centrar perfectamente sobre el logo */
        font-size: 24px;
        color: #1e434e;
        cursor: pointer;
        display: block;
        /* Mostrar el ícono de menú en tablets */
    }

    /* Mostrar el menú cuando esté activo */
    .nav-options {
        display: none;
        /* Ocultar las opciones del menú inicialmente en tablets */
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 8px;
    }

    .nav-options.open {
        display: flex;
        /* Mostrar las opciones cuando la clase .open esté activa */
    }

    /* inicio de footer tablet*/
    .contenedor {
        padding: 24px;
    }

    .informacion-contacto {
        flex-direction: column;
    }

    .creditos {
        flex-direction: column;
        gap: 12px;
        font-size: 0.9em;
    }

    /* fin de footer tablet*/



}


/* Móviles */
@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .nav-options {
        display: none;
        /* Ocultar las opciones del menú inicialmente en móviles */
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 8px;
    }

    .nav-options.open {
        display: flex;
        /* Mostrar las opciones cuando la clase .open está activa */
    }

    .menu {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .social-media {
        display: flex;
        gap: 10px;
        margin-left: auto;
        /* Mueve los iconos de redes sociales al lado derecho */
    }



    .social-media-icon {
        width: 24px;
        height: 24px;
    }

    /* responsible de footer nicio movil */

    .seccion-pie-de-pagina {
        padding: 24px 16px;
    }

    .contenedor,
    .creditos {
        text-align: center;
    }

    .logo-icon {
        max-width: 180px;
    }

    .informacion-contacto img {
        width: 24px;
        height: 24px;
    }

    .creditos p {
        font-size: 0.8em;
    }

    /* responsible de footer fin movil */

}

/* CSS Adicional */
.menu-toggle {
    position: absolute;
    top: 9px;
    left: 85%;
    transform: translate(20%, 20%);
    /* Centrado perfecto sobre el logo */
    font-size: 27px;
    color: #479FBA;
    cursor: pointer;
    display: none;
    /* Ocultar por defecto */
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        /* Mostrar el ícono de menú solo en dispositivos móviles y tablets */
    }

    .nav-options {
        display: none;
        /* Oculta las opciones de navegación en tablets y móviles */
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 8px;
    }

    .nav-options.open {
        display: flex;
        /* Mostrar las opciones cuando la clase .open esté activa */
    }
}

.social-media a {

    text-decoration: none;
    /* Elimina el subrayado */
}

.social-media-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #479FBA;
    /* Cambia este color según el estilo que desees */
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
}

.social-media-icon:hover {
    background-color: #f0f0f0;
    color: #327184;
}

/* Línea debajo del menú en hover o activo */
.menu-item:hover::after,
.menu-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #327184;
    /* Color de la línea */
}

/* Solo en Tablets y Móviles */

/* Línea superior */
.navbar-line-top {
    border: none;
    height: 1px;
    background-color: #327184;
    margin: 1px;
    display: none;
    /* Ocultarla por defecto */
}

/* Línea inferior */
.navbar-line-bottom {
    border: none;
    height: 1px;
    background-color: #327184;
    margin: 0;
    display: none;
    /* Ocultarla por defecto */
}

/* Mostrar las líneas solo en Tablets y Móviles */
@media (max-width: 768px) {

    .navbar-line-top,
    .navbar-line-bottom {
        display: block;
        /* Mostrar las líneas */
    }
}

/* Responsividad  de dispositivos moviles y tablet ya en el menu fin con las rallas y todo
si vas agregar algo en esta parte asegurate que sea para estos dispositivos*/





/* piede  pagina  footer*/

/* Estilos Generales */


.seccion-pie-de-pagina {
    background-color: #1e434e;
    color: #fdfdfd;
    padding: 48px 64px;
    width: 100%;
    height: 655px;
}

.logo-pie-de-pagina {
    display: flex;
    justify-content: flex-start;
    padding: 24px 0px;
    width: 100%;
    height: 124px;
}

.logo-icon {
    width: 295px;
    height: 76px;
}

.contenedor-pie-de-pagina {
    display: flex;
    width: 100%;
    height: 361px;
    flex-direction: column;
    gap: 24px;
    padding: 0;
}

.acercade-contenedor-pie-de-pagina {
    width: 100%;
    height: 94px;
    font-size: 24px;
    line-height: 35px;
    font-weight: 400;
    text-align: left;
    padding: 12px 0px;
}

.subtitulo-contenedor-pie-de-pagina {
    width: 100%;
    height: 83px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    padding: 24px 0px;
    text-align: left;
    font-size: 24px;
    line-height: 35px;
    font-weight: 600;
}

.informacion-contacto-pie-de-pagina {
    width: 100%;
    height: 112px;
    display: flex;
    justify-content: space-between;
}

.ubicacion-contacto-pie-de-pagina {
    width: 569px;
    height: 112px;
    padding: 32px 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ubicacion-contacto-pie-de-pagina img {
    width: 48px;
    height: 48px;
}

.ubicacion-contacto-pie-de-pagina p {
    width: 100%;
    height: 35px;
    font-size: 19px;
    line-height: 35px;
    font-weight: 400;
}

.email-contacto-pie-de-pagina {
    width: max-content;
    height: 112px;
    padding: 32px 8px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.email-contacto-pie-de-pagina img {
    width: 48px;
    height: 48px;
}

.email-contacto-pie-de-pagina p {
    height: 35px;
    font-size: 19px;
    line-height: 25px;
    font-weight: 400;
}

.telefono-contacto-pie-de-pagina {
    width: 243px;
    height: 112px;
    padding: 32px 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.telefono-contacto-pie-de-pagina img {
    width: 48px;
    height: 48px;
}

.telefono-contacto-pie-de-pagina p {
    width: 169px;
    height: 35px;
    line-height: 35px;
    font-size: 19px;
    font-weight: 400;
}

.creditos {
    width: 100%;
    height: 74px;
    display: flex;
    padding: 12px 0px;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
}

.creditos p:first-child {
    width: 100%;
    height: 30px;
    padding: 10px;
    margin: 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.creditos p:nth-child(2) {
    width: 100%;
    height: 30px;
    margin: 0;
    text-align: end;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}


/*Footer tablet*/
@media (max-width: 768px) {
    .seccion-pie-de-pagina {
        padding: 48px;
        height: 666px;
    }

    .logo-pie-de-pagina {
        height: 113px;
    }

    .logo-icon {
        width: 252px;
        height: 65px;
    }

    .contenedor-pie-de-pagina {
        height: 388px;
    }

    .acercade-contenedor-pie-de-pagina {
        height: 114px;
        font-size: 20px;
        line-height: 30px;
    }

    .subtitulo-contenedor-pie-de-pagina {
        height: 78px;
        font-size: 20px;
        line-height: 30px;
    }

    .informacion-contacto-pie-de-pagina {
        height: 124px;
    }

    .ubicacion-contacto-pie-de-pagina {
        width: 299.3px;
        height: 124px;
    }

    .ubicacion-contacto-pie-de-pagina img {
        width: 40px;
        height: 40px;
    }

    .ubicacion-contacto-pie-de-pagina p {
        width: 233.3px;
        height: 60px;
        font-size: 20px;
        line-height: 30px;
    }

    .email-contacto-pie-de-pagina {
        height: 124px;
    }

    .email-contacto-pie-de-pagina img {
        width: 40px;
        height: 40px;
    }

    .email-contacto-pie-de-pagina p {
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }

    .telefono-contacto-pie-de-pagina {
        width: 207px;
        height: 104px;
    }

    .telefono-contacto-pie-de-pagina img {
        width: 40px;
        height: 40px;
    }

    .telefono-contacto-pie-de-pagina p {
        width: 141px;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }

    .creditos {
        height: 69px;
    }

    .creditos p:first-child {
        height: 45px;
        font-size: 18px;
        line-height: 25px;
    }

    .creditos p:nth-child(2) {
        height: 25px;
        font-size: 18px;
        line-height: 25px;
    }
}

/* footer mobil */
@media (max-width: 480px) {
    .seccion-pie-de-pagina {
        padding: 24px;
        height: 797px;
    }

    .logo-pie-de-pagina {
        height: 103px;
    }

    .logo-icon {
        width: 215px;
        height: 55px;
    }

    .contenedor-pie-de-pagina {
        height: 552px;
    }

    .acercade-contenedor-pie-de-pagina {
        height: 149px;
        font-size: 18px;
        line-height: 25px;
    }

    .subtitulo-contenedor-pie-de-pagina {
        height: 49px;
        font-size: 18px;
        line-height: 25px;
    }

    .informacion-contacto-pie-de-pagina {
        height: 282px;
        flex-direction: column;
        gap: 24px;
        justify-content: start;
    }

    .ubicacion-contacto-pie-de-pagina {
        width: 100%;
        height: 90px;
        padding: 24px 8px;
    }

    .ubicacion-contacto-pie-de-pagina img {
        width: 32px;
        height: 32px;
    }

    .ubicacion-contacto-pie-de-pagina p {
        width: 100%;
        height: 25px;
        font-size: 18px;
        line-height: 25px;
    }

    .email-contacto-pie-de-pagina {
        width: 100%;
        height: 90px;
        padding: 24px 8px;
        display: flex;
    }

    .email-contacto-pie-de-pagina img {
        width: 32px;
        height: 32px;
    }

    .email-contacto-pie-de-pagina p {
        width: 100%;
        height: 25px;
        font-size: 19px;
        line-height: 25px;
        margin-left: 1%;
    }

    .telefono-contacto-pie-de-pagina {
        width: 100%;
        height: 72px;
        padding: 24px 8px;
    }

    .telefono-contacto-pie-de-pagina img {
        width: 32px;
        height: 32px;
    }

    .telefono-contacto-pie-de-pagina p {
        width: 100%;
        height: 25px;
        font-size: 18px;
        line-height: 25px;
    }

    .creditos {
        flex-direction: column;
        height: 94px;
    }

    .creditos p:first-child {
        width: 100%;
        height: 45px;
        font-size: 16px;
        line-height: 25px;
        text-align: center;
    }

    .creditos p:nth-child(2) {
        width: 100%;
        height: 25px;
        font-size: 16px;
        line-height: 25px;
        text-align: center;
    }
}



.Principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.Principal>* {
    position: relative;
    z-index: 2;
}

.img-principal-carrucel {
    width: 60%;
    height: 100%;
    display: flex;
    position: relative;
    backdrop-filter: color;
}

.Principal-texto {
    height: 200px;
    width: 100%;
    position: relative;
    top: 40%;
    color: aliceblue;
    padding-left: 50px;

}

.Principal-texto h1 {

    font-size: 3em;
}

.carrucel {
    position: relative;
    height: 100%;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrucel-div {
    position: relative;
    top: 140px;
    width: 60%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: white;
    padding: 2px;
    display: flex;
    align-items: stretch;
}

.carrucel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
}


.section-porqueelegirnos {
    width: 100%;
    height: 610px;
    padding: 48px 64px;
    background-color: #EDF5F8;
    color: #1E434E;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.title-porqueelegirnos {
    width: 100%;
    height: 84px;
    padding: 12px 0px;
    text-align: center;
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
}

.items-porqueelegirnos {
    display: flex;
    width: 100%;
    height: 406px;
    gap: 39px;
    justify-content: center;
}

.cards-porqueelegirnos {
    width: 416px;
    height: 406px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.div-img-card-porqueelegirnos {
    width: 168px;
    height: 168px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-card-porqueelegirnos {
    width: 120px;
    height: 120px;
}


.btn-preventa {

    border: none;
    /* Elimina cualquier borde */

    text-align: center;
    cursor: not-allowed;
    /* Indica que el botón no es clickeable */
    background-color: #1E434E;
    /* Color de fondo */
    padding: 10px 20px;
    /* Ajuste de relleno */
    border-radius: 5px;
    /* Bordes redondeados */
    color: #fff;
    /* Color del texto */
    font-size: 16px;
    /* Tamaño de texto adecuado */
    display: inline-block;
    /* Permite que el botón se comporte como una etiqueta */
    text-decoration: none;
    /* Elimina el subrayado */
    pointer-events: none;
    font-weight: bold;
    /* Deshabilita cualquier evento de clic en el botón */
}

/* Estilo para el enlace dentro del botón */
.btn-preventa a {
    pointer-events: none;
    /* Deshabilita los eventos de clic en el enlace */
    color: inherit;
    /* Mantiene el color del texto del botón */
    text-decoration: none;
    /* Elimina el subrayado del enlace */
    font-weight: bold;
}


.title-card-porqueelegirnos {
    width: 100%;
    height: 90px;
    line-height: 50px;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.parrafo-card-porqueelegirnos {
    width: 100%;
    height: 140px;
    text-align: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 35px;
}

/* Estilo de la sección de últimos proyectos */
#proyectos-index {
    height: 948px;
}


button {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}















.btn- {
    width: 100%;
    height: 63px;
    font-weight: 700;
    padding: 24px 14px;
    background-color: #1E434E;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: none;
    /* Elimina cualquier borde */
    text-align: center;
    cursor: not-allowed;
    /* Indica que el botón no es clickeable */
    display: inline-block;
    /* Permite que el botón se comporte como una etiqueta */
    text-decoration: none;
    /* Elimina el subrayado */
    pointer-events: none;
    /* Deshabilita cualquier evento de clic en el botón */
    font-weight: bold;

}

a {
    text-decoration: none;
    color: #B1E26E;
    font-size: 22px;
    line-height: 35px;
}



/*botonos los tres puntitos */


.carousel {
    position: relative;
    /* Necesario para posicionar los puntos dentro del carrusel */
    overflow: hidden;
    /* Evita que el contenido se desborde */
    margin-top: -50px;
    /* Mueve el carrusel 50px hacia arriba (ajusta según sea necesario) */
}

/* Contenedor de los puntos de navegación */
.dots {
    position: absolute;
    top: 85%;
    /* Mueve los puntos más cerca de la parte superior */
    left: 50%;
    /* Centrado horizontal */
    transform: translateX(-50%);
    /* Centrado exacto */
    display: flex;
    gap: 10px;
    /* Espacio entre los puntos */
    z-index: 100;
    /* Asegura que los puntos estén sobre el contenido */
}

/* Estilo individual para cada punto */
.dot {
    width: 12px;
    /* Tamaño del punto */
    height: 12px;
    /* Tamaño del punto */
    background-color: rgba(255, 255, 255, 0.7);
    /* Color blanco con opacidad */
    border-radius: 50%;
    /* Hacerlo circular */
    cursor: pointer;
    /* Cambia el cursor cuando pasa sobre el punto */
    transition: background-color 0.3s ease;
    /* Transición suave */
}

/* Cambio de color cuando se pasa sobre un punto */
.dot:hover {
    background-color: rgba(255, 255, 255, 1);
    /* Cambio de color */
}

/* Estilo para el punto activo */
.dot.active {
    background-color: rgba(30, 67, 78);
    /* Color más oscuro para el punto activo */
}

/* Estilos adicionales para los elementos del carrusel (asegúrate de tener transiciones o animaciones para mover los items) */
.carousel .list {
    display: flex;
    transition: transform 0.5s ease;
}

.item {
    flex: 0 0 100%;
    /* Asegura que cada item ocupe el 100% del carrusel */
    background-size: cover;
    background-position: center;
    height: 100vh;
    /* Ajusta la altura al tamaño del viewport */


}

/* El contenedor del contenido del carrusel (opcional) */
.content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 10;
}


/*botonos los tres puntitos fin */



/* Estilo para el botón PRE VENTA */
.btn button {
    margin-bottom: 10px;
    /* Ajusta el valor según necesites */
}

.custom-button {
    height: auto;
    /* Deja que la altura se ajuste al contenido */
    position: relative;
    box-shadow: none;
    /* Elimina la sombra */
    border-radius: 8px;
    background-color: #fff;
    width: auto;
    /* Ajusta el ancho según el contenido */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    /* Reduce el padding para hacer el botón más pequeño */
    box-sizing: border-box;
    text-align: center;
    font-size: 15px;
    /* Reduce el tamaño de la fuente */
    color: #1e434e;
    font-family: Poppins, sans-serif;
    border: none;
    /* Esto asegura que no tenga bordes por defecto */
    cursor: default;
    font-weight: bold;
    /* Cambia el cursor a default */
    /* Desactiva la interactividad */
}







.btn-preventa {
    background-color: white;

    a {
        color: #1E434E;
        font-weight: bold;

    }
}

button:hover {
    transform: scale(1.05) translateY(-5px);
}

button:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {

    /* Tablets */
    .Principal {
        height: 600px;
        /* Ajuste de altura */
    }


    .Principal-texto h1 {
        font-size: 2em;
        text-align: center;
    }

    .Principal-texto h2 {
        font-size: 1.5em;
        text-align: center;
    }

    .carrucel-div {
        width: 90%;
        top: 50px;
    }

    .section-porqueelegirnos {
        height: 492px;
        padding: 48px;
    }

    .title-porqueelegirnos {
        height: 74px;
        font-size: 32px;
        line-height: 50px;
    }

    .items-porqueelegirnos {
        height: 298px;
    }

    .cards-porqueelegirnos {
        height: 294px;
    }

    .div-img-card-porqueelegirnos {
        width: 91px;
        height: 91px;
    }

    .img-card-porqueelegirnos {
        width: 67px;
        height: 67px;
    }

    .title-card-porqueelegirnos {
        height: 35px;
        line-height: 35px;
        font-size: 24px;
    }

    .parrafo-card-porqueelegirnos {
        height: 120px;
        font-size: 20px;
        line-height: 30px;
    }

    #proyectos-index {
        height: 1654px;
    }

}

@media (max-width: 480px) {

    /* Móviles */
    .Principal {
        height: 400px;
    }

    .Principal-texto h1 {
        font-size: 1.8em;
        text-align: center;
    }

    .Principal-texto h2 {
        font-size: 1.2em;
        text-align: center;
    }

    .carrucel-div {
        width: 100%;
        top: 20px;
    }



    .section-porqueelegirnos {
        height: 844px;
        padding: 24px;
    }

    .title-porqueelegirnos {
        height: 59px;
        font-size: 24px;
        line-height: 35px;
    }

    .items-porqueelegirnos {
        flex-direction: column;
        height: 713px;
    }

    .cards-porqueelegirnos {
        width: 100%;
        height: 216.3px;
    }

    .div-img-card-porqueelegirnos {
        width: 63.3px;
        height: 63.3px;
    }

    .img-card-porqueelegirnos {
        width: 47.3px;
        height: 47.3px;
    }

    .title-card-porqueelegirnos {
        font-size: 20px;
        line-height: 30px;
        height: 30px;
    }

    .parrafo-card-porqueelegirnos {
        height: 74px;
        font-size: 18px;
        line-height: 25px;
    }

    #proyectos-index {
        height: 2253px;
    }

}







/*General de pagina "nosotros y"*/
* {
    box-sizing: border-box;
}

html,
body {
    /* overflow: hidden; */
    /* Oculta las barras de desplazamiento a*/
    height: 100%;
    /* Asegura que el contenido ocupe toda la altura s*/
}


/* Ocultar scrollbar para Chrome, Safari y Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: block;
    width: 12px; /* Ancho del scrollbar */
    height: 12px; /* Alto del scrollbar */
    
}

html::-webkit-scrollbar-track {
    background: #f0f0f0; /* Fondo del track */
}

html::-webkit-scrollbar-thumb {
    background: #327184; /* Color de la barra */
    border-radius: 6px; /* Bordes redondeados */
}

html {
    scrollbar-width: auto; /* Firefox: define el ancho del scrollbar */
    scrollbar-color: #327184 #f0f0f0; /* Barra y track para Firefox */
}

/* activar scrollbar para IE, Edge y Firefox q*/
html {
    -ms-overflow-style: block;
    /* IE y Edge */
    scrollbar-width: block;
    /* Firefox */
}

.heading {
    width: 100%;
    position: relative;
    font-size: 48px;
    line-height: 70px;
    font-weight: 800;
    font-family: Poppins;
    color: #fdfdfd;
    text-align: left;
    display: inline-block;
}

.description {
    width: 100%;
    position: relative;
    font-size: 40px;
    line-height: 60px;
    font-family: Poppins;
    color: #fdfdfd;
    text-align: left;
    display: inline-block;
}

.container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 0px;
    box-sizing: border-box;
    gap: 24px;
    text-align: left;
    font-size: 48px;
    color: #fdfdfd;
    font-family: Poppins;
}


.fondo {
    width: 100%;
    position: relative;
    height: 900px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 64px;
    box-sizing: border-box;
    background: var(--Opacities-Background-Fondo-2, linear-gradient(0deg, rgba(19, 19, 19, 0.55) 0%, rgba(19, 19, 19, 0.55) 100%), url(img/nosotrosImagenes/Construction\ workers.png) lightgray 50% / cover no-repeat);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    text-align: left;
    font-size: 48px;
    color: #fdfdfd;
    font-family: Poppins;
}



.main-container {
    width: 100%;
    height: 1342px;
    display: flex;
    flex-direction: column;
    font-family: Poppins;
}

.main-container .content-container-maincontainer {
    padding: 48px 64px;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 783px;
}

.content-container-info {
    display: flex;
    flex-direction: column;
    width: 684.5px;
    height: 224px;
    gap: 24px;
}

#content-container-info2 {
    width: 643.5px;
}

.main-container .content-container-maincontainer:nth-of-type(2) {
    flex-direction: row-reverse;
    background-color: #EDF5F8;
    height: 559px;
}

.content-container-maincontainer .title {
    width: 100%;
    height: 60px;
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
}

.content-container-maincontainer .parrafo {
    width: 100%;
    height: 140px;
    font-weight: 400;
    font-size: 24px;
    line-height: 35px;
}

.div-img-content-container {
    width: 602.5px;
    height: 687px;

}

#div-img-content-container2 {
    height: 463px;
    width: 643.5px;

}

.div-img-content-container img {
    width: 100%;
    height: 100%;    
}


/*La caja de; carrusel de proveedores*/
.carrusel-proveedores {
    width: 100%;
    height: 273px;
    padding: 48px 64px 0px 64px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    font-family: Poppins;
}

.title-carrusel-proveedores {
    width: 100%;
    height: 60px;
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    text-align: start;
}

.marcas-scroll {
    overflow: hidden;
    width: 100%;
    height: 155px;
    padding: 20px 0 20px 18px;
    border-bottom: solid #479FBA 4px;
}

.carousel-marcas-mobil {
    display: none;
}

.carousel-marcas-tablet {
    display: none;
}

.carousel-marcas {
    display: flex;
    gap: 100px;
    width: calc(1312px * 2);
    /* Espacio suficiente para duplicar contenido u*/
    animation: scroll-carousel 15s linear infinite;
    /* Ajuste de velocidad */
}


.carousel-marcas img {
    height: 100%;
    /* Ajusta las imágenes al alto definido i*/
    object-fit: contain;
    /* Mantiene la proporción de las imágenes */
}

@keyframes scroll-carousel {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


.proyectos-recientes-nosotros {
    width: 100%;
    height: max-content;
    padding: 48px 64px;
    gap: 24px;
    font-family: Poppins;
    color: #1E434E;
    display: flex;
    flex-direction: column;
}

.title-proyectos-recientes-nosotros {
    width: 100%;
    height: 60px;
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
    text-align: start;
}

.parrafo1-proyectos-recientes-nosotros {
    width: 100%;
    height: 70px;
    font-size: 24px;
    font-weight: 400;
    line-height: 35px;
    text-align: start;
}

.scroll-div-proyectos-recientes {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 463px;
}

.div-proyectos-recientes {
    display: flex;
    gap: 116px;
    height: 100%;
}

.img-proyectos-recientes {
    width: 100%;
    height: 100%;
}

.parrafo2-proyectos-recientes-nosotros {
    width: 100%;
    height: max-content;
    font-size: 24px;
    font-weight: 400;
    line-height: 35px;
    color: #1E434E;
}

.letras-azules {
    display: inline;
    font-weight: 700;
    color: #479FBA;
}

ol {
    padding-left: 20px;
    margin: 0;
    /* Ajusta el espaciado de la lista */
}

ol li {
    margin-bottom: 10px;
    margin: 0;
    /* Espaciado entre cada elemento de la lista */
}

ol li::marker {
    color: #479FBA;
    /* Establece el color azul para la numeración */
    font-weight: 700;
    /* Opcional: si quieres que la numeración esté en negrita */
}




.seccion-testimonio {
    width: 100%;
    height: 484px;
    padding: 40px 64px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    font-family: Poppins;
}

.title-testimonios {
    width: 100%;
    height: 60px;
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
    text-align: start;
}

.div-ultimas-resenas {
    display: flex;
    width: 100%;
    height: 320px;
    gap: 24px;
}

.card-resena {
    width: 100%;
    height: 100%;
    background-color: #EDF5F8;
    padding: 24px;
    display: flex;
    flex-direction: column;
    font-family: Poppins;
    color: #1E434E;
    gap: 24px;
    border-radius: 12px;
    border: solid 2px #479FBA;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3), 0px 3px 6px rgba(0, 0, 0, 0.25);
}


.rating {
    width: 152px;
    height: 24px;
    display: flex;
    gap: 8px;
}

img .icon-star {
    width: 24px;
    height: 24px;
}

.parrafo-resena {
    width: 100%;
    height: 150px;
    font-size: 20px;
    line-height: 30px;
    text-align: justify;
    font-weight: 300;
}

.avatar-resena {
    width: 100%;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.div-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

img .img-avatar {
    width: 100%;
    height: 100%;
}

.div-nombre-avatar {
    width: 43.3%;
    height: 100%;
}

.nombre-avatar {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
}

.fecha-resena {
    width: 43.4%;
    height: 25px;
    text-align: end;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
}




.icon-mision-vision {
    width: 120px;
    position: relative;
    height: 120px;
    overflow: hidden;
    flex-shrink: 0;
}





.feature-title {
    width: 100%;
    position: relative;
    font-size: 32px;
    line-height: 50px;
    font-weight: 600;
    font-family: Poppins;
    color: #1e434e;
    text-align: center;
    display: inline-block;
}

.feature-description {
    width: 100%;
    position: relative;
    font-size: 24px;
    line-height: 35px;
    font-family: Poppins;
    color: #1e434e;
    text-align: center;
    display: inline-block;
}

.feature-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

.content-container {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
}

.seccin-misin-y-visin {
    width: 100%;
    position: relative;
    background-color: #edf5f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 48px 64px;
    box-sizing: border-box;
    text-align: center;
    font-size: 32px;
    color: #1e434e;
    font-family: Poppins;
}



.section-Gallery-nosotros-scroll {
    display: none;
}

.section-Gallery-nosotros {
    width: 100%;
    height: 1474px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 64px;
    gap: 24px;
    overflow: hidden;
}


.parrafo-Gallery-nosotros {
    height: 105px;
    color: #479FBA;
    font-size: 24px;
    line-height: 35px;
    font-weight: 400;
}


.caja-gallery-nosotros-relative {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;

}

.div-Gallery-nosotros {
    width: 100%;
    max-width: 1312px;
    height: max-content;
    padding: 24px;
    gap: 24px;
    display: flex;
    background-color: #EDF5F8;
    border-radius: 24px;
    /* Mueve el elemento al 50% del ancho del padre */
    transition: opacity 0.5s ease;
}

.Gallery-nosotros-izquierda {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 674px;
    height: max-content;
}

.Gallery-nosotros-izquierda .izquierda {
    width: 100%;
    height: 100%;
}

.Gallery-nosotros-izquierda .izquierda img {
    width: 100%;
    height: 100%;
}

.Gallery-nosotros-derecha {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 566px;
    height: max-content;
    gap: 24px;
}

.Gallery-nosotros-derecha .div-derecha-top {
    margin: 0;
    padding: 0;
    width: 100%;
    height: max-content;
    display: flex;
    gap: 24px;
}

.Gallery-nosotros-derecha .derecha-top {
    width: 100%;
    height: 100%;
}

.Gallery-nosotros-derecha .div-derecha-medio {
    margin: 0;
    padding: 0;
    width: 100%;
    height: max-content;
    gap: 24px;
    display: flex;
}

.Gallery-nosotros-derecha .derecha-medio {
    width: 100%;
    height: 100%;
}


.Gallery-nosotros-derecha .div-derecha-bottom {
    margin: 0;
    padding: 0;
    width: 100%;
    height: max-content;
}

.Gallery-nosotros-derecha .derecha-bottom {
    width: 100%;
    height: 100%;
}

.hidden {
    display: none;
}


/*Estilos del segundo gallery*/

.Gallery-nosotros2-izquierda {
    width: 566px;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.izquierda-top,
.izquierda-medio,
.izquierda-bottom {
    width: 100%;
    height: max-content;
    display: flex;
    gap: 24px;
}

.izquierda-top picture {
    width: 100%;
    height: max-content;
}

.izquierda-medio picture {
    width: 271px;
    height: 444px;
}

.izquierda-bottom picture {
    width: 271px;
    height: 327px;
}

.izquierda-medio img,
.izquierda-bottom img {
    width: 100%;
    height: 100%;
}

.izquierda-top img {
    width: 100%;
    height: max-content;
}


.Gallery-nosotros2-derecha {
    width: 674px;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.div-derecha-top2,
.div-derecha-medio2,
.div-derecha-bottom2 {
    width: 100%;
    height: 325px;
}

.div-derecha-top2 picture,
.div-derecha-top2 img,
.div-derecha-medio2 picture,
.div-derecha-medio2 img,
.div-derecha-bottom2 picture,
.div-derecha-bottom2 img {
    width: 100%;
    height: 100%;
}







/* Tablets */
@media (max-width: 768px) {

    html {
        font-size: 1.7vw;
    }

    .heading {
        width: 100%;
        position: relative;
        font-size: 40px;
        line-height: 60px;
        font-weight: 800;
        font-family: Poppins;
        color: #fdfdfd;
        text-align: left;
        display: inline-block;
    }

    .description {
        width: 100%;
        position: relative;
        font-size: 32px;
        line-height: 50px;
        font-family: Poppins;
        color: #fdfdfd;
        text-align: left;
        display: inline-block;
    }

    .container {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 24px 0px;
        box-sizing: border-box;
        gap: 24px;
        text-align: left;
        font-size: 40px;
        color: #fdfdfd;
        font-family: Poppins;
    }

    .fondo {
        width: 100%;
        position: relative;
        height: 616px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 48px;
        box-sizing: border-box;
        background: var(--Opacities-Background-Fondo-2, linear-gradient(0deg, rgba(19, 19, 19, 0.55) 0%, rgba(19, 19, 19, 0.55) 100%), url(img/nosotrosImagenes/Construction\ workers.png) lightgray 50% / cover no-repeat);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        text-align: left;
        font-size: 40px;
        color: #fdfdfd;
        font-family: Poppins;
    }


    .main-container {
        height: 952px;
    }

    .main-container .content-container-maincontainer {
        padding: 48px;
        height: 476px;
    }

    .main-container .content-container-maincontainer:nth-of-type(2) {
        height: 476px;
        padding: 48px;
    }

    .content-container-info {
        height: 194px;
    }

    .content-container-maincontainer .title {
        height: 50px;
        font-size: 32px;
        line-height: 50px;
    }

    .content-container-maincontainer .parrafo {
        height: 120px;
        font-size: 20px;
        line-height: 30px;
    }

    .div-img-content-container {
        height: 380px;
    }


    .carrusel-proveedores {
        height: 233px;
        padding: 48px 48px 0px 48px;
    }

    .title-carrusel-proveedores {
        width: 100%;
        height: 50px;
        font-size: 32px;
        line-height: 50px;
    }

    .marcas-scroll {
        padding: 16px 0px 16px 14px;
        width: 100%;
        height: 125px;
    }

    .carousel-marcas-mobil {
        display: none;
    }

    .carousel-marcas {
        display: none;
    }

    .carousel-marcas-tablet {
        display: flex;
        width: calc(928px * 2);
        gap: 80px;
        animation: scroll-carousel 15s linear infinite;
    }



    .proyectos-recientes-nosotros {
        padding: 48px;
    }

    .title-proyectos-recientes-nosotros {
        height: 50px;
        font-size: 32px;
        line-height: 50px;
    }

    .parrafo1-proyectos-recientes-nosotros {
        height: 60px;
        font-size: 20px;
        line-height: 30px;
    }

    .scroll-div-proyectos-recientes {
        height: 380px;
    }

    .div-proyectos-recientes {
        gap: 24px;
    }

    .img-proyectos-recientes {
        width: 100%;
    }

    .parrafo2-proyectos-recientes-nosotros {
        font-size: 20px;
        line-height: 30px;
    }

    .seccion-testimonio {
        height: 511px;
        padding: 48px;
    }

    .title-testimonios {
        height: 50px;
        font-size: 32px;
        line-height: 50px;
    }

    .div-ultimas-resenas {
        height: 341px;
    }

    .rating {
        width: 132px;
        height: 20px;
    }

    img .icon-star {
        width: 20px;
        height: 20px;
    }

    .parrafo-resena {
        height: 175px;
        font-size: 18px;
        line-height: 25px;
    }

    .avatar-resena {
        gap: 6px;
    }

    .div-avatar-img {
        width: 50px;
        height: 100%;
    }

    .div-nombre-avatar {
        width: 41%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nombre-avatar {
        width: 100%;
        height: 50px;
        font-size: 14px;
        justify-content: center;
    }

    .fecha-resena {
        width: 41%;
        font-size: 14px;
    }

    .icon-mision-vision {
        width: 71.1px;
        position: relative;
        height: 71.1px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .feature-title {
        width: 100%;
        position: relative;
        font-size: 24px;
        line-height: 35px;
        font-weight: 600;
        font-family: Poppins;
        color: #1e434e;
        text-align: center;
        display: inline-block;
    }

    .feature-description {
        width: 100%;
        position: relative;
        font-size: 20px;
        line-height: 30px;
        font-family: Poppins;
        color: #1e434e;
        text-align: center;
        display: inline-block;
    }



    .feature-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 24px;
    }

    .content-container {
        align-self: stretch;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 32px;
    }

    .seccin-misin-y-visin {
        width: 100%;
        position: relative;
        background-color: #edf5f8;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 48px;
        box-sizing: border-box;
        text-align: center;
        font-size: 24px;
        color: #1e434e;
        font-family: Poppins;
    }



    .section-Gallery-nosotros-scroll {
        display: none;
    }

    .section-Gallery-nosotros {
        height: 1315px;
        padding: 48px;
    }

    .parrafo-Gallery-nosotros {
        height: 90px;
        line-height: 30px;
        font-size: 20px;
    }

    .div-Gallery-nosotros {
        height: max-content;
        /* max-width: 928px; */
        width: 100%;
    }

    .Gallery-nosotros-izquierda {
        width: 428px;
        height: max-content;
    }

    .Gallery-nosotros-derecha {
        width: 428px;
        height: max-content;
        gap: 24px;
    }

    .Gallery-nosotros-derecha .div-derecha-top {
        height: max-content;
    }

    .Gallery-nosotros-derecha .div-derecha-medio {
        height: max-content;
    }

    .Gallery-nosotros-derecha .div-derecha-bottom {
        height: max-content;
    }



    .gallery-nosotros2 {
        width: 100%;
        height: max-content;
    }

    .Gallery-nosotros2-izquierda {
        display: flex;
        gap: 24px;
        width: 369px;
        height: 904px;
    }

    .izquierda-top,
    .izquierda-medio,
    .izquierda-bottom {
        width: 369px;
        height: 285px;
        display: flex;
        gap: 24px;
    }

    .izquierda-top1,
    .izquierda-top2 {
        width: 173px;
        height: 285px;
    }

    .izquierda-medio1,
    .izquierda-medio2 {
        width: 173px;
        height: 285px;
    }

    .izquierda-bottom1,
    .izquierda-bottom2 {
        width: 173px;
        height: 285px;
    }

    .izquierda-medio1 img,
    .izquierda-medio2 img,
    .izquierda-bottom1 img,
    .izquierda-bottom2 img,
    .izquierda-top1 img,
    .izquierda-top1 img {
        width: 100%;
        height: 285px;
        object-fit: cover;
    }

    .Gallery-nosotros2-derecha {
        width: 487px;
        height: 904px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .div-derecha-top2,
    .div-derecha-medio2,
    .div-derecha-bottom2 {
        width: 487px;
        height: 287px;
    }

    .derecha-top,
    .derecha-top img,
    .derecha-medio,
    .derecha-medio img,
    .derecha-bottom,
    .derecha-bottom img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }


}


@media (max-width: 480px) {
    /* Móviles */

    * {
        box-sizing: border-box;
    }

    html {
        font-size: 1.7wv;
    }


    .heading {
        width: 100%;
        position: relative;
        font-size: 32px;
        line-height: 50px;
        font-weight: 800;
        font-family: Poppins;
        color: #fdfdfd;
        text-align: left;
        display: inline-block;
    }

    .description {
        width: 100%;
        position: relative;
        font-size: 24px;
        line-height: 35px;
        font-family: Poppins;
        color: #fdfdfd;
        text-align: left;
        display: inline-block;
    }

    .container {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 24px 0px;
        box-sizing: border-box;
        gap: 24px;
        text-align: left;
        font-size: 32px;
        color: #fdfdfd;
        font-family: Poppins;
    }


    .fondo {
        width: 100%;
        position: relative;
        height: 626px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 24px;
        box-sizing: border-box;
        background: var(--Opacities-Background-Fondo-2, linear-gradient(0deg, rgba(19, 19, 19, 0.55) 0%, rgba(19, 19, 19, 0.55) 100%), url(img/nosotrosImagenes/Construction\ workers.png) lightgray 50% / cover no-repeat);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        text-align: left;
        font-size: 32px;
        color: #fdfdfd;
        font-family: Poppins;
    }



    .main-container {
        height: 1103px;
    }

    .main-container .content-container-maincontainer {
        padding: 24px;
        flex-direction: column;
        align-items: center;
        height: 581px;
    }

    .main-container .content-container-maincontainer:nth-of-type(2) {
        display: flex;
        flex-direction: column;
        height: 522px;
        padding: 24px;
    }

    .content-container-info {
        height: 159px;
        width: 100%;
    }

    #content-container-info2 {
        width: 100%;
    }

    .content-container-maincontainer .title {
        height: 35px;
        font-size: 24px;
        line-height: 35px;
        text-align: start;
    }

    .content-container-maincontainer .parrafo {
        height: 100px;
        font-size: 18px;
        line-height: 25px;
        text-align: start;
        width: 100%;
    }

    .div-img-content-container,
    #div-img-content-container2 {
        width: 100%;
        height: 350px;
    }


    .main-container .content-container:nth-of-type(2) {
        height: 522px;
        flex-direction: column;
        background-color: #EDF5F8;
        height: 522px;
    }



    .carrusel-proveedores {
        height: 177px;
        padding: 24px;
        gap: 10px;
    }

    .title-carrusel-proveedores {
        height: 35px;
        font-size: 24px;
        line-height: 35px;
    }

    .marcas-scroll {
        padding: 10px 0px 10px 9px;
        height: 84px;
        width: 100%;
    }

    .carousel-marcas-tablet {
        display: none;
    }

    .carousel-marcas {
        display: none;
    }

    .carousel-marcas-mobil {
        display: flex;
        width: calc(392px * 2);
        gap: 54.24px;
        animation: scroll-carousel 15s linear infinite;
    }

    .proyectos-recientes-nosotros {
        padding: 24px;
    }

    .title-proyectos-recientes-nosotros {
        height: 70px;
        font-size: 24px;
        line-height: 35px;
    }

    .parrafo1-proyectos-recientes-nosotros {
        height: 100px;
        font-size: 18px;
        line-height: 25px;
    }

    .scroll-div-proyectos-recientes {
        /*Activamos el scroll
        solo para el uso mobil*/
        height: 350px;
        overflow-x: auto;
    }

    .div-proyectos-recientes {
        width: max-content;
    }

    .img-proyectos-recientes {
        width: 221px;
    }

    .parrafo2-proyectos-recientes-nosotros {
        font-size: 18px;
        line-height: 25px;
    }

    .seccion-testimonio {
        height: 953px;
        padding: 24px;
    }

    .title-testimonios {
        height: 35px;
        line-height: 35px;
        font-size: 24px;
    }

    .div-ultimas-resenas {
        flex-direction: column;
        height: 846px;
    }

    .parrafo-resena {
        height: 100px;
        font-size: 16px;
        line-height: 25px;
    }

    .div-nombre-avatar {
        height: 25px;
    }

    .nombre-avatar {
        font-size: 14px;
        line-height: 25px;
        height: 100%;
    }

    .fecha-resena {
        font-size: 12px;
    }

    .icon-mision-vision {
        width: 100%;
        position: relative;
        max-width: 100%;
        overflow: hidden;
        height: 47.4px;
        flex-shrink: 0;
    }

    .feature-title {
        width: 100%;
        position: relative;
        font-size: 18px;
        line-height: 20px;
        font-weight: 600;
        font-family: Poppins;
        color: #1e434e;
        text-align: center;
        display: inline-block;
    }

    .feature-description {
        width: 100%;
        position: relative;
        font-size: 15px;
        line-height: 25px;
        font-family: Poppins;
        color: #1e434e;
        text-align: center;
        display: inline-block;
    }

    .feature-container {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 24px;
        text-align: center;
        font-size: 20px;
        color: #1e434e;
        font-family: Poppins;
    }

    .content-container {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 28px;
        text-align: center;
        font-size: 10px;
        color: #1e434e;
        font-family: Poppins;
    }

    .seccin-misin-y-visin {
        width: 100%;
        position: relative;
        background-color: #edf5f8;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 10px 24px 24px 24px;
        box-sizing: border-box;
        text-align: center;
        font-size: 20px;
        color: #1e434e;
        font-family: Poppins;
        height: 431px;
    }



    .section-Gallery-nosotros {
        display: none;
    }

    .section-Gallery-nosotros-scroll {
        width: 100%;
        padding: 24px;
        height: 1189px;
        display: flex;
        gap: 24px;
        flex-direction: column;
    }

    .parrafo-Gallery-nosotros-scroll {
        height: 150px;
        color: #479FBA;
        font-weight: 400;
        font-size: 18px;
        line-height: 25px;
    }

    .div-Gallery-nosotros-scroll {
        width: 100%;
        height: 100%;
        overflow-y: auto;
        position: relative;
    }

    .contenedor-Gallery-nosotros-img {
        width: 100%;
        padding: 24px;
        gap: 24px;
        display: flex;
        flex-direction: column;
        border-radius: 24px;
        background-color: #EDF5F8;
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 0.5s ease, visibility 0.5s ease;
        opacity: 0;
        visibility: hidden;
    }

    .contenedor-Gallery-nosotros-img.active {
        opacity: 1;
        visibility: visible;
    }

    .contenedor-Gallery-nosotros-img.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .img-Gallery-nosotros-scroll {
        width: 100%;
        height: 280px;
    }


    /* Ocultar la barra de desplazamiento en Chrome, Safari y Opera */
    .example::-webkit-scrollbar {
        display: none;
    }

    /* Ocultar la barra de desplazamiento en IE, Edge y Firefox */
    .example {
        -ms-overflow-style: none;
        /* IE y Edge */
        scrollbar-width: none;
        /* Firefox */
    }


}




/*Generales Contacto  */

html {
    box-sizing: border-box;
}

body {
    width: 100%;

}

.section-form {
    position: relative;
    display: flex;
    height: 1200px;
    width: 100%;
    padding: 48px 64px;
    flex-direction: column;

}


.container-principal {
    display: flex;
    width: 100%;
    min-height: 772px;
    max-height: 997px;
    gap: 24px;
}

.container-fondo {
    width: 50%;
    height: 100%;
    box-sizing: border-box;
    background-image: url(img/fondo-contacto.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    text-align: left;
    border-radius: 30px;
    padding: 24px;

}






.container-form {
    height: 100%;
    width: 50%;
}

.form-container {
    background-color: #F3F4F6;
    border-radius: 36px;
    padding: 24px;
    height: 100%;
}

.form-container .div-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 90px;
    /* Altura mínima; crecerá si hay mensajes */
    margin-bottom: 24px;
}

.div-form label,
.div-form-textarea label {
    font-size: 18px;
    line-height: 25px;
    font-family: Poppins;
    text-align: left;
    color: #479FBA;
}

.div-form label::after {
    content: '*';
    color: #FF69B4;
    /* Color rosado para el asterisco */
    margin-left: 4px;
    /* Espacio entre el texto del label y el asterisco */
    font-size: 18px;
    /* Tamaño del asterisco para que coincida con el texto */
}

.div-form input {
    height: 57px;
    /* Altura fija del campo */
    padding: 16px;
    font-size: 18px;
    line-height: 25px;
    font-family: Poppins;
    text-align: left;
    border-color: transparent;
    border-radius: 8px;
    /* Borde redondeado opcional */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    /* Sombra en la parte baja */
}


.div-form input::placeholder,
.div-form-textarea textarea::placeholder {
    font-size: 18px;
    line-height: 25px;
    font-family: Poppins;
    text-align: left;
}

.div-form-textarea {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    min-height: 100px;
    /* Altura mínima para crecer si hay mensajes */
}

.div-form-textarea textarea {
    height: 90px;
    /* Altura fija del campo de texto */
    font-size: 18px;
    line-height: 25px;
    font-family: Poppins;
    text-align: left;
    padding: 16px;
    border-color: transparent;
    border-radius: 8px;
}

.button-submit {
    flex: 1;
    width: 100%;
    position: relative;
    border-radius: 8px;
    background-color: #1e434e;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    box-sizing: border-box;
    text-align: center;
    font-size: 22px;
    color: #b1e26e;
    font-family: Poppins;
    margin-top: 40px;
}



/* Mensajes de error y éxito */
.succes,
.errorv1,
.errorv2 {
    font-size: 14px;
    line-height: 25px;
    font-family: Poppins;
    display: none;
    margin-top: 4px;
    /* Espacio entre el campo y el mensaje */
}

.errorv1,
.errorv2 {
    background-color: #FEEFEF;
    color: #EF4444;
}

.succes {
    background-color: #EDF9F0;
    color: #16A34A;
}

.succes img,
.errorv1 img,
.errorv2 img {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 4px;
}

/* Clases para cambiar color de los labels */
.label-success {
    color: #16a34a;
    /* Verde */
}

.label-error {
    color: #EF4444;
    /* Rojo */
}


/* Estilos para los colores del texto de los inputs */
.input-success {
    color: #16a34a;
}

.input-error {
    color: #EF4444;
}

.label-success {
    color: #16a34a;
}

.label-error {
    color: #EF4444;
}

/* input::placeholder:invalid{
        color: blueviolet;
    } */


/* Placeholder en rojo cuando hay un error */
.input-error::placeholder {
    color: #DC2626;
}

.custom-placeholder::placeholder {
    color: var(--placeholder-color, #479fba);
    /* Azul predeterminado si no se define otro */
}



/*Nosotros tablet */
@media (max-width: 768px) {

    body {
        width: 100%;
    }

    .section-form {
        height: 1200px;
        width: 100%;
        padding: 0;
    }

    .container-principal {
        flex-direction: column;
        height: 1039px;
        width: 100%;
        padding: 48px;
    }

    .container-fondo {
        width: 100%;
        height: 205px;
        box-sizing: border-box;
        background-image: url(img/fondo-contacto-tablet.png);
        background-position: 10% center;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 24px;
        padding-left: 50px;
        border-radius: 33px;
        object-fit: cover;
        overflow: hidden;
    }

    .container-form {
        width: 100%;
        height: 714px;
    }

    .form-container {
        border-radius: 15px;
    }

    .div-form {
        gap: 8px;
    }

    .div-form label,
    .div-form-textarea label,
    .div-form input {
        font-size: 16px;
    }

    #h5-form {
        display: none;
    }


    .div-form-textarea {
        min-height: 80px;
    }

    .div-form-textarea textarea {
        height: 100px;
    }

}



/*Movile contacto */
@media (max-width: 480px) {

    .section-form {
        height: 1200px;
        width: 100%;
        padding: 0;
    }

    .container-principal {
        width: 100%;
        height: 1007px;
        padding: 24px;
    }

    .container-fondo {
        width: 100%;
        height: 205px;
        box-sizing: border-box;
        background-image: url(img/fondo-contacto-movile.png);
        background-size: 100%;
        /* Ajuste del zoom, aumenta el porcentaje para alejar la imagen */
        background-repeat: no-repeat;
        background-position: center;
        /* Centra la imagen si la mueves con el zoom */
        padding: 24px;
        border-radius: 30px;
        object-fit: cover;
        overflow: hidden;
    }

    .container-form {
        height: 730px;
        width: 100%;
    }

    .div-form-textarea {
        min-height: 130px;
    }

    .div-form-textarea textarea {
        height: 110px;
    }
}




/* Proyetos General */


.principal-proyectos {
    height: 1710px;
    width: 100%;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 140px;
}

.b-title {
    width: 100%;
    position: relative;
    font-size: 40px;
    line-height: 60px;
    display: inline-block;
    font-family: Poppins;
    color: #1e434e;
    text-align: center;
}

.principa-title {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 16px 12px;
    box-sizing: border-box;
    text-align: center;
    font-size: 40px;
    color: #1e434e;
    font-family: Poppins;
}




.div-principal-proyectos {
    width: 100%;
    height: 1500px;
    display: flex;
    padding: 0;
    gap: 24px;
    flex-wrap: wrap;
}

.div-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-basis: calc((100% - 48px) / 3);
    /* Divide el espacio para 3 elementos considerando el gap */
    width: calc((100% - 48px) / 3);
    /* Ajusta el ancho para 3 elementos */
    height: 738px;
    align-items: center;
    box-sizing: border-box;
    /* Incluye los bordes en el ancho total */
}


.div-card-img {
    width: 98%;
    min-height: 524px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;

}

.div-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-style: solid;
    border-width: 4px;
    border-color: #1e434e;
    border-radius: 30px;
    flex-shrink: 0;

}

.div-info-card {
    gap: 8px;
    height: 95px;
}

.div-info-card .h4-card {
    width: 100%;
    height: 35px;
    position: relative;
    font-size: 24px;
    line-height: 35px;
    display: inline-block;
    font-family: Poppins;
    color: #1e434e;
    text-align: center;
    margin: 0;
    max-height: 35px;
    font-weight: bold;
}

.div-description-card {
    width: 100%;
    height: 60px;
}

.description-card {
    width: 100%;
    height: 60px;
    position: relative;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    font-family: Poppins;
    color: #479fba;
    text-align: center;
}


/* #button-card1 {
    height: 63px;
    flex: 1;
    width: 100%;
    position: relative;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    font-size: 22px;
    color: #1e434e;
    font-family: Poppins;
    font-weight: 800;
}

#button-card1 a {
    color: #1e434e;
    width: 100%;
    height: 100%;
}

.button-card {
    flex: 1;
    width: 100%;
    height: 63px;
    position: relative;
    border-radius: 8px;
    background-color: #1e434e;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    box-sizing: border-box;
    text-align: center;
    font-size: 22px;
    color: #b1e26e;
    font-family: Poppins;
    font-weight: 800;
}

.button-card a {
    width: 100%;
    height: 100%;
} */

/*tablet proyectos*/
@media (max-width: 768px) {

    .principal-proyectos {
        padding: 48px;
        height: 1834px;
        width: 100%;
    }

    .b-title {
        width: 100%;
        font-size: 32px;
        line-height: 50px;
    }

    .div-principal-proyectos {
        height: 1452px;
        width: 100%;
    }

    .div-cards {
        flex-basis: calc(50% - 12px);
        /* Ancho ajustado para dos cards por fila */
        width: calc(50% - 12px);
        /* Ancho ajustado para dos cards por fila */
        height: 714px;
        align-items: flex-start;
    }

    .div-info-card {
        width: 100%;
        min-height: 88px;
    }

    .div-info-card .h4-card {
        font-size: 20px;
        line-height: 30px;
        width: 100%;
    }

    .div-description-card {
        max-height: 50px;
    }

    .description-card {
        font-size: 18px;
        line-height: 25px;
    }

    /* .button-card {
        height: 100%;
        width: 154px;
        display: flex;
        padding: 12px 16px;
        font-size: 20px;
    } */
}


/*Movile proyectos */
@media (max-width: 480px) {
    .principal-proyectos {
        width: 100%;
        height: 3011px;
        padding: 24px;
    }

    .b-title {
        width: 100%;
        font-size: 24px;
        line-height: 35px;
    }

    .div-principal-proyectos {
        width: 100%;
        height: 2872px;
    }

    .div-cards {
        flex-basis: 100%;
        width: 100%;
        height: 524px;
        align-items: center;
    }

    .div-info-card {
        width: 100%;
        min-height: 80px;
    }

    .div-info-card .h4-card {
        font-size: 18px;
        line-height: 25px;
        width: 100%;
    }

    .div-description-card {
        max-height: 50px;
    }

    .description-card {
        font-size: 16px;
        line-height: 25px;
        max-height: 50px;
    }

    /* .button-card {
        width: 100%;
        padding: 10px 14px;
        font-size: 18px;
        line-height: 25px;
    } */
}






/* Las Hortensias Del Golf1 - Generales */

body {
    width: 1440px;
}

.fondo-Golf1 {
    width: 100%;
    position: relative;
    height: 900px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 64px;
    box-sizing: border-box;
    background: var(--Opacities-Background-Fondo-2, url(img/Golf1Imagenes/fondos/desktop.png) lightgray 50% / cover no-repeat);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    color: #fdfdfd;
    font-family: Poppins;
}

.info-fondo-Golf1 {
    width: 100%;
    height: 272px;
    padding: 24px 0px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: start;
    justify-content: center;
}

.heading-info-fondo-Golf1 {
    width: 100%;
    height: 140px;
    font-size: 48px;
    line-height: 70px;
    font-weight: 800;
}

.description-info-fondo-Golf1 {
    width: 100%;
    height: 60px;
    font-size: 40px;
    line-height: 60px;
    font-weight: 400;
}






.info-Golf1 {
    width: 100%;
    height: 1507px;
    padding: 48px 64px;
    background-color: #EDF5F8;
    color: #1E434E;
    font-family: Poppins;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.Heading-section-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 105px;
    gap: 10px;
}

.subtitulo-info-Golf1 {
    font-size: 40px;
    line-height: 60px;
    width: 100%;
    height: 60px;
    font-weight: 700;
}

.description-info-Golf1 {
    width: 100%;
    height: 35px;
    font-size: 24px;
    line-height: 35px;
    font-weight: 400;
}

.location-info-Golf1 {
    display: flex;
    width: 100%;
    height: 72px;
    padding: 12px 0px;
    gap: 10px;
    align-items: center;
}

.location-icon-Golf1 {
    height: 48px;
    width: 48px;
}

.location-address-Golf1 {
    width: 100%;
    height: 35px;
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
}

.div-img-Golf1 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.img-Golf1 {
    width: 790px;
    height: 1186px;
}


.section-description-Golf1 {
    width: 100%;
    height: 246px;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: Poppins;
    gap: 24px;
}

.button-brochure {
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    height: 63px;
    padding: 14px 24px;
    border-radius: 8px;
    display: flex;
    background-color: #1E434E;
    color: #B1E26E;
    align-items: center;
    justify-content: center;
    gap: 8px;
    outline: none;
    /* Elimina el contorno del botón al hacer clic */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    /* Transiciones suaves */
}

.icon-brochure {
    width: 24px;
    height: 24px;
}

.label-brochure {
    width: 262px;
    height: 35px;
    font-size: 18px;
    line-height: 35px;
    font-weight: 700;
    text-align: left;
    margin: 0;
}

.button-brochure:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    /* Aumenta ligeramente el tamaño */
}

/* Efecto active (clic) */
.button-brochure:active {
    transform: scale(0.98);
    /* Reduce ligeramente el tamaño */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.button-planos {
    width: 100%;
    height: 63px;
    padding: 14px 24px;
    background-color: white;
    color: #1E434E;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.icon-planos {
    width: 24px;
    height: 24px;
}

.label-planos {
    width: 78px;
    height: 35px;
    font-size: 18px;
    line-height: 35px;
    font-weight: 700;
    text-align: left;
}

.section-Gallery-Golf1-scroll {
    display: none;
}

.section-Gallery-Golf1 {
    width: 100%;
    height: 1341px;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.subtitle-Gallery-Golf1{
    width: 100%;
    height: 70px;
    padding: 10px;
    border-bottom: solid #479FBA 4px;
    display: flex;
    align-items: center;
}
#subtitle-cambiador-gallery-nosotros{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #1E434E;
    display: flex;
    justify-content: center;
}

.btn-flechaizq-Gallery-Golf1, .btn-flechader-Gallery-Golf1{
    width: 40px;
    height: 40px;
    box-shadow: none;
}
.btn-flechaizq-Gallery-Golf1 img, .btn-flechader-Gallery-Golf1 img{
    width: 100%;
    height: 100%;
    background-color: white;
}

.div-Gallery-Golf1 {
    width: 100%;
    max-width: 1312px;
    height: 1047px;
    padding: 24px;
    gap: 24px;
    display: flex;
    background-color: #EDF5F8;
    border-radius: 24px;
}

.div-relative-gallery-nosotros{
    position: relative;
    width: 100%;
    max-width: 1312px;
    height: 1047px;

}

/*Lo agregado para que desaparesca  y aparesca*/
/* Clases renombradas para ocultar y mostrar elementos */
/* Para las galerías */
.div-Gallery-Golf1 {
    width: 100%;
    max-width: 1312px;
    height: 1047px;
    padding: 24px;
    gap: 24px;
    display: flex;
    background-color: #EDF5F8;
    border-radius: 24px;
    position: absolute;
    opacity: 0; /* Inicialmente todas las galerías son invisibles */
    visibility: hidden; /* Aseguramos que no se muestren inicialmente */
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out; /* Agregamos transición de visibilidad y opacidad */
}

/* Para mostrar la galería */
.div-Gallery-Golf1.mostrar {
    opacity: 1; /* La galería se muestra */
    visibility: visible; /* La visibilidad pasa a visible */
}

/* Para ocultar la galería */
.div-Gallery-Golf1.ocultar {
    opacity: 0; /* La galería se oculta */
    visibility: hidden; /* La visibilidad pasa a oculta */
}
/* Botón visible */
.btn-we-visible {
    display: block;
}

/* Botón no visible */
.btn-we-novisible {
    display: none;
}

#subtitle-cambiador-gallery-nosotros {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    line-height: 50px;
    color: #1E434E;
    display: flex;
    justify-content: center;

    /* Agregamos una transición de opacidad */
    transition: opacity 0.3s ease;
}

#subtitle-cambiador-gallery-nosotros.hidden {
    opacity: 0; /* Lo hacemos invisible */
}







.div-Gallery-Golf1 img{
    width: 100%;
    height: 100%;
}

.Gallery-Golf1-izquierda {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 674px;
    height: 999px;
}

.Gallery-Golf1-izquierda .izquierda {
    width: 100%;
    height: 487.5px;
}

.Gallery-Golf1-derecha {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 566px;
    height: 999px;
    gap: 24px;
}

.Gallery-Golf1-derecha .div-derecha-top {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 200px;
    display: flex;
    gap: 24px;
}

.Gallery-Golf1-derecha .derecha-top {
    width: 100%;
    height: 100%;
}

.Gallery-Golf1-derecha .div-derecha-medio {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 424px;
    gap: 24px;
    display: flex;
}

.Gallery-Golf1-derecha .derecha-medio {
    width: 100%;
    height: 100%;
}


.Gallery-Golf1-derecha .div-derecha-bottom {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 327px;
}

.Gallery-Golf2-derecha .derecha-bottom {
    width: 100%;
    height: 100%;
}











/*tablet Golf1*/
@media (max-width: 768px) {

    body {
        width: 1024px;
    }

    .fondo-Golf1 {
        width: 100%;
        position: relative;
        height: 616px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 48px;
        box-sizing: border-box;
        background: var(--Opacities-Background-Fondo-2, url(img/Golf1Imagenes/fondos/tablet.png) lightgray 50% / cover no-repeat);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        color: #fdfdfd;
        font-family: Poppins;
    }

    .info-fondo-Golf1 {
        height: 242px;
    }

    .heading-info-Golf1 {
        height: 120px;
        font-size: 40px;
        line-height: 60px;
        font-weight: 700;
    }

    .description-info-Golf1 {
        height: 50px;
        font-size: 32px;
        line-height: 50px;
    }




    .info-Golf1 {
        height: 983px;
        padding: 48px;
    }

    .Heading-section-info {
        height: 75px;
    }

    .subtitulo-info-Golf1 {
        font-size: 24px;
        line-height: 35px;
        height: 35px;
    }

    .description-info-Golf1 {
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }

    .location-info-Golf1 {
        height: 64px;
    }

    .location-icon-Golf1 {
        width: 40px;
        height: 40px;
    }

    .location-address-Golf1 {
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }

    .img-Golf1 {
        width: 570px;
        height: 700px;
    }

    .section-description-Golf1 {
        height: 150px;
        padding: 48px;
        flex-direction: row;
    }

    .button-brochure {
        height: 54px;
        padding: 12px 16px;
    }

    .icon-brochure {
        height: 20px;
        width: 20px;
    }

    .label-brochure {
        width: 238px;
        height: 30px;
        line-height: 30px;
        font-size: 18px;
    }

    .button-planos {
        height: 54px;
        padding: 12px 16px;
    }

    .icon-planos {
        height: 20px;
        width: 20px;
    }

    .label-planos {
        line-height: 30px;
        font-size: 20px;
        width: 80px;
        height: 30px;
    }




    .section-Gallery-Golf1-scroll {
        display: none;
    }

    .section-Gallery-Golf1 {
        height: 1061px;
        padding: 48px;
    }

    .div-Gallery-Golf1 {
        height: 792px;
    }

    .Gallery-Golf1-izquierda {
        width: 428px;
        height: 744px;
    }

    .Gallery-Golf1-izquierda .izquierda {
        width: 100%;
        height: 100%;
    }

    .Gallery-Golf1-derecha {
        width: 428px;
        height: 744px;
    }

    .Gallery-Golf1-derecha .div-derecha-medio {
        height: 293px;
    }

    .Gallery-Golf1-derecha .div-derecha-bottom {
        height: 203px;
    }


}



/*Movile Golf1 */

@media (max-width: 480px) {

    body {
        width: 440px;
    }

    .fondo-Golf1 {
        width: 100%;
        position: relative;
        height: 626px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 24px;
        box-sizing: border-box;
        background: var(--Opacities-Background-Fondo-2, url(img/Golf1Imagenes/fondos/mobil.png) lightgray 50% / cover no-repeat);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        color: #fdfdfd;
        font-family: Poppins;
    }

    .info-fondo-Golf1 {
        height: 342px;
    }

    .heading-info-fondo-Golf1 {
        height: 200px;
        font-size: 32px;
        line-height: 50px;
    }

    .description-info-fondo-Golf1 {
        height: 70px;
        font-size: 24px;
        line-height: 35px;
    }

    .info-Golf1 {
        height: 783px;
        padding: 24px;
    }

    .Heading-section-info {
        height: 90px;
    }

    .description-info-Golf1 {
        height: 50px;
        font-size: 18px;
        line-height: 25px;
    }

    .location-info-Golf1 {
        height: 74px;
    }

    .location-icon-Golf1 {
        height: 32px;
        width: 32px;
    }

    .location-address-Golf1 {
        height: 50px;
        font-size: 18px;
        line-height: 25px;
    }

    .img-Golf1 {
        width: 392px;
        height: 523px;
    }

    .section-description-Golf1 {
        height: 162px;
        padding: 24px;
        flex-direction: column;
    }

    .button-brochure {
        height: 45px;
        padding: 10px 14px;
    }

    .icon-brochure {
        height: 16px;
        width: 16px;
    }

    .label-brochure {
        width: 214px;
        height: 25px;
        font-size: 16px;
        line-height: 25px;
    }

    .button-planos {
        height: 45px;
        padding: 10px 14px;
    }

    .icon-planos {
        height: 16px;
        width: 16px;
    }

    .label-planos {
        width: 72px;
        height: 25px;
        font-size: 18px;
        line-height: 25px;
    }




    .section-Gallery-Golf1 {
        display: none;
    }

    .section-Gallery-Golf1-scroll {
        width: 100%;
        height: 731px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .subtitle-Gallery-Golf1{
        height: 70px;
    }
    #subtitle-cambiador-gallery-nosotros-scroll{
        width: 100%;
        font-weight: 700;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
    }
    .btn-flechader-Gallery-Golf1-s, .btn-flechaizq-Gallery-Golf1-s{
        width: 24px;
        height: 24px;
        box-shadow: none;
    }
    .btn-flechader-Gallery-Golf1-s img, .btn-flechaizq-Gallery-Golf1-s img{
        width: 100%;
        height: 100%;
        background-color: white;
    }




    /*Aqui lo que se ocupa para aparecer y desaparecer el segundo gallery*/
    /* Estilos generales para la sección */
.section-Gallery-Golf1-scroll {
    width: 100%;
    height: 731px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.Box-relative-gallery-scroll-Golf1{
    position: relative;
    width: 100%;
    height: 100%;
}
/* Estilo para el contenedor de las imágenes */
.div-Gallery-Golf1-scroll {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

/* Estilos de los botones */
.btn-w-visible {
    display: block; /* Botón visible */
}

.btn-w-novisible {
    display: none; /* Botón oculto */
}

/* Estilo para las flechas */
.btn-flechaizq-Gallery-Golf1-s, 
.btn-flechader-Gallery-Golf1-s {
    background: none;
    border: none;
    cursor: pointer;
}

/* Opcionales: Estilos de las imágenes de fondo */
#gs1, #gs2 {
    visibility: hidden; /* Las galerías inicialmente están invisibles */
    opacity: 0; /* Inicialmente con opacidad 0 */
    transition: opacity 0.5s ease-in-out, visibility 0s 0.5s; /* Animar opacidad y retrasar visibilidad */
    position: absolute;
}

#gs1.show-gallery, #gs2.show-gallery {
    visibility: visible; /* Cuando la clase .show-gallery está presente, se vuelve visible */
    opacity: 1; /* Opacidad 1 cuando está visible */
    transition: opacity 0.5s ease-in-out; /* Solo la transición de opacidad */
}













    .div-Gallery-Golf1-scroll {
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    .contenedor-Gallery-Golf1-img {
        width: 100%;
        padding: 24px;
        gap: 24px;
        display: flex;
        flex-direction: column;
        border-radius: 24px;
        background-color: #EDF5F8;
    }

    .img-Gallery-Golf1-scroll {
        width: 100%;
        height: 280px;
    }


}







/* The Peace Tower Generales */

.fondo-ThePeace-Tower {
    width: 100%;
    position: relative;
    height: 900px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 64px;
    box-sizing: border-box;
    background: var(--Opacities-Background-Fondo-2, url(img/ThePeaceTowerImagenes/fondos/desktop.png) lightgray 50% / cover no-repeat);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    color: #fdfdfd;
    font-family: Poppins;
}

.info-fondo-Thepeace-Tower {
    width: 100%;
    height: 359px;
    padding: 24px 0px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: start;
    justify-content: center;
}

.heading-info-fondo-Thepeace-Tower {
    width: 100%;
    height: 140px;
    font-size: 48px;
    line-height: 70px;
    font-weight: 800;
}

.description-info-fondo-Thepeace-Tower {
    width: 100%;
    height: 60px;
    font-size: 40px;
    line-height: 60px;
    font-weight: 400;
}

.boton-fondo-Thepeace-Tower {
    width: 277px;
    height: 63px;
    padding: 14px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1E434E;
    color: #B1E26E;
    font-size: 22px;
    line-height: 35px;
    font-weight: 700;
}


.div-info-ThePeaceTower {
    width: 100%;
    height: 1029px;
    padding: 48px 64px;
    gap: 24px;
    background-color: #EDF5F8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.div-info-ThePeaceTower .info-detalles {
    font-family: Poppins;
    display: flex;
    flex-direction: column;
    width: 670px;
    height: 729px;
    gap: 24px;
    color: #1E434E;
}

.heading-detalles {
    width: 100%;
    height: 140px;
    gap: 10px;
}

.heading-detalles .title {
    width: 100%;
    height: 60px;
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
}

.heading-detalles .parrafo {
    width: 100%;
    height: 70px;
    font-size: 24px;
    line-height: 35px;
    font-weight: 400;
}

.texto-fuerte {
    font-weight: 700;
}

.info-detalles .location-ThePeaceTower {
    width: 100%;
    height: 72px;
    padding: 12px 0px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.location-ThePeaceTower .img-location {
    width: 48px;
    height: 48px;
}

.location-ThePeaceTower .img-location img {
    width: 100%;
    height: 100%;
}

.location-ThePeaceTower .address {
    width: 100%;
    height: 35px;
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
    display: flex;
    align-items: center;
}


.info-detalles .departamento-ThePeaceTower {
    width: 100%;
    height: 72px;
    padding: 12px 0px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.departamento-ThePeaceTower .img-departamento {
    width: 48px;
    height: 48px;
}

.departamento-ThePeaceTower .img-departamento img {
    width: 100%;
    height: 100%;
}

.departamento-ThePeaceTower .sizedepartamento {
    width: 100%;
    height: 35px;
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
    display: flex;
    align-items: center;
}



.info-detalles .apartamento-ThePeaceTower {
    width: 100%;
    height: 72px;
    padding: 12px 0px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.apartamento-ThePeaceTower .img-apartamento {
    width: 48px;
    height: 48px;
}

.apartamento-ThePeaceTower .img-apartamento img {
    width: 100%;
    height: 100%;
}

.apartamento-ThePeaceTower .apartamentotipo {
    width: 100%;
    height: 35px;
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
    display: flex;
    align-items: center;
}



.info-detalles .area-ThePeaceTower {
    width: 100%;
    height: 94px;
    padding: 12px 0px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.area-ThePeaceTower .img-area {
    width: 48px;
    height: 48px;
}

.area-ThePeaceTower .img-area img {
    width: 100%;
    height: 100%;
}

.area-ThePeaceTower .areaespacio {
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: column;
}


.area-ThePeaceTower .areaespacio div {
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
}




.info-detalles .entrega-ThePeaceTower {
    width: 100%;
    height: 72px;
    padding: 12px 0px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.entrega-ThePeaceTower .img-entrega {
    width: 48px;
    height: 48px;
}

.entrega-ThePeaceTower .img-entrega img {
    width: 100%;
    height: 100%;
}

.entrega-ThePeaceTower .entrega {
    width: 100%;
    height: 35px;
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
    display: flex;
    align-items: center;
}



.info-detalles .precio-ThePeaceTower {
    width: 100%;
    height: 117px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.precio-ThePeaceTower .img-precio {
    width: 48px;
    height: 48px;
}

.precio-ThePeaceTower .img-precio img {
    width: 100%;
    height: 100%;
}

.precio-ThePeaceTower .precio {
    width: 100%;
    height: 117px;
}

.precio-ThePeaceTower .precio div {
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
    width: 100%;
}

.precio-ThePeaceTower .precio div:first-child {
    font-size: 40px;
    line-height: 60px;
}

.info-detalles button {
    width: 100%;
    height: 63px;
    padding: 14px 24px;
    background-color: #FFFFFF;
    color: #1E434E;
    font-size: 22px;
    line-height: 35px;
    font-weight: 700;
}




.div-img-info-ThePeaceTower {
    width: 618px;
    height: 933px;
}

.div-img-info-ThePeaceTower img {
    width: 100%;
    height: 100%;
}



/*Solo adapte la seecion de botones de Golf1 ya que son casi los mismos*/
.div-descripcion-ThePeaceTower {
    width: 100%;
    height: 159px;
    padding: 48px 64px;
    flex-direction: row;
    align-items: center;
}

.div-descripcion-ThePeaceTower button {
    width: 100%;
    padding: 14px 24px;
    height: 63px;
}




.section-Gallery-ThePeaceTower {
    width: 100%;
    height: 1341px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 48px 64px;
    font-family: Poppins;
    color: #1E434E;
}

.title-Gallery-ThePeaceTower {
    width: 100%;
    height: 80px;
    padding: 10px 0px;
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
    text-align: center;
}

.subtitle-Gallery-ThePeaceTower {
    width: 100%;
    height: 70px;
    padding: 10px;
    gap: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: solid #479FBA 4px;
    font-size: 20px;
    font-weight: bold;
}

.subtitle-Gallery-ThePeaceTower button {
    box-shadow: none;
}

.subtitle-Gallery-ThePeaceTower img {
    width: 40px;
    height: 40px;
    background-color: rgb(255, 255, 255);
}

.subtitle-Gallery-ThePeaceTower div {
    width: 100%;
    height: 70px;
    font-size: 32px;
    line-height: 50px;
    font-weight: 700;
    text-align: center;
}

.div-Gallery-ThePeaceTower {
    width: 100%;
    max-width: 1312px;
    height: 1047px;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    background-color: #EDF5F8;
    border-radius: 24px;
}

.div-Gallery-ThePeaceTower picture {
    flex: 1 1 calc(50% - 24px);
    height: 487px;
}

.div-Gallery-ThePeaceTower picture img {
    width: 100%;
    height: 100%;
}

body {
    overflow: auto;
}



/*tablet The Peace Tower*/
@media (max-width: 768px) {

    .fondo-ThePeace-Tower {
        width: 100%;
        position: relative;
        height: 616px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 48px;
        box-sizing: border-box;
        background: var(--Opacities-Background-Fondo-2, url(img/ThePeaceTowerImagenes/fondos/tablet.png) lightgray 50% / cover no-repeat);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        color: #fdfdfd;
        font-family: Poppins;
    }

    .info-fondo-Thepeace-Tower {
        height: 320px;
    }

    .heading-info-fondo-Thepeace-Tower {
        height: 120px;
        font-size: 40px;
        line-height: 60px;
        font-weight: 700;
    }

    .description-info-fondo-Thepeace-Tower {
        height: 50px;
        font-size: 32px;
        line-height: 50px;
    }

    .boton-fondo-Thepeace-Tower {
        width: 240px;
        height: 54px;
        padding: 12px 16px;
        font-size: 20px;
        line-height: 30px;
    }

    .div-info-ThePeaceTower {
        height: 796px;
        padding: 48px;
    }

    .div-info-ThePeaceTower .info-detalles {
        height: 663px;
    }

    .heading-detalles {
        height: 132px;
    }

    .heading-detalles .title {
        height: 35px;
        font-size: 24px;
        line-height: 35px;
    }

    .heading-detalles .parrafo {
        height: 90px;
        font-size: 20px;
        line-height: 30px;
    }

    .info-detalles .location-ThePeaceTower {
        height: 64px;
    }

    .location-ThePeaceTower .img-location {
        width: 40px;
        height: 40px;
    }

    .location-ThePeaceTower .address {
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }


    .info-detalles .departamento-ThePeaceTower {
        height: 64px;
    }

    .departamento-ThePeaceTower .img-departamento {
        width: 40px;
        height: 40px;
    }

    .departamento-ThePeaceTower .sizedepartamento {
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }


    .info-detalles .apartamento-ThePeaceTower {
        height: 64px;
    }

    .apartamento-ThePeaceTower .img-apartamento {
        width: 40px;
        height: 40px;
    }

    .apartamento-ThePeaceTower .apartamentotipo {
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }


    .info-detalles .area-ThePeaceTower {
        height: 84px;
    }

    .area-ThePeaceTower .img-area {
        width: 40px;
        height: 40px;
    }

    .area-ThePeaceTower .areaespacio {
        height: 60px;
    }

    .area-ThePeaceTower .areaespacio div {
        font-size: 20px;
        line-height: 30px;
        height: 60px;
    }


    .info-detalles .entrega-ThePeaceTower {
        height: 64px;
    }

    .entrega-ThePeaceTower .img-entrega {
        width: 40px;
        height: 40px;
    }

    .entrega-ThePeaceTower .entrega {
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }


    .info-detalles .precio-ThePeaceTower {
        height: 112px;
    }

    .precio-ThePeaceTower .img-precio {
        width: 40px;
        height: 40px;
    }

    .precio-ThePeaceTower .precio {
        height: 112px;
    }

    .precio-ThePeaceTower .precio div {
        font-size: 20px;
        line-height: 30px;
    }

    .precio-ThePeaceTower .precio div:first-child {
        font-size: 40px;
        line-height: 60px;
    }


    .info-detalles button {
        height: 54px;
        padding: 12px 16px;
        font-size: 20px;
        line-height: 30px;
    }


    .div-img-info-ThePeaceTower {
        height: 700px;
    }


    .div-descripcion-ThePeaceTower {
        width: 100%;
        height: 150px;
        padding: 48px;
    }

    .div-descripcion-ThePeaceTower button {
        width: 100%;
        padding: 12px 16px;
        height: 54px;
    }





    .section-Gallery-ThePeaceTower {
        height: 1061px;
        padding: 48px;
    }

    .title-Gallery-ThePeaceTower {
        height: 70px;
        font-size: 32px;
        line-height: 50px;
    }

    .subtitle-Gallery-ThePeaceTower {
        height: 55px;
    }

    .subtitle-Gallery-ThePeaceTower div {
        height: 35px;
        font-size: 24px;
        line-height: 35px;
    }

    .subtitle-Gallery-ThePeaceTower img {
        width: 32px;
        height: 32px;
    }

    .div-Gallery-ThePeaceTower {
        height: 792px;
    }

    .div-Gallery-ThePeaceTower picture {
        height: 360px;
    }
}




/*Movile The Peace Tower */
@media (max-width: 480px) {

    .fondo-ThePeace-Tower {
        width: 100%;
        position: relative;
        height: 626px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 24px;
        box-sizing: border-box;
        background: var(--Opacities-Background-Fondo-2, url(img/ThePeaceTowerImagenes/fondos/mobil.png) lightgray 50% / cover no-repeat);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        color: #fdfdfd;
        font-family: Poppins;
    }

    .info-fondo-Thepeace-Tower {
        height: 361px;
    }

    .heading-info-fondo-Thepeace-Tower {
        height: 150px;
        font-size: 32px;
        line-height: 50px;
    }

    .description-info-fondo-Thepeace-Tower {
        height: 70px;
        font-size: 24px;
        line-height: 35px;
    }

    .boton-fondo-Thepeace-Tower {
        width: 215px;
        height: 45px;
        padding: 10px 14px;
        font-size: 18px;
        line-height: 25px;
    }

    .div-info-ThePeaceTower {
        height: 1197px;
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .div-info-ThePeaceTower .info-detalles {
        height: 602px;
        width: 100%;
    }

    .heading-detalles {
        height: 115px;
    }

    .heading-detalles .title {
        font-size: 20px;
        line-height: 30px;
        height: 30px;
    }

    .heading-detalles .parrafo {
        height: 75px;
        line-height: 25px;
        font-size: 18px;
    }

    .info-detalles .location-ThePeaceTower {
        height: 56px;
    }

    .location-ThePeaceTower .img-location {
        width: 32px;
        height: 32px;
    }

    .location-ThePeaceTower .address {
        height: 25px;
        line-height: 25px;
        font-size: 18px;
    }


    .info-detalles .departamento-ThePeaceTower {
        height: 56px;
    }

    .departamento-ThePeaceTower .img-apartamento {
        width: 32px;
        height: 32px;
    }

    .departamento-ThePeaceTower .sizedepartamento {
        height: 25px;
        line-height: 25px;
        font-size: 18px;
    }


    .info-detalles .apartamento-ThePeaceTower {
        height: 56px;
    }

    .apartamento-ThePeaceTower .img-apartamento {
        width: 32px;
        height: 32px;
    }

    .apartamento-ThePeaceTower .apartamentotipo {
        height: 25px;
        line-height: 25px;
        font-size: 18px;
    }


    .info-detalles .area-ThePeaceTower {
        height: 110px;
    }

    .area-ThePeaceTower .img-area {
        width: 32px;
        height: 32px;
    }

    .area-ThePeaceTower .areaespacio {
        height: 55px;
    }

    .area-ThePeaceTower .areaespacio div {
        line-height: 25px;
        font-size: 18px;
    }


    .info-detalles .entrega-ThePeaceTower {
        height: 56px;
    }

    .entrega-ThePeaceTower .img-entrega {
        width: 32px;
        height: 32px;
    }

    .entrega-ThePeaceTower .entrega {
        height: 25px;
        line-height: 25px;
        font-size: 18px;
    }


    .info-detalles .precio-ThePeaceTower {
        height: 129px;
    }

    .precio-ThePeaceTower .img-precio {
        width: 32px;
        height: 32px;
    }

    .precio-ThePeaceTower .precio {
        height: 129px;
    }

    .precio-ThePeaceTower .precio div {
        line-height: 25px;
        font-size: 18px;
    }

    .precio-ThePeaceTower .precio div:first-child {
        font-size: 30px;
        line-height: 60px;
    }


    .info-detalles button {
        height: 45px;
        padding: 10px 14px;
    }


    .div-img-info-ThePeaceTower {
        width: 100%;
        height: 523px;
    }


    .div-descripcion-ThePeaceTower {
        height: 162px;
        flex-direction: column;
        padding: 24px;
    }

    .div-descripcion-ThePeaceTower button {
        padding: 10px 14px;
        height: 45px;
        margin: 0;
    }



    .section-Gallery-ThePeaceTower {
        height: 937px;
        padding: 24px;
    }

    .title-Gallery-ThePeaceTower {
        height: 55px;
        font-size: 24px;
        line-height: 35px;
    }

    .subtitle-Gallery-ThePeaceTower {
        height: 50px;
        display: flex;
        width: 100%;

    }

    .subtitle-Gallery-ThePeaceTower img {
        width: 24px;
        height: 24px;
    }

    .subtitle-Gallery-ThePeaceTower div {
        width: 100%;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }

    .div-Gallery-ThePeaceTower {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .div-Gallery-ThePeaceTower picture {
        width: 100%;
        height: 280px;
        flex: none;
    }

    .div-Gallery-ThePeaceTower picture img {
        width: 100%;
        height: 100%;
    }

}






/*Golf2 Generales */

body {
    font-family: Poppins;
}

.fondo-Golf2 {
    width: 100%;
    position: relative;
    height: 900px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 64px;
    box-sizing: border-box;
    background: var(--Opacities-Background-Fondo-2, url(img/Golf2Imagenes/fondos/desktop.png) lightgray 50% / cover no-repeat);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    color: #fdfdfd;
    font-family: Poppins;
}

.info-fondo-Golf2 {
    width: 100%;
    height: 433px;
    padding: 24px 0px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: start;
    justify-content: center;
}

.heading-info-fondo-Golf2 {
    width: 100%;
    height: 140px;
    font-size: 48px;
    line-height: 70px;
    font-weight: 800;
}

.description-info-fondo-Golf2 {
    width: 100%;
    height: 60px;
    font-size: 40px;
    line-height: 60px;
    font-weight: 400;
}

.boton-fondo-Golf2 {
    width: 277px;
    height: 63px;
    padding: 14px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1E434E;
    color: #B1E26E;
    font-size: 22px;
    line-height: 35px;
    font-weight: 700;
}

#Quedan {
    width: 100%;
    height: 50px;
    font-size: 32px;
    line-height: 50px;
    font-weight: 700;
}



.div-info-Golf2 {
    width: 100%;
    height: 1057px;
    background-color: #EDF5F8;
    padding: 48px 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.info-detalles-Golf2 {
    display: flex;
    flex-direction: column;
    width: 644px;
    height: 751px;
    gap: 24px;
}

.heading-detalles-Golf2 {
    width: 100%;
    height: 144px;
    gap: 10px;
}

.heading-detalles-Golf2 .title {
    width: 100%;
    height: 60px;
    font-weight: 700;
    font-size: 35px;
    line-height: 60px;
}

.heading-detalles-Golf2 .parrafo {
    width: 100%;
    height: 70px;
    font-size: 24px;
    line-height: 35px;
    font-weight: 400;
}

.location-Golf2 {
    width: 100%;
    height: 94px;
    padding: 12px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.img-location-Golf2 {
    width: 48px;
    height: 48px;
}

.img-location-Golf2 img {
    width: 100%;
    height: 100%;
}

.address-Golf2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    height: 70px;
}



.departamento-Golf2 {
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 12px 0px;
    gap: 10px;
}

.img-departamento-Golf2 {
    width: 48px;
    height: 48px;
}

.img-departamento-Golf2 img {
    width: 100%;
    height: 100%;
}

.sizedepartamento-Golf2 {
    height: 35px;
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
}



.apartamento-Golf2 {
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 12px 0px;
    gap: 10px;
}

.img-apartamento-Golf2 {
    width: 48px;
    height: 48px;
}

.img-apartamento-Golf2 img {
    width: 100%;
    height: 100%;
}

.apartamentotipo-Golf2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 35px;
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
}


.area-Golf2 {
    width: 100%;
    height: 94px;
    padding: 12px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.img-area-Golf2 {
    width: 48px;
    height: 48px;
}

.img-area-Golf2 img {
    width: 100%;
    height: 100%;
}

.areaespacio-Golf2 {
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: column;
}

.areaespacio-Golf2 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
}

.areaespacio-Golf2 ul,
li {
    margin: 0;
}



.entrega-Golf2 {
    width: 100%;
    height: 72px;
    padding: 12px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.img-entrega-Golf2 {
    width: 48px;
    height: 48px;
}

.img-entrega-Golf2 img {
    width: 100%;
    height: 100%;
}

.entrega-Golf2 .entrega {
    width: 100%;
    height: 35px;
    font-weight: 700;
    font-size: 24px;
    line-height: 35px;
    display: flex;
    align-items: center;
}



.precio-Golf2 {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.precio-Golf2 .precio-info {
    width: 100%;
    height: 152px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.img-precio-Golf2 {
    width: 50px;
    height: 50px;
}

.img-precio-Golf2 img {
    width: 100%;
    height: 100%;
}

.precio-Golf2 .precio-info .precio {
    width: 100%;
    height: 152px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.precio-Golf2 .precio-info .precio div {
    width: 100%;
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
}

.precio-Golf2 .precio-info .precio div:first-child {
    font-size: 40px;
    line-height: 60px;
}

.precio div .texto-fuerte {
    font-size: 54px;
    line-height: 60px;
}

.precio-Golf2 button {
    width: 100%;
    height: 63px;
    padding: 14px 24px;
    background-color: #FFFFFF;
    color: #1E434E;
    font-size: 22px;
    line-height: 35px;
    font-weight: 700;
    margin: 0;
}



.div-img-info-Golf2 {
    width: 644px;
    height: 961px;
}

.div-img-info-Golf2 img {
    width: 100%;
    height: 100%;
}



.section-description-Golf2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 159px;
    padding: 48px 64px;
    gap: 24px;
}


.div-planos-recorridovirtual {
    display: flex;
    padding: 0;
    margin: 0;
    gap: 24px;
}

.label-recorridovirtual {
    width: 226px;
}

.section-description-Golf2 button {
    margin: 0;
}


.section-Gallery-Golf2-scroll {
    display: none;
}

.section-Gallery-Golf2 {
    display: flex;
    flex-direction: column;
    padding: 48px 64px;
    align-items: center;
    gap: 24px;
}

.Box-Gallery-Golf2{
    width: 100%;
    max-width: 1312px;
    height: max-content;
    padding: 24px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    background-color: #EDF5F8;
    border-radius: 24px;
}

.div-Gallery-Golf2 {
    width: 100%;
    /* height: 1047px; */
    height: max-content;
    gap: 24px;
    display: flex;
    border-radius: 24px;
}

.div-videos-Golf2{
    width: 100%;
    height: 387px;
    display: flex;
    gap: 24px;
}

.div-videos-Golf2 video{
    max-width: calc((100% - 24px) / 2);
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.Gallery-Golf2-izquierda {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 674px;
    height: 999px;
}

.Gallery-Golf2-izquierda .izquierda {
    width: 674px;
    height: 487px;
}

.Gallery-Golf2-izquierda .izquierda img {
    width: 100%;
    height: 100%;
}

.Gallery-Golf2-derecha {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 566px;
    height: 999px;
    gap: 24px;
}

.Gallery-Golf2-derecha .div-derecha-top {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 200px;
    display: flex;
    gap: 24px;
}

.Gallery-Golf2-derecha .derecha-top {
    width: 100%;
    height: 100%;
}

.Gallery-Golf2-derecha .div-derecha-medio {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 424px;
    gap: 24px;
    display: flex;
}

.Gallery-Golf2-derecha .derecha-medio {
    width: 100%;
    height: 100%;
}


.Gallery-Golf2-derecha .div-derecha-bottom {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 327px;
}

.Gallery-Golf2-derecha .derecha-bottom {
    width: 100%;
    height: 100%;
}

.Gallery-Golf2-derecha img {
    width: 100%;
    height: 100%;
}




/*tablet   Golf2*/
@media (max-width: 768px) {

    .fondo-Golf2 {
        width: 100%;
        position: relative;
        height: 616px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 48px;
        box-sizing: border-box;
        background: var(--Opacities-Background-Fondo-2, url(img/Golf2Imagenes/fondos/tablet.png) lightgray 50% / cover no-repeat);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        color: #fdfdfd;
        font-family: Poppins;
    }

    .info-fondo-Golf2 {
        height: 379px;
    }

    .heading-info-fondo-Golf2 {
        height: 120px;
        font-size: 40px;
        line-height: 60px;
        font-weight: 700;
    }

    .description-info-fondo-Golf2 {
        height: 50px;
        line-height: 50px;
        font-size: 32px;
    }

    .boton-fondo-Golf2 {
        width: 240px;
        height: 54px;
        padding: 12px 16px;
        font-size: 20px;
        line-height: 30px;
    }

    #Quedan {
        height: 35px;
        line-height: 35px;
        font-size: 24px;
    }


    .div-info-Golf2 {
        height: 951px;
        padding: 48px;
    }

    .info-detalles-Golf2 {
        height: 663px;
        width: 452px;
    }

    .heading-detalles-Golf2 {
        height: 135px;
    }

    .heading-detalles-Golf2 .title {
        height: 35px;
        line-height: 35px;
        font-size: 24px;
    }

    .heading-detalles-Golf2 .parrafo {
        height: 90px;
        font-size: 20px;
        line-height: 30px;
    }

    .location-Golf2 {
        height: 84px;
    }

    .img-location-Golf2 {
        width: 40px;
        height: 40px;
    }

    .address-Golf2 {
        height: 60px;
        line-height: 30px;
        font-size: 20px;
    }

    .departamento-Golf2 {
        height: 64px;
    }

    .img-departamento-Golf2 {
        width: 40px;
        height: 40px;
    }

    .sizedepartamento-Golf2 {
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }


    .apartamento-Golf2 {
        height: 84px;
    }

    .img-apartamento-Golf2 {
        width: 40px;
        height: 40px;
    }

    .apartamentotipo-Golf2 {
        height: 60px;
        font-size: 20px;
        line-height: 30px;
    }


    .area-Golf2 {
        height: 84px;
    }

    .img-area-Golf2 {
        width: 40px;
        height: 40px;
    }

    .areaespacio-Golf2 {
        height: 60px;
        font-size: 20px;
        line-height: 30px;
    }


    .entrega-Golf2 {
        height: 64px;
    }

    .img-entrega-Golf2 {
        width: 40px;
        height: 40px;
    }

    .entrega-Golf2 .entrega {
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }


    .precio-Golf2 {
        height: 176px;
    }

    .precio-Golf2 .precio-info {
        height: 112px;
    }

    .img-precio-Golf2 {
        width: 40px;
        height: 40px;
    }

    .precio-Golf2 .precio-info .precio {
        height: 112px;
    }

    .precio-Golf2 .precio-info .precio div {
        font-size: 20px;
        line-height: 30px;
    }

    .precio-Golf2 .precio-info .precio div:first-child {
        font-size: 40px;
        line-height: 60px;
    }

    .precio-Golf2 button {
        height: 54px;
        padding: 12px 16px;
    }


    .div-img-info-Golf2 {
        height: 855px;
    }


    .section-description-Golf2 {
        height: 150px;
        padding: 48px;
    }



    .section-Gallery-Golf2 {
        height: max-content;
        padding: 48px;
    }

    .div-Gallery-Golf2 {
        height: max-content;
    }

    .Gallery-Golf2-izquierda {
        height: 744px;
        width: 428px;
    }

    .Gallery-Golf2-izquierda .izquierda {
        width: 428px;
        height: 360px;
    }

    .div-Gallery-Golf2 img {
        width: 100%;
        height: 100%;
    }

    .Gallery-Golf2-derecha {
        width: 428px;
        height: 744px;
    }

    .Gallery-Golf2-derecha .div-derecha-top {
        height: 200px;
    }

    .Gallery-Golf2-derecha .div-derecha-medio {
        height: 293px;
    }

    .Gallery-Golf2-derecha .derecha-bottom {
        height: 203px;
    }

}




/* mobil   Golf2*/
@media (max-width: 480px) {

    .fondo-Golf2 {
        width: 100%;
        position: relative;
        height: 626px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 24px;
        box-sizing: border-box;
        background: var(--Opacities-Background-Fondo-2, url(img/Golf2Imagenes/fondos/mobil.png) lightgray 50% / cover no-repeat);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        color: #fdfdfd;
        font-family: Poppins;
    }

    .info-fondo-Golf2 {
        height: 495px;
    }

    .heading-info-fondo-Golf2 {
        height: 200px;
        font-size: 32px;
        line-height: 50px;
    }

    .description-info-fondo-Golf2 {
        height: 70px;
        font-size: 24px;
        line-height: 35px;
    }

    .boton-fondo-Golf2 {
        width: 215px;
        height: 45px;
        padding: 10px 14px;
        font-size: 18px;
        line-height: 25px;
    }


    .div-info-Golf2 {
        height: 1190px;
        padding: 24px;
        flex-direction: column;
    }

    .info-detalles-Golf2 {
        height: 800px;
        width: 100%;
    }

    .heading-detalles-Golf2 {
        height: 90px;
    }

    .heading-detalles-Golf2 .title {
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }

    .heading-detalles-Golf2 .parrafo {
        height: 50px;
        font-size: 18px;
        line-height: 25px;
    }


    .location-Golf2 {
        height: 74px;
    }

    .img-location-Golf2 {
        width: 32px;
        height: 32px;
    }

    .address-Golf2 {
        height: 50px;
        line-height: 25px;
        font-size: 18px;
    }


    .departamento-Golf2 {
        height: 56px;
    }

    .img-departamento-Golf2 {
        width: 32px;
        height: 32px;
    }

    .sizedepartamento-Golf2 {
        height: 25px;
        font-size: 18px;
        line-height: 25px;
    }


    .apartamento-Golf2 {
        height: 56px;
    }

    .img-apartamento-Golf2 {
        width: 32px;
        height: 32px;
    }

    .apartamentotipo-Golf2 {
        height: 25px;
        font-size: 18px;
        line-height: 25px;
    }


    .area-Golf2 {
        height: 74px;
    }

    .img-area-Golf2 {
        width: 32px;
        height: 32px;
    }

    .areaespacio-Golf2 {
        height: 50px;
        font-size: 19px;
        line-height: 25px;
    }


    .entrega-Golf2 {
        height: 56px;
    }

    .img-entrega-Golf2 {
        width: 32px;
        height: 32px;
    }

    .entrega-Golf2 .entrega {
        height: 25px;
        font-size: 18px;
        line-height: 25px;
    }


    .precio-Golf2 {
        height: 45px;
    }

    .precio-Golf2 .precio-info {
        height: 129px;
    }

    .img-precio-Golf2 {
        width: 32px;
        height: 32px;
    }

    .precio-Golf2 .precio-info .precio {
        height: 129px;
    }

    .precio-Golf2 .precio-info .precio div {
        font-size: 20px;
        line-height: 30px;
    }

    .precio-Golf2 .precio-info .precio div:first-child {
        font-size: 24px;
        line-height: 35px;
    }

    .precio-Golf2 .precio-info .precio div:first-child span {
        font-size: 34px;
        line-height: 35px;
    }

    .precio-Golf2 button {
        height: 45px;
        padding: 10px 14px;
    }



    .div-img-info-Golf2 {
        width: 100%;
        height: 523px;
    }


    .section-description-Golf2 {
        height: 93px;
        padding: 24px;
    }

    .div-planos-recorridovirtual {
        flex-direction: column;
    }


    .section-Gallery-Golf2 {
        display: none;
    }

    .section-Gallery-Golf2-scroll {
        width: 100%;
        padding: 24px;
        height: 731px;
        display: flex;
        gap: 24px;
        flex-direction: column;
    }

    .div-Gallery-Golf2-scroll {
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    .contenedor-Gallery-Golf2-img {
        width: 100%;
        padding: 24px;
        gap: 24px;
        display: flex;
        flex-direction: column;
        border-radius: 24px;
        background-color: #EDF5F8;
    }

    .img-Gallery-Golf2-scroll {
        width: 100%;
        height: 280px;
    }
}






/*TheMerdekaTower Generales h*/

body {
    font-family: Poppins;
}

.fondo-Merdeka-Tower {
    width: 100%;
    position: relative;
    height: 900px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 64px;
    box-sizing: border-box;
    background: var(--Opacities-Background-Fondo-2, url(img/TheMerdekaTowerImagenes/fondos/desktop.png) lightgray 50% / cover no-repeat);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    color: #fdfdfd;
    font-family: Poppins;
}

.info-fondo-Merdeka-Tower {
    width: 100%;
    height: 419px;
    padding: 24px 0px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: start;
    justify-content: center;
}

.heading-info-fondo-Merdeka-Tower {
    width: 100%;
    height: 140px;
    font-size: 48px;
    line-height: 70px;
    font-weight: 800;
}

.description-info-fondo-Merdeka-Tower {
    width: 100%;
    height: 120px;
    font-size: 40px;
    line-height: 60px;
    font-weight: 400;
}

.boton-preventa {
    width: 262px;
    height: 63px;
    padding: 14px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1E434E;
    color: #B1E26E;
    font-size: 22px;
    line-height: 35px;
    font-weight: 700;
}


.div-info-MerdekaTower {
    width: 100%;
    height: 1029px;
    background-color: #EDF5F8;
    padding: 48px 64px;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

.info-detalles-MerdekaTower {
    display: flex;
    flex-direction: column;
    width: 670px;
    height: 729px;
    gap: 24px;
}

.heading-detalles-MerdekaTower {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 140px;
    gap: 10px;
}

.heading-detalles-MerdekaTower .title {
    width: 100%;
    height: 60px;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
}

.heading-detalles-MerdekaTower .parrafo {
    width: 100%;
    height: 70px;
    font-size: 24px;
    line-height: 35px;
    font-weight: 400;
}

.location-MerdekaTower {
    width: 100%;
    height: 72px;
    padding: 12px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.img-location-MerdekaTower {
    width: 48px;
    height: 48px;
}

.img-location-MerdekaTower img {
    width: 100%;
    height: 100%;
}

.address-MerdekaTower {
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    height: 35px;
}



.departamento-MerdekaTower {
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 12px 0px;
    gap: 10px;
}

.img-departamento-MerdekaTower {
    width: 48px;
    height: 48px;
}

.img-departamento-MerdekaTower img {
    width: 100%;
    height: 100%;
}

.sizedepartamento-MerdekaTower {
    width: 100%;
    height: 35px;
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
}



.apartamento-MerdekaTower {
    width: 100%;
    height: 144px;
    display: flex;
    align-items: center;
    padding: 12px 0px;
    gap: 10px;
}

.img-apartamento-MerdekaTower {
    width: 48px;
    height: 48px;
}

.img-apartamento-MerdekaTower img {
    width: 100%;
    height: 100%;
}

.apartamentotipo-MerdekaTower {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 70px;
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
}



.area-MerdekaTower {
    width: 100%;
    height: 72px;
    padding: 12px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.img-area-MerdekaTower {
    width: 48px;
    height: 48px;
}

.img-area-MerdekaTower img {
    width: 100%;
    height: 100%;
}

.areaespacio-MerdekaTower {
    width: 100%;
    height: 35px;
    display: flex;
    flex-direction: column;
}

.areaespacio-MerdekaTower {
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
}

.areaespacio-MerdekaTower ul,
li {
    margin: 0;
}



.entrega-MerdekaTower {
    width: 100%;
    height: 72px;
    padding: 12px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.img-entrega-MerdekaTower {
    width: 48px;
    height: 48px;
}

.img-entrega-MerdekaTower img {
    width: 100%;
    height: 100%;
}

.entrega-MerdekaTower .entrega {
    width: 100%;
    height: 35px;
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    display: flex;
    align-items: center;
}



.precio-MerdekaTower {
    width: 100%;
    height: 190px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.precio-MerdekaTower .precio-info {
    width: 100%;
    height: 119px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.img-precio-MerdekaTower {
    width: 50px;
    height: 50px;
}

.img-precio-MerdekaTower img {
    width: 100%;
    height: 100%;
}

.precio-MerdekaTower .precio-info .precio {
    width: 100%;
    height: 119px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.precio-MerdekaTower .precio-info .precio div {
    width: 100%;
    font-size: 23px;
    line-height: 35px;
    font-weight: 500;
}

.precio-MerdekaTower .precio-info .precio div:first-child {
    font-size: 40px;
    line-height: 60px;
}

.precio div .texto-fuerte {
    font-size: 54px;
    line-height: 60px;
}

.precio-MerdekaTower button {
    width: 100%;
    height: 63px;
    padding: 14px 24px;
    background-color: #FFFFFF;
    color: #1E434E;
    font-size: 22px;
    line-height: 35px;
    font-weight: 700;
    margin: 0;
}



.div-img-info-MerdekaTower {
    width: 618px;
    height: 933px;
}

.div-img-info-MerdekaTower img {
    width: 100%;
    height: 100%;
}



.section-description-MerdekaTower {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 246px;
    padding: 48px 64px;
    gap: 24px;
}


.div-planos-recorridovirtual {
    display: flex;
    padding: 0;
    margin: 0;
    gap: 24px;
}

.label-recorridovirtual {
    width: 226px;
}

.section-description-MerdekaTower button {
    margin: 0;
}



.section-Gallery-MerdekaTower-mobil {
    display: none;
}

.section-Gallery-MerdekaTower {
    width: 100%;
    height: 1341px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 48px 64px;
    font-family: Poppins;
    color: #1E434E;
    overflow: hidden;
}

.caja-gallery-MerdekaTower-relative {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;

}

.title-Gallery-MerdekaTower {
    width: 100%;
    height: 80px;
    padding: 10px 0px;
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
    text-align: center;
}

.div-subtitle-Gallery-MerdekaTower {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 10px 0px;
    border-bottom: solid #479FBA 4px;
}

.subtitle-Gallery-MerdekaTower {
    width: 100%;
    font-size: 24px;
    line-height: 50px;
    font-weight: 700;
    text-align: center;
}

.button-subtitle-Gallery-MerdekaTower {
    width: 40px;
    height: 40px;
    background-color: white;
    color: #1E434E;
    box-shadow: none;
}

.img-subtitle-Gallery-MerdekaTower {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.div-Gallery-MerdekaTower {
    width: 100%;
    max-width: 1312px;
    height: 1047px;
    padding: 24px;
    gap: 24px;
    display: flex;
    background-color: #EDF5F8;
    border-radius: 24px;
    transition: opacity 0.5s ease;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    /* Hacer que se superpongan */
}

.div-Gallery-MerdekaTower.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    /* Asegura que esté en el flujo del documento */
}

.div-Gallery-MerdekaTower.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}


.div-Gallery-MerdekaTower img {
    width: 100%;
    height: 100%;
}

.Gallery-MerdekaTower-izquierda {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.Gallery-MerdekaTower-izquierda picture {
    width: 100%;
    height: 487.5px;
}

.Gallery-MerdekaTower-derecha {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.Gallery-MerdekaTower-derecha picture {
    width: 100%;
    height: 487.5px;
}




/*Estilos de la segunda gallery*/
.Gallery-MerdekaTower-izquierda2,
.Gallery-MerdekaTower-derecha2 {
    width: 100%;
    height: 100%;
}

.ptm2 {
    width: 100%;
    height: 100%;
}

.ptm2 img {
    width: 100%;
    height: 100%;
}


.section-planos-MerdekaTower {
    width: 100%;
    height: 1145px;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.div-title-planos-MerdekaTower {
    width: 100%;
    height: 227px;
    padding: 24px 0px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.title-planos-MerdekaTower {
    width: 100%;
    height: 120px;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
}

.description-planos-MerdekaTower {
    width: 100%;
    height: 35px;
    line-height: 35px;
    font-size: 24px;
    font-weight: 400;
    color: #479FBA;
}

.div-planos-cuarto-MerdekaTower {
    width: 100%;
    height: 798px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.planos-cuarto-MerdekaTower {
    width: 743px;
    height: 798px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.img-planos-cuarto-MerdekaTower {
    width: 599px;
    height: 100%;
}

.button-planos-cuarto {
    width: 48px;
    height: 48px;
}


.div-info-planos-MerdekaTower {
    width: 428px;
    height: 612px;
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.texto-azul-fuerte {
    font-size: 32px;
    line-height: 50px;
    font-weight: 700;
    color: #479FBA;
}

.title-info-planos-MerdekaTower {
    width: 100%;
    height: 60px;
    border-bottom: solid #1E434E 2px;
}

.Tipo2b {
    font-size: 40px;
    line-height: 60px;
}

.area-info-planos-MerdekaTower {
    width: 100%;
    height: 100px;
    font-size: 32px;
    line-height: 50px;
    font-weight: 700;
}

.numerohabitaciones-info-planos-MerdekaTower {
    width: 100%;
    height: 100px;
    font-size: 32px;
    line-height: 50px;
    font-weight: 700;
}

.numerobanos-info-planos-MerdekaTower {
    width: 100%;
    height: 100px;
    font-size: 32px;
    line-height: 50px;
    font-weight: 700;
}

.dpto-info-planos-MerdekaTower {
    width: 100%;
    height: 100px;
    font-size: 32px;
    line-height: 50px;
    font-weight: 700;
}

/* Trancisiones a*/
/* Imagen s*/
.img-planos-cuarto-MerdekaTower {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.img-planos-cuarto-MerdekaTower.fade-out {
    opacity: 0;
}

/* Información */
.div-info-planos-MerdekaTower {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;
    transform: translateY(0);
}

.div-info-planos-MerdekaTower.fade-out {
    opacity: 0;
    transform: translateY(10px);
}




.section-map-MerdekaTower {
    width: 100%;
    height: max-content;
    padding: 48px 64px;
    display: flex;
    gap: 24px;
    align-items: center;
    background-color: #EDF5F8;
}

.div-info-map-MerdekaTower {
    width: 60%;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.div-title-info-map-MerdekaTower {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-info-map-MerdekaTower {
    width: 100%;
    height: max-content;
    align-items: center;
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
}

.subtitle-info-map-MerdekaTower {
    width: 100%;
    height: 50px;
    font-size: 32px;
    line-height: 50px;
    font-weight: 600;
    color: #479FBA;
}

.div-items-map-MerdekaTower {
    width: 100%;
    height: 68px;
    display: flex;
    gap: 8px;
    padding: 14px 12px;
}

.icon-info-map-MerdekaTower {
    width: 40px;
    height: 40px;
    color: #479FBA;
}

.texto-info-map-MerdekaTower {
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 35px;
    font-weight: 600;
}

.div-buttons-info-map-MerdekaTower {
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}



/* Estilo predeterminado para el botón Waze */
.button-waze {
    text-decoration: none;
    padding: 10px 20px;
    color: #000;
    /* Color de texto predeterminado */
    background-color: #1E434E;
    /* Fondo del botón */
    border-radius: 5px;
    transition: color 0.3s ease;
    /* Transición solo para el color del texto */
}

/* Estilo cuando el mouse pasa sobre el botón Waze (solo cambia el texto) */
.button-waze:hover {
    color: #CBEC9E;
    /* Cambia el color del texto cuando pasa el mouse */
    background-color: #1E434E;
    /* Mantiene el fondo igual */
}

.button-waze:active {
    color: #E7F6D2;
    /* Cambia el color del texto cuando pasa el mouse */
    background-color: #1E434E;
    /* Mantiene el fondo igual */
}


/* Estilo predeterminado para el botón Google Maps */
.button-googlemap {
    text-decoration: none;
    padding: 10px 20px;
    color: #FFF;
    /* Color de texto predeterminado */
    background-color: #007BFF;
    /* Fondo del botón (puedes cambiarlo) */
    border-radius: 5px;
    transition: color 0.3s ease;
    /* Transición solo para el color del texto */
}

/* Estilo cuando el mouse pasa sobre el botón Google Maps (solo cambia el texto) */
.button-googlemap:hover {
    color: #327184;
    /* Cambia el color del texto cuando pasa el mouse */
    background-color: #fff;
    /* Mantiene el fondo igual */
}

.button-googlemap:active {
    color: #479FBA;
    /* Cambia el color del texto cuando pasa el mouse */
    background-color: #fff;
    /* Mantiene el fondo igual */
}






















.button-waze {
    width: 100%;
    height: 63px;
    margin: 0;
    padding: 14px 24px;
    border-radius: 8px;
    color: #B1E26E;
    background-color: #1E434E;
    font-size: 22px;
    line-height: 35px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button-googlemap {
    width: 100%;
    height: 63px;
    margin: 0;
    padding: 14px 24px;
    border-radius: 8px;
    color: #1E434E;
    background-color: #FFFFFF;
    font-size: 22px;
    line-height: 35px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.img-map-MerdekaTower {
    width: 40%;
    height: 601px;
}





/*tablet   The-Merdeka-Tower t*/
@media (max-width: 768px) {

    .fondo-Merdeka-Tower {
        height: 616px;
        padding: 48px;
        background: var(--Opacities-Background-Fondo-2, url(img/TheMerdekaTowerImagenes/fondos/tablet.png) lightgray 50% / cover no-repeat);
    }

    .info-fondo-Merdeka-Tower {
        height: 370px;
    }

    .heading-info-fondo-Merdeka-Tower {
        height: 120px;
        line-height: 60px;
        font-size: 40px;
        font-weight: 700;
    }

    .description-info-fondo-Merdeka-Tower {
        height: 100px;
        font-size: 32px;
        line-height: 50px;
    }

    .boton-preventa {
        width: 218px;
        height: 53px;
        padding: 16px 12px;
        font-size: 20px;
        line-height: 30px;
    }

    .div-info-MerdekaTower {
        height: 796px;
        padding: 48px;
    }

    .info-detalles-MerdekaTower {
        width: 468px;
        height: 663px;
        gap: 24px;
    }

    .heading-detalles-MerdekaTower {
        height: 105px;
    }

    .heading-detalles-MerdekaTower .title {
        font-size: 24px;
        line-height: 35px;
        height: 35px;
    }

    .heading-detalles-MerdekaTower .parrafo {
        height: 60px;
        line-height: 30px;
        font-size: 20px;
    }

    .location-MerdekaTower {
        height: 64px;
    }

    .img-location-MerdekaTower {
        width: 40px;
        height: 40px;
    }

    .address-MerdekaTower {
        height: 30px;
        line-height: 30px;
        font-size: 20px;
    }


    .departamento-MerdekaTower {
        height: 64px;
    }

    .img-departamento-MerdekaTower {
        width: 40px;
        height: 40px;
    }

    .sizedepartamento-MerdekaTower {
        display: flex;
        align-items: center;
        height: 30px;
        line-height: 30px;
        font-size: 20px;
    }


    .apartamento-MerdekaTower {
        height: 84px;
    }

    .img-apartamento-MerdekaTower {
        width: 40px;
        height: 40px;
    }

    .apartamentotipo-MerdekaTower {
        height: 60px;
        font-size: 20px;
        line-height: 30px;
    }


    .area-MerdekaTower {
        height: 64px;
    }

    .img-area-MerdekaTower {
        width: 40px;
        height: 40px;
    }

    .areaespacio-MerdekaTower {
        height: 30px;
    }

    .areaespacio-MerdekaTower {
        font-size: 20px;
        line-height: 30px;
    }


    .entrega-MerdekaTower {
        height: 64px;
    }

    .img-entrega-MerdekaTower {
        width: 40px;
        height: 40px;
    }

    .entrega-MerdekaTower .entrega {
        height: 30px;
        line-height: 30px;
        font-size: 20px;
    }


    .precio-MerdekaTower {
        height: 176px;
    }

    .precio-MerdekaTower .precio-info {
        height: 112px;
    }

    .img-precio-MerdekaTower {
        width: 40px;
        height: 40px;
    }

    .precio-MerdekaTower .precio-info .precio {
        height: 112px;
    }

    .precio-MerdekaTower .precio-info .precio div {
        height: 112px;
        font-size: 18px;
        line-height: 30px;
    }

    .precio-MerdekaTower .precio-info .precio div:first-child {
        font-size: 40px;
        line-height: 60px;
    }

    .precio div .texto-fuerte {
        font-size: 40px;
    }

    .precio-MerdekaTower button {
        height: 54px;
        font-size: 20px;
        line-height: 30px;
    }

    .div-img-info-MerdekaTower {
        width: 436px;
        height: 700px;
    }






    .section-description-MerdekaTower {
        height: 228px;
        padding: 48px;
    }



    .section-Gallery-MerdekaTower {
        height: 1061px;
        padding: 48px;
    }

    .title-Gallery-MerdekaTower {
        height: 70px;
        font-size: 32px;
        line-height: 50px;
    }

    .div-subtitle-Gallery-MerdekaTower {
        height: 55px;
    }

    .subtitle-Gallery-MerdekaTower {
        font-size: 24px;
        line-height: 35px;
        height: 35px;
    }

    .button-subtitle-Gallery-MerdekaTower {
        width: 32px;
        height: 32px;
    }

    .section-Gallery-MerdekaTower-mobil {
        display: none;
    }

    .div-Gallery-MerdekaTower {
        height: 792px;
    }

    .Gallery-Golf2-izquierda picture {
        height: 360px;
    }

    .Gallery-MerdekaTower-derecha picture {
        height: 360px;
    }



    .section-planos-MerdekaTower {
        height: 1412px;
        padding: 48px;
    }

    .div-title-planos-MerdekaTower {
        height: 232px;
    }

    .title-planos-MerdekaTower {
        height: 100px;
        font-size: 32px;
        line-height: 50px;
    }

    .description-planos-MerdekaTower {
        height: 60px;
        font-size: 20px;
        line-height: 30px;
    }


    .div-planos-cuarto-MerdekaTower {
        flex-direction: column;
        height: 1060px;
    }

    .planos-cuarto-MerdekaTower {
        width: 100%;
    }

    .img-planos-cuarto-MerdekaTower {
        width: 800px;
    }

    .button-planos-cuarto {
        width: 40px;
        height: 40px;
    }

    .div-info-planos-MerdekaTower {
        width: 100%;
        height: 238px;
        padding: 0px 48px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }

    .area-info-planos-MerdekaTower {
        width: 397px;
        height: 70px;
        font-size: 24px;
        line-height: 30px;
    }

    .numerohabitaciones-info-planos-MerdekaTower {
        width: 397px;
        height: 70px;
        font-size: 24px;
        line-height: 30px;
    }

    .numerobanos-info-planos-MerdekaTower {
        width: 397px;
        height: 70px;
        font-size: 24px;
        line-height: 30px;
    }

    .dpto-info-planos-MerdekaTower {
        width: 397px;
        height: 70px;
        font-size: 24px;
        line-height: 30px;
    }



    .section-map-MerdekaTower {
        flex-direction: column;
        height: 1534px;
        padding: 48px;
        align-items: flex-start;
    }

    .div-info-map-MerdekaTower {
        width: 100%;
        height: 501px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .div-title-info-map-MerdekaTower {
        width: 100%;
        height: 93px;
    }

    .title-info-map-MerdekaTower {
        height: 50px;
        line-height: 50px;
        font-size: 32px;
    }

    .subtitle-info-map-MerdekaTower {
        height: 35px;
        line-height: 35px;
        font-size: 24px;
    }

    .div-items-map-MerdekaTower {
        height: 60px;
        width: 452px;
    }

    .icon-info-map-MerdekaTower {
        width: 32px;
        height: 32px;
    }

    .texto-info-map-MerdekaTower {
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }

    .div-buttons-info-map-MerdekaTower {
        height: 132px;
    }

    .button-waze,
    .button-googlemap {
        height: 54px;
        padding: 12px 16px;
        font-size: 20px;
        line-height: 30px;
    }

    .img-map-MerdekaTower {
        width: 100%;
        height: 913px;
    }
}





/* mobil   The-Merdeka-Tower a*/
@media (max-width: 480px) {


    .fondo-Merdeka-Tower {
        height: 626px;
        padding: 24px;
        background: var(--Opacities-Background-Fondo-2, url(img/TheMerdekaTowerImagenes/fondos/mobil.png) lightgray 50% / cover no-repeat);
    }

    .info-fondo-Merdeka-Tower {
        height: 431px;
    }

    .div-img-info-MerdekaTower {
        width: 100%;
        height: 523px;
    }

    .heading-info-fondo-Merdeka-Tower {
        height: 150px;
        font-size: 32px;
        line-height: 50px;
    }

    .description-info-fondo-Merdeka-Tower {
        height: 140px;
        font-size: 24px;
        line-height: 35px;
    }

    .boton-preventa {
        width: 204px;
        height: 45px;
        padding: 10px 14px;
        font-size: 18px;
        line-height: 25px;
    }

    .div-info-MerdekaTower {
        flex-direction: column;
        height: 1190px;
        padding: 24px;
    }

    .info-detalles-MerdekaTower {
        width: 100%;
        height: 595px;
    }

    .heading-detalles-MerdekaTower {
        height: 90px;
    }

    .heading-detalles-MerdekaTower .title {
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }

    .heading-detalles-MerdekaTower .parrafo {
        height: 50px;
        line-height: 25px;
        font-size: 18px;
    }

    .img-location-MerdekaTower,
    .img-departamento-MerdekaTower,
    .img-apartamento-MerdekaTower,
    .img-area-MerdekaTower,
    .img-entrega-MerdekaTower,
    .img-precio-MerdekaTower {
        width: 32px;
        height: 32px;
    }

    .location-MerdekaTower {
        height: 56px;
    }

    .address-MerdekaTower {
        height: 25px;
        line-height: 25px;
        font-size: 18px;
    }


    .departamento-MerdekaTower {
        height: 74px;
    }

    .sizedepartamento-MerdekaTower {
        height: 50px;
        line-height: 25px;
        font-size: 18px;
    }


    .apartamento-MerdekaTower {
        height: 74px;
    }

    .apartamentotipo-MerdekaTower {
        height: 50px;
        line-height: 25px;
        font-size: 18px;
    }


    .area-MerdekaTower {
        height: 56px;
    }

    .areaespacio-MerdekaTower {
        height: 25px;
        line-height: 25px;
        font-size: 19px;
    }


    .entrega-MerdekaTower {
        height: 56px;
    }

    .entrega-MerdekaTower .entrega {
        height: 25px;
        line-height: 25px;
        font-size: 18px;
    }


    .precio-MerdekaTower {
        height: 184px;
    }

    .precio-MerdekaTower .precio-info {
        height: 129px;
    }

    .precio-MerdekaTower .precio-info .precio {
        height: 129px;
        line-height: 25px;
    }


    .section-description-MerdekaTower {
        height: 162px;
        padding: 24px;
    }


    .section-Gallery-MerdekaTower {
        display: none;
    }

    .section-Gallery-MerdekaTower-mobil {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 24px;
        width: 100%;
        height: 731px;
    }

    .title-Gallery-MerdekaTower-m {
        width: 100%;
        height: 55px;
        padding: 10px 0px;
        line-height: 35px;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
    }

    .subtitle-Gallery-MerdekaTower-m {
        display: flex;
        gap: 12px;
        height: 50px;
        padding: 10px;
        border-bottom: solid #479FBA 4px;
        justify-content: center;
    }

    .subtitle-Gallery-MerdekaTower-m div {
        width: 100%;
        line-height: 30px;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }

    .subtitle-Gallery-MerdekaTower-m img {
        width: 24px;
        height: 24px;
    }




    .div-Gallery-MerdekaTower-m {
        width: 100%;
        height: 100%;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 24px;
        border-radius: 24px;
        background-color: #EDF5F8;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 0.5s ease;
    }

    .div-Gallery-MerdekaTower-m.active {
        opacity: 1;
        visibility: visible;
        position: static;
    }

    .div-Gallery-MerdekaTower-m.hidden {
        opacity: 0;
        visibility: hidden;
    }


    .section-planos-MerdekaTower {
        height: 973px;
        padding: 24px;
    }

    .div-title-planos-MerdekaTower {
        height: 217px;
    }

    .title-planos-MerdekaTower {
        height: 70px;
        line-height: 35px;
        font-size: 24px;
    }

    .description-planos-MerdekaTower {
        height: 75px;
        font-size: 18px;
        line-height: 25px;
    }


    .div-planos-cuarto-MerdekaTower {
        height: 654px;
    }

    .planos-cuarto-MerdekaTower {
        height: 329px;
    }

    .img-planos-cuarto-MerdekaTower {
        width: 280px;
    }

    .button-planos-cuarto {
        width: 32px;
        height: 32px;
    }


    .div-info-planos-MerdekaTower {
        height: 301px;
        padding: 0px 24px;
    }

    .title-info-planos-MerdekaTower,
    .texto-azul-fuerte {
        height: 35px;
        line-height: 35px;
        font-size: 24px;
    }

    .div-info-planos-MerdekaTower div:nth-child(2),
    .div-info-planos-MerdekaTower div:nth-child(3) {
        width: 100%;
        height: 60px;
        font-size: 20px;
        line-height: 30px;
    }

    .div-info-planos-MerdekaTower div:nth-child(4),
    .div-info-planos-MerdekaTower div:nth-child(5) {
        width: 153px;
        height: 60px;
        font-size: 20px;
        line-height: 30px;
    }

    .div-info-planos-MerdekaTower div:nth-child(4){
        width: 193px;
        height: 60px;
        font-size: 20px;
        line-height: 30px;
    }


    .section-map-MerdekaTower {
        height: 1026px;
        padding: 24px;
    }

    .div-info-map-MerdekaTower {
        height: 554px;
        gap: 12px;
        flex-direction: column;
    }

    .div-title-info-map-MerdekaTower {
        height: 103px;
    }

    .title-info-map-MerdekaTower {
        height: 70px;
        line-height: 35px;
        font-size: 24px;
    }

    .subtitle-info-map-MerdekaTower {
        height: 25px;
        line-height: 25px;
        font-size: 18px;
    }

    .div-items-map-MerdekaTower {
        width: 100%;
        height: 53px;
    }

    .icon-info-map-MerdekaTower {
        height: 24px;
        width: 24px;
    }

    .texto-info-map-MerdekaTower {
        height: 25px;
        line-height: 25px;
        font-size: 18px;
    }

    .div-buttons-info-map-MerdekaTower {
        height: 102px;
        gap: 12px;
    }

    .button-waze,
    .button-googlemap {
        height: 45px;
        padding: 10px 14px;
        font-size: 18px;
        line-height: 25px;
    }

    .img-map-MerdekaTower {
        width: 100%;
        height: 400px;
    }

}



/*botones aqui*/
.btn- {
    width: 100%;
    height: 63px;
    font-weight: 700;
    padding: 24px 14px;
    background-color: #1E434E;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;

    a {
        text-decoration: none;
        color: #B1E26E;
        font-size: 22px;
        line-height: 35px;
    }
}

.btn-preventa {
    background-color: white;

    a {
        color: #1E434E;
    }
}

button:hover {
    transform: scale(1.05) translateY(-5px);
}

button:active {
    transform: scale(0.95);
}







/* carusel inico*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Header Section */
header {
    width: 100%;
    max-width: 100%;
    padding-left: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

header nav a {
    color: #fff;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 16px;
    transition: 0.2s;
    text-decoration: none;
}

a.active,
a:hover {
    background: #14ff72cb;
    border-radius: 2px;
}

/* Carousel */
.carousel {
    width: 100%;
    height: 100vh;
    margin-top: -50px;
    overflow: hidden;
    position: relative;
}




.carousel .list .item {
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;

}

.carousel .list .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.240)
}







.carousel .list .item .content {
    position: absolute;
    top: 40%;
    left: 100px;
    transform: translateY(-50%);
    width: 1016px;
    text-align: left;
    color: #fff;
    display: none;
    z-index: 1;
}

.carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3) {
    left: 67%;
}

.carousel .list .item:nth-child(4) {
    left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5) {
    left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6) {
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n+7) {
    left: calc(67% + 800px);
    opacity: 0;
}

/* Principal Content */
.Principal5 h1 {
    white-space: nowrap;
    height: 100px;
    font-weight: 800;
    font-size: 64px;
    line-height: 100px;
    overflow: hidden;
}


.Principal5 h2 {
    width: 100%;
    height: 70px;
    line-height: 70px;
    font-size: 48px;
    font-weight: 600;
}


.content .Principal5 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.list .item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;
}

.list .item:nth-child(2) .content {
    display: block;
}

.content .title {
    font-size: 100px;
    text-transform: uppercase;
    color: #14ff72cb;
    font-weight: bold;
    line-height: 1;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name {
    font-size: 100px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des {
    height: 120px;
    margin-top: 24px;
    font-weight: 300px;
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 60px;
    margin-left: 5px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn {
    margin-left: 5px;
    opacity: 1;
    /* Elimina la opacidad para que sea visible */
    animation: none;
    /* Elimina la animación */
}

.content .btn,
.custom-button {
    margin-top: 18px;
}

.content .btn button {
    padding: 10px 20px;
    border: none;
    cursor: default;
    /* Cambia el cursor a default */
    font-size: 16px;
    background-color: transparent;
    /* Fondo transparente */
    color: #1E434E;
    /* Color de texto */
    pointer-events: none;
    font-weight: bold;
    /* Desactiva la interactividad */
}

.content .btn button:nth-child(1) {
    margin-right: 15px;
    background-color: #1E434E;
    color: #B1E26E;
    border-radius: 6px;
    pointer-events: none;
    /* Desactiva la interactividad */
}

.content .btn button:nth-child(2) {
    background: transparent;
    color: #14ff72cb;
    transition: none;
    /* Elimina la transición */
    pointer-events: none;
    /* Desactiva la interactividad */
}

.content .btn button:nth-child(2):hover {
    background-color: transparent;
    /* Elimina el cambio de fondo */
    color: #14ff72cb;
    /* Mantiene el color del texto */
    border-color: transparent;
    /* Elimina el borde */
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}



@keyframes runningTime {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Responsive Design */
@media screen and (max-width: 999px) {

    .carousel .list .item .content {
        top: 50%;
    }

    .carousel .list .item .content {
        width: 720px;
    }

    .Principal5 h1 {
        font-size: 48px;
        line-height: 70px;
        height: 70px;
    }

    .Principal5 h2 {
        font-size: 40px;
        line-height: 60px;
        height: 60px;
    }

    .content .des {
        height: 100px;
        font-size: 32px;
        line-height: 50px;
    }

    header {
        padding-left: 50px;
    }

    .list .item .content {
        left: 50px;
    }

    .content .title,
    .content .name {
        font-size: 70px;
    }

}

@media screen and (max-width: 690px) {

    .carousel .list .item .content {
        top: 40%;
        left: 4px;
    }

    .content {
        height: 310px;
        width: 100%;
        padding: 24px;
    }

    .Principal5 h1 {
        font-size: 32px;
        line-height: 50px;
        height: 50px;
    }

    .Principal5 h2 {
        font-size: 24px;
        line-height: 35px;
        height: 35px;
        padding: 0px 24px 0px 0px;
    }

    .content .des {
        width: 70%;
        height: 60px;
        font-size: 20px;
        line-height: 30px;
    }



    header nav a {
        font-size: 14px;
        margin-right: 0;
    }

    .list .item .content {
        top: 40%;
    }

    .content .title,
    .content .name {
        font-size: 45px;
    }

    .content .btn button {
        padding: 10px 15px;
        font-size: 14px;
    }
}












@media (min-width: 1030px) {

    html {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    picture img {
        width: 100%;
        height: 100%;
    }

    body {
        width: 100%;
    }
}

@media (max-width: 768px) {
    html {
        width: auto;
        /* Restablece el ancho */
        display: block;
        /* Cambia el display a block */
        justify-content: flex-start;
        /* Restablece la justificación */
    }

    picture img {
        width: 100%;
    }

    body {
        width: 1024px;
    }

}

@media (max-width: 480px) {
    html {
        width: auto;
        /* Restablece el ancho */
        display: block;
        /* Cambia el display a block */
        justify-content: flex-start;
        /* Restablece la justificación */
    }

    body {
        width: 480px;
    }

    picture img {
        width: 100%;
    }

}