.produtorasRegistadas {
    font-family: 'Anton', sans-serif;
}

.card-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Faz todos os cards terem a mesma altura */
}

.member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%; /* Garante que o conteúdo do card preencha igualmente */
}

.img-circle {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #5e3d22;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.img-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.row {
    display: flex;
    flex-wrap: wrap; /* Permite que as colunas fiquem lado a lado e ajustem a largura automaticamente */
    justify-content: space-around; /* Espaçamento uniforme entre as colunas */
}

.col-lg-4, .col-md-6 {
    display: flex; /* Garante que os itens dentro das colunas estejam alinhados */
    justify-content: center;
    align-items: center;
}

.allProdutoras {
    background: linear-gradient(135deg, #b48c52, #926306);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-family: 'Georgia', serif;
    padding: 12px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
}

.allProdutoras:hover {
    transform: translateY(-3px) scale(1.1);
    background: linear-gradient(135deg, #926306, #b48c52);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.allProdutoras:active {
    transform: translateY(2px) scale(1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}