
.section-title {
    color: #009039;
    font-size: calc(1.0rem + 1.5vw);
    font-weight: bold;
    margin-bottom: 2rem;
}

.card-title {
    color: #199b4c;
    font-weight: bold;
}

.btn-cta {
    background-color: #199b4c;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #157a36;
    color: #fff;
    text-decoration: none;
}


/* Remover margens e paddings indesejados */
.card {
    margin: 0.5rem;
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}

.card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Responsividade */
@media (max-width: 576px) {
    .card img {
        height: 150px;
    }

    /* Remover a classe text-muted na versão mobile */
    .card-text.text-muted {
        color: inherit;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .card img {
        height: 180px;
    }
}