@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    background-color: #faf9f8;
}

.gradient {
    width: 100%;
    height: 8px;
    background: linear-gradient(82deg, #2245EB -1.13%, #00D9FB 55.38%, #07F49E 107.37%);
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 32px;
    overflow: hidden;
    background-color: #faf9f8;
}

.menu {
    width: 25%;
    height: 100%;
    border-radius: 52px;
    padding: 8px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu .logo {
    width: 100%;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-variavel {
    width: 45%;
    margin-top: 6px;
}

#line {
    width: 80%;
    border-top: 1px solid #dedee4;
}

.menu .time {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 12px;
}

.menu .time h1 {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    height: auto;

    padding: 8px;
    background-color: #ededf3;
    border-radius: 12px;
}

.menu .itens {
    width: 80%;
    margin: 8px;
    padding: 4px;

}

.menu .itens h1 {
    font-size: 16px;
    font-weight: 400;
    color: #5c5c5c;
    margin-top: 8px;
    margin-bottom: 8px;
}

.menu .itens .list-itens ul {
    list-style-type: none;
}

.menu .itens .list-itens ul li {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 8px;
}

.menu .itens .list-itens ul li a {
    display: flex;
    align-items: center;
}

.menu .itens .list-itens ul li .icon {
    width: 22px;
    height: 22px;
    fill: #c0c0d3;
    margin-right: 10px;
    margin-left: -10px;
}

.menu .itens .list-itens ul li span {
    font-size: 14px;
    font-weight: 300;
}

.menu .itens .list-itens ul li .new-tag {
    font-size: 12px;
    font-weight: 400;
    background-color: rgb(0, 122, 255, 0.35);
    color: #007AFF;
    border-radius: 4px;
    padding-left: 4px;
    padding-right: 4px;
    margin-left: 12px;
}



.menu .social {
    width: 80%;
    margin: 8px;
    padding: 4px;

}

.menu .social h1 {
    font-size: 16px;
    font-weight: 400;
    color: #5c5c5c;
    margin-top: 8px;
    margin-bottom: 8px;
}

.menu .social .social-list ul {
    list-style-type: none;
}

.menu .social .social-list ul li {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 8px;
}

.menu .social .social-list ul li a {
    display: flex;
    align-items: center;
}

.menu .social .social-list ul li svg {
    width: 22px;
    height: 22px;
    fill: #c0c0d3;
    margin-right: 10px;
    margin-left: -10px;
}

.menu .social .social-list ul li span {
    font-size: 14px;
    font-weight: 300;
}


.yammer-frame {
    width: 70%;
    height: 100%;
    padding: 12px;
    background-color: #faf9f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.yammer-frame .footer {
    width: 100%;
    height: 4px;
    margin-top: 10px;
    background-color: transparent;
    text-align: center;
    font-size: 10px;
    font-weight: 400;
    color: #596370;
}

/* HOVER */

.menu .itens .list-itens ul li:hover {
    color: #2245eb;
    fill: #2245eb;
}

.menu .itens .list-itens ul li:hover svg {
    fill: #2245eb;
    /* Cor do ícone ao passar o mouse */
}

.menu .social .social-list ul li:hover {
    color: #2245eb;
    fill: #2245eb;
}

.menu .social .social-list ul li:hover svg {
    fill: #2245eb;
    /* Cor do ícone ao passar o mouse */
}

/* AJUSTE DO LINK */

a:link {
    text-decoration: none;
    color: inherit;
}

a:visited {
    text-decoration: none;
    color: inherit;
}

/* Ajuste da ScrollBar */

body::-webkit-scrollbar {
    width: .8em;
}

body::-webkit-scrollbar-track {
    margin-block: .6em;
}

body::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 16px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #89898e;
    border-radius: 16px;
}

body::-webkit-scrollbar-button {
    display: none;
}