body {
    font-family: 'Poppins', sans-serif;
}
.quem-somos{
    margin-top: 10000px;
}
.about-text-sobre {
    color: black;
    font-size: 17px;
}
.titulo-sobre {
    color: #791605;
    font-size: 36px;
    margin-bottom: 35px;   
}
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #643e04, #3a3834);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    margin-top: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin-bottom: 15px;
}
.about-text {
    padding: 10px;
    font-size: 18px;
    text-align: center;
    color: aliceblue;
    margin-bottom: 60px;
}
h5 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-align: center;
    color: aliceblue;
}

/* Espaçamento geral entre colunas (em todos os tamanhos) */
.row > .col-md-4 {
    margin-bottom: 30px;
}

/* Melhor espaçamento em dispositivos móveis */
@media (max-width: 768px) {
    .card {
        margin-bottom: 30px;
    }

    .row > .col-md-4 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-text {
        font-size: 14px;
    }
}
