/* ═══════════════════════════════════════════
   SLIDER DE EVENTOS — Bloque 1
   Banner horizontal tipo cine
   ═══════════════════════════════════════════ */

#mb-eventos-slider {
    position: relative;
    width: 100%;
    height: 72vh;
    min-height: 460px;
    overflow: hidden;
    background: #0d0d0d;
}

/* ── Track y slides ────────────────────────── */
.mb-sl-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.mb-sl-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-color: #0d0d0d;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.mb-sl-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Degradado: oscuro izquierda → transparente derecha ── */
.mb-sl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13, 13, 13, 0.97) 0%,
        rgba(13, 13, 13, 0.88) 25%,
        rgba(13, 13, 13, 0.55) 50%,
        rgba(13, 13, 13, 0.20) 70%,
        rgba(13, 13, 13, 0.05) 100%
    );
}

/* ── Contenido — columna izquierda sobre el degradado ─── */
.mb-sl-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 52%;
    max-width: 680px;
    padding: 0 clamp(2rem, 8vw, 7rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.1rem;
}

/* ── Eyebrow / extracto ────────────────────── */
.mb-sl-extracto {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C8A84B;
    margin: 0;
}

/* ── Título ────────────────────────────────── */
.mb-sl-titulo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.6rem, 4.5vw, 5rem);
    font-weight: 300;
    font-style: italic;
    color: #f0ece3;
    line-height: 1.0;
    margin: 0;
}

/* ── Botones ───────────────────────────────── */
.mb-sl-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 0.4rem;
}

.mb-sl-btn {
    display: inline-block;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border-radius: 2px;
    text-decoration: none !important;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
}

.mb-sl-btn--primario {
    background: #EA2027;
    color: #f0ece3 !important;
    border: 1px solid #EA2027;
}
.mb-sl-btn--primario:hover { background: #c5151b; border-color: #c5151b; }

.mb-sl-btn--reserva {
    background: #C8A84B;
    color: #1a1a1a !important;
    border: 1px solid #C8A84B;
}
.mb-sl-btn--reserva:hover { background: #b8943a; border-color: #b8943a; }

.mb-sl-btn--libre {
    background: #27AE60;
    color: #f0ece3 !important;
    border: 1px solid #27AE60;
}
.mb-sl-btn--libre:hover { background: #1e8a4a; border-color: #1e8a4a; }

.mb-sl-btn--outline {
    background: transparent;
    color: #f0ece3 !important;
    border: 1px solid rgba(240, 236, 227, 0.45);
}
.mb-sl-btn--outline:hover {
    border-color: #f0ece3;
    background: rgba(240, 236, 227, 0.08);
}

/* ── Navegación ────────────────────────────── */
.mb-sl-nav {
    position: absolute;
    bottom: clamp(1.5rem, 4vh, 2.5rem);
    right: clamp(1.5rem, 8vw, 7rem);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.mb-sl-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(13, 13, 13, 0.55);
    border: 1px solid rgba(240, 236, 227, 0.2);
    color: #f0ece3;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.18s ease, background 0.18s ease;
    line-height: 1;
}
.mb-sl-arrow:hover {
    border-color: #EA2027;
    background: rgba(234, 32, 39, 0.25);
}

.mb-sl-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.mb-sl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(240, 236, 227, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.18s ease, transform 0.18s ease;
}
.mb-sl-dot.is-active {
    background: #EA2027;
    transform: scale(1.5);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 768px) {
    #mb-eventos-slider { height: 68vh; min-height: 400px; }

    /* En móvil: degradado de abajo hacia arriba, texto al fondo */
    .mb-sl-overlay {
        background: linear-gradient(
            to top,
            rgba(13, 13, 13, 0.98) 0%,
            rgba(13, 13, 13, 0.88) 30%,
            rgba(13, 13, 13, 0.45) 60%,
            rgba(13, 13, 13, 0.10) 100%
        );
    }

    .mb-sl-content {
        top: auto;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 1.5rem 4.5rem;
        justify-content: flex-end;
    }

    .mb-sl-titulo { font-size: clamp(2rem, 8vw, 2.8rem); }
    .mb-sl-nav    { right: 1.5rem; bottom: 1.5rem; }
}

@media (max-width: 480px) {
    .mb-sl-btns { flex-direction: column; gap: 8px; }
    .mb-sl-btn  { text-align: center; font-size: 0.7rem; padding: 0.75rem 1.5rem; }
}
