/* --- FONDO BASE --- */
.bg-navy {
    background-color: #1a284b;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- HEADER --- */
.destinos-hero {
    padding: 110px 20px 48px;
    text-align: center;
}

.destinos-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00aced;
    margin-bottom: 12px;
}

.destinos-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.15;
}

.destinos-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* --- TARJETAS DESTINOS (overlay) --- */
.dest-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

@media (min-width: 576px) {
    .dest-card {
        aspect-ratio: 4 / 3;
    }
}

.dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.55);
}

.dest-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dest-card:hover .dest-card-img {
    transform: scale(1.08);
}

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
}

@media (min-width: 576px) {
    .dest-card-overlay {
        padding: 20px 22px;
    }
}

.dest-card-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0 0 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

@media (min-width: 576px) {
    .dest-card-title {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }
}

.dest-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: none;
}

@media (min-width: 576px) {
    .dest-card-features {
        display: block;
    }
}

.dest-card-features li {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3px;
}

.dest-card-features li::before {
    content: "· ";
    color: #00aced;
    font-weight: bold;
}

.dest-card-cta {
    display: block;
    background: rgba(0, 172, 237, 0.18);
    border: 1px solid rgba(0, 172, 237, 0.65);
    color: #fff;
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.dest-card:hover .dest-card-cta {
    background: #00aced;
    border-color: #00aced;
}

/* --- MODAL --- */
.bg-navy-modal {
    background-color: #0e1525;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.modal-header {
    background: rgba(0, 0, 0, 0.2);
}

.modal-split-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.detail-list {
    list-style: none;
    padding-left: 15px;
}

.detail-list li {
    margin-bottom: 10px;
    position: relative;
}

.detail-list.includes li::before {
    content: "✓";
    position: absolute;
    left: -25px;
    color: #00aced;
    font-weight: bold;
}

.detail-list.excludes li::before {
    content: "✕";
    position: absolute;
    left: -25px;
    color: #dc3545;
    font-weight: bold;
}

.btn-cyan-gradient {
    background: linear-gradient(to right, #00aced, #0072ff);
    border: none;
    transition: transform 0.3s;
}

.btn-cyan-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 172, 237, 0.3);
    color: white;
}
