
.directores {
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.fotos-directores img {
    width: 170px;
    height: 200px;
    border: 7px solid rgb(255, 217, 0);
    padding-top: 4px;
    transition: .2s;
}


.fotos-directores {
    text-align: center;
    margin: 5px;
    border-radius: 20px;
    padding: 5px;
    transition: transform 0.3s;
}


.fotos-directores h2 {
    font-size: 20px;
    font-weight: 600;
}

.fotos-directores h3 {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

.fotos-directores p {
    font-size: 18px;
    text-align: center;
}

.contenedor-directores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Media Queries para Responsividad */
@media screen and (max-width: 768px) {
    .fotos-directores img {
        width: 140px;
        height: 160px;
    }

    .fotos-directores h2 {
        font-size: 18px;
    }

    .fotos-directores h3 {
        font-size: 16px;
    }

    .fotos-directores p {
        font-size: 16px;
    }
}

@media screen and (max-width: 576px) {
    .fotos-directores img {
        width: 160px;
        height: 180px;
    }

    .fotos-directores h2 {
        font-size: 16px;
    }

    .fotos-directores h3 {
        font-size: 14px;
    }

    .fotos-directores p {
        font-size: 14px;
    }
}
