/* RESET E CORES BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --bg-sidebar: #2d1602;
    --bg-feed: #211001;
    --text-primary: #f2e2d8;
    --text-secondary: #ba9b88;
    --accent-color: #d88145;
    --border-color: rgba(255, 255, 255, 0.08);
}

body {
    background-color: var(--bg-feed);
    color: var(--text-primary);
    min-height: 100vh;
}
/* Largura da barra de rolagem */
::-webkit-scrollbar {
    width: 8px; /* Deixa a barra bem fina e elegante */
}

/* Fundo da barra (trilho) */
::-webkit-scrollbar-track {
    background: #120c08; /* Tom escuro combinando com o fundo do seu site */
}

/* O indicador que se move (alça/thumb) */
::-webkit-scrollbar-thumb {
    background: #3a281e; /* Tom marrom discreto */
    border-radius: 10px; /* Bordas arredondadas */
    border: 2px solid #120c08; /* Espaçamento ao redor para efeito refinado */
}

/* Cor da barra ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
    background: #a87b51; /* Destaque num tom quente/dourado ao rolar */
}

/* Suporte para Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #3a281e #120c08;
}

/* ESTILO DA LOGO / BANNER (GERAL E DESKTOP) */
.logo-img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    
    /* Cantos arredondados elegantes */
    border-radius: 12px;
    
    /* Sombra suave para dar destaque sobre o fundo marrom */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    
    /* Borda sutil de acabamento */
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Transição suave ao passar o mouse */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Efeito ao passar o mouse */
.logo-img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Esconde o primeiro item do menu (Início) no Desktop */
.nav-menu .nav-item[href="index.html"] {
    display: none;
}
/* Espaçamento entre a Logo e os botões do menu no Desktop */
.nav-menu {
    margin-top: 2rem; /* Ajuste este valor (ex: 2.5rem ou 3rem) se quiser mais distante */
}

/* LAYOUT PRINCIPAL */
.blog-container {
    display: flex;
    min-height: 100vh;
}

/* ÍCONES PNG */
.icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: inline-block;
}

.filter-btn .icon-img {
    width: 28px;
    height: 28px;
}

.post-actions .icon-img {
    width: 26px;
    height: 26px;
}

/* 1. SIDEBAR (MENU LATERAL) */
.sidebar {
    width: 260px;
    background-color: var(--bg-sidebar);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    border-right: 1px solid var(--border-color);
    z-index: 100;
}

.logo-placeholder {
    background-color: #dcdcdc;
    color: #333;
    padding: 1rem;
    font-size: 0.8rem;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.sidebar-footer {
    margin-top: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text-primary);
}

/* 2. FEED CONTAINER */
.feed-container {
    margin-left: 260px;
    width: calc(100% - 260px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem 2rem 2rem;
    position: relative;
}

/* 3. FILTRO NO TOPO */
.feed-header {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

/* FEED & POST CARDS */
.posts-list {
    width: 100%;
    max-width: 650px;
}

.post-card {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2.5rem;
    width: 100%;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: #e0e0e0;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.author-name-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-time {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.translate-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    margin-top: 0.2rem;
}

.post-content {
    margin-bottom: 1rem;
}

.post-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.read-more-btn {
    color: var(--accent-color);
    font-weight: bold;
    cursor: pointer;
    margin-left: 0.3rem;
}

.post-media {
    width: 100%;
    margin-bottom: 1.2rem;
}

.post-image {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 450px;
    display: block;
}

.post-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.action-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
}

/* ESTRUTURA DE MODAIS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: var(--bg-sidebar);
    width: 90%;
    max-width: 600px;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    border: 1px solid var(--border-color);
}

.close-modal-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
}

.modal-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-item {
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-size: 0.95rem;
}
/* Ajusta o cabeçalho para distribuir o título e o botão lado a lado */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 35px; /* Espaço para não cobrir o botão '✕' de fechar */
    margin-bottom: 1rem;
}

/* Estilo do botão Limpar Todas */
.clear-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary, #e0e0e0);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.clear-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Estilo para a mensagem de lista vazia */
.empty-notifications-msg {
    text-align: center;
    padding: 2rem 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.modal-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.3rem;
}

.empty-msg {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem 0;
}

/* ABA E VISUALIZAÇÃO DE PERFIL / AUTENTICAÇÃO */
.settings-view,
.profile-view {
    display: none;
    flex-direction: column;
    gap: 1.2rem;
}

.settings-view.active,
.profile-view.active {
    display: flex;
}

