/* Card Geral */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px auto;
    max-width: 900px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Imagem no Card */
.card-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 15px auto;
    display: block;
    border-radius: 8px;
    
}

/* Botão */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2a5934;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #1e4527;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .card {
        padding: 15px;
    }

    .card-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 10px;
    }

    .card-image {
        max-width: 100%;
    }
}
