  .destination-card {
        border: none;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }

    .destination-card:hover {
        transform: translateY(-5px);
    }

    .destination-card img {
        height: 220px;
        object-fit: cover;
    }

    .badge-custom {
        background-color: #e9f7fb;
        color: #0d6efd;
        font-size: 12px;
        margin-right: 5px;
    }

    .btn-details {
        background-color: #17a2b8;
        color: #fff;
        border-radius: 20px;
        padding: 6px 18px;
        font-size: 14px;
    }

    .btn-details:hover {
        background-color: #138496;
        color: #fff;
    }


/* MODALES */
/* Título del modal */
.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #0d6efd;
}

/* Imagen del modal */
#modalImage {
    object-fit: cover;
    height: 100%;
    max-height: 320px;
    border-radius: 12px;
}

/* Título de actividades */
.modal-body h6 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #444;
}

/* Lista de actividades */
#modalActivities {
    list-style: none;
    padding-left: 0;
}

/* Elementos de la lista */
#modalActivities li {
    background: #f8f9fa;
    padding: 10px 14px;
    margin-bottom: 8px;
    border-radius: 8px;
    transition: 0.3s;
    font-size: 15px;
}

/* Icono antes del texto */
#modalActivities li::before {
    content: "✔";
    color: #0d6efd;
    margin-right: 8px;
    font-weight: bold;
}

/* Hover */
#modalActivities li:hover {
    background: #e9f2ff;
    transform: translateX(4px);
}
