@font-face{
    font-family:'Aller Display';
    src: url('../fonts/Aller/AllerDisplay.ttf') format('truetype');
    font-size: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'Aller Regular';
    src: url('../fonts/Aller/Aller_Std_Rg.ttf') format('truetype');
    font-size: normal;
    font-weight: normal;
}
body{
    font-family: 'Aller Regular';
    display: flex;
    flex-direction: column;
}
.section-geo {
    width: 100%;
    background-color: RGB(236, 236, 236);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 35px;
}
.geo-image{
    width: 100%;
    height: auto;
}
.geo-image img{
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.geo-text{
    font-family: 'Aller Regular';
    color:#002060;
    height: 600px;
    display: flex;
    flex-direction: column;
    text-align:  justify;
    padding: 0 0 35px;
    font-size: 1.97rem;
    gap: 30px;
}
.img-geoText{
    background-image: url('../img/mantis/const-Geo/fondocg.png');
    width: 100%;
    height: 100%;
    margin-top: 50px;
    background-size: 505px 100%;
    background-repeat: no-repeat;
    background-position: 98% bottom;
}
.section-carrusel{
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
/* Contenedor que muestra las 5 imágenes */
.container-carrusel {
    overflow: hidden;
    /* Ajusta el ancho al total de 5 imágenes */
    width: calc(360px * 5); /* O usa el ancho real de tus imágenes */
}

/* Track que se desplaza */
.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    padding: 50px 0;
}

/* Cada slide con ancho fijo */
.carrusel-item {
    min-width: 360px; /* O el tamaño que desees */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imágenes adaptadas al contenedor sin deformarse */
.carrusel-item img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Muestra la imagen completa con proporción */
    display: block;
    filter: grayscale(100%); /* La imagen se ve clara/gris al inicio */
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out; /* Transición suave */
}
.carrusel-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    z-index: 15;
}
.prev, .next {
    position: relative;
    background-color: #A9ABAE;
    width: 65px;
    height: 65px;
    margin: 0 0;
    font-size: 40px;
    padding: 0 0;
    z-index: 20;
}
.prev:hover, .next:hover {
    background-color: #AAD05C;
    transition: all 0.3s ease;
}
.prev{
    left: 1.5%;
}

.next{
    right: 1.5%;
}

/* RESPONSIVIDAD -------------------------------------------------------------------------------------------------------------------------------- */
@media screen and (min-width: 1600px) {
    .container-carrusel{
        width: calc(288px * 5);
    }
    .carrusel-item{
        min-width: 288px;
    }
}
@media screen and (min-width: 2560px){
    .geo-text{
        font-size: 45px;
    }
    .container-carrusel{
        width: calc(570px * 5);
    }
    .carrusel-item{
        min-width: 570px;
    }
}
@media screen and (min-width: 3440px){
    .prev, .next{
        width: 120px;
        height: 120px;
        font-size: 60px;
    }
}
