@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    -webkit-tap-highlight-color: transparent;
}


body{
    font-family: 'Poppins', sans-serif;
    background-position: 50%;
    margin: 0;
    min-height: 100vh;
    background-color: #e9e9e9;
}

header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    padding: 0.8rem;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: white;
    position: fixed;
    z-index: 20;
}

main{
    padding-top: 70px;
}

.div_header{
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

a{
    text-decoration: none;
    color: black;
}

a:visited{
    text-decoration: none;
    color: black;
}

html{
    scrollbar-width: none;
}

.texto_header{
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.container_header{
    display: flex;
    gap: 0.8rem;
}

.texto_logo{
    margin: 0;
    background: linear-gradient(to right, #0d9488, #228fe9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.icone_abrir_menu{
    display: none;
}

.icone_fechar_menu{
    display: none;
    align-items: center;
    cursor: pointer;
}

.menu-lateral {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    z-index: 1000;
    padding: 20px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.menu-lateral a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.icone_abrir_menu,
.icone_fechar_menu {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.icone_fechar_menu {
    display: none;
}

@media (max-width: 670px){
    .container_header{
        display: none;
    }

    .icone_abrir_menu{
        display: flex;
        align-items: center;
        cursor: pointer;
    }
}