@import url('https://fonts.googleapis.com/css2?family=Gluten:wght@100..900&display=swap');
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  }  
:root {
  /* colores */
  --color-primario: #4d3339;
  --color-secundario: #d6b7de;
  --color-fondo: #8cb890;
  --color-fondo-encabezado:#6a8d6d;
  --color-texto: #4d3339;
  --color-titulos: #39262a, #ffffff;
  --fuente-textos: "Gluten", cursive;
  --color-sombrasx1:#4d3339;
  --color-sombrasx2: #c2e6af ,
}

body{
    font-family: "Gluten", cursive;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    margin: auto;
    color: #4d3339
}
img{
    max-width: 100%;
}
header{
    background-color: #6a8d6d;
    padding: 20px 20px 20px 20px;
    margin:0;
}
#logo{
    width: 50%;
    margin: auto;
    margin-bottom: 1.5rem;
}
#logo img{
    width: 100%;
    height: auto;
}
.menu {
    display: flex;
    font-weight: bold;
    list-style: none;
    gap: 10px; 
    justify-content: center;

}
.menu li a {
    text-decoration: none;
    color: #4d3339;
    font-weight: bold;
    font-size: 0.8rem;
    background-color: #d6b7de;
    padding: 5px 15px; 
    border: 2px solid white; 
    border-radius: 20px; 
    transition: all 0.3s ease; 
}
.menu li a:hover {
    background-color: #eeabff;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 12px #6a4c72;
}
/* menu que va a estar todo en la misma linea
.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  margin-inline: auto;
}
.menu li a {
    text-decoration: none;
    color: #4d3339;
    font-weight: bold;
    font-size: 0.9rem;
    background-color: #d6b7de;
    padding: 8px 20px; 
    border: 2px solid white; 
    border-radius: 50px; 
    transition: all 0.3s ease;
    */

footer{
    background-color: #d6b7de;
    padding: 1.75rem;
}
footer p{ 
    color: #4d3339;
    font-size: .8em;
    text-align: justify;
}
main {
    background-color: #8cb890;
    padding: 20px 20px 20px 20px;
}
h1{ /*nombre*/
    text-align: center;
    color: #ffffff;
    margin: 1rem;
    text-shadow: #4d3339 0em 0.1em 0.1em ;
    
}
h2{ /*materias*/
    color: #ffffff;
    text-shadow: #4d3339 0em 0.1em 0.1em ;
    font-size: 1.2em;
    margin-bottom: 5px;
    margin-top: 5px;
}
h3{ /* BOCETOS - EQUIPO - DATOS*/
    color: #4d3339;
    text-shadow: #c2e6af 0em 0.1em 0.1em ;
    margin-top: 1em;
}
h5{ /*uba,dgpc*/
    color: #39262a;
    margin-top: 0.5em;
    margin-bottom:0.5em;
}
.seccion-principal p{
    margin-bottom: 1em;
}
.seccion-principal img{
    display: block;
    width: 100%;
    height: auto;
}
.link a {
    text-decoration: none;
    color: #fff2f5;
    font-weight: bold;
    background-color: #4c644e;
    padding: 8px 20px; 
    transition: all 0.3s ease; 
    display: inline-block;
    margin-top:2em;
}
.link a:hover {
    background-color: #c5ffca;
    color: #6a4c72;
    transform: scale(1.05);
    box-shadow: 0 6px 12px #4c644e;
}
.link img{
    width: 300px;
    border: 4px solid #ab64bd; 
    max-width: 100%;
    box-shadow: 0 6px 12px #6a4c72;
    margin: auto;
    display: flex;
    align-items: center;
}
.contenedordematerias {
  display: flex;
  gap: 8px;    
  background-color: #4c644e;
  padding: 10px;
  border-radius: 15px;
}
.caja-lila ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.columna-doble {
  display: flex;
  flex-direction: column;
  gap: 8px; /* Espacio entre la cajas */
  flex: 1; /*mismo ancho que la columna izquierda */
}
.caja-lila {
  background-color: #d6b7de ;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  color: #ffffff;
  flex: 1;      
}
.porcentaje-numero {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 10px;
}
.interes img{
    display: block;
    margin-top: 2em;
    max-width: 100%;
}
.equipo { 
    max-width: 75em;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.equipo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.equipo li a {
    text-decoration: none;
    color: #4d3339;
    background-color: #d6b7de;
    padding:5px 15px;
    border:1px solid white; 
    border-radius: 50px; 
    transition: all 0.3s ease; 
    display: inline-block;
    margin:10px;
}
.equipo li a:hover {
    background-color: #eeabff;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 12px #6a4c72;
    
}
.equipo img{
    width: 140px;
    border-radius: 0.25em;
    border:  3px dotted #fcf0ff;
    text-align: center;
    max-width: 75em;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.equipo img:hover {
    border: 3px dotted #d6b7de;
}
.datos_académicos img {
  display: block;
  width: 100px;
  margin-top: 1em;
  margin-bottom: 1em;
  object-fit: contain;
  padding: 0.5rem;
  background-color: #769a79;
  border-radius: 5px;
}
li.star {
  list-style: none;
  display: flex;
  text-align: justify; 
}
li.star::before {/*satr de datos*/
  content: "";
  display: inline-block;
  flex-shrink: 0;   
  background-image: url('../imagenes/star.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}