/* codigos predeterminados */ 

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{
    font-family: "Kanit", sans-serif;
    background-color: black;
     color: white;
  
    
     
}

html{
    scroll-behavior: smooth;
}


/* barra de navegacion y encabezado */


/* Personaliza la barra de desplazamiento para todo el documento */
::-webkit-scrollbar {
    width: 5px; /* o el grosor que prefieras */
   
}

/* Personaliza el riel de la barra de desplazamiento */
::-webkit-scrollbar-track {
    background: rgb(255, 136, 0); /* color de fondo del riel */
}

/* Personaliza el aspecto del control deslizante de la barra de desplazamiento */
::-webkit-scrollbar-thumb {
    background: linear-gradient(rgb(255, 255, 255), rgb(247, 245, 243)); /* gradiente para el control deslizante */
}

/* Personaliza el aspecto del control deslizante al pasar el mouse */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(rgb(255, 136, 0), rgb(245, 245, 245)); /* gradiente para el hover */
}





/* contenedor carga preloader */


.contenedor-carga {
    background-color: rgba(0, 0, 0, 0.1); 
    height: 100vh;
    width: 100vw;
    position: fixed;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    opacity: 1; 
    visibility: visible;
    z-index: 100002;
}

.cargando {
    border: 5px solid rgb(230, 150, 2);
    border-top-color: rgb(255, 255, 255);
    border-top-style: groove;
    height: 100px;
    width: 100px;
    border-radius: 100%;
    animation: girar 1.5s linear infinite;
    margin-bottom: 70px;
}

