@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;
}

a{
    text-decoration: none;
}

a:visited{
    text-decoration: none;
}

.logo_voxscene{
    height: 40px;
    width: 39.19px;
    object-fit: contain;
}

input {
    outline-color: black;
}

textarea{
    outline-color: black;
}

main{
    flex: 1;
    width: 100%;
    overflow: auto;
}

header{
    background: radial-gradient(
        circle at top left, #4C007C 0%, 
        #020094 20%,                     
        #0012B0 70%,                    
        #0E0136 100%                    
    );
    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;
}

.avatar_base_header{
    height: 41px;
    width: 41px;
    align-self: center;
    border-radius: 50%;
    border: 2px solid white;
    box-sizing: border-box;
    cursor: pointer;
}

.titulo_pagina{
    font-size: 20px;
    font-weight: 500;
    color: black;
}

select{
    width: 100%;
    padding: 10px;
    padding-right: 40px; 
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff url('../img/down-arrow.png') no-repeat right 10px center;
    background-size: 16px;
    color: #333;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}


/* FOOTER */
footer{
    background-color: #202224;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    padding-bottom: calc(0.8rem + env(safe-area-inset-bottom));
    padding-top: calc(0.8rem + env(safe-area-inset-bottom));
    box-sizing: border-box;
}

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

.nav_ativo{
    filter: brightness(0) saturate(100%) invert(40%) sepia(80%) saturate(5027%) hue-rotate(199deg) brightness(101%) contrast(101%);
}

.div_footer_icones{
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    gap: 0.2rem;
}

.icones_footer{
    font-size: 20px;
    width: 24px;
    height: 24px;
    object-fit: contain;
}
/* FOOTER */

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

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

.menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

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

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

.estilo_menu{
    background-color: #202224;
    padding: 0.6rem;
    border-radius: 4px;
    font-size: 22px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.texto_app_header{
    color: white;
    font-size: 16px;
    font-weight: 600;
}
/* MENU LATERAL */