@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
:root
{
    --color_texto_link_menu: #363636;
    --color_texto_link_menu_hover: #0061B1;
    --color_text_gris: #424242;

    --color_azul_fuerte: #3A6375;

    --lineas_footer:45%;
    --cont_redes:10%;
}
*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body 
{
    font-size: 16px;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*header*/
.header_primary
{
    z-index: 4;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 70px;
    background-color: white;
}
.text_color
{
    color: var(--color_texto_link_menu);
    padding: 0 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.text_color:hover
{
    color: var(--color_texto_link_menu_hover) !important;
}
.boton_header
{
    width: 50px;
    height: 50px;
    border: 3px solid rgb(28,49,58);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
}
.boton_header i
{
    font-size: 35px;
    color: rgb(28,49,58);
}
.menu_desplegable
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.clic_fuera
{
    opacity: 0;
    z-index: 3;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

/*responsive*/
@media (max-width: 840px)
{
    .header_primary
    {
        justify-content: space-between !important;
    }
    .menu_desplegable
    {
        opacity: 0;
        position: absolute;
        top:75px;
        right:0px;
        width: 250px;
        padding: 10px;
        border-radius: 5px 0 0 5px;
        align-items: flex-start !important;
        padding-left: 10px !important;
        flex-direction: column;
        background-color: white;
    }
    .menu_desplegable li
    {
        width: 100%;
        border-bottom: 1px solid var(--color_botones_slider);
    }
    .boton_header
    {
        display: flex;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*penultima parte*/
.h_seccion
{
    height: 60vh;
    overflow: hidden;
}
.color_fondo_penultimo
{
    background-color: var(--color_azul_fuerte);
}
.img_circulo_animados
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: tamaño_img 3s infinite;
}

@keyframes tamaño_img 
{
    0%,100% 
    {
        scale: 1;
    }
    50% 
    {
        scale: 1.5;
    }
}

/*responsive*/
@media (max-width: 570px)
{
    .h_seccion
    {
        height: 70vh;
    }
}
@media (max-width: 380px)
{
    .h_seccion
    {
        height: 100vh;
    }
}

/*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);
    }
}