/* Geral */
.destaques-semana {
    padding: 2rem 0;
    background-color: #f9f9f9;
}

.destaques-semana h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

/* Cartão */
.card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #444;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
}

.btn-primary {
    background-color: #dabf7e;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #b99a63;
}

/* Responsividade */
@media (max-width: 768px) {
    .card-img-top {
        height: 200px;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-text {
        font-size: 0.8rem;
    }

    .btn-primary {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .card-img-top {
        height: 400px;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .card-text {
        font-size: 0.75rem;
    }

    .btn-primary {
        font-size: 0.8rem;
    }
}