.destination-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #d52b1e;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.btn-explora {
    background-color: #0039a6;
    color: white;
    border-radius: 4px;
    padding: 6px 12px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-explora:hover {
    background-color: #002366;
    color: white;
}

.page-item.active .page-link {
    background-color: #0039a6;
    border-color: #0039a6;
}

.page-link {
    color: #0039a6;
}