@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
:root
{
    --color_azul_fuerte: #006CCE;
    --color_azul_bajo: #007DF3;
    --color_verde_fuerte: #00E600;
    --color_verde_bajo: #0DFF0D;
    --color_letras_gris: #4e4e4e;
    --color_gris_bajo: rgb(240, 240, 240);
    --color_gris_medio:#b3b3b3;
}
*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body 
{
    font-size: 16px;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*header*/
.menu_principal
{
    z-index: 2;
    position: fixed;
    top:0px;
    width: 100%;
    height: 60px;
    background-color: white;
    /*border: 1px solid red;*/
}
.boton_filtro
{
    width: 50px;
    height: 50px;
    background-color: var(--color_azul_fuerte);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.boton_filtro:hover
{
    background-color: var(--color_azul_bajo);
}
.boton_filtro i
{
    font-size: 2rem;
    color: white;
}

.submenu_filter
{
    z-index: 2;
    position: fixed;
    top: 62px;
    right:0px;
    width: 20%;
    border-radius: 5px 0 0 5px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
}
.form_label
{
    color: var(--color_letras_gris);
}
.select_anio
{
    width: 100%;
    height: 35px;
    border: 1px solid var(--color_azul_bajo);
    border-radius: 5px;
}
.select_categoria
{
    width: 100%;
    height: 35px;
    border: 1px solid var(--color_azul_bajo);
    border-radius: 5px;
}

.boton_buscar
{
    width: 80%;
    height: 40px;
    background-color: var(--color_azul_fuerte);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.boton_buscar:hover
{
    background-color: var(--color_azul_bajo);
}

.clic_afuera
{
    z-index: 1;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
}

@media (max-width: 840px)
{
    .submenu_filter
    {
        width: 50%;
    }
}
@media (max-width: 570px)
{
    .submenu_filter
    {
        width: 80%;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*footer*/
.img_footer_fondo
{
    background-image: url(../img/fondo_footer.png);
    background-position: center;
    background-size: cover;
}
.img_footer_1
{
    width: 150px;
}
.link_sitio
{
    color: var(--color_text_gris);
    transition: all 0.3s ease;
}
.link_sitio:hover
{
    color: var(--color_texto_link_menu);
}
.boton_red_social_footer
{
    width: 50px;
    height: 50px;
    background-color: var(--color_fondo_boton_red_social);
    border-radius: 50%;
    cursor: pointer;
    margin: 5px;
    transition: all 0.9s ease;
}
.cont_todas_redes a
{
    text-decoration: none;
}
.boton_red_social_footer i
{
    width: 20px;
    height: 20px;
    font-size: 25px;
    color: var(--color_texto_link_menu);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s ease;
}
.boton_red_social_footer:hover
{
    transform: rotate(360deg);
}

.borde_superior
{
    border-top: 1px solid rgb(177, 177, 177);
}
/*responsive*/
@media (max-width: 840px)
{
    .img_footer_fondo
    {
        background-image: url(../img/fondo_footer_movil.png);
    }
}