*{
    padding: 0;
    margin: 0;
}

body{
    font-family:"Montserrat";
}

header{
    background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)), url("../img/fondo-home-buscador.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    font-family: 'Open Sans';
    gap: 20px;
}

#logo{
    display: flex;
    justify-content: center;
}

#logo img{
    width: 70%;
}


#buscador{
    display: flex;
    justify-content: center;
}


#form_index input{
    border-radius: 25px;
    height: 40px;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.73);
    border-style: none;
    font-size: 18px;
}


#frase{
    color: white;
    width: 100%;
    text-align: center;
}

#botones{
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: right;
    padding-right: 35px;
    position: absolute;
    margin-top: 600px;
}

#btn_login_buscador{
    display: flex;
    gap: 10px;
}

#btn_login_buscador a{
    text-decoration: none;
    color: white;
    font-size: 12px;
}

#btn_login_buscador #separador{
    color: white;
}


/* carrusel de categorías */

#carousel_categorias_desktop{
 display: none;
}

.categorias{
    display: flex;
    padding-inline: 10px;
    padding-block: 25px;
    justify-content: space-around;
    flex-direction: row;
}

.link_item{
    text-decoration: none;
}

.link_item:hover{
    cursor: pointer;
}

.categoria_item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 160px;
}

.categoria_ico{
    display: flex;
    width: 75px;
    height: 75px;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
}

.categoria_ico img{
    max-height: 40px;
    max-width: 40px;
}

.categoria_item h2{
    font-size: 16px;
    text-align: center;
}

/* Colores */

.color1{
    background-color: #5BC1CB;
}

.color2{
    background-color: #F7CB5B;
}

.color3{
    color:#646464;
}

.color4{
    background-color: #FAFAFA;
}




/* ruta del día */

@media (width > 800px){
    /* Portada */
    #logo img{
        width: 40%;
    }

    #frase{
        font-size: 22px;
    }

    #form_index input{
        height: 50px;
        width: 600px;
    }

    header {
        gap: 40px;
    }

    #btn_login_buscador a{
        font-size: 16px;
    }

    #botones{
        margin-top: 700px;
    }

    /* Carrusel de categorías */

    #carousel_categorias_movil{
        display: none;
    }

    #carousel_categorias_desktop{
        display: flex;
    }

    .categorias{
        padding-block: 55px;
    }
    .categoria_ico{
        width: 111px;
        height: 111px;
        border-radius: 80px;
    }

    .categoria_ico img{
        max-height: 60px;
        max-width: 60px;
    }

    .categoria_item{
        gap: 5px;
        width: 230px;
    }

    .categoria_item h2{
        font-size: 24px;

    }

    /* Rutas del día */

    #ruta_del_dia_section{
        gap: 28px;
        align-items: center;
    }

    #banner_ruta_del_dia{
        max-width: 236px;
    }

    #titulo_ruta_del_dia{
        font-size: 40px;
        color: #F7CB5B;
        font-weight: 500;
    }

    #descripcion_ruta_del_dia{
        font-size: 18px;
    }

    #ruta_del_dia_content{
        width: 100%;
    }

    #categorias_rutas_del_dia{
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .item_categoria_ruta_del_dia{
        max-width: 246px;
    }

    #ruta_del_dia_section{
        display: flex;
        padding-inline: 100px;
        padding-block: 55px;
    }

}