/* Estilos para imagens dos tours */
.tour-image {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

/* Ajustar layout dos cards com imagens */
.tour-card {
    position: relative;
    padding: 20px;
}

.tour-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.tour-duration {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .tour-image {
        height: 100px;
    }
}
