.tourism-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 5px;
}

.tourism-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.tourism-card h6 {
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.2;
}

.rating {
    color: #ffc107;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.category {
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.tourism-grid-container {
    background: #466e96;
    border: 1px solid #e3f2fd;
    padding: 40px 20px;
    border-radius: 20px;
}

.tourism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.tourism-btn-primary {
    background-color: #0d5bba;
    border-color: #0d5bba;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.tourism-btn-primary:hover {
    background-color: #0098da;
    border-color: #0098da;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Mobile (768px) */
@media (max-width: 768px) {
    .tourism-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tourism-card {
        margin: 0;
    }
    
    .tourism-grid-container {
        padding: 20px 15px;
    }
}

/* (769px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .tourism-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .tourism-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* (1200px y más) */
@media (min-width: 1200px) {
    .tourism-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}