html, body {
    background-color: var(--color-black); 
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.Navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: transparent;
} 

/* ================================
   🟣🟣🟣 SECTION SCHEDULE 🟣🟣🟣
   ================================ */

/* SECTION */
.schedule {
    background-color: var(--color-black);
    margin: 0 auto;
    padding: 6rem 0;
}

.schedule-inner {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

/* TITLE */
.schedule-title {
    font-family: var(--font-primary);
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    color: var(--color-white);
    text-align: center;
    margin-top: 6rem;
    padding-bottom: 4rem;
    text-transform: uppercase;
}

.schedule-text {
    font-family: var(--font-primary);
    font-size: var(--h6-size);
    font-weight: var(--h6-weight);
    color: var(--color-white);
    text-align: center;
    padding-bottom: 4rem;
}

.schedule-texto {
    font-family: var(--font-primary);
    font-size: var(--h6-size);
    font-weight: var(--h6-weight);
    color: var(--color-white);
    text-align: center;
    padding-top: 4rem;
}

/* TABLE WRAPPER */
.schedule-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ROWS */
.roow {
    display: grid;
    grid-template-columns: 120px repeat(6, 1fr);
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06); /* líneas finas */
}

.roow:last-child {
    border-bottom: none;
}

/* HEADER */
.roow.header {
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 1rem;
}

.roow.header .cell {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 1;
}

/* CELLS */
.cell {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-white);
}

.cell.time {
    text-align: left;
    opacity: 1;
    font-size: 0.7rem;
}

/* PILLS (clases) */
.pill {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: var(--color-gray);
    font-size: 0.7rem;
    white-space: nowrap;
}

.pill.accent {
    background: rgba(255,136,0,0.18);
    color: var(--color-orange);
}

.pill.muted {
    opacity: 0.4;
}

/* BUTTON */
.sch-button {
    padding: 0.5rem 2rem;
    background-color: var(--color-orange);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: var(--button-size);
    font-weight: var(--button-weight);
    color: var(--color-white);
    text-decoration: none;
    transition: transform 0.2s ease;
    margin-bottom: 8rem;
    margin-top: 4rem;
    display: block;
    width: fit-content;
    margin: 4rem auto 8rem;
}

.sch-button:hover {
    transform: scale(1.1);
}

/* HOVER SUTIL */
.roow:not(.header):hover {
    background: var(--color-black);
}

@media (max-width: 900px) {

    .schedule {
        width: 100%;
        padding: 4rem 1rem;
    }

    .schedule-table {
        overflow-x: auto;
    }

    .roow {
        min-width: 900px;
    }
}

/* ================================
   🟣🟣🟣 AVISO SCHEDULE 🟣🟣🟣
   ================================ */
.legal-container {
    width: 80%;
    max-width: 1400px;
    margin: auto;
}

.h1-title {
    color: var(--color-orange);
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    font-family: var(--font-primary);
    margin-bottom: 4rem;
}

h5 {
    color: var(--color-white);
    font-size: var(--h5-size);
    font-weight: var(--h5-weight);
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    
}

p {
    color: var(--color-white);
    font-size: var(--p-size);
    font-weight: var(--p-weight);
    font-family: var(--font-primary);
}

.liavis {
    color: var(--color-white);
    font-size: var(--p-size);
    font-weight: var(--p-weight);
    font-family: var(--font-primary);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.coso {
    padding-top: 4rem;
}

.kelok {
    padding-bottom: 8rem;
}