/* Estilo general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-principal: #00a8cc;
    --color-oscuro: #1e293b;
    --color-suave: #64748b;
    --fondo: #cbd5e1;
    --blanco: #ffffff;
}

.pagina {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--fondo);
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.cuerpo {
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.seccion-presentacion {
    background-color: var(--blanco);
    display: flex;
    align-items: center;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    gap: 40px;
}

.contenido-texto {
    flex: 1;
}

.contenido-texto h1 {
    color: var(--color-principal);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contenido-texto p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.contenido-imagen {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contenido-imagen img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    object-fit: cover;
}

.seccion-equipo {
    text-align: center;
}

.seccion-equipo h2 {
    color: var(--color-oscuro);
    margin-bottom: 40px;
    font-size: 2rem;
    position: relative;
}

.contenedor-tarjetas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.tarjeta-usuario {
    background-color: var(--blanco);
    width: 280px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tarjeta-usuario:hover {
    transform: translateY(-10px);
}

.foto-perfil {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-principal);
}

.foto-perfil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tarjeta-usuario h3 {
    color: var(--color-oscuro);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.rol {
    color: var(--color-principal);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.descripcion-corta {
    color: var(--color-suave);
    font-size: 0.9rem;
    line-height: 1.5;
}