/* Paleta de colores */
:root {
    --white: #ffffff;
    --black: #000000;
    --grey: #757575;
    --greyLight: #dfe4ea;
    --greyWhite: #f9f9f9;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "Fs_r";
    src: url("../asset/fonts/fs_r.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    letter-spacing: 1px;
}

html {
    scroll-behavior: smooth;
}

.hero_bg1 {
    position: absolute;
    z-index: -1;
    top: 0;
}

.hero_bg1 h1 {
    margin-left: 100px;
}


.dropdown_first {
    display: none;
    position: absolute;
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
}

.submenu_dropdown_first {
    position: absolute;
    top: 0;
    right: -80%;
    list-style: none;
    display: none;
}

/* Mostrar submenús cuando el usuario pase el mouse sobre el menú padre */
.menu_item_first:hover > .dropdown_first,
.submenu_item_first:hover > .submenu_dropdown_first {
    display: block;
}

.submenu_item_first {
    position: relative;
}

/* Ajustar los enlaces del submenú */
.dropdown_first li {
    padding: 8px 15px;
    white-space: nowrap;
}

.dropdown_first li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
}

.dropdown_first li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* ==========================
        HERO
============================= */

.hero_bg1 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    color: white;
}

.hero_bg1 img {
    width: 105%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.9); 
    transform: translateX(-3.7%); 
}

.hero_bg1 h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}


/* ==========================
        BODY
============================= */
.horario-container {
    padding: 5px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.horario-card {
    background: var(--greyWhite);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    text-align: left;
}

.horario-container h2 {
    color: #0056b3;
    margin-top: 20px;
}

.hora {
    font-weight: bold;
    color: #22205F;
}

.hero_bg1::before {
    display: none!important;
}

/* ==========================
        FOOTER
============================= */


@media (max-width: 720px) {
    .bg_calendario img{
        object-position: right!important;
    }
    
}

