@charset "utf-8";

/* reglas generales */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif
}


body {
    background-color: #1d5353;
    text-align: center;
}

/*NAVEGACIÓN PRINCIPAL*/
header {
    background-color: #f9ebce;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 .5em;
}

.logo {
    cursor: pointer;
    max-height: 5em;
    margin: .5em 0em;
    padding: .5em;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 100px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/*MENU HAMBURGUESA*/

#llamamenu { /*botón que llama al menú */

    background-color: #f9ebce;
    color: #1d5353;
    padding: 1.5em;
    border: none;
    transition: all 0.3s ease 0s;
    display: flex;
    position: relative;
    z-index: 9999;
}

button:hover {
  color: rgba(126, 126, 126, 0.74);
}

header nav ul { /*capa menu desplegable*/
    background-color: rgba(2, 53, 54, 0.94);
    color: #b8c8a4;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 75%;
    z-index: 9990;
    padding-top: 6.5em;
    transition: all .5s ease;
}

.visible { /*clase que lee el js para hacer visible la hamburguesa*/
    left: 30%;
    transition: all .3s ease;
}

header nav ul div {
    margin: 0;
    padding: 0;
}

.navegacion li {
    background-color: rgba(2, 53, 54, 0);
    padding: 1em;
    font-weight: 500;
}

.navegacion li:hover {
    background-color: #3b978a;
    transition: all 0.3s ease 0s;
}

.estudiantes {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    color: #d3dcc1;
    margin-top: 1.5em;
}

.estudiantes li {
     padding: .8em;
}

.estudiantes li a {
    transition: all 0.3s ease 0s;
}

.estudiantes li:hover {
    background-color: rgba(154, 148, 128, 0.53);
}


#content {
    width: 90%;
    margin: auto;

}


ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


a {
    text-decoration: none;
    color: rgba(255, 244, 197, 0.48);
}

a:hover {
    color: #f9ebce;
    transition: all 0.3s ease 0s;
}

div {
    color: #ffffff;
    padding: 20px;
    line-height: 2em;
}

