/* Estilos Generales */
body {
    font-family: sans-serif; 
    margin: 0;
    padding: 0;
    background-color: #f7f9fa; 
}

/* --- BARRA DE NAVEGACIÓN --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

/* Estilos del Logo */
.logo-container {
    display: flex;
    align-items: center;
}

/* Estilos de la Imagen del Logo */
.logo-img {
    height: 30px;
    width: auto;
}

/* Estilos de los Enlaces de Navegación */
.nav-links {
    display: flex;
    gap: 15px;
}

.nav-button {
    text-decoration: none;
    color: #ea437c;
    padding: 10px 20px;
    border: 1px solid #e87bd7; 
    border-radius: 5px; 
    font-size: 16px;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: #f0f0f0;
}


/* --- SECCIÓN DE PRESENTACIÓN --- */
.presentacion {
    display: flex;
    justify-content: center;
    padding:40px 20px; 
    text-align: center;
}

.contenedor-presentacion {
    width: 90%;
    max-width: 900px;
    padding: 50px 30px;
    border-radius: 10px;
    background: linear-gradient(to right,rgba(181, 252, 203, 0.7), rgba(255, 190, 215, 0.7) );
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
}

.bienvenidos {
    color: #e91e63;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 5px;
}

.equipo {
    color: #e91e63; 
    font-size: 48px;
    font-weight: 700; 
    margin-top: 0;
    margin-bottom: 20px;
}

.comision {
    color: #4caf50;
    font-size: 16px;
    margin: 0;
}



/* COMPAÑEROS DE GRUPO  */

.group-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

/* TÍTULO */
.group-title {
    text-align: center;
    font-size: 1.8em;
    font-weight: bold;
    color: #4caf50;
    padding: 15px 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    background-color: #e6ffe6; 
    border: 1px solid #c0e0c0;
}

/* CONTENEDOR DE LA CUADRÍCULA */
.group-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px;
}

/* ESTILO TARJETAS */
.group-card {
    background-color: white;
    border: 1px solid #4caf50; 
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* FOTO */
.group-photo-placeholder {
    width: 100px;
    height: 100px;
    background-color: #ccc;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* NOMBRE Y CARRERA */
.group-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #ff57cb; 
    margin: 5px 0 2px 0;
}

.group-career {
    font-size: 0.9em;
    color: #f96497; 
    margin: 0 0 15px 0;
}

/* BOTÓN "VER PERFIL" */
.profile-button {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    color: #f4589f; 
    border: 2px solid #f762a1; 
    padding: 8px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.profile-button:hover {
    background-color: #f0f8ff; 
}

/* DATOS ACADÉMICOS */

.data-container {
    max-width: 900px;
    margin: 60px auto 40px auto;
    padding: 20px;
}

/* TÍTULO */
.data-title {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    color: #e85bc2; 
    padding: 15px 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    background-color: #f5f0ff; 
    border: 1px solid #dcd0ff;
}

/* CONTENEDOR DE LAS COLUMNAS */
.data-columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
    line-height: 1.4;
}

/* COLUMNA */
.data-col {
    flex: 1; 
    min-width: 200px; 
}

/* (UBA, FADU, etc.) */
.data-heading-main {
    font-weight: bold;
    color: #5d3f9b;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 1.1em;
}

/*(Rector, Vicerrector, etc.) */
.data-heading-sub {
    font-weight: bold;
    color: #5d3f9b;
    margin-top: 10px;
    margin-bottom: 2px;
}

.data-text {
    font-size: 0.95em;
    margin: 0 0 5px 0;
    color: #a781f5;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 40px 20px 20px 20px;
    background-color: white;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.8em;
    color: #5d3f9b; 
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-legal {
    font-size: 0.75em;
    color: #777;
    line-height: 1.5;
    padding: 0 10px;
}
