
.hero {
    position: relative;
    min-height: 90vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #000;
}
.hero::after {
    /* Capa oscura para contraste */
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.65) 40%, rgba(0,0,0,.55) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2; /* El texto queda por encima de la capa oscura */
    width: min(1200px, 92vw);
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: clamp(24px, 4vw, 64px);
    padding: clamp(24px, 3.2vw, 48px) 0;
}

/* ====== Columna izquierda ====== */
.kick { max-width: 780px; }
.eyebrow {
    display: inline-block;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
    font-size: clamp(14px, 1.4vw, 16px);
    color: #fff;
    opacity: .9;
    margin-bottom: .35rem;
}
.title {
    line-height: .95;
    font-weight: 900;
    font-size: clamp(36px, 5.8vw, 72px);
    margin: 0 0 .6rem 0;
}
.title .break { display:block; }
.lead {
    max-width: 58ch;
    color: #ddd;
    line-height: 1.6;
    font-size: clamp(14px, 1.3vw, 17px);
    margin: .8rem 0 1.6rem;
}
.cta {
    display: inline-block;
    background: #e50914;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border: 0;
    padding: .9rem 1.4rem;
    font-size: 15px;
    letter-spacing: .02em;
    border-radius: 2px;
    transition: transform .08s ease, filter .15s ease;
    box-shadow: 0 10px 25px rgba(229,9,20,.25);
}
.cta:active { transform: translateY(1px) scale(.99); }
.cta:hover { filter: brightness(1.05); }

/* ====== Columna derecha (horarios) ====== */
    .hours {
        display: flex;
        align-items: center;
        justify-content: center;
    }
.hours h3 {
    margin: 0 0 .6rem 0;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.05;
}
.hours h3 span { display:block; }
.hours__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: .65rem 1rem;
    margin-top: 1rem;
}
.row {
    display: grid;
    grid-template-columns: .9fr 1.6fr;
    align-items: baseline;
    gap: 1rem;
    border-bottom: 1px dashed rgba(255,255,255,.15);
    padding: .55rem 0;
}
.row .label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #fff;
    opacity: .95;
    font-size: 14px;
    white-space: nowrap;
}
.row .time {
    color: #ddd;
    font-size: 14px;
    white-space: nowrap;
}
.row.is-closed .time { color: #bbb; }
.badge-closed {
    display: inline-block;
    background: #222;
    border: 1px solid #444;
    padding: .15rem .5rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
}

/* ====== Responsivo ====== */
@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hours { margin-left: 0; }
}
@media (max-width: 520px) {
    .row { grid-template-columns: 1fr; gap: .25rem; }
    .row .time { opacity: .9; }
}

.title,
.lead,
.hours h3,
.row .label,
.row .time {
color: #fff !important;
}