.barra-contenedor {
    width: 30%;
    height: 2px;
    background-color: rgb(230, 150, 2);
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.barra {
    width: 0%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 10px;
}

@keyframes girar {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Contenido principal oculto inicialmente */  
.contenido {
    display: none;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.activar-transicion {
    display: block;
    opacity: 1;
    transition: opacity 1.5s ease;
}

/* Estilos para el preloader desvanecido */ 
.desvanecer {
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s 1.5s, opacity 1.5s ease;
}

/* Párpados */ 
.parpado {
    position: fixed;
    background-color: #000000;
    width: 100%;
    height: 50%; 
    transition: transform 1s ease;
    will-change: transform;
    z-index: 10001; /* Ajuste de z-index para que esté encima del preloader */
}

.parpado.arriba {
    top: 0;
    transform: translateY(0);
}

.parpado.abajo {
    bottom: 0;
    transform: translateY(0);
}

.abrir .parpado.arriba {
    transform: translateY(-100%);
}

.abrir .parpado.abajo {
    transform: translateY(100%);
}

/* Estilos para la palabra 'loading' */
.loading-text {
    color: rgb(230, 150, 2);
    font-size: 20px;
    margin-top: 15px;
    animation: cambioColor 2s infinite;
}

@keyframes cambioColor {
    0%, 100% {
        color: rgb(230, 150, 2);
    }
    50% {
        color: #000000;
    }
}

/* Mostrar porcentaje de carga */
.porcentaje-carga {
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}








/* flecha subir */ 

.ir {
    display: none;
}
.arriba2 {
    color: rgb(230, 150, 2);
    border: 2px solid rgb(0, 0, 0);
    padding: 10px;
    width: 50px;
    text-align: center;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    position: fixed;
    bottom: 15px;
    right: 10px;
    transition: 0.5s all ease;
    animation: subir 1s infinite alternate;
    cursor: pointer;
    z-index: 4;
}
.arriba2:hover {
    background-color: rgb(230, 150, 2);
    color: black;;
}
@keyframes subir {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}

/* claro oscuro*/

/* estilos swithc */


/* ///////////////////////////claro - oscuro */

.claro-oscuro{
    position: fixed;
    right: 20px;
    top: 150px;
    z-index: 40;
   
}

.switch{
    width: 70px;
    height: 30px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 100px;
    border: solid 2px black;
    background-color: transparent;
   
    z-index: -1;
}

.switch i{
    color: rgb(230, 150, 2);
}

.claro-oscuro li:last-child::before{
    content: "";
    position: absolute;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background-color: rgb(230, 150, 2);
    border: solid thin black;
    left: 0;
    right: unset;
}

.claro-oscuro li:last-child.active::before{
    right: 0;
    left: unset;
    border: solid thin black;
}






/* clase activeeeee //////////////////////////// /

    /* fondo body y textos de la seccion principal*/

    /* header */
body.active header::before{
    background-image: url(../imagenes/avion-fondo.jfif);
}

/* secion sobre nosotros */

body.active .seccion-1{
    background-color: black;
}

body.active .contenedor-informacion-seccion-1{
    color: white;
}


body.active .contenedor-informacion-seccion-1::before{
    filter: grayscale(100%);
}


body.active  .texto2-informacion-seccion-1{
    color: white;
    
}

body.active  .descarga-pdf p {
    color: white;
}





header {
    width: 100%;
    height: 100vh;
    
}

@keyframes aparicion-header {
    0% {
        opacity: 0;
        transform: translate(-150px);
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}




header::before {
    content: "";
    background-image: url(../imagenes/logos/fondo6.jfif);
    background-position: center center; /* Centra la imagen */
    background-size: cover; /* Expande la imagen para cubrir todo el encabezado */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2; /* Cambia este valor según la opacidad deseada */
    z-index: -1;
   
}



header nav {
    margin-top: 30px;
    margin-bottom: 20vh;
    height: 80px;
    display: flex;
    justify-content: space-between;
    opacity: 0; /* Inicialmente oculto */
    animation: aparicion-nav 0.3s ease-in-out 0.2s forwards; /* Añade 'forwards' para mantener el estado final */
    z-index: 100;
  
  
}

@keyframes aparicion-nav {
    0% {
        opacity: 0;
        transform: translate(-150px);
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}




.icono{
    display: none;
}

.enlaces {
    display: flex;
    height: 100%; 
    width: 60%;
    justify-content:center;
    align-items: center;
    margin: auto; 
    margin-top: auto; 
    margin-bottom: auto; 
    cursor: pointer;
   
}


.enlaces a {
    color: white;
    padding: 10px 10px;
    font-size: 18px;
    margin: 10px;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    text-transform: capitalize;
}

.enlaces a:hover{
    border-bottom: 3px solid rgb(255, 136, 0);
    transition: 500ms ease;
}

nav .logo{
    height: 100%;;
    margin-left: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}


nav .logo img {
    object-fit: cover;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    
}

nav .logo .txt-empresa{
    margin-left: 10px;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.boton-registro{
    background-color: rgba(255, 136, 0);
    border-radius: 10px;
    padding: 10px;
    font-style: italic;
}

.boton-registro:hover{
    background-color: rgba(2, 2, 2, 0.2);
    color: white;
    
}

/* titulo y portada  */ 


.contenedor-titulo-imagen-principal{
    width: 100%;
    margin-top: -50px;
    z-index: -1;
   
    
}




.titulo-principal p{
    text-align: center;
    font-size: 22px;
    animation: aparicion-subtitulo 0.5s ease-in-out .5s forwards; /* Añade 'forwards' para mantener el estado final */;
    opacity: 0;
    z-index: -1;

}


@keyframes aparicion-subtitulo{
    0%{
        opacity: 0;
        transform: translateX(-150px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px)
    }
}




.titulo-principal h1{
    font-size: 120px;
    text-align: center;
    animation: aparicion-titulo 0.9s ease-in-out .9s forwards; /* Añade 'forwards' para mantener el estado final */;
    opacity: 0;
    z-index: -1;
    
}


@keyframes aparicion-titulo{
    0%{
        opacity: 0;
        transform: translateY(-150px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px)
    }
}

.contenedor-boton-titulo{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: aparicion-botton 1s ease-in-out 1s forwards; /* Añade 'forwards' para mantener el estado final */;
    opacity: 0;
    z-index: -1;
}



@keyframes aparicion-botton{
    0%{
        opacity: 0;
        transform: translateY(150px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px)
    }
}

.titulo-principal .button-principal {
    background-color: rgb(255, 136, 0);
    font-size: 22px;
    padding: 10px;
    position: relative;
    cursor: pointer;
    
   
}






.titulo-principal .button-principal::before {
    content: "";
    position: absolute;
    border: 2px solid rgb(255, 136, 0);
    left: 10px;
    width: calc(100% - 8px);
    height: calc(100% + 1px);
    bottom: -8px;
    border-radius: 0px;
    z-index: -1;
    transition: border-color 300ms ease; /* Agrega la transición */
}

.titulo-principal .button-principal:hover::before {
    border-color: transparent; /* Cambia el color del borde al estar en hover */
}



.titulo-principal i {
    color: white;
    margin-right: 20px;
}




/* redes */ 



.redes {
    margin-top: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: aparicion-redes 1.3s ease-in-out 1.3s forwards; /* Añade 'forwards' para mantener el estado final */;
    opacity: 0;
 
}

@keyframes aparicion-redes{
    0%{
        opacity: 0;
        transform: translateY(-150px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px)
    }
}

.icono-container {
    position: relative;
    margin: 30px;
}

.redes a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: white; /* Añadido para que el texto sea blanco */
}

.redes img {
    width: 40px;
    display: block;
    transition: transform 0.3s ease; /* Agregado para que el icono también tenga una transición */
}


.redes a span {
    position: absolute;
    top: 0;
    left: 0; /* Ajustado para que el span esté alineado con el ícono */
    transform: translateX(20%);
    transition: transform 0.3s ease;
    white-space: nowrap;
    padding: 10px;
    box-sizing: border-box;
    opacity: 0;
    color: #b2b2b2;
    z-index: 4; /* Asegura que el span esté en un nivel superior al hacer hover */
}

.redes a:nth-child(5) span {
    top: 2px; /* Ajusta según sea necesario */
}


.icono-container:hover img {
    transform: translateX(-100%); /* Mueve el icono hacia la izquierda */
    z-index: 4; /* Asegura que el icono esté en un nivel superior al hacer hover */
}

.icono-container:hover span {
    transform: translateX(0); /* Muestra el span al lado del icono */
    opacity: 1;
}



/* ***************************** SECCION N°1 ******************* */

.seccion-1{
    background-color: white;
    width: 100%;
    height: 100%;
    margin-top: -30px;
    position: relative;
   
}


/* imagenes laterales */


.contenedor-imagenes-der-izq-section-1 .img-izquierda {
        position: absolute;
        bottom: -60px;
        left: 0;
        width: 300px;
        height: 400px;
        object-fit: cover;
        border-radius: 20px;
        filter: grayscale(60%);
}

.contenedor-imagenes-der-izq-section-1 .img-derecha {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: filter 0.3s, transform 0.3s; /* Animación suave al pasar el ratón */
    z-index: 20;
}





.contenedor-1-section-1 {
    display: flex;
    justify-content: space-between;

}


.contenedor-imagen-lateral{
    margin-left: 150px;
}

.contenedor-1-section-1 .contenedor-imagen-lateral img {
    width: 500px;
    height: 900px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 6px 20px rgba(0, 0, 0, 0.19);
    border-radius: 10px; /* Esto agrega esquinas redondeadas */
    transition: transform 0.3s, box-shadow 0.3s; /* Animación suave al pasar el ratón */
}

.contenedor-1-section-1 .contenedor-imagen-lateral img:hover {
   
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4), 0 12px 40px rgba(0, 0, 0, 0.24); /* Sombra más intensa al pasar el ratón */
}



.contenedor-informacion-seccion-1 {
    position: relative;
    z-index: 1;
    color: black;
    overflow: hidden; /* Asegúrate de que el contenido no se desborde */
}

.contenedor-informacion-seccion-1::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url(../imagenes/mapamundi2.png);
    background-size: cover;
    background-position: center;
    filter: grayscale(0%);
    opacity: 0.1;
    transition: transform 0.1s; /* Suaviza el movimiento */
    transform: translate(var(--translate-x, 0), var(--translate-y, 0));
    z-index: -1;
}


.contenedor-informacion-seccion-1 > * {
    position: relative;
    z-index: 1;
}


.contenedor-titulos-secion-1{
    padding-left: 80px;
    padding-right: 80px;
}

.contenedor-informacion-seccion-1 h2 {
    margin-top: 50px;
    color: rgb(255, 136, 0);
    font-size: 28px;
    text-transform: uppercase;
    font-weight: bolder;
}

.contenedor-informacion-seccion-1 .texto-informacion-seccion-1{
    font-size: 40px;
    text-transform: capitalize;
}

.contenedor-informacion-seccion-1 .texto-informacion-seccion-1 .span-seccion-1-info{
    color: rgb(255, 136, 0);
    font-size: 42px;
}


 .texto2-informacion-seccion-1{
    color: rgb(95, 95, 95);
}



.contenedor-img-seccion-1{
  margin-top: 80px; 
  width: 70%;
  margin-left: 70px;


}

.contenedor-img1-seccion-1{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
   
}

.contenedor-img1-seccion-1 img {
    border: 0;
    width: 200px;
    height: 200px;
    background-color: #e7dee4;
    transition: all 0.3s ease-in-out;
}

.contenedor-img1-seccion-1 img:hover {
    border: 4px solid rgb(255, 136, 0);
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.7);
    transform: scale(1.05);
}






.descarga-pdf{
   
    width: 100%;
    margin-top: 80px;
}

.descarga-pdf p {
    margin-left: 80px;
    font-size: 18px;
    color: gray;
    margin-bottom: 50px;
}

.descarga-pdf a {
    background-color: rgb(255, 136, 0);
    margin-left: 80px;
    padding: 15px 35px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease-in;

}

.descarga-pdf a:hover{
    background-color: #000000;
    padding: 10px 25px;
}

.descarga-pdf a i {
    margin-right: 5px;
    color: white;
    transition: all 03s ease-in;

}

.descarga-pdf a i:hover {
    color: rgb(255, 136, 0);
}

/* /////////////////////////////////////////////// section 2 ///////////////////////////// /*/
        /* titulos y subtitulo */

.seccion-2{
    background-color: rgb(245, 245, 245);
    color: black;
    padding-top: 150px;
    overflow: hidden;
}


body.active .seccion-2{
    background-color: black;
    color: white;
}

.contenedor-tt-section-2{
    text-align: center;
}


.contenedor-tt-section-2 h3{
    
    font-size: 18px;
    color: rgb(255, 136, 0);
}


.contenedor-tt-section-2 .p-tt-section-2{
    margin-top: 10px;
    font-size: 48px;
    text-transform:capitalize;
}


.contenedor-tt-section-2 .p-tt-section-2 span {
    color: rgb(255, 136, 0);
}

.contenedor-tt-section-2 .p-tt-section-2-2{
    margin-top: 20px;
    font-size: 16px;
    color: gray;
    margin-bottom: 15vh;
}

body.active .contenedor-tt-section-2 .p-tt-section-2-2{
    color: white;
}

/* grid*/

.contenedor-grid{
    background-color: transparent;
    height: 100%;
    width: 80%;
    margin: auto auto;
    display: grid;
    grid-template-columns: repeat(3 , 1fr);
    gap: 60px;
}

body.active .contenedor-grid{
    background-color: black;
}


/* / contenedor -1 grid */
.contenedor-grid .grid1{
    height: 700px;
    z-index: 20;
    background-color: rgb(0, 0, 0);
    position: relative;
    transition: all 0.7s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5); /* Sombra suave por defecto */
}



.contenedor-grid .grid1::before {
    content: "";
    background-image: url(../imagenes/avion-fondo.jfif);
    background-position: center;
    background-size: cover;
    opacity: 0.5; /* Ajusta el valor de opacidad según tus necesidades */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: opacity 0.3s ease; /* Añade una transición suave */
}

.contenedor-grid .grid1:hover::before {
    opacity: 0.2; /* Ajusta la opacidad o cualquier otra propiedad que desees cambiar */
    background-image: url(../imagenes/fondoaviongrid23.jfif);
    background-position: center;
    filter: grayscale(50%);
    overflow: hidden;
    
}

.contenedor-grid .grid1:hover {
    border: 2px solid rgb(255, 136, 0);
    height: 800px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.9); /* Sombra más fuerte al hacer hover */
    transform: translateY(-5px); /* Efecto de "levantar" ligeramente el elemento */
}


