* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Lucida Grande", Helvetica, Arial, sans-serif;
}

body {
    background-color: #f3f2ef;
    color: rgba(0, 0, 0, 0.9);
}

/* Navbar */
header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    height: 52px;
}

.nav-container {
    width: 100%;
    max-width: 1128px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #d11149; /* Cor paródia diferente do azul tradicional */
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    background: #d11149;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 2px;
}

.nav-search input {
    background-color: #eef3f8;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    width: 280px;
    font-size: 14px;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nav-links li a:hover {
    color: rgba(0, 0, 0, 0.9);
}

/* Layout Principal */
.main-container {
    max-width: 1128px;
    margin: 24px auto;
    display: grid;
    grid-template-columns: 225px 1fr 300px;
    gap: 24px;
    padding: 0 16px;
}

/* Cartões Genéricos */
.card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 8px;
}

/* Sidebar Esquerda */
.profile-card {
    text-align: center;
    padding-bottom: 12px;
}

.profile-bg {
    background-color: #a0a0a0;
    height: 54px;
}

.profile-pic {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid white;
    background: #d11149;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: -36px auto 12px auto;
}

.profile-card h3 {
    font-size: 16px;
    font-weight: 600;
}

.profile-card p {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    padding: 4px 12px;
}

/* Feed Central */
.feed-box {
    padding: 12px 16px;
}

.post-input-box {
    display: flex;
    gap: 12px;
    align-items: center;
}

.post-input-box input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 35px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    background: #fff;
}

.post {
    padding: 12px 16px;
}

.post-header {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.post-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.post-author h4 {
    font-size: 14px;
    font-weight: 600;
}

.post-author p {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.post-content {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.post-actions {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 8px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 650;
}

.post-actions span {
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
}

.post-actions span:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

/* Sidebar Direita */
.news-card {
    padding: 12px 16px;
}

.news-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.news-item {
    margin-bottom: 8px;
    font-size: 13px;
}

.news-item strong {
    display: block;
    font-weight: 600;
}

.news-item span {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.6);
}
