:root{
    --blanco: whitesmoke;
    --negro:black;
    --fondo1: grey;
    --fondo2:grey;
    --sombra60: #00000060;
    --sombra85: #00000085;
    --fondotexto:rgba(63,106,138,0.21);
    --fondoimagenes:rgba(63,106,138,0.71);
    --sombratexto:1px 1px 2px black, 0 0 1em blue, 0 0 0.2em blue;;
}
* {
    box-sizing:border-box;
    margin: 0;
    padding: 0;
}
body{
    max-width: 1600px;
    min-width: 340px;
    background: black;
    color:black;
    background-color: var(--blanco);
    font-size: 16px;
    font-family: "Oswald", serif;
}
/*parte del menu */
.navegador{
    width: 100%;
    margin: auto;
    font-size: 22px;
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    height: 80px;
    padding: 20px 0;
    background-color: var(--fondo1);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transition: all 100ms;

}
.navImagen img{
    width: 180px;
    margin-left: 30px;
}
.listaMenu{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-end;
    margin-right: 30px;
    list-style: none;
}
.listaMenu li a{
    text-decoration: none;
    color: var(--blanco);
    margin-left: 15px;
}
.botonMenu{
    display: none;
    margin-right: 30px;
}
.navmod{
    height: 70px;
    box-shadow: 5px 5px 10px 0px var(--sombra60);
    background: var(--fondo2);
}
.moviContent{
    margin-right: 150px;
}
/*detalle de contenedor principal*/
.contenedor{
    position: relative;
    right: 0;
    transition: all 300ms;
    top: 100px;
}
.contenedor h2{
    font-size: 40px;
}
/*detalle de sección*/
.banner{
    width: 90%;
    height: 400px;
    padding-bottom: 50px;
    border-radius: 15px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    justify-content: flex-start;
    object-fit: cover;
    filter: saturate(175%);
}
#banner1{
    background: url(img/programa.png) no-repeat center center/cover;
}
#banner2{
    background: url(img/odoo.jpg) no-repeat center center/cover;
}
#banner3{
    background: url(img/ia.jpg) no-repeat center center/cover;
}

.banner h2{
    margin-top: 30px;
    margin-left: 60px;
    color: var(--blanco);
    font-size: 30px;
}
.banner p{
    margin-left: 60px;
    color: var(--blanco);
    font-size: 18px;
}
.banner .boton{
    cursor: pointer;
    display: inline-block;
    border: 1px solid var(--blanco);
    font-weight: bold;
    padding: 10px 20px;
    background: var(--fondo1);
    color: var(--blanco);
    border-radius: 5px;
    margin: 10px 60px;
}
.banner .boton:hover{
    opacity: .7;
}
.container1{
    position: relative;
    top: 100px;
    display: flex;
    justify-content: center;
}
#news{
    text-align: center;
}


/*aca va el carrusel*/
.contenedor{
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    overflow: hidden;
    top: 100px;
}
.carrusel{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 400px;
    top: 0px;
}
.imagenes{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:end ;
}
.imagenes .img{
    box-shadow: 0px 4px 10px 0px var(--sombra85);
    height: 300px;
    width: 500px;
    border-radius: 15px;
    margin: 15px;
    object-fit: cover;
    filter: saturate(175%);
}
.texto{
    overflow: hidden;
    position: absolute;
    flex-direction: column;
    transform: translateY(0px);
    margin-bottom: 9px;
    backdrop-filter: blur(20px);
    background-color: var(--fondotexto);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}
.texto h3{
    text-shadow: 0px 0px 15px var(--negro);
    padding-top: 20px;
    color: var(--blanco);
    font-weight: 300;
    font-size: 20px;
}
.texto p{
    align-items: center;
    padding: 15px;
    color: var(--blanco);
    font-size: 0px;
    font-weight: 300;
}
.texto a{
    font-size: 0px;
}

.imagenes .texto{
    width: 400px;
    height: 70px;
    transition: 1s;
}
.imagenes:hover .texto{
    transition: height 1s, transform 1s, background-color 1s;
    transform: translateY(-25px);
    height: 180px;
    background-color: var(--fondoimagenes);

}
.imagenes:hover .texto p{
    transition: font-size 0s .2s linear;
    font-size: 15px;
    font-weight: 300;
    text-shadow: 0px 0px 10px var(--negro);
}
.imagenes:hover .texto a{
    transition: font-size 0s .2s linear;
    font-size: 15px;
    font-weight: 300;
    text-shadow: 0px 0px 10px var(--negro);
}

.puntos{
    display: flex;
    align-items: center;
    justify-content: center;
}
.puntos p{
    font-size: 80px;
    font-weight: 500;
    margin-top: -120px;
    color: grey;
}
.puntos .bold{
    font-weight: 700;
    margin-left: 10px;
    margin-right: 10px;
    color:black;
}
.atras img{
    width: 40px;
}
.adelante img{
    width: 40px;
}
/* redes sociales*/
.social {
    position: relative;
    top: 100px;
    margin: 50px;
}
.social p {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}
.links {
    display: flex;
    align-items: center;
    justify-content: center;
}
.links a{
    margin: 0 30px;
}
.links a i {
    font-size: 3rem;
}

/*aca va el footer*/
.footer{
    background: var(--fondo1);
    color: var(--blanco);
    font-size: 12px;
    padding: 10px 0;
    text-align: center;
    padding-bottom: 5px;
    position: relative;    
    top: 110px
}

@media screen and (max-width: 835px){
    /*aca la parte del menu*/
    .navMenu{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .botonMenu{
        display: flex;
    }
    .navMenu{
        height: 100%;
        background: var(--fondo2);
        position: fixed;
        top: 0;
        right: -280px;
        transition: all 300ms;
    }
    .moviNav{
        right: 0px;
    }
    .navMenu ul{
        flex-direction: column;
    }
    .navMenu ul li{
        margin: 20px 0px;
    }

    /*aca la parte del banner*/
    #banner1{
        background: url(img/programa1.png) no-repeat center center/cover;
    }
    #banner2{
        background: url(img/odoo1.png) no-repeat center center/cover;
    }
}
@media screen and (max-width: 500px){
    /*aca la parte del banner*/
    #banner1{
        background: url(img/programa2.png) no-repeat center center/cover;
    }
    #banner2{
        background: url(img/odoo2.png) no-repeat center center/cover;
    }
    .imagenes .img{
        height: 300px;
        width: 200px;
    }
    #banner3 p{
        display: none;
    }
    .navImagen img{
        width: 120px;
        margin-left: 10px;
    }
}
@media (max-width: 1250px){
    .imagenes1{
        display: none;
    }
    .imagenes4{
        display: none;
    }
}
