@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'JetBrains Mono', monospace;
}
body {
    padding-top: 50px;
    flex-direction: column;
    min-height: 100vh;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background: url('img/wallpaper-iconmenu/test03.png') no-repeat center center fixed;
}

/* Menu */
header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    width: 40px; /* ajuste o tamanho conforme necessário */
    margin-right: 10px; /* ajuste o espaçamento conforme necessário */
}

.nav-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.nav-menu-icon {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff9;
}

.nav-login a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-login a:hover {
    background-color: #fff;
    color: #000;
}

/* tentativa de responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-menu-icon {
        display: block;
    }

    .nav-login a:hover {
        background-color: #fff;
        color: #000;
    }
}
/* Main */

.wraper-main{
    padding: 0 10px;
    display: flex;
    margin:0 auto;
    justify-content: space-around;
}

.posts{
    width: 60%;
}
.post-single {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 30px;
    background-color: #2a3a4d;
    color: #fff;
    padding: 20px 0;
    border-radius: 20px;
    
}
.post-content{
    padding:0 30px;
}

.post-content p > img{
    width: 30px; 
    height: 30px;
    border-radius: 15px; 
    margin-bottom: -10px;
    margin-right: 10px;
}

.post-content img{
    width: 90%;
    margin:10px 0;
    border-radius: 20px;
}

.post-content h3{
    margin-top: 15px;
    margin-bottom: 15px;
}

.icon-interacao{
    width: 50%;
    display: flex;
    align-items: space-between;
    font-size: 20px;
}

.icon-interacao p{
    height: 10%;
    padding:10px 0;
}



.siderbar{
    width: 30%;
}
.comunidades{
    background-color: #2a3a4d;
    padding: 20px;
    border-radius: 20px;
}

.comunidades-single{
    margin:0 auto;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
}

.comunidades h2{
    color: #fff;
    padding-top: 50px;
    padding-left: 5px;
    padding-bottom: 10px;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(69,69,158,1) 41%, rgba(0,212,255,1) 100%);
}

.comunidades-single img{
    margin-right: 10px;
    margin-left: 10px;
    vertical-align: middle ;
}
.comunidades-single button{
    background-color: #fff;
    font-weight: bold;
    border-radius: 10px;
    border: 0;
    padding: 10px;
    width: 60px;
    margin-left: 10px;
    transition: all 0.3s;
}
.comunidades button.view-all{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 0;
    padding: 10px;
    border-radius: 20px;
    transition: all 0.3s;
} 

.comunidades button:hover{
    transform: translateX(5px);
    transform: translateY(5px);
    background-color: #086bad;
    color: #fff;
}