.contenedor-img-grid1{
    background-color: rgb(255, 136, 0);
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -10px;
    left: -10px;
    transition: all 0.3s ease-in;
}



.contenedor-grid .grid1:hover .contenedor-img-grid1{
    background-color: transparent;
    opacity: 0;

}

.contenedor-img-grid1 .grid1 img {
   
    object-fit: cover;
    width: 200px;
    height: 200px;
}

.contenedor-texto-grid1{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 55px;
    overflow: hidden;
}


.contendor-texto-span-grid1{
    background-color: rgb(255, 136, 0,);
    margin-top: 150px;
   
}

.contendor-texto-span-grid1 span{
    font-size: 35px;
    letter-spacing: 2px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;

}

.contendor-texto-span-grid1 .aereo-beneficios{
    opacity: 1;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    color: white;
}

.contendor-texto-span-grid1 .desc-beneficios {

    margin-top: 80px;
    padding: 0px 30px;
    font-size: 18px;
    color: white;
    opacity: 0;
    transition: all .7s ease-in-out;
}


.contenedor-grid .grid1:hover .contendor-texto-span-grid1 p{
    opacity: 1;
}

.contenedor-imagen-2 img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    opacity: 0;
    transition: all 0.7s ease-in-out;
}


.contenedor-grid .grid1:hover .contenedor-imagen-2 img{
   opacity: 1;
}

/* grid 2 */
.contenedor-grid .grid2{
    height: 700px;
    z-index: 20;
    background-color: rgb(0, 0, 0);
    position: relative;
    transition: all 0.7s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5); /* Sombra suave por defecto */
}

.contenedor-grid .grid2::before {
    content: "";
    background-image: url(../imagenes/truck-fondo.jfif);
    background-position: center;
    background-size: cover;
    opacity: 0.5; /* Ajusta el valor de opacidad según tus necesidades */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: opacity 0.3s ease; /* Añade una transición suave */
 
}


.contenedor-grid .grid2:hover::before {
    opacity: 0.2; /* Ajusta la opacidad o cualquier otra propiedad que desees cambiar */
    background-image: url(../imagenes/slyder2.jfif);
    background-position: center;
    filter: grayscale(50%);
    overflow: hidden;
    
}

.contenedor-grid .grid2:hover {
    border: 2px solid rgb(255, 136, 0);
    height: 800px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.9); /* Sombra más fuerte al hacer hover */
    transform: translateY(-5px); /* Efecto de "levantar" ligeramente el elemento */
}
.contenedor-img-grid2{
    background-color: rgb(255, 136, 0);
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -10px;
    left: -10px;
}

.contenedor-grid .grid2:hover .contenedor-img-grid2{
    background-color: transparent;
    opacity: 0;

}

.contenedor-img-grid2 .grid2 img {
   
    object-fit: cover;
    width: 200px;
    height: 200px;
}

.contenedor-texto-grid2{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 55px;
    overflow: hidden;
}


.contendor-texto-span-grid2{
    background-color: rgb(255, 136, 0,);
    margin-top: 150px;
   
}

.contendor-texto-span-grid2 span{
    font-size: 35px;
    letter-spacing: 2px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;

}



.contendor-texto-span-grid2 .truck-beneficios{
    opacity: 1;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    color: white;
}

.contendor-texto-span-grid2 .desc-beneficios-truck {
    margin-top: 80px;
    padding: 0px 30px;
    font-size: 18px;
    color: white;
    opacity: 0;
    transition: all .7s ease-in-out;
}


.contenedor-grid .grid2:hover .contendor-texto-span-grid2 p{
    opacity: 1;
}

.contenedor-imagen-22 img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    opacity: 0;
    transition: all 0.7s ease-in-out;
}

.contenedor-grid .grid2:hover .contenedor-imagen-22 img{
    opacity: 1;
 }

/* grid 3 */

.contenedor-grid .grid3{
    height: 700px;
    z-index: 20;
    background-color: rgb(0, 0, 0);
    position: relative;
    transition: all 0.7s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5); /* Sombra suave por defecto */
}

.contenedor-grid .grid3::before {
    content: "";
    background-image: url(../imagenes/train-fondo.jfif);
    background-position: center;
    background-size: cover;
    opacity: 0.5; /* Ajusta el valor de opacidad según tus necesidades */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: opacity 0.3s ease; /* Añade una transición suave */
 
}

.contenedor-grid .grid3:hover::before {
    opacity: 0.2; /* Ajusta la opacidad o cualquier otra propiedad que desees cambiar */
    background-image: url(../imagenes/trainfondogrid33.jfif);
    background-position: center;
    filter: grayscale(50%);
    overflow: hidden;
    
}


.contenedor-grid .grid3:hover {
    border: 2px solid rgb(255, 136, 0);
    height: 800px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.9); /* Sombra más fuerte al hacer hover */
    transform: translateY(-5px); /* Efecto de "levantar" ligeramente el elemento */
}

.contenedor-img-grid3{
    background-color: rgb(255, 136, 0);
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -10px;
    left: -10px;
}

.contenedor-grid .grid3:hover .contenedor-img-grid3{
    background-color: transparent;
    opacity: 0;

}

.contenedor-img-grid3 .grid3 img {
   
    object-fit: cover;
    width: 200px;
    height: 200px;
}


.contenedor-texto-grid3{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 55px;
    overflow: hidden;
}


.contendor-texto-span-grid3{
    
    margin-top: 150px;
   
}

.contendor-texto-span-grid3 span{
    font-size: 35px;
    letter-spacing: 2px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;

}


.contendor-texto-span-grid3 .train-beneficios{
    opacity: 1;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    color: white;
}

.contendor-texto-span-grid3 .desc-beneficios-train {
    margin-top: 80px;
    padding: 0px 30px;
    font-size: 18px;
    color: white;
    opacity: 0;
    transition: all .7s ease-in-out;
}

.contenedor-grid .grid3:hover .contendor-texto-span-grid3 p{
    opacity: 1;
}

.contenedor-imagen-222 img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    opacity: 0;
    transition: all 0.7s ease-in-out;
}


.contenedor-grid .grid3:hover .contenedor-imagen-222 img{
    opacity: 1;
 }

/* slyder */


/* slyder comercial muestra */

.contenedor-slyder{
    margin-top: 20vh;
    background-color: rgb(245, 245, 245);
    margin-bottom: 20vh;

 
}

body.active .contenedor-slyder{
    background: linear-gradient(-95deg, rgb(0, 0, 0), rgb(0, 0, 0));
}

