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

body {
    background: linear-gradient(#91C5DA, #FFF1E6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


/* menu inicio */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(#094352bb, #91C5DA);
    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; 
}  

.grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 1rem;
    align-items: center;
    justify-items: center;
    padding: 2rem;
}

.grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 partes iguales en una fila */
    gap: 1rem;
    align-items: center;
    justify-items: center;
    text-align: center;
    padding: 2rem;
}
.grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: center;
    justify-items: center;
    margin: 1rem 0;
    padding: 0; 
}

.grid-item h5 {
    text-decoration: none;
    color: #2E2F2F;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 0.5rem 0;
    margin: 0; 
}

.grid-item img {
    max-width: 100%;
    height: auto;
    margin: 0; 
}

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

h1 {
    font-family: 'Anton', sans-serif;
    color: #FF6A37;
    font-size: 2rem; 
    margin-bottom: 1rem;
}
.perfil {
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    perspective: 1000px
}

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

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

.link-plus {
    font-size: 2rem; 
    color: #09435277;
    text-decoration: none; 
}

main {
    margin-bottom: 100px;
}



footer {
    padding: 2rem 2rem;
    text-align: center;
}

footer h4 {
    font-family: 'Anton', sans-serif;
    color: #2E2F2F;
    background: linear-gradient(#09435277, #91C5DA);
    padding: 1rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.datos-obligatorios {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
    background: linear-gradient(#91C5DA, #FFF1E6);
    padding: 1rem;
}

.datos-carrera {
    flex: 1 1 200px;
    padding: 1rem;
    text-align: left;
    font-size: 15px;
    align-items: center;
}

.datos-carrera img {
    display: flex;
    max-width: 100px;
    margin-bottom: 1rem;
    align-items: center;
}

.contenidos {
    background-color: #D3D9D5;
    padding: 1rem;
    font-size: 0.9rem;
    color: #2E2F2F;
    margin-top: 1rem;
}

















