:root {
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --primary-color: #7c3aed;
    --accent-color: #f97316;
    --text-color: #1f2937;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    color: #ffffff;
    padding: 10px;
    border-bottom: 3px solid var(--accent-color);
    z-index: 100;
    transition: box-shadow 0.3s ease;
    /* Garante que o header não se mova com o teclado no mobile */
    height: auto;
    display: flex;
    flex-direction: column;
}

/* TOP BAR for Login/Cart */
.top-bar {
    background: linear-gradient(90deg, #5b21b6 0%, #8b5cf6 50%, #5b21b6 100%);
    padding: 4px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Hamburger esquerda, Logo centro, Icones direita */
    align-items: center;
}

.hamburger-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 2px;
    width: 35px;
}

.top-icons {
    display: flex;
    gap: 12px;
    width: 35px; /* Mantido igual ao hamburger para centralização exata */
    justify-content: flex-end;
    align-items: center;
}

.icon-disabled {
    width: 22px;
    height: 22px;
    opacity: 0.6;
    cursor: not-allowed;
}

/* Estilo do Menu Lateral */
.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    background: #5b21b6;
    width: 250px;
    height: 100%;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    z-index: 2000;
}

.side-menu.active {
    left: 0;
}

.side-menu ul {
    list-style: none;
    padding: 20px;
}

.side-menu ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    font-weight: bold;
}

.top-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.top-link:hover {
    color: var(--accent-color);
}

.zed-container {
    display: flex;
    align-items: center;
    max-width: 600px; /* Centraliza melhor em telas grandes */
    margin: 0 auto;
}

.zed-avatar {
    width: 80px;
    margin-right: 10px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.zed-chat {
    flex-grow: 1;
}

.zed-chat p {
    font-size: 14px;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 12px 12px 12px 0;
    line-height: 1.4;
    display: inline-block;
}

.zed-chat input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 20px; /* Visual mais arredondado de chat */
    outline: none;
    background: #ffffff;
    color: #1f2937;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    font-size: 14px;
    transition: all 0.3s ease;
}

/* REUSABLE COMPONENTS */
.btn-main {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.2s;
    font-weight: bold;
}

.btn-main:hover {
    opacity: 0.8;
}

.btn-main:active {
    transform: scale(0.98);
}