.slider {
    width: 80vw;
    height: 90vh;
    overflow: hidden;
    position: relative;
    margin: auto auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slider .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;

  
}

.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.slider .list .item .content{
    position: absolute;
    top: 2%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box ;
    color: rgb(255, 136, 0)
}

.slider .list .item .content .title,
.slider .list .item .content .type{
    font-size: 3em;
    font-weight: bold;
    line-height: 1.3em;
}

.slider .list .item .content .type{
    color: rgb(15, 15, 15);
}

.slider .list .item .content .description{
    font-size: 14px;
    margin-left: 10px;
}

.slider .list .item .content .button{
    margin-top: 20px;
    margin-left: 10px;
}

.slider .list .item .content .button button{
    border: none;
    background-color: rgb(255, 136, 0);
    padding: 7px 15px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 2px;
    transition: 0.4s;
    color: white;
}

.slider .list .item .content .button button:hover{
    background-color: white;
    color: black;
}

/* thumbnail section */


.thumbnail{
    display: flex;
    gap: 50px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
}

.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}


/* nextPrevArrows section */

.nextPrevArrows{
    position: absolute;
    top: 80%;
    right: 62%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.nextPrevArrows button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgb(255, 136, 0);
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s;
}

.nextPrevArrows button:hover{
    background-color: white;
    color: black;
}


/* animation part */

.slider .list .item:nth-child(1){
    z-index: 1;
}

.slider .list .item:nth-child(1) .content .title,
.slider .list .item:nth-child(1) .content .type,
.slider .list .item:nth-child(1) .content .description,
.slider .list .item:nth-child(1) .content .button{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent 0.5s 1s linear 1 forwards;
}

@keyframes showContent {
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
       
    }
}

.slider .list .item:nth-child(1) .content .title{
    animation-delay: 0.4s;
}
.slider .list .item:nth-child(1) .content .type{
    animation-delay: 0.8s;
}
.slider .list .item:nth-child(1) .content .button{
    animation-delay: 1s;
}



/* animation for next button click */

.slider.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage 0.5s  linear 1 forwards;
}


@keyframes showImage {
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;

    }
}

.slider.next .thumbnail .item:nth-child(1){
    overflow: hidden;
    animation: showThumbnail 0.5s linear 1 forwards;
}


.slider.prev .list .item img{
    z-index: 100;
}

@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}

.slider.next .thumbnail{
    animation: effecNext .5s linear 1 forwards;
}

@keyframes effecNext{
    from{
        transform: translateX(150px);
    }
}

/* animation for next prev click */

.slider.prev .list .item:nth-child(2){
    z-index: 2;
}

.slider.prev .list .item:nth-child(2) img{
    position: absolute;
    bottom: 0;
    left: 0;
    animation: outFrame 0.5s linear 1 forwards;
}

@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.slider.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}

.slider.prev .list .item:nth-child(1) .content .title,
.slider.prev .list .item:nth-child(1) .content .type,
.slider.prev .list .item:nth-child(1) .content .description,
.slider.prev .list .item:nth-child(1) .content .button{

    animation: contentOut 0.5s 1s linear 1 forwards;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}




/*///////////////////////////////////////////////////////////////// parte 2 ////////////////////////////////////////////// */

.parte2{
    background-color: white;
   
}

body.active .parte2{
    background-color: black;
}

.banner-parte2{
    width: 100%;
    height: 230px;
    background-color: rgb(255, 136, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-parte2 i {
    color: black;
    font-size: 35px;
    margin-right: 30px;
}



.banner-parte2 p {
    font-size: 40px;
}

.banner-parte2 .span-arrow{
    margin-left: 20px;
    background-color: rgba(5, 5, 5, 0.9);
    border-radius: 10px;
    padding: 12px;
    font-size: 17px;
    text-transform: capitalize;
    margin-top: 5px;
}
 

#flechadown  {
    color: white;
    font-size: 20px;
    margin-left: 10px;
}

/* ////////////////////// */

.contenedor-total-parte2{
    display: flex;
    padding-top: 10vh;
    padding-bottom: 100px;
    justify-content: space-evenly;
}

.porqueelegirnos-contenedor{
    max-width: 400px;
    color: black;
    padding: 10px;
    margin-top: -40px;
  
}



.porqueelegirnos-contenedor h5{
    font-size: 14px;
    color: rgb(255, 136, 0);
    margin-bottom: 40px;
    margin-top: 20px;
}

.porqueelegirnos-contenedor .span-1{
    font-size: 32px;
    color: #000;
    font-weight: 800;
    
}


body.active .porqueelegirnos-contenedor .span-1{
    color: white;
}

.porqueelegirnos-contenedor .span2{
    color: rgb(255, 136, 0);
}


.porqueelegirnos-contenedor p{
    margin-top: 20px;
    color: gray;
    font-size: 14px;
}
body.active .porqueelegirnos-contenedor p{
    color: white;
}

.porqueelegirnos-contenedor img{
    
    object-fit: cover;
    width: 320px;
    height: 300px;
}

.button-container{
    margin-left: 0px;
    display: flex;
    justify-content: space-around;
    flex-direction: column;

}


.button-container button {
    padding: 20px;
    text-align: center;
    background-color: rgb(253, 253, 253);
    font-weight: 800;
    color: black;
    width: 350px;
    height: 120px;
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.button-container button:hover{
    background-color: rgb(255, 136, 0);
}

.button-container button i {
    color: rgb(255, 136, 0);
    font-size: 30px;
    margin-right: 10px; 
    transition: all 0.3s ease-in-out;
}


.button-container button:hover i {
    color: white;
}


.button-container button #arrow-next{
    font-size: 15px;
    color: rgb(199, 196, 193);
}



#i-i-i{
    font-size: 15px;
    border-radius: 20px;
    color: gray;
}





.form-contenedor {
    box-shadow: 1px 1px 5px rgba(250, 250, 250, 0.2);
    width: 40%;
}

body.active .form-contenedor{
    box-shadow: 1px 1px 5px rgb(230, 150, 2);
}

.caja-padre{
    margin-top: 0vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
}


.contenedor-contacto{
    margin-top: 0vh;
    display: grid;
    grid-template-columns: repeat(2,50%);
    padding: 20px;
    gap: 10px;
    width: 100%
}

.box-info {
    color: rgb(5, 5, 5);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

body.active .box-info{
    color: white;
}

.box-info >  p {
    text-align: left;
    letter-spacing: 1px;
    font-size: 30px;
    text-align: center;
}

.data {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-left: 10px;
}


.data > p > i {
    color: rgb(255, 136, 0);
    margin-right: 10px;
    font-size: 25px;
   
}

.links {
    display: flex;
    margin-top: 40px;
    gap: 15px;
    padding-left: 10px;
}

.links > a {
    text-decoration: none;
    width: 40px;
    height: 40px;
    background-color: rgb(255, 136, 0);
    text-align: center;
    transition: 0.3s ease-in-out;
}


.links > a > i {
    color: white;
    line-height: 40px;
    font-size: 20px;
}

form {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
}


.input-box {
    position: relative;
}


.input-box > input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    outline: none;
    background: rgba(119, 35, 35, 0.1);
    border: 3px solid transparent;
    letter-spacing: 1px;
    transition: .3s;
    color: rgb(0, 0, 0);
}

body.active .input-box > input{
    background: rgb(255, 255, 255);
}



.input-box > input:focus,
.input-box > textarea:focus{
    border-bottom: 3px solid rgb(255, 136, 0);
    animation: shake .2s ease;
}

.input-box > input::placeholder,
.input-box > textarea::placeholder{
    color: black;
}

