@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

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

:root{
    --color-principal: #585858;
    --color-encabezado-footer: #c77f44;
    --color-fondo: #ffffff;
    --color-titulos: #070707;
    --color-secundario: #3f3f3f;
}

header{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-encabezado-footer);
  padding: 20px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  gap: 20px;
}

header img {
  width: 80px;
  height: auto;
}


.nav-boton {
    display: inline-block;
    border-radius: 50px;
    background-color: var(--blanco);
    margin: 0,2rem;
    border: 2px solid var(--color-fondo);
    padding: 5px 16px;
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
    font-style: normal;  
}


.nav-boton:hover {
    background-color: var(--color-secundario);
    color: #ffffff;
    border:2px solid var(--blanco);
}

.botones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

main {
  padding: 45px;
}

body {
  background-color: var(--color-fondo);
  font-family: 'Alien Block', sans-serif;
    background-image:
    linear-gradient(
      to right,
      transparent 0%,
      white 35%,
      white 100%
    ),
    url('../imagenes/fondo-naranja.jpg');
  background-repeat: no-repeat, repeat-y;
  background-size: 100% 100%, auto;
  background-position: 0 0, left top;
}

.info-principal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.foto-principal {
  position: relative;
  display: inline-block;
  margin: 1rem;
}

.foto-federico {
  display: block;
  border-radius: 50%;
  border: 4px solid var(--color-principal); 
  box-shadow: 0 0 15px 5px #9c9c9c;
  width: 180px;
  height: auto;
}

.info-principal h1 {
  color: var(--color-secundario);
  padding-bottom: 10px;
}

.info-principal p {
  color: #1b1b1b;
  padding-bottom: 75px;
  width: 75%;
  font-weight: 400;
}

.info-peliculas h2 {
  color: var(--color-titulos);
  text-align: center;
  margin-bottom: 25px
}

/*Peliculas*/

.peliculas {
 display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center; 
align-items: flex-end;   
margin-bottom: 100px
}

.peliculas img {
aspect-ratio: 2 / 3;
width: 100;
border-radius: 20px;
height: 230px;
transition: transform 0.5s;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);  
}

.peliculas img:hover {
 transform: scale(1.05);
transform: translateY(-8px);
box-shadow: 0 1px 15px #202020;
}

/*Historia Académica*/

