/* Organigrama */
.organigrama h2 {
    color: #8B0033;
    font-weight: bold;
    margin: 40px 0 10px;
    /* -webkit-text-stroke: 1px white;
  text-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.575),
     1px -1px 0 rgba(255, 255, 255, 0.623),
    -1px  1px 0 rgba(255, 255, 255, 0.479),
     1px  1px 0 rgba(255, 255, 255, 0.685); */
}

.organigrama {
    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: "Poppins", sans-serif;
    /* background-color: #fff; */
    padding: 20px;
    margin: 0;
    text-align: center;
}

.nivel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 20px 0;
}

.miembro2 {
    position: relative;
    width: 160px;
}

.miembro2 img.foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid #929090;
    object-fit: cover;
    object-position: top;
    /* <-- Agrega esta línea */
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.miembro2 img.logo2 {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 47px;
    right: 0px;
    border-radius: 50%;
    /* border: 2px solid white; */
    /* background: white; */
}

.nombre a {
    /* font-weight: bold; */
    font-size: 14px;
    margin-top: 20px;
    color: #6b7280;
}

/* efecto foto dip pasado */
.foto-inactiva {
    filter: grayscale(1) drop-shadow(2px 0 6px white);
}

.nopointer {
    pointer-events: none;
}

.linea-conexion {
    height: 20px;
    border-left: 2px solid #ccc;
    margin: 0 auto;
}

.linea-horizontal {
    width: 80%;
    height: 2px;
    background-color: #ccc;
    margin: 10px auto;
}

.contenedor {
    transform: scale(0.9);
    /* ajusta entre 0.8 a 1 según necesidad */
    transform-origin: top center;
}

.periodo {
    font-weight: bold;
}


@media (max-width: 600px) {
    .nivel {
        flex-direction: column;
        gap: 20px;
    }
    .celjuco{
        font-size: 2rem;
    }
}