body.active .input-box > input::placeholder,
.input-box > textarea::placeholder{
    color: rgb(0, 0, 0);
}


.input-box > input:focus::placeholder,
.input-box > textarea:focus::placeholder{
    color: transparent;
}

.input-box textarea {
    width: 100%;
    height: 130px;
    background: rgba(168, 17, 17, 0.1);
    border: 3px solid transparent;
    letter-spacing: 1px;
    transition: .3s ease-in;
    padding: 10px;
}


body.active .input-box textarea{
    background-color: white;
}


.input-box > i {
    color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    transition: .3s ease;

}


.input-box > input:focus ~ i {
    color: rgb(255, 136, 0);
}

form > button {
    background: rgb(255, 136, 0);
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 10px;
    transition: .2s;
}

form > button:hover,
.links > a:hover {
    background-color: #000000;
}



@keyframes shake {
    0%, 100% { transform: translateX(0);}
    10%, 30%, 50%, 70%, 90%{ transform: translateX(-10px);}
    20%, 40%, 60% , 80% {transform: translateX(10px);}
}



/* form 2 */



.formulario-2{
    width: 100%;
    height: 100%;
}

.formulario-3{
    height: 100%;
}

.formu {
    display: none;
}

.formu.active {
    display: block;
}

button.btn-active {
    background-color: rgb(75, 46, 2); /* Color de fondo naranja para el botón activo */
    color: white; /* Cambia el color del texto si es necesario */
    border: 2px solid orange; /* Opcional: Agrega un borde para más visibilidad */
}



/* //////////////////////////////////////////// parte 3 ////////////////////////////////*/
            /* ////////////// como funciona /////////////////// */

.parte3{
    padding-top: 10vh;
    background-color: rgba(245, 245, 245, 0.959);
    position: relative;
 
}

body.active .parte3{
    background-color: black;
}

.contenedor-comofunciona{
    
    width: 100%;
    text-align: center;
}

.contenedor-comofunciona h5 {
    color: rgb(255, 136, 0);
    font-size: 18px;
    margin-bottom: 30px;
}

.contenedor-comofunciona span{
    font-size: 35px;
    color: #222121;
}

body.active .contenedor-comofunciona span{
    color: white;
}

.contenedor-comofunciona p{
    margin-top: 15px;
    font-size: 18px;
    color: rgb(58, 55, 55);
}


body.active .contenedor-comofunciona p{
    color: white;
}
.contenedor-comofunciona img {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.8;
}

/* flex contenedor como funciona */ 

.contenedor-flex-comofunciona{
    margin-top: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contenedor-flex-comofunciona .contenedorunof{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 400px;
}

.contenedor-flex-comofunciona .contenedorunof i {
    background-color: #fcfcfc;
    font-size: 60px;
    color: rgb(182, 180, 180);
    border-radius: 50%;
    padding: 30px;
    border: 3px dashed rgb(255, 136, 0); /* Cambia "orange" al color que desees */
    margin: 40px; /* Ajusta el valor según tus preferencias */
}

body.active .contenedor-flex-comofunciona .contenedorunof i{
    color: white;
    background-color: black;
}


.contenedor-flex-comofunciona .contenedorunof .pasos{
    font-size: 22px;
    color: rgb(77, 76, 76);
    text-transform: capitalize;
}

body.active .contenedor-flex-comofunciona .contenedorunof .pasos{
    color: white;
}

.contenedor-flex-comofunciona .contenedorunof span {
    color: #000000;
    font-size: 20px;
}
.contenedor-flex-comofunciona .contenedorunof p {
    text-align: center;
    margin-top: 7px;
    color: rgb(77, 76, 76);
    font-size: 14px;
}

/*  ////////////////////////////// parte 4 slyder testimonial  /////////////////////////////////////////// */


body.active .parte4{
    background-color: black;
}
.contenedor-tt-parte4{
    width: 100%;
    text-align: center;
    margin-bottom: 5vh;
    color: black;
}

body.active .contenedor-tt-parte4{
    color: white;
}

.contenedor-tt-parte4 h6{
    color: rgb(255, 136, 0);
    font-size: 18px;
    margin-bottom: 40px;
}

.contenedor-tt-parte4 span {
    font-size: 30px;
    color: rgb(255, 136, 0);
}


.testim {
    width: 100%;
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-color: white;
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: rgb(255, 136, 0);
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    padding: 5px;
    z-index: 2222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow.left {
    left: 10px;
    
}

#right-arrow {
    right: 10px;
}

.testim .arrow:hover {
    color: black;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 1111;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgb(255, 136, 0);
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background-color: rgb(255, 136, 0);
    border-color: white;
}

.testim .dots .dot.active {
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testim .cont > div.active {
    opacity: 1;
    position: relative;
}

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: rgb(255, 136, 0);
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: gray;
    width: 80%;
    margin: auto;
    padding-bottom: 15px;
}

body.active .testim .cont div p{
    color: white;
}

.testim .cont div i{
    color: rgb(255, 136, 0);
    font-size: 10px;
    margin: 5px;

}


.testim .cont div.active .img img {
    animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px rgb(194, 156, 113);
    }
    35% {
        box-shadow: 0px 0px 10px 5px rgb(219, 212, 203);
    }
    70% {
        box-shadow: 0px 0px 10px 5px rgb(255, 136, 0);
    }
    100% {
        box-shadow: 0px 0px 0px 0px rgb(255, 136, 0);
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}


/* sponsors */

.contenedor-sponsor{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10vh;
    gap: 70px;

   
}

.contenedor-sponsor img{
    width: 200px;
    height: 100%;
    object-fit: cover;
    padding: 10px;
}

/* ///////////////////////////////////////////////////////// DESTINOS - porfolio/////////////////////// */

.destinos{
    background-color: rgba(255, 255, 255, 0.979);
    padding-top: 10vh;
    padding-bottom: 10vh;
}

body.active .destinos{
    background-color: black;
}


.contendor-de-galeria {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin: auto auto;
    height: 100%;
    padding: 20px;
    margin-top: 10vh;
}

.contenedor-1 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 50 5px rgba(0, 0, 0, 0.9);
    display: none; /* Las imágenes están ocultas inicialmente */
    opacity: 0;    /* Comienza con opacidad 0 */
    transition: opacity 1s ease-in-out; /* Añade la transición */
    
    /* Forma de rombo */
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.contenedor-1 img {
    object-fit: cover;
    width: 100%;
    height: 500px;
    transition: transform 0.3s ease-in-out;
    border: 1px solid rgb(230, 150, 2);
    
    /* Forma de rombo para la imagen */
    clip-path: inherit; /* Hereda la misma forma del contenedor */
}


.contenedor-1::after {
    content: '';
    background-color: rgba(0, 0, 0, 0.7); /* Puedes ajustar la opacidad aquí */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.contenedor-1 h1 {
    border: 10px;
    width: 60px;
    height: 60px;
    background-color: black;
    border: 100%;
    border-radius: 50%;
    color: rgb(230, 150, 2);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    font-size: 40px;
}

.contenedor-1:hover img {
    transform: scale(1.1);
}

.contenedor-1:hover h1,
.contenedor-1:hover::after {
    opacity: 1;
}



/* Estilos para la ventana emergente */
/* Estilos para la ventana emergente */
/* Estilos para la ventana emergente */
.imagen-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.877); /* Fondo oscuro con transparencia */
    justify-content: center;
    align-items: center;
    z-index: 15000;
}

.imagen-popup img {
    max-width: 80%;
    max-height: 80%;
    border: 3px solid rgb(230, 150, 2); /* Borde alrededor de la imagen */
}

