@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body*/

body{
    margin: 0;
    background-color: rgb(255, 255, 255);
    font-family: 'DM Sans', sans-serif;
}

a{
    text-decoration: none;
}

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

img {
    max-width: 100%;
    height: auto;
}

.contenedora {
    max-width: 75rem;
    margin: 0 auto;
    padding: 1rem;
}

/*header y footer*/

header,
footer {
    background-color: #4ADFFF;
    color: black;
}

/*header*/

header .contenedora{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/*logo dgpc*/

#logo {
    background-color: #ffffff;
    border-radius: .35em;
    padding: .35em;
    width: 6em;
}

/*CSS MENU HAMBURGUESA*/

nav {
    position: relative;
}

/*BTN HAMBURGUESA*/

.menu-btn,
.menu-fondo {
    border-radius: 90%;
    padding: .75rem;
    width: 3rem;
    aspect-ratio: 1;cursor: pointer;
    transition: all 0.3s ease-out;
    position: fixed;
    top: 1em;
    right: 1em;
    z-index: 9000;
}

/*FONDO*/

.menu-fondo {
    z-index: 8000;
}

/*CLASS "menuVisible"*/

.menuVisible .menu-fondo {
    background: #4ADFFF;
    width: 220vw;
    inset: -110vw -110vw auto auto;
}

/*BARRAS DE LA HAMBURGUESA*/

.menu-btn .btn-linea {
    width: 25px;
    height: 3px;
    margin: 4px 0 4px 0;
    background: hsl(0 0% 90%);
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 9000;
}

/*GIRO DE LA X*/

.menuVisible .menu-btn .btn-linea {
    transform: rotate(180deg);
}

/*X*/

.menuVisible .menu-btn .btn-linea:nth-child(1) {
    transform: rotate(45deg) translate(4px, 6px);
}
.menuVisible .menu-btn .btn-linea:nth-child(2) {
    opacity: 0;
}
.menuVisible .menu-btn .btn-linea:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -6px);
}

/*MENÚ*/

nav ul {
    opacity: 0;
    visibility: hidden; 
    position: absolute;
    right: 1rem;
    top: calc(100% + 4rem);
    z-index: 9999;
    transition: all .5s ease; 
}

/*CLASS "menuVisible" */

.menuVisible ul {
    visibility: visible;
    opacity: 100%;
    transition: all .5s .2s ease;
}

/*LINKS DEL BOTÓN*/

nav ul li a {
    color: white;
    display: block;
    font-size: 1.5rem;
    width: min(40vw, 15rem);
    text-align: end;
    padding: .5rem;
    text-decoration: none;
}

nav ul li a:hover {
    border-bottom: solid 4px hsl(0 0% 100% / 0.5);
    transition: all .3s;
}

/*color botones navegacion header*/

header nav ul li a {
    border-radius: .25em ;
    color:white;
    padding: .25em .5em;
    text-align: right;
    display: block;
}

header nav ul li a:hover {
    background-color: #FF7AAF;
    color: white;
}

.index header nav ul li:first-child a,
.plan header nav ul li:nth-child(2) a,
.mapa header nav ul li:nth-child(3) a {
    background-color: rgba(255, 255, 255, 0.85);
    color: #FF7AAF;
}

/*main*/

section {
    padding-bottom: 2rem;
}

.titulo {
    margin-bottom: 0.5em;
    padding: .5em;
    color: #4ADFFF;
    font-size: 2em;
    text-align: center;
    min-width: 5em;
    border-radius: 3em;
}

.alumna img {
    border: solid .4em #FF7AAF;
    border-radius: 50%;
    max-width: 70%;
}

