.founder-container {
    display: flex;
    align-items: center;
    gap: 2.5rem; /* Espaço entre a foto e o texto */
}

.founder-image {
    flex-shrink: 0; /* Impede que a imagem encolha */
    width: 180px;
    height: 180px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preenche o círculo sem distorcer */
    border-radius: 50%; /* Faz a imagem ficar redonda */
    border: 3px solid var(--border-color); /* Adiciona uma borda subtil */
}

.founder-text h2 {
    text-align: left; /* Alinha o título à esquerda */
    margin-bottom: 1rem;
}