.cerrar-popup {
    position: absolute;
    top: 5%;
    right: 5%;
    color: rgb(230, 150, 2);
    cursor: pointer;
    font-size: 64px;
    transform: translate(0, -50%);
}




/* boton cargar mas */

.cargarmas-contenedor{
    background-color: transparent;
    width: 10%;
    height: 40px;
    text-align: center;
    margin: auto auto;
  

}



.cargarmas-contenedor button{
    width: 100%;
    font-size: 14px;
    background-color: rgb(0, 0, 0);
    border-radius: 10px;
    border: none;
    color: white;
    padding: 10px;
    margin: 20px;
    transition: 0.3s ease;
   
}

body.active .cargarmas-contenedor button{
    background-color: white;
    color: #000;
}
.cargarmas-contenedor button:hover{
    background-color: rgb(230, 150, 2);
    
}

body.active .cargarmas-contenedor button:hover{
    background-color: rgb(230, 150, 2);
}

/* /////////////////////////////////////// footer //////////////////////////////////////// */

footer{
    
    width: 100%;
    height: 500px;
    background-color: #1b1b1bdc;
    color: #fcfcfc;
    padding: 100px 0px 30px;
   
    font-size: 13px;
    line-height: 20px;
}

footer .row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}


footer .col {
    flex-basis: 25%;
    padding: 10px;
}

footer .col:nth-child(2), footer .col:nth-child(3){
    flex-basis: 15%;
}

footer .logo-footer{
    width: 80px;
    margin-bottom: 30px;
}


footer .col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.email-id {
    width: fit-content;
    border-bottom: 1px solid rgb(255, 136, 0);
    margin: 20px 0;
}


footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    text-decoration: none;
    color: white;
}


footer form {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;

    
}


footer form .fa-solid{
    font-size: 18px;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 0;
 
}

footer form input {
    width: 100%;
    background: transparent;
    color: white;
    border: 0;
    outline: none;
    margin-left: 80px;
}

footer form button {
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}


footer form button .fa-solid{
    font-size: 16px;
    color: white;
    position: absolute;
    right: 0;
}


footer .social-icons .fa-brands{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: rgb(2, 2, 2);
    background-color: white;
    margin-right: 15px;
    cursor: pointer;

}


hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid rgb(255, 136, 0);
    margin: 20px auto;
}


footer .copyright {
    text-align: center;


}


footer .underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}



footer .underline span {
    width: 15px;
    height: 100%;
    background-color: rgb(255, 136, 0);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}


@keyframes moving {
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }   
}



/* efectos js */

/*sobre nosotros effect*/
.animado {
    opacity: 0;
    transition: all 0.5 ease-in-out;
}

.mostrarArriba { 
    animation: mostrarArriba 0.5s ease-in-out;
}

@keyframes mostrarArriba{
    0%{
        transform: translateY(100px);
    }
    100%{
        transform: translateY(0);
    }
}


.animado2{
    opacity: 0;
    transition: all 0.5 ease-in-out;
}


.mostrarIzquierda {
    animation: mostrarIzquierda 0.5s ease-in-out;
}


@keyframes mostrarIzquierda{
    0%{
        transform: translateX(-100px);
    }
    100%{
        transform: translateX(0);
    }
}






/* ///////////////////////////////////////////////////////////// responsive /////////////////////////////////////////////////////////// */
            /* celular */


@media screen and (max-width:1580px){

    /* header nav */

    .enlaces {
        height: 100%; 
        width: 100%;
    }

    
    nav .logo{
        margin-left: 100px;
        width: 300px;
    }
    
    
    nav .logo .txt-empresa{
        margin-left: 10px;
        font-size: 18px; 
       
    }
    

    /* titulos principal portada */

    .titulo-principal h1{
        font-size: 100px;
}

    .contenedor-boton-titulo{
        margin-top: 40px;
}

/* ///////////// seccion sobre nosotros */ 

/* imagenes laterales*/

    .contenedor-imagenes-der-izq-section-1 .img-izquierda {
        display: none;
    }

    .contenedor-imagenes-der-izq-section-1 .img-derecha {
        width: 300px;
        height: 100px;
    }
    /* imagenes 3 del medio */
    .contenedor-img-seccion-1{ 
        width: 70%;
        margin-left: 120px;
      }
      
      .contenedor-img1-seccion-1{
          gap: 20px;
         
      }
      
      .contenedor-img1-seccion-1 img {
          width: 180px;
          height: 180px;
      }
      
      /* imagen grande central */
      .contenedor-imagen-lateral{
        margin-left: 0px;
    }
    
    .contenedor-1-section-1 .contenedor-imagen-lateral img {
        width: 400px;
        height: 900px;
        border-radius: 0px; /* Esto agrega esquinas redondeadas */
    }

    /* grid */

    .contenedor-grid{
        width: 100%;
        gap: 30px;
      
    }

    .contenedor-grid .grid1{
        height: 700px;
        width: 100%;
        z-index: 3;
    }
    .contenedor-grid .grid2{
        height: 700px;
        width: 100%;
    }
    .contenedor-grid .grid3{
        height: 700px;
        width: 100%;
    }
}

/* /////////////////////////////// medida 1370px /////////////////////////////////////*/

@media screen and (max-width:1370px){
    
    /* grid */

    .contenedor-grid{
        width: 80%;
        margin: auto auto;
        gap: 30px;
        grid-template-columns: repeat(1 , 1fr);
      
    }

    .contenedor-grid .grid1{
        height: 700px;
        width: 100%;
        z-index: 3;
    }
    .contenedor-grid .grid2{
        height: 700px;
        width: 100%;
    }
    .contenedor-grid .grid3{
        height: 700px;
        width: 100%;
    }

    /* ** ** slyder */ 

    .section-1-slider2{
        margin-top: 28vh;
    }



     /* slyder comercial muestra */

     .slider{
        width: 90vw;
        height: 60vh;
        border-radius: 20px;
    }


    .slider .list .item img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 1;
       
        border-radius: 20px;
    }




    /* thumbnail section */


    .thumbnail{
        display: flex;
        gap: 30px;
        position: absolute;
        bottom: 10px;
        left: 40%;
        width: max-content;
        z-index: 100;
    }

    .thumbnail .item{
        width: 120px;
        height: 120px;
        flex-shrink: 0;
        position: relative;
        border: 1px solid #3565AE;
        border-radius: 20px;
        margin-right: -8px;
    }

    .thumbnail .item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    }

    /* presupuestos*/

    .banner-parte2{
        width: 100%;
        height: 230px;
        background-color: rgb(255, 136, 0);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .banner-parte2 i {
        color: black;
        font-size: 30px;
        margin-right: 10px;
    }
    
    
    
    .banner-parte2 p {
        font-size: 30px;
    }
    
    .banner-parte2 .span-arrow{
        margin-left: 20px;
        background-color: rgba(5, 5, 5, 0.9);
        border-radius: 10px;
        padding: 10px;
        font-size: 14px;
        text-transform: capitalize;
        margin-top: 5px;
    }
     
    
    #flechadown  {
        color: rgb(0, 0, 0);
        font-size: 15px;
        margin-left: 10px;
        margin-top: 5px;
    }

    /* formularios y seccion form */
        /* porque elegirnos*/

    .contenedor-total-parte2{
        display: flex;
        padding-top: 10vh;
        padding-bottom: 100px;
        align-items: center;
        justify-content:space-around;
        flex-direction: column;
        gap: 80px;
    }
    .porqueelegirnos-contenedor{
        max-width: 1000px;
        color: black;
        padding: 10px;
        margin-top: -40px;
    
    }



    .porqueelegirnos-contenedor h5{
        font-size: 14px;
        color: rgb(255, 136, 0);
        margin-bottom: 40px;
        margin-top: 20px;
    }

    .porqueelegirnos-contenedor .span-1{
        font-size: 32px;
        color: #000;
        font-weight: 800;
        
    }


    body.active .porqueelegirnos-contenedor .span-1{
        color: white;
    }

    .porqueelegirnos-contenedor .span2{
        color: rgb(255, 136, 0);
    }


    .porqueelegirnos-contenedor p{
        margin-top: 20px;
        color: gray;
        font-size: 14px;
    }
    body.active .porqueelegirnos-contenedor p{
        color: white;
    }

    .porqueelegirnos-contenedor img{
        object-fit: scale-down;
        width: 100%;
        height: 100%;
        margin-top: -150px;
    }


    /* botonera formulario*/
    .button-container{
        margin-left: 0px;
        margin-top: -200px;
    }

    .button-container button {

        margin: 20px;
    }

