@charset "utf-8" ;

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&display=swap');


/* PRIMERO REGLAS PARA CELULAR */
*{
    margin: 0;
    padding: 0;
}

body {
    background-color: lightgoldenrodyellow;
}
main{
    color: #293441;
    font-family: 'Montserrat', sans-serif;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: black;
}

h1{
    color: #293441;
    font-size: 2em;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    margin: 1em;
}

img{
    width: 100%;
    height: auto;
    /*display: block; transformo en elemento de bloque, se ajusta a las caract de estos elementos*/
}

/*------------navegacion-----------------------*/

#logo{
    background-color: lightgoldenrodyellow;
    max-width: 10em;
    margin: auto;
}

nav{
    /* background-color: rgb(20, 3, 94); */
    margin: 1em 0 0 0;
}


nav ul li{
    /* background-color: rgb(203, 192, 253); */
    margin: 0 0 0.3em 0;
}

nav ul li a{
    /*background-color:rgb(168, 155, 224);*/
    background-color: #293441;
    display: block;
    width: 10em;
    margin:auto;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    padding: 1em;
    color: #B4B0BF;
}

nav ul li a:hover{
    color: black;
    background-color: rgb(247, 247, 96);
}

h2{
    color: #293441;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/*-------------comitente: enfoque---------------------------*/

#logoAcumar{
    width: 10em;
    margin: auto;
    margin-bottom: 3em;
}

.comitenteE{
    margin-top: -3em;
}
.comitenteE p{
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    padding: 1em;
}

#datosAcademicos{
    margin-top: 2em;
}

.datosAcadem{
    background-color: #E1DCD8;
}

.datosAcadem p{
    font-family: 'Montserrat', sans-serif;
    padding: 1em;
    text-align: center;
}

/*-------------  integrantes del equipo ---------------------------*/

.titulo{
    width: 100%;
    margin-bottom: 1em;
}

#equipo{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

#equipo img{
    width: 30vw;
}

.estudiante {
    background-color: #293441;
    padding: 1em;
    margin: 1em;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px #2934416b;
}

.estudiante p{
    color: #B4B0BF;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.estudiante figure figcaption {
    color: #B4B0BF;
    align-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: bolder;
}

.estudiante figure img{
    width: 5em;
    text-align: center;
    padding-bottom: 1em;
}

.estudiante a{
    display: inline-block;
    background-color: #B4B0BF;
    color: black;
    font-family: 'Montserrat', sans-serif;
    padding: 0.5em;
    margin-top: 1em;
    box-shadow: 4px 4px lightgoldenrodyellow;
}

.estudiante a:hover{
    background-color: lightgoldenrodyellow;
    box-shadow: 4px 4px  rgb(247, 247, 96);
}
/*------------- usuario ---------------------------*/

#usuario{
    padding: 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#usuario img{
    width: 35vw;
    margin-top: 1em;
}

/*----------------datos academicos-------------------*/
.datosAcadem{
    margin-top: 1em;
}
.datosAcadem ul{
    margin: 1em;
    text-align: center;
}


.datosAcadem img{
    width: auto;
    height: 4em;
    margin: 1em;
}
/*------------------ pie de pagina ---------------------------*/

footer{
    background-color: #293441;
    padding: 5em;
    margin: 1em 0 0 0;
    font-family: 'Montserrat', sans-serif;
    color: #B4B0BF

}

/*---------------- Pestaña: PLAN -----------------------*/
.plan{
    background-color: #2934418f;
    box-shadow: 5px 5px  #293441;
    color: white;
    margin: 2em;
    margin-left: 4em;
    margin-right: 4em;
    padding: 1em;
    text-align: center;
}
.plan p {
    padding-bottom: 1em;
    border-bottom: solid 1px white;
}

.plan ul{
    margin: 1em;
}

.plan ul li{
    margin: 1em;
}


/*-------------- Pestaña: MAPA ------------------*/
.mapa{
    background-color: #2934418f;
    box-shadow: 5px 5px  #293441;
    color: white;
    margin: 1em;
    margin-left: 4em;
    margin-right: 4em;
    padding: 1em;
    text-align: auto;
}
.mapa p{
    padding-bottom: 1em;
    border-bottom: solid 1px white;
}
.mapa ul{
    margin: 1em;
}
.imagenmapa{
    margin-top: 4em;
    display: flex;
}

/*Escritorio pequeño / tablet: cuando se cumpla ese tamaño se aplican esas otras reglas que sobreescriben las reglas del mismo nombre que pusimos para le mobile first*/
@media screen and (min-width: 768px){

    /*body{
        background-color: COLOR;
    } */ 
    header ul{
        text-align: center;
    }    
    header ul li{
        display: inline-block; /*esta propiedad permite poner los bloques en linea*/
    }
    
}

/*Escritorio grande*/
@media screen and (min-width: 992px){

    #comitente p{
        max-width: 32em;
        margin: 2em auto;
        font-size: 1.4em; 
    }

    .datosAcadem{
        display: flex;
    }
}

@media screen and (min-width: 1200px){
        #equipo img{
            width:10vw}
}