@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
}

:root{
    --azul-principal: #1a73e8ff;
    --width_div_info: 50%;
    --width_div_img: 50%;
}

.header_select_app{
    width: 100%;
    /* height: 300px; */
    height: auto;
    background-color: var(--azul-principal);
    color: white;
    display: flex;
    flex-direction: column;
}

.top_bar_header{
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 5px;
    justify-content: space-between;
    padding: 5px 8px;
}

.images_header{
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-top: 5px;
    justify-content: space-between;
    /* padding: 2px 5px; */
}

.body_landing{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px auto;
    padding: 15px 10px;
    /* background-color: #f9f9f9; */
}

.infos_iniciais{
    width: var(--width_div_info);
}

.title_landing{
    line-height: 50px;
}

.negrito_text_landding{
    font-weight: 600;
    color: black;
    text-decoration: none;
    color:var(--azul-principal);
    margin-left:3px;
    margin-right:5px;
}

.texto_info_principal_landing{
    font-weight: 300;
}

.texto_info_principal_landing:nth-child(1){
    margin-top: 15px;
}


.img_landding{
    width: var(--width_div_img);
}


.buttons_body_landding{
    width: 100%;
    margin-top: 10px;
    display: flex;   
    align-items: center; 

}

.button_landding{
    /* width: 260px; */
    width: max-content;
    height: 55px;
    background-color: var(--azul-principal);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    margin-top:15px ;
    margin-left:15px ;
    
    cursor: pointer;
    font-weight: 500;
    padding: 2px 15px;

    text-decoration: none;
}


.button_landding:hover{
    background-color: transparent;
    color: var(--azul-principal);
    border: 1.3px solid var(--azul-principal);
}

.button_landding:nth-child(1){
    margin-left:0 ;
}

.card_sistemas{
    /* width: 95%; */
    width: 100%;
    margin: 0px auto;
    background-color: #f9f9f9;
    min-height: 460px;
    position: relative;
    top: -25px;
    /* z-index: 0 */
    ;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 90px;
}

.card{
    transition: all ease .3s;

    margin-top: 15px;
    width: 300px;
    height: 380px;
    border-radius: 10px;
    box-shadow: 0 0 10px -5px gray;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
}
/* 
.card:hover{
    width: 290px;
    height: 370px;
} */

.img_card{
    transition: all ease .3s;
    border-radius: 50%;
    height: 120px;
    width: 120px;
}

.card:has(.img_card:hover){
    padding-top: 0;
    height: auto;
    padding-bottom: 40px;
}

.img_card:hover{
    border-radius: 0%;
    width: 100%;
    height: auto;
}

.title_card{
    font-size: 24px;
    margin-top: 5px;
}

.descricao_card{
    width: 95%;
    margin-top: 8px;
    text-align: center;
    font-size: 14px;
}

.content_buttons{
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    width: 100%;

}

.botao_card{
    /* width: fit-content; */
    width: 100px;
    height: 35px;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 3px 7px; */
    background-color: forestgreen;
    color: white;
    border-radius: 35px;
    cursor: pointer;
}

.text_footer{
    font-size: 14px;
}

.botao_card:hover{
    background-color: rgb(12, 114, 12);
}


.footer{
    width: 100%;
    height: 50px;
    background-color:var(--azul-principal);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}

.icone_footer{
    color: rgb(95, 162, 248);
    font-size: 17px;
}

.icone_footer:hover{
    color: white;
}