/* Configurações Gerais */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}
body { 
    background-color: #f6f6f6; 
    color: #333; 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
}
.container { 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}
.text-center { 
    text-align: center; 
}

/* Menu Superior / Header */
.main-header { 
    background-color: #fff; 
    border-bottom: 1px solid #e2e2e2; 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
}
.header-grid { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.logo { 
    font-size: 24px; 
    font-weight: bold; 
    color: #6e0ad6; 
    text-decoration: none; 
}
.logo span { 
    color: #f28000; 
}
.nav-menu a { 
    text-decoration: none; 
    margin-left: 15px; 
    font-weight: 600; 
    font-size: 14px; 
}
.btn-login { 
    color: #6e0ad6; 
}
.btn-announce { 
    background-color: #f28000; 
    color: #fff !important; 
    padding: 10px 20px; 
    border-radius: 20px; 
    transition: background 0.2s; 
}
.btn-announce:hover { 
    background-color: #d67000; 
}

/* Banner de Busca (Estilo OLX) */
.search-banner { 
    background: linear-gradient(135deg, #6e0ad6 0%, #4c069c 100%); 
    padding: 60px 0; 
    color: #fff; 
}
.search-banner h1 { 
    font-size: 28px; 
    margin-bottom: 25px; 
}
.search-form { 
    display: flex; 
    gap: 10px; 
    max-width: 700px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 8px; 
    border-radius: 8px; 
}
.search-form input, .search-form select { 
    border: 1px solid #ddd; 
    padding: 12px; 
    border-radius: 4px; 
    font-size: 16px; 
    outline: none; 
}
.search-form input { 
    flex: 2; 
}
.search-form select { 
    flex: 1; 
    background: #fff; 
}
.search-form button { 
    background-color: #f28000; 
    color: #fff; 
    border: none; 
    padding: 0 25px; 
    border-radius: 4px; 
    font-size: 16px; 
    font-weight: bold; 
    cursor: pointer; 
}

/* Vitrine de Anúncios */
.page-content { 
    padding: 40px 20px; 
    flex: 1; 
}
.section-title { 
    font-size: 22px; 
    margin-bottom: 20px; 
    color: #4a4a4a; 
}
.ads-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
    gap: 20px; 
}
.ad-card { 
    background: #fff; 
    border-radius: 8px; 
    overflow: hidden; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
    transition: transform 0.2s; 
    cursor: pointer; 
}
.ad-card:hover { 
    transform: translateY(-3px); 
}
.ad-image img { 
    width: 100%; 
    height: 180px; 
    object-fit: cover; 
}
.ad-info { 
    padding: 15px; 
}
.ad-title { 
    font-size: 15px; 
    font-weight: 500; 
    height: 42px; 
    overflow: hidden; 
    margin-bottom: 8px; 
    color: #333; 
}
.ad-price { 
    font-size: 18px; 
    font-weight: bold; 
    color: #222; 
    margin-bottom: 8px; 
}
.ad-location { 
    font-size: 12px; 
    color: #777; 
    display: block; 
}

/* Rodapé */
.main-footer { 
    background-color: #fff; 
    border-top: 1px solid #e2e2e2; 
    padding: 20px 0; 
    font-size: 13px; 
    color: #666; 
    margin-top: auto; 
}
.main-footer p { 
    margin: 4px 0; 
}

/* Formulários e Página Detalhada do Anúncio */
.form-box { background: #fff; padding: 30px; border-radius: 8px; max-width: 600px; margin: 40px auto; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-weight: 600; color: #4a4a4a; font-size: 14px; }
.form-group input, .form-group textarea, .form-group select { padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 15px; outline: none; }
.form-group textarea { resize: vertical; height: 120px; }
.btn-submit { background-color: #f28000; color: #fff; border: none; padding: 14px; border-radius: 4px; font-size: 16px; font-weight: bold; cursor: pointer; width: 100%; transition: background 0.2s; }
.btn-submit:hover { background-color: #d67000; }

.ad-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; margin-top: 20px; }
.ad-detail-main { background: #fff; border-radius: 8px; overflow: hidden; padding: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.ad-detail-img img { width: 100%; max-height: 450px; object-fit: contain; background: #eaeaea; border-radius: 4px; }
.ad-detail-info { margin-top: 20px; }
.ad-detail-price { font-size: 28px; font-weight: bold; color: #222; margin: 15px 0; }
.ad-detail-desc { font-size: 16px; line-height: 1.6; color: #4a4a4a; border-top: 1px solid #eee; padding-top: 15px; }
.ad-detail-side { display: flex; flex-direction: column; gap: 20px; }
.ad-detail-card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.btn-contact { display: block; text-align: center; text-decoration: none; background-color: #6e0ad6; color: #fff; padding: 12px; border-radius: 4px; font-weight: bold; margin-top: 15px; }


/* ==========================================================================
   ESTILOS PARA AS TELAS DE LOGIN E CADASTRO DO USUÁRIO
   ========================================================================== */
.auth-box { 
    background: #fff; 
    padding: 30px; 
    border-radius: 8px; 
    max-width: 400px; 
    margin: 60px auto; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
}
.auth-box h2 { 
    margin-bottom: 20px; 
    color: #333; 
    text-align: center; 
}
.auth-footer { 
    text-align: center; 
    margin-top: 15px; 
    font-size: 14px; 
    color: #666; 
}
.auth-footer a { 
    color: #6e0ad6; 
    font-weight: bold; 
    text-decoration: none; 
}
.auth-footer a:hover { 
    text-decoration: underline; 
}
.alert-error { 
    background-color: #f8d7da; 
    color: #721c24; 
    padding: 12px; 
    border-radius: 4px; 
    margin-bottom: 15px; 
    font-size: 14px; 
    border: 1px solid #f5c6cb; 
}



/* ==========================================================================
   SUB-BARRA DE CATEGORIAS COMPACTA (ESTILO CABEÇALHO DA OLX)
   ========================================================================== */
.olx-subnav {
    background-color: #fff;
    border-bottom: 1px solid #e2e2e2;
    padding: 10px 0;
    width: 100%;
}
.olx-subnav-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto; /* Permite arrastar para o lado em telas menores */
    white-space: nowrap;
}
.olx-nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #4a4a4a;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 4px;
    position: relative;
    transition: color 0.2s;
}
.olx-nav-item:hover {
    color: #6e0ad6; /* Muda para o roxo da OLX ao passar o mouse */
}
/* Linha roxa decorativa que surge embaixo do link no efeito hover */
.olx-nav-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #6e0ad6;
    transition: width 0.2s;
}
.olx-nav-item:hover::after {
    width: 100%;
}
.olx-nav-icon {
    font-size: 15px;
}






/* ==========================================================================
   PAINEL DASHBOARD DO USUÁRIO & COMPONENTES DE PERGUNTAS
   ========================================================================== */
.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 30px; }
.dash-card { background: #fff; padding: 25px 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); text-align: center; border-bottom: 4px solid #6e0ad6; }
.dash-card.fav { border-bottom-color: #e74c3c; }
.dash-card.click { border-bottom-color: #2ecc71; }
.dash-card h3 { font-size: 13px; color: #7f8c8d; text-transform: uppercase; margin-bottom: 5px; }
.dash-card p { font-size: 32px; font-weight: bold; color: #2c3e50; }
.dash-links { display: flex; flex-direction: column; gap: 10px; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.dash-link-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 15px; background: #f8f9fa; border-radius: 6px; text-decoration: none; color: #333; font-weight: 600; font-size: 15px; transition: 0.2s; border: 1px solid #eee; }
.dash-link-item:hover { background: #6e0ad6; color: #fff; transform: translateX(3px); }

.qna-section { margin-top: 40px; background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.qna-title { font-size: 18px; margin-bottom: 15px; color: #222; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.question-item { background: #f8f9fa; padding: 15px; border-radius: 6px; margin-bottom: 15px; border-left: 4px solid #3498db; }
.question-text { font-weight: 600; color: #222; margin-bottom: 5px; font-size: 14px; }
.answer-text { color: #555; font-size: 14px; padding-left: 15px; position: relative; }
.answer-text::before { content: "↳ Vendedor: "; font-weight: bold; color: #6e0ad6; }
.qna-textarea { width: 100%; height: 80px; padding: 10px; border-radius: 4px; border: 1px solid #ddd; margin-bottom: 10px; font-family: inherit; font-size: 14px; }



/* ==========================================================================
   SISTEMA DE NOTIFICAÇÕES (BALÃOZINHO VERMELHO INTERATIVO)
   ========================================================================== */
.badge-notif {
    background-color: #dc3545;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 7px;
    border-radius: 50%;
    margin-left: 4px;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}
.notif-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-top: 25px;
    border: 1px solid #eee;
}
.notif-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.notif-item:last-child {
    border-bottom: none;
}
.notif-item.unread {
    background-color: #f6f0ff;
    border-left: 4px solid #6e0ad6;
}
.notif-link {
    color: #6e0ad6;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
}
.notif-link:hover {
    text-decoration: underline;
}



/* ==========================================================================
   REGRAS DE RESPONSIVIDADE PARA SMARTPHONES E TABLETS (MOBILE FIRST)
   ========================================================================== */
@media (max-width: 768px) {
    /* Ajustes do Cabeçalho */
    .header-grid {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .nav-menu {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .btn-announce {
        width: 100%;
        justify-content: center;
    }

    /* Ajustes das Grades de Anúncios (Garante 2 colunas em telas menores) */
    .ads-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
        gap: 12px !important;
        padding: 5px !important;
    }
    .ad-card {
        max-width: 100%;
    }

    /* Detalhes do Anúncio (Empilha a foto e a lateral de contato) */
    .ad-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .ad-detail-img img {
        height: auto !important;
        max-height: 280px;
    }

    /* Formulários de Cadastro e Criação de Anúncios */
    .form-box, .auth-box {
        padding: 20px !important;
        margin: 20px auto !important;
        width: 95% !important;
    }

    /* Barra de Busca Superior */
    .search-form {
        flex-direction: column !important;
        background: transparent !important;
        box-shadow: none !important;
        gap: 10px;
    }
    .search-form input, .search-form select, .search-form button {
        width: 100% !important;
        border-radius: 6px !important;
        height: 45px !important;
    }

    /* Grades do Dashboard Admin e do Usuário */
    .dash-grid, .cards-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    .main-layout {
        flex-direction: column !important;
    }
    .sidebar {
        width: 100% !important;
        display: flex;
        overflow-x: auto;
    }
    .content {
        padding: 15px !important;
    }
}




/* ==========================================================================
   SISTEMA DE CHAT INTERNO PROFISSIONAL (ESTILO DUAS COLUNAS OLX)
   ========================================================================== */
.chat-container { display: flex; background: #fff; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); height: 600px; margin-top: 20px; border: 1px solid #eee; overflow: hidden; }
.chat-sidebar { width: 300px; border-right: 1px solid #eee; background: #fdfdfd; display: flex; flex-direction: column; }
.chat-sidebar-header { padding: 15px; font-weight: bold; font-size: 16px; border-bottom: 1px solid #eee; background: #f8f9fa; }
.chat-users-list { flex: 1; overflow-y: auto; }
.chat-user-item { display: flex; flex-direction: column; padding: 15px; border-bottom: 1px solid #f5f5f5; text-decoration: none; color: #333; transition: background 0.2s; }
.chat-user-item:hover, .chat-user-item.active { background: #f0e6ff; border-left: 4px solid #6e0ad6; }
.chat-user-title { font-weight: 600; font-size: 14px; margin-bottom: 3px; }
.chat-user-subtitle { font-size: 11px; color: #7f8c8d; }

.chat-main { flex: 1; display: flex; flex-direction: column; background: #fafafa; }
.chat-main-header { padding: 15px; font-weight: bold; border-bottom: 1px solid #eee; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.chat-messages-area { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }
.chat-bubble { max-width: 65%; padding: 10px 14px; border-radius: 12px; font-size: 14px; line-height: 1.4; word-wrap: break-word; }
.chat-bubble.sent { background: #6e0ad6; color: #fff; align-self: flex-end; border-bottom-right-radius: 2px; }
.chat-bubble.received { background: #fff; color: #333; align-self: flex-start; border-bottom-left-radius: 2px; border: 1px solid #eef; }
.chat-time { font-size: 10px; margin-top: 4px; display: block; opacity: 0.7; text-align: right; }

.chat-input-area { padding: 15px; background: #fff; border-top: 1px solid #eee; display: flex; gap: 10px; }
.chat-input-area input { flex: 1; padding: 12px; border-radius: 25px; border: 1px solid #ddd; font-size: 14px; outline: none; }
.chat-input-area button { background: #6e0ad6; color: #fff; border: none; padding: 0 22px; border-radius: 25px; font-weight: bold; cursor: pointer; transition: 0.2s; }
.chat-input-area button:hover { background: #5907b0; }

@media (max-width: 768px) {
    .chat-container { flex-direction: column; height: 500px; }
    .chat-sidebar { width: 100%; height: 150px; border-right: none; border-bottom: 1px solid #eee; }
}




/* ==========================================================================
   PAINEL ADMIN: GRÁFICOS VISUAIS E BLOCOS COLORIDOS DE PONTOS
   ========================================================================== */
.card-money-box { background: linear-gradient(135deg, #2ecc71, #27ae60) !important; color: white !important; border-left: none !important; }
.card-money-box h3, .card-money-box p { color: white !important; }

/* Gráfico de Barras Moderno em Puro CSS */
.chart-box { background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); margin-top: 25px; }
.chart-box h3 { font-size: 16px; margin-bottom: 20px; color: #2c3e50; }
.chart-bars-container { display: flex; align-items: flex-end; justify-content: space-around; height: 200px; padding-top: 20px; border-bottom: 2px solid #bdc3c7; gap: 15px; }
.chart-bar-wrapper { display: flex; flex-direction: column; align-items: center; flex: 1; max-width: 60px; }
.chart-bar { width: 100%; background: linear-gradient(to top, #6e0ad6, #9b59b6); border-top-left-radius: 4px; border-top-right-radius: 4px; transition: height 0.5s ease-in-out; position: relative; min-height: 5px; }
.chart-bar-value { position: absolute; top: -22px; font-size: 11px; font-weight: bold; color: #34495e; text-align: center; width: 100%; }
.chart-bar-label { font-size: 12px; color: #7f8c8d; margin-top: 8px; font-weight: 600; white-space: nowrap; }

/* Container para o Iframe Responsivo do Google Maps */
.maps-responsive-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; background: #eee; border-radius: 6px; border: 1px solid #ddd; }
.maps-responsive-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   ALINHAMENTO DOS BOTÕES DE AÇÃO EM LINHA (SEM QUEBRAS)
   ========================================================================== */
.acoes-container { 
    display: flex; 
    gap: 6px; 
    align-items: center; 
    flex-wrap: nowrap; 
}

.btn-admin-acao { 
    padding: 6px 12px; 
    border-radius: 6px; 
    font-size: 12px; 
    font-weight: 600; 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center; 
    gap: 4px; 
    transition: all 0.2s ease; 
    white-space: nowrap; 
}

.btn-preco { background-color: #f3f4f6; color: #1f2937; border: 1px solid #d1d5db; }
.btn-preco:hover { background-color: #e5e7eb; }

.btn-status-off { background-color: #fffbeb; color: #b45309; border: 1px solid #fde68a; margin-right: 0 !important; }
.btn-status-off:hover { background-color: #fef3c7; }

.btn-status-on { background-color: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; margin-right: 0 !important; }
.btn-status-on:hover { background-color: #dcfce7; }

.btn-star { background-color: #f3e8ff; color: #6b21a8; border: 1px solid #e9d5ff; margin-right: 0 !important; }
.btn-star:hover { background-color: #e9d5ff; }

.btn-star-off { background-color: #fef2f2; color: #991b1b; border: 1px solid #fee2e2; margin-right: 0 !important; }
.btn-star-off:hover { background-color: #fee2e2; }

.btn-del { background-color: #fef2f2; color: #dc2626; border: 1px solid #fca5a5; }
.btn-del:hover { background-color: #dc2626; color: #fff; border-color: #dc2626; }



/* ==========================================================================
   BOTÃO FLUTUANTE FIXO DO WHATSAPP (SUPORTE DO PORTAL)
   ========================================================================== */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
    color: #fff;
}





/* ==========================================================================
   SISTEMA PRIVADO - PAINEL DO ADMINISTRADOR (ADMIN)
   ========================================================================== */
.nav-admin { background-color: #2c3e50; color: #fff; padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; }
.nav-admin h1 { font-size: 20px; }
.nav-admin a { color: #fff; text-decoration: none; font-size: 14px; background: #e74c3c; padding: 8px 15px; border-radius: 4px; }
.main-layout { display: flex; flex: 1; }
.sidebar { width: 240px; background-color: #34495e; color: #fff; padding: 20px 0; }
.sidebar a { display: block; color: #bdc3c7; padding: 12px 25px; text-decoration: none; font-weight: 500; font-size: 15px; transition: 0.2s; }
.sidebar a:hover, .sidebar a.active { background-color: #2c3e50; color: #fff; border-left: 4px solid #3498db; }
.content { flex: 1; padding: 30px; }

/* INDICADORES DE BLOCOS E ANÁLISE GRÁFICA */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); border-left: 5px solid #3498db; }
.card.users { border-left-color: #2ecc71; }
.card-money-box { background: linear-gradient(135deg, #2ecc71, #27ae60) !important; color: white !important; border-left: none !important; }
.card-money-box h3, .card-money-box p { color: white !important; }
.card h3 { font-size: 14px; color: #7f8c8d; text-transform: uppercase; }
.card p { font-size: 24px; font-weight: bold; margin-top: 5px; color: #2c3e50; }

.chart-box { background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); margin-top: 25px; margin-bottom: 30px; }
.chart-box h2, .chart-box h3 { font-size: 16px; margin-bottom: 20px; color: #2c3e50; }
.chart-bars-container { display: flex; align-items: flex-end; justify-content: space-around; height: 200px; padding-top: 20px; border-bottom: 2px solid #bdc3c7; gap: 15px; }
.chart-bar-wrapper { display: flex; flex-direction: column; align-items: center; flex: 1; max-width: 60px; }
.chart-bar { width: 100%; background: linear-gradient(to top, #6e0ad6, #9b59b6); border-top-left-radius: 4px; border-top-right-radius: 4px; transition: height 0.5s ease-in-out; position: relative; min-height: 5px; }
.chart-bar-value { position: absolute; top: -22px; font-size: 11px; font-weight: bold; color: #34495e; text-align: center; width: 100%; }
.chart-bar-label, .chart-bar-value-label { font-size: 12px; color: #7f8c8d; margin-top: 8px; font-weight: 600; white-space: nowrap; }

/* COMPONENTES DE TABELA E BADGES */
.table-box { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.table-box h2 { font-size: 18px; margin-bottom: 20px; color: #2c3e50; }
.alert-success { background: #d4edda; color: #155724; padding: 15px; border-radius: 4px; margin-bottom: 20px; font-size: 14px; font-weight: 600; border-left: 5px solid #2ecc71; }
.badge-premium { background: #f1c40f; color: #000; padding: 2px 6px; border-radius: 3px; font-size: 11px; font-weight: bold; margin-left: 5px; }
.badge-inactive { background: #95a5a6; color: #fff; padding: 2px 6px; border-radius: 3px; font-size: 11px; font-weight: bold; margin-left: 5px; }
.no-data-msg { text-align: center; color: #999; padding: 30px; }

/* LAYOUT E ALINHAMENTO LADO A LADO DOS BOTÕES DE MODERAÇÃO */
.acoes-container { display: flex; gap: 6px; align-items: center; flex-wrap: nowrap; }
.btn-admin-acao { padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: all 0.2s ease; white-space: nowrap; }

.btn-preco, .btn-view { background-color: #f3f4f6; color: #1f2937; border: 1px solid #d1d5db; }
.btn-preco:hover, .btn-view:hover { background-color: #e5e7eb; }
.btn-status-off { background-color: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.btn-status-off:hover { background-color: #fef3c7; }
.btn-status-on { background-color: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.btn-status-on:hover { background-color: #dcfce7; }
.btn-star { background-color: #f3e8ff; color: #6b21a8; border: 1px solid #e9d5ff; }
.btn-star:hover { background-color: #e9d5ff; }
.btn-star-off { background-color: #fef2f2; color: #991b1b; border: 1px solid #fee2e2; }
.btn-star-off:hover { background-color: #fee2e2; }
.btn-del { background-color: #fef2f2; color: #dc2626; border: 1px solid #fca5a5; }
.btn-del:hover { background-color: #dc2626; color: #fff; border-color: #dc2626; }

/* PROPRIEDADES SEMÂNTICAS DAS LISTAGENS DO ADMIN */
.user-name { font-weight: bold; font-size: 15px; color: #2c3e50; margin-bottom: 4px; }
.user-email { font-size: 12px; color: #7f8c8d; }
.user-date { font-size: 13px; color: #555; }

/* TRAVAS DE FORMATO PARA COLUNAS DA TABELA (EVITA QUEBRA DE BOTÕES) */
.celula-nowrap { white-space: nowrap; }
.col-id { width: 50px; }
.col-id-user { width: 60px; }
.col-preco { width: 140px; }
.col-data-user { width: 150px; }
.col-anuncios-user { width: 140px; }
.col-acoes-anuncios { width: 400px; }
.col-acoes-user { width: 260px; }