/* formularios */
    .form-contenedor {
        box-shadow: 1px 1px 5px rgba(116, 115, 115, 0.897);
        width: 90%;
    }


    /* como funciona */

    .contenedor-comofunciona img {
        display: none;
    }

    /* flex contenedor como funciona */ 

    .contenedor-flex-comofunciona{
        margin-top: 10vh;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .contenedor-flex-comofunciona .contenedorunof{
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 400px;
    }

    .contenedor-flex-comofunciona .contenedorunof i {
        background-color: #fcfcfc;
        font-size: 60px;
        color: rgb(182, 180, 180);
        border-radius: 50%;
        padding: 30px;
        border: 3px dashed rgb(255, 136, 0); /* Cambia "orange" al color que desees */
        margin: 40px; /* Ajusta el valor según tus preferencias */
    }


    /* galeria */
    .contendor-de-galeria {
        width: 90%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 80px;
        margin: auto auto;
        height: 100%;
        padding: 20px;
        margin-top: 10vh;
    }
    
    .contenedor-1 {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 5px 50 5px rgba(0, 0, 0, 0.9);
        display: none; /* Las imágenes están ocultas inicialmente */
        opacity: 0;    /* Comienza con opacidad 0 */
        transition: opacity 1s ease-in-out; /* Añade la transición */
        
        /* Forma de rombo */
        clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    }
    .contenedor-1 img {
        object-fit: cover;
        width: 100%;
        height: 400px;
        transition: transform 0.3s ease-in-out;
        border: 1px solid rgb(230, 150, 2);
        
        /* Forma de rombo para la imagen */
        clip-path: inherit; /* Hereda la misma forma del contenedor */
    }
}

/* /////////////////////////////// medida 1200px /////////////////////////////////////*/

@media screen and (max-width:1200px){

    /* header nav */  
    nav .logo{
        margin-left: 20px;
        width: 300px;
    }
    
    
    nav .logo .txt-empresa{
        margin-left: 10px;
        font-size: 14px; 
    }
    

    /* titulos principal portada */

    .titulo-principal h1{
        font-size: 80px;
}

}

@media screen and (max-width:1100px) {
   

/* menu y header */


    header nav{
        margin-top: 0;
        z-index: 1000;
        position: fixed;
        top: 0;
        right: 0;
    }

    .icono {
        display: flex;
        justify-content: center;
        height: 70px;
        align-items: center;
        color: white;
        padding: 20px;
        z-index: 6001; /* Asegúrate de que el icono tenga un z-index menor al del menú */
        cursor: pointer;
        margin-right: 40px;
    }

    .enlaces {
        position: fixed;
        right: 0;
        height: 105vh;
        width: 400px;
        flex-direction: column;
        transition: clip-path 1s ease; /* Especifique la transición para clip-path */
        background-color: rgba(0, 0, 0);
        z-index: 6000; /* Asegúrate de que el menú tenga un z-index alto */
        clip-path: circle(0% at 100% 0); /* Estado inicial (oculto) */
    }




    .enlaces.dos {
        clip-path: circle(150% at 100% 0); /* Estado visible al hacer clic */
    }


    header nav .logo{
        z-index: 6002;
    }

    /* swich claro oscuro */

    .claro-oscuro{
        left: 20px;
        top: 20px;
        z-index: 4;
       
    }

    .contenedor-titulo-imagen-principal{
        padding-top: 25vh;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* sobre nosotros */
    .contenedor-img1-seccion-1 img {
        width: 100px;
        height: 100px;
    }

    /*sponsors */

    .contenedor-sponsor{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10vh;
        gap: 20px;
    }

}


@media (max-width:900px){
    
    /* titulos principal portada */

    .titulo-principal h1{
        font-size: 70px;
}

    .contenedor-boton-titulo{
        margin-top: 40px;
        
}

    .redes-social-media{
        margin-top: -60px;
        
    }

    /* sobre nosotros */

    .contenedor-1-section-1{
        overflow: hidden;
    }
    .contenedor-1-section-1 .contenedor-imagen-lateral{
        display: none;
    }


    .contenedor-imagenes-der-izq-section-1 .img-derecha{
        width: 200px;
        height: 70px;
        right: 30px;
        bottom: 40px;
    }

    .descarga-pdf{
        margin-top: 70px;
        height: 150px;
    }
    .descarga-pdf a {
        background-color: rgb(255, 136, 0);
        margin-left: 80px;
        padding: 10px 35px;
        text-decoration: none;
        color: white;
        transition: all 0.3s ease-in;
    
    }

    /*banner presupuestos */

    
        .banner-parte2{
        
            height: 150px;
        
        }
        
        .banner-parte2 i {
            font-size: 20px;
            margin-right: 10px;
        }
        
        
        
        .banner-parte2 p {
            font-size: 20px;
        }
        
        .banner-parte2 .span-arrow{
            padding: 5px;
           
            margin-top: 5px;
        }
         
        
        #flechadown  {
            color: rgb(0, 0, 0);
            font-size: 15px;
            margin-left: 10px;
            margin-top: 5px;
        }
    

    /*sponsors*/
    .contenedor-sponsor{
        flex-wrap: wrap;
    }

    /* galeria */

    .contendor-de-galeria {
        width: 90%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin: auto auto;
        height: 100%;
        padding: 10px;
        margin-top: 10vh;
    }
    
    .contenedor-1 {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 5px 50 5px rgba(0, 0, 0, 0.9);
        display: none; /* Las imágenes están ocultas inicialmente */
        opacity: 0;    /* Comienza con opacidad 0 */
        transition: opacity 1s ease-in-out; /* Añade la transición */
        
        /* Forma de rombo */
        clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    }
    .contenedor-1 img {
        object-fit: cover;
        width: 100%;
        height: 300px;
    
    }

        
    .cargarmas-contenedor{
        background-color: transparent;
        width: 15%;
        height: 40px;
        text-align: center;
        margin: auto auto;
    

    }



    .cargarmas-contenedor button{
        width: 100%;
        font-size: 12px;
        background-color: rgb(0, 0, 0);
        border-radius: 10px;
        border: none;
        color: white;
        padding: 10px;
        margin: 20px;
        transition: 0.3s ease;
    
    }
}