.store-name {
    display: block;
    color: var(--accent-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-size: 12px;
}

/* HERO */
.hero {
    padding: 20px 15px;
    margin-top: 140px; /* Compensa o header fixo para o conteúdo não sumir embaixo dele */
    text-align: center;
    background-color: #faf5ff; /* Um tom de roxo quase branco */
}

.hero-title {
    display: block;
    font-size: clamp(1rem, 4.5vw, 1.8rem); /* Ajusta entre 16px e ~28px */
    color: var(--text-color);

}

.hero span {
    display: block;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 800;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    letter-spacing: -1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero h2 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.hero-logo {
    display: block;
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
}

.hero-description {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.2;
}

/* CATEGORY GROUPS & MODERN TITLES */
.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Empurra o título para a esquerda e botões para a direita */
    padding: 40px 15px 10px;
}

.category-controls {
    display: flex;
    gap: 8px; /* Espaço entre as duas setas */
}

.category-group {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    scroll-margin-top: 160px; /* Compensa a altura do header fixo + ZED */
}

.category-title {
    padding: 0; 
    margin: 0;
    color: var(--text-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    font-weight: 800;
    flex: 1; /* Faz o título ocupar o espaço restante, mantendo os botões à direita */
}

/* Detalhe tecnológico (Barra Neon) no lugar dos emojis */
.category-title::before {
    content: "";
    width: 4px;
    height: 18px;
    background: var(--accent-color);
    margin-right: 12px;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-color);
}

/* PRODUCTS */
.products {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px; /* Start products from here */
    background-color: transparent; /* Usa o fundo do container pai */
    display: flex; /* Change to flex for horizontal scrolling */
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scroll-snap-type: x mandatory; /* Snap to product items */
    gap: 15px; /* Use gap for spacing between flex items */
    padding-bottom: 20px; /* Add space for scrollbar if visible */
}

/* Hide scrollbar for aesthetic purposes, but keep functionality */
.products::-webkit-scrollbar {
    display: none;
}
.products {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

@media (min-width: 640px) {
    .products {
        /* Mantém o comportamento de scroll no tablet */
        padding-left: 20px;
        gap: 20px;
    }
}

.product {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;

    /* Mobile specific: control width for horizontal scroll */
    flex-shrink: 0; /* Prevent items from shrinking */
    width: 43vw; /* Exibe 2 produtos e um pedaço do terceiro no mobile */
    scroll-snap-align: start; /* Snap to the start of each item */
}

/* Ajuste de largura para Tablet */
@media (min-width: 640px) {
    .product {
        width: 30vw; /* Exibe 3 produtos e um pedaço do quarto no tablet */
    }
}

/* Ajuste de largura para Desktop */
@media (min-width: 1024px) {
    .product {
        width: 300px; /* Largura fixa no desktop para melhor controle */
    }
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-img-placeholder {
    background: #f3f4f6;
    height: 120px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 12px;
    border: 1px dashed var(--border-color);
}

.product-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.product h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 5px;
}

.product-rating {
    color: #fbbf24; /* Cor amarela para estrelas */
    font-size: 12px;
    margin-bottom: 8px;
}

.product p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 10px 0;
}

.product .btn-main {
    margin-top: 10px;
    padding: 8px 15px;
}

.scroll-arrow {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.scroll-arrow:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* BARRA DE CONFIANÇA */
.trust-bar {
    display: flex;
    justify-content: space-around;
    padding: 20px 10px;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.trust-item span {
    font-size: 11px;
    font-weight: bold;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ZED CTA */
.zed-cta {
    background: #f5f3ff;
    text-align: center;
    padding: 30px 15px;
}

.brand-footer-section {
    margin-top: 50px;
    text-align: center;
    padding: 0 15px;
}

.footer-logo {
    max-width: 375px; /* 50% maior que os 250px originais */
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.zed-cta h2 {
    color: var(--primary-color);
}

.zed-cta .btn-main {
    padding: 10px 20px;
}

/* CONTATO & AVALIAÇÕES GRID */
.page-container {
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.grid-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.contact-method {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-method.construction {
    opacity: 0.6;
    background: #f9fafb;
    cursor: not-allowed;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-info h3 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.status-badge {
    margin-left: auto;
    font-size: 0.7rem;
    background: #e5e7eb;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
}

/* FAQ */
.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.faq-item ul {
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 14px;
}

/* CHAT LINK BUTTON (ZED) */
.btn-chat-link {
    display: inline-block;
    margin-top: 10px;
    background: var(--accent-color);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
    transition: transform 0.2s;
}

/* FINAL CTA */
.final-cta {
    text-align: center;
    padding: 60px 15px;
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-modern-tech {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    padding: 15px;
    border-radius: 20px;
    text-decoration: none;
    position: relative;
    max-width: 90vw; /* Garante que não quebre no mobile */
}

.btn-modern-tech:active {
    transform: scale(0.95);
}

.btn-logo {
    width: 120px; /* Reduzido em 25% conforme solicitado */
    height: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.final-cta h2 {
    margin-bottom: 20px;
}

/* Animação Neon Moderna */
@keyframes neonPulse {
    0% {
        box-shadow: 0 0 10px var(--primary-color), inset 0 0 5px var(--primary-color);
        border-color: var(--primary-color);
    }
    100% {
        box-shadow: 0 0 30px var(--accent-color), inset 0 0 10px var(--accent-color);
        border-color: var(--accent-color);
    }
}

/* Animação de Brilho para o Header */
@keyframes headerGlow {
    0% { 
        box-shadow: 0 0 5px var(--accent-color);
        filter: brightness(1);
    }
    50% { 
        box-shadow: 0 0 40px var(--accent-color), 0 0 10px #ffffff;
        filter: brightness(1.2);
    }
    100% { 
        box-shadow: 0 0 5px var(--accent-color);
        filter: brightness(1);
    }
}

.header-active {
    animation: headerGlow 1.5s ease-in-out;
}

/* Efeito específico no Input quando o ZED é chamado */
.header-active .zed-chat input {
    box-shadow: 0 0 15px var(--accent-color), inset 0 0 5px var(--accent-color);
    transform: scale(1.02);
    border: 1px solid #ffffff;
}

/* CHECKOUT PAGE STYLES */
.checkout-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    padding: 20px;
    max-width: 1100px;
    margin: 160px auto 40px; /* Adicionado margem superior para compensar o header fixo */
}

@media (max-width: 850px) {
    .checkout-container { 
        grid-template-columns: 1fr; 
        margin-top: 140px;
    }
}

.checkout-form section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Mesma sombra dos produtos */
}

.checkout-form h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-form h3::before {
    display: none; /* Remove a barra neon se não quiser no checkout, ou mantenha para padronizar */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    outline: none;
}

.order-summary {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: 160px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total-row {
    border-top: 2px solid #eee;
    margin-top: 15px;
    padding-top: 15px;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.checkout-form .btn-main {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* MODAL ZOOM */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.92);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal-content {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-main-img-container img {
    max-width: 100%;
    max-height: 65vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    background: white;
    object-fit: contain;
}

.modal-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    overflow-x: auto;
    padding: 10px;
    max-width: 100%;
}

.modal-thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #444;
    transition: all 0.2s;
    background: white;
}

.modal-thumbnails img:hover {
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
}
/* --- Estilos do Painel de Pedidos --- */
.admin-header {
  background: var(--primary-color);
  color: white; padding: 30px 20px; text-align: center;
  border-bottom: 4px solid var(--accent-color);
}
.admin-header img { height: 40px; margin-top: 15px; filter: brightness(0) invert(1); }

.wrap { max-width: 1400px; margin: 40px auto; padding: 0 20px; display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.btn-refresh { padding: 11px 26px; font-size: 0.8rem; background: var(--accent-color) !important; text-transform: uppercase; }
.btn-refresh.active { outline: 2px solid rgba(34, 197, 94, 0.25); box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.08); }
.toolbar { display: flex; justify-content: flex-start; align-items: center; gap: 10px; flex-wrap: wrap; }
.table-help {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text-muted);
  font-size: 14px;
}
.column-controls {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.column-controls-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.column-controls-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.column-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--text-color);
  font-size: 13px;
  cursor: pointer;
}
.column-toggle input { accent-color: var(--primary-color); }
.btn-link {
  border: none;
  background: transparent;
  color: var(--primary-color);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}
.table-shell {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}
.table-scrollbar {
  position: sticky;
  top: 0;
  z-index: 3;
  overflow-x: auto;
  overflow-y: hidden;
  height: 16px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
}
.table-scrollbar-inner {
  height: 1px;
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pedidos-table {
  width: 100%;
  min-width: 1400px;
  border-collapse: collapse;
}
.table-scrollbar::-webkit-scrollbar,
.table-scroll::-webkit-scrollbar {
  height: 12px;
}
.table-scrollbar::-webkit-scrollbar-thumb,
.table-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}
.table-scrollbar::-webkit-scrollbar-track,
.table-scroll::-webkit-scrollbar-track {
  background: #e2e8f0;
}
.pedidos-table th,
.pedidos-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}
.pedidos-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fafc;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.pedidos-table tbody tr:hover { background: #fafafa; }
.subtle {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
}
.mini-line {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--text-color);
}
.mini-line strong {
  color: var(--text-muted);
  margin-right: 6px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #f3f4f6;
  color: var(--text-color);
}
.status-badge.ok { background: #dcfce7; color: #166534; }
.status-badge.warn { background: #fef3c7; color: #92400e; }
.status-badge.err { background: #fee2e2; color: #991b1b; }
.btn-mini {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.btn-mini.danger { background: #dc2626; }
.btn-mini.ok { background: #16a34a; }
.btn-mini:hover { opacity: 0.88; }
.action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.itens-row td {
  background: #f8fafc;
  padding: 0;
}
.itens-box {
  padding: 14px;
}
.subtable {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}
.subtable th,
.subtable td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-color);
}
.subtable thead th {
  background: #eef2ff;
  color: var(--primary-color);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.col-hidden { display: none !important; }
.empty {
  background: white;
  border: 1px dashed var(--border-color);
  border-radius: 12px;
  padding: 18px;
  color: var(--text-muted);
  text-align: center;
}
.muted {
  color: var(--text-muted);
  font-size: 14px;
}
.card { background: white; border: 1px solid var(--border-color); border-radius: 12px; padding: 20px; margin-bottom: 20px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.grid { display: grid; gap: 8px; }
.row { display: grid; grid-template-columns: 180px 1fr; gap: 8px; }
.label { color: var(--text-muted); font-size: 13px; font-weight: bold; text-transform: uppercase; }
.status { font-weight: 700; }
.status.ok { color: #22c55e; }
.status.warn { color: #f59e0b; }
.status.err { color: #ef4444; }

/* Login Overlay - Fundo Cinza Escuro */
#login-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: #1a1a1a; /* Cinza Escuro */
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
}
.login-box {
  background: white; padding: 40px; border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3); text-align: center;
  width: 90%; max-width: 350px;
}
.login-box img { height: 70px; margin-bottom: 25px; }
.login-box input {
  width: 100%; padding: 12px; margin-bottom: 15px;
  border: 1px solid #ddd; border-radius: 6px; outline: none; box-sizing: border-box;
}
.login-error { color: #ef4444; font-size: 14px; margin-top: 10px; display: none; font-weight: bold; }
