        /* Resets básicos para garantir 100% de largura */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: Arial, sans-serif; display: flex; flex-direction: column; min-height: 100vh; }

        /* TOPO 100% */
        header {
            width: 100%;
            background-image: linear-gradient(to bottom, #000000, #2f2f4f);
            color: white;
            padding: 5px;

           .filha-1 { flex: 8; background-color: #2f2f4f; display: inline-block;} /* Principal */
           .filha-2 { flex: 1; background-color: #2f2f4f; display: inline-block; text-align: right;}    /* Sidebar */

        }

        /* CONTAINER DAS COLUNAS */
        .container {
            display: flex;
            flex: 1; /* Faz o conteúdo ocupar o espaço entre topo e rodapé */
            width: 100%;
            flex-direction: row; /* Colunas lado a lado no desktop */
        }

        /* COLUNAS */
        .coluna { padding: 20px; }
        .coluna-1 { flex: 3; background-color: #2f2f4f;}
        .coluna-2 { flex: 2; background-color: #2f2f4f;}

        #rodape {
            background-image: linear-gradient(to top, #2f2f4f, #000000);
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            text-align: left;
        }

        .rodape-col {
            flex: 1;
            min-width: 280px;
        }
   <style>
        #rodape a {
            color: #fff;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 5px;
        }

        .dir-text { text-align: right; }

        /* AJUSTES PARA TELAS PEQUENAS (MOBILE) */
        @media (max-width: 768px) {
            #rodape {
                text-align: center;
                justify-content: center;
            }
            .container {
                flex-direction: column; /* Colunas ficam uma embaixo da outra */
            }
            .coluna { width: 100%; }
            .dir-text { text-align: center; }
            .login-container { padding: 20px; }
        }

.post-form { 
        background: #2f2f4f; 
        border: 2px solid #2f2f4f; 
        border-radius: 10px; 
        padding: 20px; 
        margin-bottom: 30px;
    }
    .post-form textarea {
        width: 100%;
        background: #ffffff;
        border: 1px solid #ffffff;
        color: #000000;
        padding: 10px;
        border-radius: 2px;
        resize: none;
        margin-bottom: 10px;
    }
    .post-form-footer { display: flex; justify-content: space-between; align-items: center; }
    
    /* Estilo para o input de arquivo (escondido para ficar mais bonito) */
    .btn-file { color: #2f2f4f; cursor: pointer; font-size: 0.9rem; }
    .btn-postar { 
        background: #ffffff; 
        color: #2f2f4f; 
        border: none; 
        padding: 8px 25px; 
        border-radius: 0px; 
        font-weight: bold; 
        cursor: pointer; 
    }

.preview-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
   gap: 1rem;
   padding: 1rem;
   margin: 1rem 5%;
   background: rgba(255, 255, 255, 0.03); /* Quase transparente */
   border-radius: 20px;
   backdrop-filter: blur(10px);
}
.card-preview {
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(255, 217, 102, 0.2); /* Borda dourada sutil */
   padding: 0.5rem;
   border-radius: 12px;
   text-align: center;
}
.card-preview img {
   width: 50%;
   height: 90px;
   object-fit: cover;
   border-radius: 8px;
   filter: brightness(0.9); /* Para não estourar no fundo escuro */
}

0px;
   text-align: right;
}
.preview-title {
   font-size: 1.1rem;
   color: #ffd966;
   margin-bottom: 1rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
}
.horizontal-scroll {
   display: flex;
   gap: 1rem;
   overflow-x: auto;
   padding-bottom: 1rem;
   scrollbar-width: thin;
   scrollbar-color: #ffd966 rgba(255,255,255,0.1);
}
/* Esconder barra de rolagem no Chrome/Safari */
.horizontal-scroll::-webkit-scrollbar { height: 6px; }
.horizontal-scroll::-webkit-scrollbar-thumb { background: #ffd966; border-radius
.mini-card {
   min-width: 140px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 15px;
   padding: 8px;
   border: 1px solid rgba(255, 255, 255, 0.1);
   transition: 0.3s;
   cursor: pointer;
}
.mini-card:hover {
   border-color: #ffd966;
   background: rgba(255, 255, 255, 0.1);
}
.mini-card img {
   width: 90%;
   height: 140px;
   object-fit: cover;
   border-radius: 10px;
   margin-bottom: 8px;
}
.mini-card .info-tag {
   font-size: 0.75rem;
   color: #fff;
   display: block;
   margin-bottom: 2px;
}
.mini-card .price-tag {
   font-size: 0.85rem;
   color: #ffd966;
   font-weight: bold;
}

.hero {
    padding: 10px;
    text-align: center;
    background: linear-gradient(180deg, #000, #1a001f);
}

.hero h1 {
    margin: 0;
    font-size: 32px;
}

.hero p {
    color: #aaa;
}

/* STATUS */
.status {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px;
    background: #111;
    font-size: 14px;
}

.status span {
    color: #a020f0;
}

/* FILTROS */
.filtros {
    display: flex;
    gap: 10px;
    padding: 20px;
    justify-content: center;
}

.filtros input, .filtros select {
    padding: 8px;
    border-radius: 6px;
    border: none;
}

.paginacao {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
    padding: 15px 0;
}

/* Botões gerais */
.btn-pag {
    display: inline-block;
    padding: 10px 16px;
    background: #4a4a6f; /* mais claro que o fundo (#2f2f4f) */
    color: #ffdead;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #5a5a7f;
    min-width: 40px;
    text-align: center;
}

.btn-pag:hover {
    background: #cf2b4f; /* vermelho de destaque */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(207, 43, 79, 0.3);
    border-color: #cf2b4f;
}

/* Página ativa (onde o usuário está) */
.btn-pag.ativo {
    background: #ffdead; /* amarelo/dourado */
    color: #1a1a2e;
    border-color: #ffdead;
    cursor: default;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 222, 173, 0.2);
}

.btn-pag.ativo:hover {
    background: #ffdead;
    color: #1a1a2e;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 222, 173, 0.2);
}

/* Botões desabilitados (Anterior/Próximo quando não há) */
.btn-pag.desabilitado {
    background: #3a3a5f;
    color: #8888aa;
    border-color: #3a3a5f;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-pag.desabilitado:hover {
    background: #3a3a5f;
    color: #8888aa;
    transform: none;
    box-shadow: none;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .btn-pag {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 35px;
    }
    
    .paginacao {
        gap: 5px;
        padding: 10px 0;
    }
}

/* Indicador de páginas */
.info-paginas {
    color: #ffdead;
    font-size: 13px;
    margin-right: 10px;
    opacity: 0.8;
}



/* Fundo escuro que cobre a tela inteira */
.modal-camada {
    display: none; /* Começa escondido */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Fundo semi-transparente */
}

/* Caixa branca do formulário centralizada */
.modal-conteudo {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Botão de fechar (X) */
.fechar-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
}
.fechar-modal:hover { color: #000; }

/* Estilo básico dos inputs do formulário */
.modal-conteudo input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.modal-conteudo button {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

/* Nome único: evitamos 'modal-overlay' */
.tour-modal-fundo {
    position: fixed !important; /* O !important garante prioridade máxima */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.75) !important; /* Fundo preto bem visível */
    display: none; 
    align-items: center;
    justify-content: center;
    z-index: 9999999 !important; /* Fica acima do chat e de tudo */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Nome único: evitamos 'modal-content' */
.tour-modal-caixa {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: 8px !important;
    width: 450px !important;
    max-width: 90% !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
    color: #333333 !important; /* Garante cor escura para o texto */
    text-align: left !important;
}

/* Classe de ativação com nome exclusivo */
.tour-modal-fundo.tour-ativo {
    display: flex !important;
    opacity: 1 !important;
}

.tour-modal-fundo.tour-ativo .tour-modal-caixa {
    transform: translateY(0) !important;
}

.hidden-reply {
    display: none;
}

.btn-ver-mais-respostas {
    background: transparent;
    border: none;
    color: #ffdead;
    cursor: pointer;
    margin-left: 35px;
    margin-top: 5px;
    font-size: 13px;
}

.btn-ver-mais-respostas:hover {
    text-decoration: underline;
}