.pagComite {
    background-color: var(--azulFuerte);
    padding: 2rem 0;
}

/* Botón regresar */
a.regresar {
    display: inline-flex;
    align-items: center;
    background-color: #0bb380ff;
    padding: 0.8rem 1.5rem;
    border-radius: 0.7rem;
    text-decoration: none;
    border: 1px solid #ccc;
    margin-bottom: 2rem;
    margin-left: 2rem;
    transition: all 0.3s ease;
}

a.regresar:hover {
    background-color: var(--azulClaro);
    color: #fff;
}

a.regresar h4 {
    margin: 0;
    font-size: 1rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contenedor del organigrama */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Cada nivel del comité */
.level {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

/* Tarjetas de miembros */
.member {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 1rem;
    padding: 1rem;
    width: 200px;
    height: 220px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.member:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Imagen redonda */
.member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 0.5rem;
}

/* Nombre y rol */
.member h5 {
    margin: 0.5rem 0 0.3rem;
    font-size: 1.6rem !important;
    color: var(--azulFuerte);
}

.member p {
    margin: 0;
    font-size: 1.2rem !important;
    color: #555;
}

.organigrama {
    background-color: #06dbd096;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 1200px;
    margin: 0 auto;
    margin-top: 5rem;
}