/* Estilos para a seção Galeria de Presidentes */
#galeria-presidentes {
    padding: 40px 0;
    text-align: center;
}

#galeria-presidentes h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 20px;
}

#galeria-presidentes .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.presidente {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 525px;
    margin-bottom: 20px;
}

.presidente img {
    width: 150px;
    height: 150px;
    border-radius: 5px;
    object-fit: cover;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.presidente .info {
    text-align: left;
}

.presidente h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
}

.presidente p {
    font-size: 1rem;
    margin: 0;
    color: #555;
}

.presidente p em {
    font-style: italic;
    color: #888;
}

/* Responsividade */
@media (max-width: 600px) {
    .presidente {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .presidente img {
        width: 100px;
        height: 100px;
    }
}
