@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body{
    background-color: #dcdce5;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "Roboto", sans-serif;
    margin: 0;
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.titulo_pagina{
    text-align: center;
    font-weight: 400;
    font-size: 22px;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    background-color: #358c3e;
}

.texto_logo{
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    gap: 0.5rem;
}

.titulo_header{
    margin: 0;
    font-size: 36px;
}

.borda_menu_header{
    font-size: 29px;
    color: white;
    background-color: #262627;
    padding: 0.5rem 0.6rem;
    border-radius: 10px;
    cursor: pointer;
    width: 25px;
    text-align: center;
}

footer{
    height: 70px;
    background-color: #358c3e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-bottom: 0.5rem;
    z-index: 2;
    
}

.texto_footer{
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.img_header{
    height: 100%;
    object-fit: contain;
}

.img_footer{
    width: 32px;
    height: 32px;
}

.logo_img_footer{
    height: 80%;
}

.div-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    width: 90px;
}

.div-footer-circulo{
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.img-circular-pet{
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background-color: green;
    border: 4px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.esconder{
    display: none;
    transition: all 1s;
}

.esconder_menu{
    right: -100%;
    transition: 0.5s ease-in;
    
}

.mostrar{
    display: flex;
}

.mostrar_menu{
    right: 0;
}

.menu_header{
    position: absolute;
    width: 100%;
    top: 70px;
    bottom: 78px;
    background-color: #358c3e;
    z-index: 9999;
    text-align: center;
    color: #FFF;
    height: 100vh;
    padding: 20px;
    transition: 0.5s ease-in;
    box-sizing: border-box;
}
.menu_header h2{
    padding: 20px;
}
a{
    text-decoration: none;
    color: white;
}

a:visited{
    color: white;
}