.auth-tabs,
.modal-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.auth-tab-btn,
.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.auth-tab-btn.active,
.tab-btn.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    font-weight: 600;
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.auth-form.active {
    display: flex;
}

/* FORMULÁRIOS & CAMPOS */
.profile-header-edit,
.avatar-edit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.change-photo-btn {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
}

.change-photo-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.input-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.setting-input,
.setting-textarea {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    width: 100%;
}

.setting-textarea {
    resize: vertical;
    min-height: 70px;
}

.setting-link-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.link-btn {
    background: transparent;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
}

.host-badge {
    background-color: var(--accent-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    align-self: flex-start;
    text-transform: uppercase;
}

.history-box,
.history-list {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem;
    max-height: 200px;
    overflow-y: auto;
    font-size: 0.85rem;
}

.save-settings-btn {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: opacity 0.2s;
}

.save-settings-btn:hover {
    opacity: 0.9;
}

.logout-btn {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #ff6b6b;
    padding: 0.7rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.2s;
}

.logout-btn:hover {
    background-color: rgba(220, 53, 69, 0.4);
}

/* MODAL DE FILTRO */
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.filter-date-inputs {
    display: flex;
    gap: 1rem;
}

.date-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.filter-input-date {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    outline: none;
}

.filter-quick-dates {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.chip-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip-btn:hover,
.chip-btn.active {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.filter-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.topic-chip {
    cursor: pointer;
}

.topic-chip input {
    display: none;
}

.topic-chip span {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.topic-chip input:checked+span {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.apply-filter-btn {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: opacity 0.2s;
}

.apply-filter-btn:hover {
    opacity: 0.9;
}

/* DIVISOR "OU ENTRE COM" */
.social-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.2rem 0 0.8rem 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.social-divider span {
    padding: 0 0.8rem;
}

/* BOTÕES GOOGLE E APPLE */
.social-login-container {
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.65rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

.social-btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.error-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.25rem;
    min-height: 1.2rem;
}

.error-msg {
    color: #ff6b6b;
    font-size: 0.85rem;
    font-weight: 500;
}

.forgot-password-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.25rem;
}

.forgot-password-link {
    color: #c98a58;
    font-size: 0.85rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.forgot-password-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* CUSTOMIZAÇÃO DO BOTÃO DE UPLOAD */
#postImageFileInput {
    cursor: pointer;
    background-color: #2b1b17;
    color: #f5f0eb;
    border: 1px solid #5a3d31;
}

#postImageFileInput::file-selector-button {
    background-color: #e5b88f;
    color: #241613;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 0.8rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

#postImageFileInput::file-selector-button:hover {
    background-color: #d19a6a;
    transform: scale(1.02);
}


/* Esconde a barra branca feia do Chrome/Safari/Edge e Firefox */
.custom-scroll {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE e Edge antigo */
}

.custom-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari e Opera */
}


/* ==========================================================================
    PERSONALIZAÇÃO DA SCROLLBAR DO MODAL
   ========================================================================== */

/* 1. Define a largura da barra */
.modal-content::-webkit-scrollbar {
    width: 8px;
    /* Deixa a barra bem fininha */
}

/* 2. O fundo da barra (Trilho) */
.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    /* Transparente / escuro para harmonizar */
    border-radius: 8px;
}

/* 3. O ponteiro que você arrasta (Thumb) */
.modal-content::-webkit-scrollbar-thumb {
    background: #e5b88f;
    /* Cor elegante combinando com os detalhes do site */
    border-radius: 8px;
}

/* 4. Efeito ao passar o mouse por cima */
.modal-content::-webkit-scrollbar-thumb:hover {
    background: #c99a72;
    /* Um tom ligeiramente mais escuro no hover */
}

/* Compatibilidade com Firefox */
.modal-content {
    scrollbar-width: thin;
    scrollbar-color: #e5b88f rgba(0, 0, 0, 0.2);
}
/* MODAL DE PERFIL PÚBLICO */
.profile-card-modal {
    max-width: 320px !important;
    text-align: center;
    padding: 24px 20px !important;
    border-radius: 16px !important;
}

.public-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.public-profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e07a3f; /* Laranja de destaque */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.public-profile-name {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.public-profile-bio {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
    word-break: break-word;
}

/* Deixa a foto do comentário com ponteiro de clique */
.comment-user-avatar, .comment-avatar {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.comment-user-avatar:hover, .comment-avatar:hover {
    opacity: 0.85;
    transform: scale(1.08);
}


/* Modal de Perfil Público */
#userProfileModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75); /* Fundo escuro semitransparente */
    backdrop-filter: blur(4px);      /* Efeito de desfoque de fundo (opcional) */
    display: none;                    /* Mudar para 'flex' via JS */
    justify-content: center;
    align-items: center;
    z-index: 999999 !important;       /* Garante prioridade máxima de sobreposição */
}

/* Estilo para a tag <footer> */
footer {
    width: 100%;
    padding: 20px 0;
    margin-top: auto; /* Garante que o footer vá para o final em páginas com pouco conteúdo */
    
    /* Centralização dos elementos */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px; /* Espaçamento entre as linhas do rodapé */

    /* Estilização opcional (mude as cores conforme o tema do seu blog) */
    background-color: #2d1602; 
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Estilo para os links dentro do footer */
footer a {
    color: #d1d1d1;
    text-decoration: underline;
    transition: color 0.35s ease;
}

footer a:hover {
    color: #e67e22; /* Cor ao passar o mouse */
}

/* Aviso de Termos e Privacidade no Login */
.terms-notice {
    font-size: 0.8rem;
    color: #a0a0a0;
    text-align: center;
    margin-top: 14px;
    line-height: 1.4;
    padding: 0 10px;
}

.terms-notice a {
    color: #e67e22; /* Cor de destaque (ajuste se seu tema usar outro tom) */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-notice a:hover {
    color: #f39c12;
}











/* RESPONSIVIDADE (DISPOSITIVOS MÓVEIS) */
@media (max-width: 768px) {
    /* Garante que a área principal encoste na barra sem vãos */
    main, .main-container {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    footer {
        width: 100%;
        margin-top: auto;
        margin-bottom: -15px;
        padding: 16px 0;
        /* Se a barra de opções inferior tiver position: fixed, 
           descomente a linha abaixo e coloque a altura exata da barra: */
        /* margin-bottom: 60px; */ 
    }



    .blog-container {
        flex-direction: column;
    }

    /* 1. COMPACTA A SIDEBAR E A LOGO NO TOPO AO MÁXIMO */
    .sidebar {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        position: relative !important;
        padding: 0 !important;
        margin: 0 !important;
        border-right: none !important;
        background: transparent !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    /* Ajusta a área da logo para ficar bem justa */
    .logo-area {
        width: 100% !important;
        padding: 12px 16px !important; /* Espaçamento equilibrado em volta */
        margin: 0 !important;
        background-color: #2d1602 !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .logo-img {
        width: 85% !important; /* Faz o banner ocupar a maior parte da largura sem encostar nas bordas */
        max-width: 320px !important;
        height: auto !important;
        max-height: 70px !important;
        
        border-radius: 12px !important; /* Cantos arredondados harmoniosos */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .logo-placeholder {
        margin: 0 !important; /* Remove margens que a caixa cinza possa ter */
    }

    /* Esconde os textos dos botões no celular */
    .nav-item span {
        display: none !important;
    }

    /* 2. BARRA FIXA INFERIOR (3 ícones: Início, Notificações e Favoritos) */
    .nav-menu {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        top: auto !important;
        
        width: 75% !important;
        height: 60px !important;
        
        background-color: #2d1602 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: center !important;
        
        z-index: 9999 !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-menu .nav-item {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        height: 100% !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 3. BARRA FIXA INFERIOR (1 ícone: Configurações no canto direito) */
    .sidebar-footer {
        position: fixed !important;
        bottom: 0 !important;
        right: 0 !important;
        
        width: 25% !important;
        height: 60px !important;
        
        background-color: #2d1602 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        
        z-index: 10000 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .sidebar-footer .nav-item {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Tamanho padronizado das imagens de todos os ícones da barra */
    .nav-menu img,
    .nav-menu svg,
    .sidebar-footer img,
    .sidebar-footer svg,
    .icon-img {
        width: 26px !important;
        height: 26px !important;
        object-fit: contain !important;
    }

    /* 4. REFORMULA O FEED PARA FICAR LOGO ABAIXO DA LOGO */
    .feed-container {
        margin: 0 !important;
        padding-top: 12px !important;    /* Espaçamento pequeno entre o topo e o "Painel da Host" */
        padding-bottom: 70px !important; /* Espaço para o menu inferior não cobrir o último post */
        padding-left: 12px !important;
        padding-right: 12px !important;
        width: 100% !important;
    }

    .feed-header {
        right: 1rem;
    }

    .modal-content {
        padding: 1.2rem;
        width: 95%;
    }

    body {
        padding-bottom: 70px !important;
    }
}