h1 {
    /*título principal de cada html*/
    line-height: 2em 0em;
    font-size: 35px;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

h2 {
    color: white;
    padding: 15px;
    text-align: center;
}

h4 {
    color: #d3dcc1;
}

h5 {
    color: #f9f3e5;
}

h6 {
    font-size: 10px;
    margin-left: 30px;
    margin-right: 30px;
}

.article {
    font-size: 15px;

}

.linksplan {
    padding: 0;
}

.linksplan a {
    display: flex;
    flex-direction: column;
    padding: .5em;
}

/*
.linksplan a:not(:last-of-type)::after {
    content: '|';
    margin: 0 5px; 
*/

.avataresteam li a img {
    width: 10em;
    border-radius: 50%;
    filter: grayscale();
}

.avatarjaz:hover {
    filter: contrast(120%);
}

.avataresteam li a img:hover {
    filter: saturate();
}

.avataresteam :not(:first-of-type) {
    margin-top: 1em;
}

figurecaption {
    font-style: italic;
}


.infoacademica {
    margin-bottom: 2em;
}

figure .mapasvg {
    font-family: sans-serif;
}
footer {
    background-color: rgb(249, 235, 206);
    color: #000000;
    font-style: italic;
    text-align: center;
}

.logosfooter {
    display: inline-block;
}


footer a img {
    width: 4em;
    height: auto;
    margin: .5em;
    vertical-align: middle;
    align-content: space-between;
}

footer h6 {
    padding: 0 .2em;
    font-weight: 400;
}

/*>>>  R E G L A S  @ M E D I A  <<<*/


/* 
 ---------------------   TABLETS  ------------------------
Dispositivos desde 768px de ancho*/

@media screen and (min-width: 768px) {

header {
    background-color: #f9ebce;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 .5em;
}

.logo {
    cursor: pointer;
    max-height: 6em;
    margin: .5em 0em;
    padding: .5em;
}
    
button:hover {
  color: rgba(126, 126, 126, 0.74);
}

header nav ul { /*capa menu desplegable*/
    background-color: rgba(2, 53, 54, 0.94);
    color: #b8c8a4;
    padding-top: 8em;
}

header nav ul div {
    margin: 0;
    padding: 0;
}

.navegacion li {
    background-color: rgba(2, 53, 54, 0);
    padding: 1.5em;
    font-weight: 500;
}

.navegacion li:hover {
    background-color: #3b978a;
    transition: all 0.3s ease 0s;
}

.estudiantes {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    color: #d3dcc1;
    margin-top: 1.5em;
}

.estudiantes li {
     padding: 1em;
}

.estudiantes li a {
    transition: all 0.3s ease 0s;
}

.estudiantes li:hover {
    background-color: rgba(154, 148, 128, 0.53);
}
/*    
.navegacion li {
    display: inline-block;
    margin-left: 1em;
    margin-right: 1em;
    justify-content: space-between;
    align-items: center;
}

nav ul a {
    display: flex;
    text-decoration: none;
    color: #3b978a;
    margin: 5px;
}

.navegacion li a:hover {
    color: #b8c8a4;
    transition: all 0.3s ease 0s;
}

.estudiantes {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: .5em;
}

.estudiantes li a {
    transition: all 0.3s ease 0s;
}

.estudiantes li a:hover {
    color: rgba(154, 148, 128, 0.63);
}

button {
    width: 9em;
    background-color: rgba(2, 53, 54, 0.74);
    color: rgba(255, 249, 227, 0.88);
    border: none;
    border-radius: 2em;
    display: inline-block;
    padding: .3em 0em;
    transition: all 0.3s ease 0s;
}

button:hover {
    background-color: rgba(126, 126, 126, 0.74);
}
*/
    .linksplan a {
        display: inline-block;
        padding: .5em;
    }

    .linksplan a:not(:last-of-type)::after {
        content: '|';
        padding: 1.5em;
    }

    .avataresteam {
        display: flex;
        justify-content: space-between;
    }

    .avataresteam li a img {
        width: 8.7em;
        border-radius: 50%;
        filter: grayscale();
    }
    
    .avataresteam li .avatarjaz img {
        padding-top: 1em;
        margin-right: 2em;

    }
    .avatarjaz:hover {
        filter: contrast(120%);
    }

    .avataresteam li a img:hover {
        filter: saturate();
    }
    
    footer a img {
        width: 7em;
    }
    
    footer h6 {
    padding: 0 .2em;
    font-weight: 500;
    font-size: .65em;
    } 
}

/* 
 ---------------------   ESCRITORIO  ------------------------
Dispositivos desde 992px de ancho*/
@media screen and (min-width: 992px) {
    
header {
    background-color: #f9ebce;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 .5em;
}

.logo {
    cursor: pointer;
    max-height: 7em;
    margin: .5em 0em;
    padding: 1em;
}
  
}

/* 
 ---------------------   ESCRITORIO  ------------------------
Dispositivos desde 1100px de ancho*/

@media screen and (min-width: 1100px) {

    header {
    background-color: #f9ebce;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 .5em;
}

.logo {
    cursor: pointer;
    max-height: 7em;
    margin: .5em 0em;
    padding: 1em;
}
    
h1 {
    /*título principal de cada html*/
    line-height: 2em 0em;
    font-size: 35px;
    color: #ffffff;
    padding-top: 1em;
    text-align: center;
}
.article {
      margin: 0 6em;  
    }
    
.avataresteam {
    display: flex;
    justify-content: center;
}
    
.avataresteam li {
    margin-left: 3em;
    margin-right: 3em;
    }
    
footer a img {
        width: 9em;
    }
    
footer h6 {
    padding: 0 .2em;
    font-weight: 500;
    font-size: .75em;
    }

}