@media (max-width:790px){
    .titulo-principal h1{
        font-size: 60px;
    }

    /* grid */

   .contenedor-tt-section-2 .p-tt-section-2{
        font-size: 38px;
    }



/* slyder */
    .slider .list .item .content .title,
    .slider .list .item .content .type{
        font-size: 1em;
        font-weight: bold;
        line-height: 1.3em;
    }

    /* banner presupuestos */
    /*banner presupuestos */

    
    .banner-parte2{
        
    height: 150px;
    
    }
    
    .banner-parte2 i {
        font-size: 16px;
        margin-right: 10px;
    }
    
    
    
    .banner-parte2 p {
        font-size: 16px;
    }
    
    .banner-parte2 .span-arrow{
        padding: 5px;
       
        margin-top: 5px;
    }
     
    
    #flechadown  {
        color: rgb(0, 0, 0);
        font-size: 15px;
        margin-left: 10px;
        margin-top: 5px;
    }

    /* formularios y titulo */

    .porqueelegirnos-contenedor .span-1{
        font-size: 22px;
    }

    .porqueelegirnos-contenedor img{
        object-fit: scale-down;
        width: 100%;
        height: 100%;
        margin-top: -50px;
    }

    .button-container{
        margin-top: -100px;
    }
}




@media (max-width:700px){




    footer {
        bottom: unset;
    }

    footer .col {
        flex-basis: 100%;
      
    }
    
    footer .col:nth-child(2), footer .col:nth-child(3){
        flex-basis: 100%;
    }
}






@media screen and (max-width:678px) {

/* titulo y redes */
    .titulo-principal h1{
        font-size: 50px;
    }

    .redes-social-media{
        margin-top: -60px;
        
    }

    .icono-container {
        position: relative;
        margin: 10px;
    }
    
    .redes a {
        display: inline-block;
        position: relative;
        text-decoration: none;
        color: white; /* Añadido para que el texto sea blanco */
    }
    
    .redes img {
        width: 30px;
        display: block;
       
    }

    .icono-container:hover img {
        transform: translateX(0%); /* Mueve el icono hacia la izquierda */
        z-index: 4; /* Asegura que el icono esté en un nivel superior al hacer hover */
    }
    
    .icono-container:hover span {
        transform: translateX(0); /* Muestra el span al lado del icono */
        opacity: 0;
    }
    /*slyder*/
    .slider .list .item .content{
        padding-right: 0;
    }

    .slider .list .item .conten .title{
        font-size: 30px;
    }


    /* porque elegirnos */

    .banner-parte2 .span-arrow{
        display: none;
    }
    .banner-parte2 i{
        display: none;
    }

    /* galeria */

    .cargarmas-contenedor button{
        margin: 0;
    }


    .contendor-de-galeria {
        width: 90%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        margin: auto auto;
        height: 100%;
        padding: 10px;
        margin-top: 10vh;
    }
    
    .contenedor-1 {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 5px 50 5px rgba(0, 0, 0, 0.9);
        display: none; /* Las imágenes están ocultas inicialmente */
        opacity: 0;    /* Comienza con opacidad 0 */
        transition: opacity 1s ease-in-out; /* Añade la transición */
        
        /* Forma de rombo */
        clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    }
    .contenedor-1 img {
        object-fit: cover;
        width: 100%;
        height: 300px;
    
    }
}


@media screen and (max-width:520px){

/* nav */

nav .logo img {
    object-fit: cover;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    
}

    /* claro oscuro*/

/* estilos swithc */

.claro-oscuro{
    position: fixed;
    right: 0px;
    top: 80px;
    z-index: 40;
   
}

.switch{
    width: 60px;
    height: 20px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 100px;
    border: solid 2px black;
    background-color: transparent;
   
    z-index: -1;
}

.switch i{
    color: rgb(230, 150, 2);
}

.claro-oscuro li:last-child::before{
    content: "";
    position: absolute;
    height: 15px;
    width:15px;
    border-radius: 50%;
    background-color: rgb(230, 150, 2);
    border: solid thin black;
    left: 0;
    right: unset;
}

.switch i{
    color: rgb(230, 150, 2);
    font-size: 10px;
} 

.claro-oscuro li:last-child.active::before{
    right: 0;
    left: unset;
    border: solid thin black;
}


    /* titulo y portada */
    .titulo-principal p {
        font-size: 16px;
    }
    
    .titulo-principal .button-principal {
        background-color: rgb(255, 136, 0);
        font-size: 18px;
        padding: 10px;
        position: relative;
        cursor: pointer;
        
       
    }
    
    
    .titulo-principal .button-principal::before {
        display: none;
    }


    /* sobre nosotros */

    .seccion-2{
      
        padding-top: 90px;
       
    }
    .contenedor-img-seccion-1{ 
        width: 100%;
        margin-left: 0px;
      }
      .contenedor-img1-seccion-1 img{
        width: 70px;
        height: 70px;
      }

    .img-derecha{
        
        display: none;
    }

    .contenedor-titulos-secion-1 h2{
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contenedor-titulos-secion-1 .texto-informacion-seccion-1{
        font-size: 14px;
    }

    .contenedor-informacion-seccion-1 .texto-informacion-seccion-1 .span-seccion-1-info{
        font-size: 22px;
    }
    .contenedor-titulos-secion-1 p{
        margin-top: 20px;
        font-size: 12px;
    }


    /* grid */

    .contenedor-tt-section-2 h3 {
        font-size: 22px;

    }

    .contenedor-tt-section-2 .p-tt-section-2{
        font-size: 14px;
    }

    .contenedor-tt-section-2 .p-tt-section-2-2{
        font-size: 12px;
       
    }

        /* grid */

        .contenedor-grid{
            width: 90%;
            margin: auto auto;
            gap: 30px;
            grid-template-columns: repeat(1 , 1fr);
          
        }
    
        .contenedor-grid .grid1{
            height: 700px;
            width: 100%;
            z-index: 3;
        }

        .contendor-texto-span-grid1 span{
            font-size: 20px;
        }
        .contenedor-grid .grid2{
            height: 700px;
            width: 100%;
        }
        
        .contendor-texto-span-grid2 span{
            font-size: 20px;
      
        }
        
        .contenedor-grid .grid3{
            height: 700px;
            width: 100%;
        }
        .contendor-texto-span-grid3 span{
            font-size: 20px;
        }

        /* sponsors */

        .contenedor-sponsor img{
            width: 150px;
            height: 100%;
            object-fit: cover;
            padding: 10px;
        }

        /* destinos */

        .destinos{
            background-color: rgba(255, 255, 255, 0.979);
            padding-top: 5vh;
            padding-bottom: 10vh;
        }

        .cargarmas-contenedor button{
            margin: 10px 0px;
            font-size: 10px;
        }
}


@media screen and (max-width:460px){
    /* grid */

    .contenedor-tt-section-2 h3 {
        font-size: 22px;

    }

    .contenedor-tt-section-2 .p-tt-section-2{
        font-size: 14px;
    }

    .contenedor-tt-section-2 .p-tt-section-2-2{
        font-size: 12px;
       
    }

        /* grid */

        .contenedor-grid{
            width: 90%;
            margin: auto auto;
            gap: 30px;
            grid-template-columns: repeat(1 , 1fr);
          
        }
    
        .contenedor-grid .grid1{
            height: 400px;
            width: 100%;
            z-index: 3;
        }

        .contendor-texto-span-grid1 span{
            font-size: 20px;
        }
        .contenedor-grid .grid2{
            height: 400px;
            width: 100%;
        }
        
        .contendor-texto-span-grid2 span{
            font-size: 20px;
      
        }
        
        .contenedor-grid .grid3{
            height: 400px;
            width: 100%;
        }
        .contendor-texto-span-grid3 span{
            font-size: 20px;
        }

        /* slyder */

        .contenedor-slyder{
            margin-top: 10vh;
        }
        .slider .list .item .content .title,
        .slider .list .item .content .type{
            font-size: 1em;
            font-weight: bold;
            line-height: 1em;
        }

        .nextPrevArrows button{
            width: 30px;
            height: 30pxs;
        }

}