.historia-academica {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.historia-academica h2 {
  color: var(--color-titulos);
  text-align: center;
  margin-bottom: 15px;
}

.materias-aprobadas {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.carrera h3 {
  color: var(--color-titulos);
  text-align: center;
  margin-bottom: 1rem;
}

.carrera li {
  list-style: none;
  font-size: 12px;
  line-height: 1.5;
  color: #ffffff;
  padding: 8px 5px;
  border-bottom: 1px solid var(--color-fondo);
}

.carrera {
  flex: 0 0 250px;
  background-color: var(--color-encabezado-footer);
  border-radius: 9px;
  padding: 20px 15px;
  box-shadow: 0 5px 10px -5px var(--color-encabezado-footer);
}

.carrera li:last-child {
  border-bottom: none;
}

.materias-actuales {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}

.materias-actuales h2 {
  color: var(--color-titulos);
  text-align: center;
}

.materias-cursando h3 {
  color: var(--color-subtitulos2);
  text-align: center;
  margin-bottom: 10px;
}

.cuadrados-materias-actuales {
  width: 100%;
  max-width: 350px; 
  margin: 0;
}

.materias-cursando {
  background-color: var(--color-encabezado-footer);
  border-radius: 9px;
  padding: 1em;
  box-shadow: 0 5px 10px -5px var(--color-encabezado-footer);
  box-sizing: border-box;
  text-align: center;
}

.materias-cursando li {
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  padding: 8px 5px;
  border-bottom: 1px solid var(--color-fondo);
}

.materias-cursando li:last-child {
  border-bottom: none;
}

/*Prototipos*/

.prototipos {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  margin-bottom: 75px;
}

.prototipos h2 {
  color: var(--color-titulos);    
}

.botones-prototipos {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  width: max-content;
  padding: 0 1rem;
}

.boton-prototipo {
  text-decoration: none;
  background-color: var(--color-encabezado-footer);
  color: #ffffff;
  padding: 12px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 0 10px 2px #fff7e8;
}

.boton-prototipo:hover {
  background-color: var(--color-encabezado-footer);
  box-shadow: 0 6px 15px var(--color-encabezado-footer);
  transition: transform 0.5s;
  transform: translateY(-8px);
  box-shadow: 0 1px 15px #202020;
} 

/*Integrantes del Equipo*/

.equipo {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 75px;
}

.equipo h2 {
  color: var(--color-titulos);
  text-align: center;
  margin-bottom: 10px;
}

.cuadros-equipo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

.integrante {
  background-color: var(--color-encabezado-footer);
  border-radius: 10px;
  padding: 14px 8px;
  box-shadow: 0 5px 10px -5px var(--color-encabezado-footer);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.integrante:hover {
  background-color: var(--color-fondo);
  box-shadow: 0 6px 15px var(--color-encabezado-footer);
  transition: transform 0.5s;
  transform: translateY(-8px);
  box-shadow: 0 1px 15px #202020;
  background-color: #202020;
  color: #292D32;  
}  

.avatar-equipo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 8px;
  border: 2px solid var(--color-fondo);
}

.integrante h3 {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.integrante a{
  text-decoration: none;
}

.integrante p {
  font-size: 10px;
  color: #ffffff;
  line-height: 1.3;
}

/*Datos Académicos*/

.seccion-facultad {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.seccion-facultad h2 {
  color: var(--color-titulos);
  text-align: center;
  margin-bottom: 10px;
}

.cuadrado-facultad {
  background-color:  var(--color-encabezado-footer);
  box-shadow: 0 5px 10px -5px var(--color-encabezado-footer);
  padding: 18px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  max-width: 350px;
}

.cuadrado-encabezado {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding-bottom: 0.5em;
}

.principal-facu h3 {
  margin: 0;
  font-size: 18px;
  color: var(--color-fondo);
  font-weight: 700;
  text-align: left;
}

.principal-facu h4 {
  margin: 2px 0 0 0;
  font-size: 12px;
  color: #ffffff;
  text-align: left;
}

.logo-facu.uba { width: 50px; }
.logo-facu.fadu { width: 85px; }
.logo-facu.dgpc { width: 55px; }

.cuatri {
  display: block;
  justify-content: left;
  margin: 0;
  width: 100%;
  color: var(--color-titulos);
  font-size: 15px;
  font-weight: bold;
  padding: 3px 0px;
  border-radius: 0;
  box-shadow: none;
}

.boton {
display: inline-block;
background-color: #ffffff;
border: none;
outline: none;
border-radius: 10px;
padding: 10px 20px;
margin: 4px auto 8px auto;
cursor: pointer;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); 
font-family: sans-serif;
font-weight: 600;   
color: #c77f44;
text-decoration: none;
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
} 

.boton:hover {
background-color: #ffffff;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
transform: scale(1.05);
transition: transform 0.5s;
}


.cuadrado-facultad p, 
.info-catedra p {
  margin: 0;
  font-size: 15px;
  color: #1b1b1b;
  text-align: left;
  padding: 3px 0;
  width: 100%;
}

.carrera, .materias-cursando {
  width: 100%;
  max-width: 350px; 
  box-sizing: border-box;
  text-align: center;
}

.footer {
  background-color: var(--color-encabezado-footer);
  padding: 1em 1em 1.5em 1em;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}



.footer p {
  font-size: 15px;
  color: #ffffff;
  margin: 5px;
  text-align: center;
  opacity: 0.7;
}