:root {
    --color-primary: #2d0e66;
    --color-secondary: #6b0a6b;
    --color-background: #ffb6ff;
    --color-footer: #a57ba5;
    --color-text: #000000;
    --font-main: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
}

body {
    background-color:#a57ba5
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
}

.contenedor {
    background-color: #e9d2e9;
    border-radius: 1.25rem;
    max-width: 56rem;
    margin: 2.5rem auto;
    padding: 2.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

nav.inicio {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: nowrap;
    width: auto;
    margin: 0 auto;
}

.boton {
    background: white;
    color: #2d0e66;
    border: none;
    border-radius: 1.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.boton:hover {
    background-color: #a57ba5;
    color: white;
    transform: translateY(-0.1rem);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.menu-integrantes {
    background-color: #e2b0e2;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.menu-integrantes h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin-bottom: 10px;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    background-color: #a57ba5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--color-secondary);
    transform: translateX(10px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}


.perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    text-align: center;
}

.foto-perfil {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #a57ba5;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.perfil h1 {
    margin: 0;
    color: #2d0e66;
    font-size: 2.5rem;
}

.perfil p {
    margin: 0;
    color: #000000;
    font-size: 1.2rem;
}

.foja-academica {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: 10px;
    box-shadow: 10%;
    margin:  10, 0;
    align-items: center;   
}

.titulo-seccion {
    color: #6b0a6b;
    text-align: center;
    margin-bottom: 8;
    font-size: 2rem;
}

.subtitulo-carrera {
    margin-bottom: 10;
}

.subtitulo {
    color: #2d0e66;
    font-size: 1.2rem;
    margin-bottom: 10;
}

.linea-subtitulo {
    height: 2px;
    background-color: #a57ba5;
    width: 100px;
    margin: var(--spacing-xs) 0;
}

.materias-box {
    background-color: #e9d2e9;
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 20px;
    align-items: center;
}

.subtitulo-materias {
    color: #6b0a6b;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    align-items: center;
}

.bloque-materias p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.bloque-materias strong {
  color: #000000;
  font-size: 1.2rem;
}

.datos-academicos {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: 10px;   
    margin: 10, 0;
    align-items: center;
}

.subtitulo-datos {
    color: #6b0a6b;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    align-items: center;
}

.lista-academicos {
    list-style: list-style-type;
    margin-bottom: 15px;
    line-height: 1.6;
    
}
footer {
    background-color: #181818;
    padding: 10px 15px;
    margin-top: 0;
    border-radius: 0%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: white;
    width: 100%;
    box-sizing: border-box;
}

.footer p {
margin: 0 0 1rem 0;
}

.footer p:last-child {
margin-bottom: 0;
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    .nav-list ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .foja-academica {
        padding: var(--spacing-md);
    }

    .materias-box {
        padding: var(--spacing-md);
    }

    .titulo-seccion {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    button {
        width: 100%;
    }

    .materias-box {
        padding: var(--spacing-sm);
    }

    footer {
        padding: var(--spacing-md);
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .mi-imagen {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .nav-inicio {
        gap: 10px;
    }

    .boton {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
  