@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    border: 0;
    font-family: "Inter", sans-serif;
    -webkit-tap-highlight-color: transparent;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input {
    outline-color: black;
}

textarea{
    outline-color: black;
}

a{
    text-decoration: none;
}

a:visited{
    text-decoration: none;
}

main {
    flex: 1;
    width: 100%;
    overflow: auto;
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

main.empurrado {
    transform: translateX(50%);
}


/* HEADER */
header{
    background-color: #E4EED6;
    width: 100%;
    padding: 0.6rem 1rem;
    padding-top: calc(0.6rem + env(safe-area-inset-top));
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo_header{
    height: 100%;
    cursor: pointer;
}

.icone_notificacoes{
    color: #719273;
    font-size: 24px;
    cursor: pointer;
}

.texto_economia{
    font-weight: 400;
    font-size: 14px;
    color: #67876F;
    text-align: center;
}

.valor_economia{
    font-weight: 600;
    font-size: 18px;
    color: #67876F;
    text-align: center;
}
/* HEADER */

/* FOOTER */
footer{
    background-color: #719273;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    box-sizing: border-box;
    height: 80px;
    z-index: 10000;
}

.texto_footer{
    font-size: 12px;
    font-weight: 400;
}

.div_footer_icones{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.icones_footer{
    font-size: 20px;
    width: 20px;
}
/* FOOTER */

/* MENU LATERAL */
.menu-lateral {
    position: fixed;
    top: calc(72px + env(safe-area-inset-top));
    bottom: 0;
    left: -100%;
    width: 50%;
    background-color: #719273;
    color: white;
    padding: 40px 20px;
    transition: left 0.3s ease-in-out;
    z-index: 9999;
    box-sizing: border-box;
}

.menu-lateral.ativo {
    left: 0;
}

.menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: start;

}

.menu-links li {
    margin: 15px 0;
}

.menu-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.menu-links a:hover {
    color: #FFFDF1;
}

.estilo_menu{
    padding: 0.4rem;
    border-radius: 4px;
    font-size: 22px;
    cursor: pointer;
    color: #719273;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}
/* MENU LATERAL */
