@charset "utf-8";

hoja de estilo de user-agent
a:-webkit-any-link {
  color: -webkit-link;
  cursor: pointer;
  text-decoration: underline;
}

* { 
  box-sizing:border-box; }


body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, 'Roboto', Oxygen, Ubuntu, Cantarell, Open Sans, 'Helvetica Neue', sans-serif;
  margin: 0;
  color: hsl(0 0% 30%);
  background-color: hsl(0 0% 95%);
}

p {
  margin-block-end: 0.5em;
  margin-block-start: 0.5em;
}

p,li {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5 {
    color: hsl(0, 0%, 18%);
    text-wrap: balance;
    margin-block-end: 0.5em;
    margin-block-start: 0.5em;
}

.bolded { font-weight: bold; }

.titulo {
  font-size: 4.2em;
  margin: 0;
  line-height: 1.1em;
}


img {
    max-width: 100%;
  }

ul,
ol {
  list-style: none;
  padding: 0;
  margin-block-end: 0.5em;
  margin-block-start: 0.5em;
}

.contenedora,
main{
    max-width: 65rem;
    margin-inline: auto;
    padding: 1rem;
  }

  footer {
    background-color: hsl(0, 0%, 11%);
    color: hsl(0, 0%, 95%);
    text-align: center;
  }

  #logo {
    display: block;
    border-radius: .0rem;
    width: 6rem;
    padding: .25rem .5rem;
    background-color: hsl(0, 0%, 100%);
    border: solid 3px hsl(0, 0%, 100%);
  }
  
  header nav ul {
    margin-block: 0;
  }
  
  header nav a {
    color: hsl(0, 0%, 11%);
    display: block;
    width: 5em;
    padding-block: 0.25em .5em;
    text-align: center;
    text-transform: uppercase;
  }
  
  header nav a:hover,
header nav a:focus-visible,

.index nav li:first-of-type a,
.plan nav li:nth-of-type(2) a,
.mapa nav li:nth-of-type(3) a {
  background-color: hsl(0 0% 11%);
  color: hsl(00 00% 95%);
  outline: none;
}

section.contenedora {
 padding-block: 2em;
}
 
.comitente {
  font-size: 1.25em;
}

.comitente figure {
  margin: 0;
  width: clamp(10rem, 8rem + 25vw, 30rem);
  margin-inline-end: 1rem;
}

.comitente img {
  border-radius: .25rem;
}

.equipo_articulos{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(5rem, 100%), 1fr));
  gap: 1rem;
  background-color: hsl(0, 0%, 94%);
  margin-block: .5em;
  border-radius: .25em;
}

.equipo_textos a {
  color: hsl(0, 0%, 18%)
}
  
.academicos > ul > li:not(:last-of-type) {
  border-bottom: solid 1px hsl(280 29% 44% / .15);
  padding-block-end: 1.5em;
  margin-block-end: 1.5em;
}

footer p {
  margin-block-end: 0;
}


header nav ul {
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
}

.equipo_articulos article {
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
}

.equipo_textos a:hover{ 
  text-decoration: none;
  color: hsl(0, 0%, 5%);
  font-weight: bold;
}

.equipo article {
  padding-top: 1em;
  border-radius: .25em;
}

.equipo img {
  width: 10em;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 4px 4px hsl(0 0% 0% / 20%);
}

.equipo_textos a {
  color: hsl(0, 0%, 8%);
  font-size: .85em;
}

a {
  text-decoration: none;
  color: hsl(0, 0%, 18%);
  font-weight: bold;
}

a:hover {
  text-decoration: none;
  color: hsl(0, 0%, 5%);
  font-weight: bold;
}

#Introduccion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  align-items: end;
}

.infoperfil {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
  gap: 1rem;
  margin-block: .5em;
  border-radius: .25em;
}

#fotoperfil {
  max-width: 18rem;
  margin-top: 1em;
}

.barraseparadora {
  margin-block-start:2rem;
  margin-block-end:2rem;
  color: hsl(0 0% 30%)
}

#imagenesdatosacademicos {
    display: block;
    width: 15em;
    object-fit: contain;
    padding: .5rem;
}

.datosacademicos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

:root {
  --color_blanco: #fff;
  --altura_header: 80px;
  --padding_left_right: 2rem;
  --ancho_maximo: 1200px;
}

.navbar {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding: 0 var(--padding_left_right)
}

.list_icon {
  color: #131313;
  cursor: pointer;
}
.ul_links {
  width: 100%;
  position: absolute;
  top: var(--altura_header);
  display: flex;
  justify-content: center;
  height: calc(100vh - var(--altura_header));
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  background-color: hsl(0 0% 95%);
  height: 0;
  overflow: hidden;
  left: 0;
  transition: all .3s;

}
.li_links {
  list-style: none;
}
.link {
  color: #181818;
  font-weight: bold;
  font-size: 3em;
}
.menu_hamburguesa {
  display: none;
}

.menu_hamburguesa:checked + .ul_links {
  height: calc(100vh - var(--altura_header));
}

@media (min-width:768px){
.labe_hamburguesa {
  display: none;
}
.ul_links {
  position: static;
  width: auto;
  flex-direction: row;
  height: auto;
  gap: 2rem;
}
.link {
  font-size: 1.2rem;
  transition: all .3s;
  padding: .2rem .7rem;
}

.link:hover {
  background-color: #181818;

}
}