article > div {
    min-width: 10em;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.alumna h2 .titulo{
    text-align: center;
    padding: 1em;
}

.nombre{
    text-align: center;
    padding: .5em;
}

.trabajo{
    text-align: center;
    padding: .5em;
}

.links{
    text-align: center;
    padding: .5em;
}

.redes{
    text-align: center;
    padding: .5em;
}

/*boton links*/

nav div ul li {
    min-width: 4em;
    margin: .25em 0 .25em .25em;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

nav div ul li a {
    background-color: #4ADFFF;
    border-radius: .25em ;
    color:#FF7AAF;
    padding: .25em .5em;
    text-align: center;
    width: 20rem;
    height: 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center; 
}

nav div ul li a:hover {
    background-color: #FF7AAF;
    color: white;
}

/*rotulos*/
.vm03 h3 .titulo{
    text-align: center;
    padding: 1em;
}

/*footer*/

.academicos > ul > li:not(:last-of-type) {
    border-bottom: solid 1px black;
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
}

.academicos img {
    width: 8em;
    height: auto;
    display: flex;
    margin: auto;
}

.academicos > ul > li > *:first-child {
    margin-right: 2em;
    width: 8em;
}

.academicos h3 { 
    margin-top: 0; 
}

@media screen and (min-width:640px){
    /*MENÚ NO FIJO*/

    header nav {
        position: relative;
    }

    /*BTN HAMBURGUESA OCULTO*/

    .menu-btn {
        display: none;
    }

    /*MENÚ VISIBLE*/

    header nav ul {
        display: flex;
        position: relative;
        opacity: 1;
        visibility: visible;
    }
    header nav ul li {
        min-width: 2em;
    }
    header nav ul li a {
        width: auto;
        display: block;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        border-radius: 3em;
        color: white;
        background-color: rgb(66, 139, 216);
    }
    header nav ul li a:hover {
        background-color: white;
        color: #4ADFFF;
    }
    .academicos > ul > li {
        display: flex;
    }

    .academicos > ul > li > div {
        width: calc(100% - 10em);
    }
}


@media screen and (min-width:800px) {
    /*MENÚ NO FIJO*/

    header nav {
        position: relative;
    }

    /*BTN HAMBURGUESA OCULTO*/

    .menu-btn {
        display: none;
    }

    /*MENÚ VISIBLE*/

    header nav ul {
        display: flex;
        position: relative;
        opacity: 1;
        visibility: visible;
    }
    header nav ul li {
        min-width: 2em;
    }
    header nav ul li a {
        width: auto;
        display: block;
        font-size: 1.2rem;
        font-weight: bold;
        text-align: center;
        border-radius: 3em;
        color: white;
        background-color: rgb(66, 139, 216);
    }
    header nav ul li a:hover {
        background-color: white;
        color: #4ADFFF;
    }
    .alumno h2 {
        width: 100%;
    }
    .alumno article div {        
        height: 100%;
    }
    .alumno article div a {
        margin: auto 0 0 auto;
    }
}

@media screen and (min-width:64em) {
    /*MENÚ NO FIJO*/

    header nav {
        position: relative;
    }

    /*BTN HAMBURGUESA OCULTO*/

    .menu-btn {
        display: none;
    }

    /*MENÚ VISIBLE*/

    header nav ul {
        display: flex;
        position: relative;
        opacity: 1;
        visibility: visible;
    }
    header nav ul li {
        min-width: 2em;
    }
    header nav ul li a {
        width: auto;
        display: block;
        font-size: 1.2rem;
        font-weight: bold;
        text-align: center;
        border-radius: 3em;
        color: white;
        background-color: rgb(66, 139, 216);
    }
    header nav ul li a:hover {
        background-color: white;
        color: #4ADFFF;
    }
    .alumno article div {
        width: unset;
        margin-top: 1em;
    }
    .alumno article h3 {
        text-align: center;
    }
    .academicos > ul {
        display: flex;
        justify-content: center;
        align-items: baseline;
    }
    .academicos > ul > li {
        width: calc(33.33% - 2em);
        flex-direction: column;
    }
    .academicos > ul > li:not(:last-of-type) {
        border-bottom: 0;
    }
    .academicos > ul > li > div {
        margin-top: 1em;
        width: unset;       
    }
    .img-uba {
        width: 10em;
    }
}    

/*
Paleta de colores
#4ADFFF (Celeste)
#40C846 (Verde)
#FF7AAF (Rosa)
#FCBC03 (Naranja)
*/