/* ESTILOS */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f5; 
    margin: 0;
    padding: 0;
}

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

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff007f;
}

.nav-button {
    text-decoration: none;
    color: #5d3f9b;
    border: 1px solid #5d3f9b;
    padding: 8px 15px;
    margin-left: 10px;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
}

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

/* SEPARADOR */
.separator {
    border: 0;
    height: 1px;
    background-color: #ccc; 
    margin: 10px 0 40px 0;
}

/* CONTENEDOR DE LA TARJETA */
.profile-container {
    display: flex;
    justify-content: center; 
    padding: 20px;
}

/* TARJETA DE PERFIL */
.profile-card {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 850px;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #a8dfff, #f6e6f9, #f7c9e0); 
}

/* FOTO */
.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden; 
    margin-right: 40px;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* INFO DE PERFIL */
.profile-info {
    flex-grow: 1; 
}

.profile-info h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
    color: #333;
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #5014d5;
}

.career-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #ff007f;
    margin-bottom: 2px;
}

.career-name {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff007f; 
    margin-top: 0;
    margin-bottom: 20px;
}

.bio {
    font-size: 1em;
    line-height: 1.5;
    color: #444;
}


/* --- ESTILOS PARA INFORMACIÓN ACADÉMICA --- */

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

/* TÍTULO DE LA SECCIÓN */
.section-title {
    text-align: center;
    font-size: 1.8em;
    font-weight: bold;
    padding: 15px 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    background-color: #fce4ec; 
    box-shadow: 0 2px 4px rgba(255, 192, 203, 0.5);
    border: 1px solid #f8bbd0;
    color: #d440da;
}

/* CONTENEDOR DE LA CUADRÍ */
.cards-grid {
    display: grid;
    /* Esto es para poner las 4 columnas iguales  en una misma fila :3 */
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
}

/* ESTILO GENERAL DE LAS TARJETAS */
.info-card {
    background-color: #e0f7fa; 
    border: 1px solid #ff007f; 
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* CONTENEDORES PARA ÍCONO Y TEXTO */
.icon-text-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    font-weight: bold;
}

.card-icon {
    font-size: 2.2em; /* Tamaño del ícono */
    margin-right: 10px;
    color: #ff007f;
}

/* TEXTOS DENTRO DE LAS TARJETAS */
.info-card p {
    margin: 0;
    color: #333;
}

.card-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #ff007f;
    margin-bottom: 5px;
}

.card-subtitle {
    font-size: 1em;
    line-height: 1.3;
}


/* --- PROGRESO DE LA CARRERA --- */

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

/* TÍTULO DE LA SECCIÓN */
.progress-title {
    text-align: center;
    font-size: 1.8em;
    font-weight: bold;
    color: #70ac66;
    padding: 15px 30px;
    margin-bottom: 5px;
    border-radius: 8px;
    background-color: #e0ffe7; 
    border: 1px solid #46a253;
}

/* SUBTÍTULO (Materia | Cátedra) */
.progress-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

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

/* ESTILO TARJETAS */
.progress-card {
    background-color: #e6ffe6; 
    border: 2px solid #a8c3d9;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); 
}

/* ESTILO "CBC" */
.progress-cbc {
    font-size: 1.2em;
    font-weight: bold;
    color: #609357; 
    margin-bottom: 10px;
    border-bottom: 1px solid #c0e0c0; 
    padding-bottom: 5px;
}

/* ESTILO DE MATERIAS */
.progress-list {
    list-style: none; 
    padding: 0;
    text-align: center;
}

.progress-list li {
    font-size: 0.95em;
    line-height: 1.6;
    color: #3a806d;
    padding: 2px 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: #5785dd;
    padding: 15px 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    background-color: #dceffc; 
    border: 1px solid #7286cc;
}

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

/* ESTILO TARJETAS */
.group-card {
    background-color: white;
    border: 2px solid #a6c0ff; 
    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: #4848a8; 
    margin: 5px 0 2px 0;
}

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

/* BOTÓN "VER PERFIL" */
.profile-button {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    color: #3f90f2; 
    border: 2px solid #99c2ff; 
    padding: 8px 20px;
    border-radius: 20px;
    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: #5d3f9b; 
    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: #5d3f9b;
}

/* PATAS */

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;
}

