
body, p, a {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

body {
    background-color: #E9ECEA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Ajustes de tamaño de fuente */
:root {
    --tamaño-titulo: 2.5rem;
    --tamaño-lectura: 1.5rem;
    --tamaño-footer: 1rem;
}

/* menu inicio */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #D3D9D5;
    padding: 1rem 2rem;
    width: 100vw; 
    box-sizing: border-box; 
}

.left-section {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    width: 100%;
}

.logo-uba {
    max-height: 3rem;
    margin-right: 2rem;
}

.nav {
    display: flex;
    list-style-type: none;
    gap: 2rem; 
}

.nav li a {
    text-decoration: none;
    color: #2E2F2F;
    font-size: 1.5rem;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    padding: 0.5rem 0;
}

.nav li:not(:last-child)::after {
    content: "";
    display: inline-block;
    height: 1rem;
    width: 1px;
    background-color: #2E2F2F;
    margin-left: 1rem;
}

.right-section {
    background-color: #2E2F2F;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.equipo-btn {
    color: #D1462F; 
    padding: 0.5rem 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 0;
}

.equipo-btn:hover {
    color: #B23C27; 
}  

/* section 1 perfil */

.section1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
    align-items: center; 
    width: 100%;
    height: 60vh; 
    background-color: #F4F6F5;
    padding: 0; 
}

texto {
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
  }
  
h1 {
    font-family: 'Anton', sans-serif;
    color: #D1462F;
    font-size: 4rem; 
    margin-bottom: 1rem;
}
  
  .carrera {
    background-color: #D1462F;
    color: #F4F6F5;
    padding: 0.5rem 1rem;
    font-size: 2rem;
  }

.imagen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagen-perfil {
    max-width: 80%; 
    height: auto;
}

/* materias */
.materias {
    text-align: center; 
    background-color: #E9ECEA; 
    padding: 2rem 0; 
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 2rem;
    color: #2E86AB;
    margin-bottom: 2rem; 
}

.contenedor-columnas {
    display: flex; 
    justify-content: space-around; 
    flex-wrap: wrap; 
}

.columna {
    width: 30%; 
    background-color: #D3D9D5; 
    margin: 1rem; 
    border-radius: 8px; 
    overflow: hidden; 
}

.columna h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 2rem;
    background-color: #2E86AB;
    color: #F4F6F5;
    margin: 0;
    padding: 1rem; 
}

.columna .nivel {
    width: 100%; 
    height: auto; 
}

.columna ul {
    list-style-type: none; 
    padding: 1rem; 
}

.columna ul li {
    font-family: 'Poppins', sans-serif;
    font-weight: 500; 
    color: #2E2F2F; 
    margin-bottom: 0.5rem; 
}

/* damero */
.section-damero {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem; 
    width: 100%;
    height: auto;
    padding: 0; 
    justify-content: center; 
}

.caja {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D3D9D5;
    height: 80px; 
    margin: 0; 
}

.clase1 {
    background-color: #2E86AB;
    color: #F4F6F5;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 2rem;
}

.clase2 {
    background-color: transparent; 
    color: #D1462F;
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    text-align: center;
    white-space: pre-line; 
}

.section-damero {
    max-width: 800px; 
    margin: 0 auto; 
}


.section-damero + .section-damero {
    margin-top: 2rem;
}
.equipo-section {
    background-color: #D1462F;
    padding: 2rem;
    text-align: center;
}

.equipo-section h3 {
    color: #F4F6F5;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* damero */
.contenedor-perfiles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.perfil {
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.imagen-perfil {
    max-width: 100%;
    height: auto;
    border-radius: 50%; 
}

.nombre {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #F8C537;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.link-plus {
    font-size: 2rem; 
    color: #F8C537;
    text-decoration: none; 
}
.footer {
    color: #F8C537; 
    text-align: center; 
    padding: 1rem;
}
h6 {
    background-color: #828282;
    font-family: 'Anton', sans-serif;
    color:#2E2F2F; 
    font-size: 1rem; 
    margin-bottom: 1rem;
}

.informacion {
    font-size: var(--tamaño-footer);
}

.contenido {
    background-color: #D3D9D5; 
    font-size: var(--tamaño-footer); 
    padding: 1rem; 
}

.datos-obligatorios {
    font-family: 'Poppins', sans-serif;
    background-color:#828282;
    display: flex;
    gap: 1rem;
}

.datos-carrera {
    background-color: #828282;
    padding: 1rem;
    text-align: center;
    display:flex
}
.contenidos {
    background-color:#D3D9D5;
    text-align: center;
    padding: 2rem;
    font-size: 0.7rem;
}
