:root {
    --bg-color: #f5f5f5;
    --card-bg: #ffffff;
    --text-color: #333333;
    --accent-color: #25d366;
}

[data-theme="dark"] {
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-color: #e0e0e0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', sans-serif;
    margin: 0; padding: 0;
       overscroll-behavior-y: contain; /* Impede o pull-to-refresh */
}


.card-produto {
    touch-action: manipulation; /* Melhora a resposta ao toque */
    -webkit-user-select: none;  /* Impede selecionar texto ao segurar */
    user-select: none;
}

/* Isso aqui é o "Santo Graal" do arrasto no celular */
.drag-handle {
    touch-action: none !important; /* Trava a rolagem do navegador */
    -webkit-user-select: none;    /* Impede selecionar texto */
    user-select: none;
    cursor: move;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Garante que o card "flutue" no celular sem sumir */
.sortable-fallback {
    opacity: 1 !important;
    display: flex !important;
    z-index: 99999 !important;
    background: var(--card-bg) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.container { max-width: 1000px; margin: 0 auto; padding: 20px; }

header { text-align: center; padding: 20px 0; }
.logo-loja { max-width: 150px; height: auto; border-radius: 8px; object-fit: contain; }

/* BUSCA E CATEGORIAS */
.search-container { margin: 20px 0; width: 100%; position: relative; }
.search-input { 
    width: 100%; padding: 12px 45px; border-radius: 12px; border: 1px solid #ddd; 
    background-color: var(--card-bg); color: var(--text-color); outline: none; 
    font-size: 16px; box-sizing: border-box; display: block;
}

.category-container { display: flex; gap: 10px; overflow-x: auto; padding: 10px 0; scrollbar-width: none; }
.category-container::-webkit-scrollbar { display: none; }
.btn-cat { 
    white-space: nowrap; padding: 8px 18px; border-radius: 20px; border: 1px solid var(--accent-color);
    background: transparent; color: var(--accent-color); cursor: pointer; font-weight: 500;
}
.btn-cat.active { background: var(--accent-color); color: white; }

/* GRID */
.grid-produtos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 20px; }
@media (min-width: 768px) { .grid-produtos { grid-template-columns: repeat(4, 1fr); } }

.card-produto {
    background-color: var(--card-bg); border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); position: relative; display: flex; flex-direction: column;
}

.img-produto { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.info-produto { padding: 12px; flex-grow: 1; display: flex; flex-direction: column; }
.nome-produto { font-size: 14px; font-weight: bold; margin-bottom: 5px; height: 40px; overflow: hidden; }
.preco-produto { color: var(--text-color) !important; font-weight: bold; font-size: 16px; margin-bottom: 10px; }

/* --- BLOCO DE MODAIS (CORRIGIDO) --- */

/* 1. O fundo escuro (igual para todos) */
#modal-detalhes, #ai-modal, #modal-config, #modal-foto {
    position: fixed; top: 0; left: 0; 
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); 
    display: none; 
    align-items: center; 
    justify-content: center; 
    z-index: 30000; /* Aumentado para garantir que fique na frente */
}

/* 2. Conteúdo padrão para IA, Configurações e Fotos (450px e com margem interna) */
#ai-modal .modal-content, #modal-config .modal-content, #modal-foto .modal-content { 
    background: var(--card-bg); 
    width: 90%; 
    max-width: 450px; 
    border-radius: 20px; 
    padding: 25px; 
    color: var(--text-color); 
    text-align: center; 
}

/* 3. Conteúdo exclusivo para DETALHES DO PRODUTO (380px e sem margem interna na imagem) */
#modal-detalhes .modal-content { 
    background: var(--card-bg); 
    width: 90%; 
    max-width: 380px; /* Tamanho reduzido que você pediu */
    border-radius: 20px; 
    padding: 0;      /* Zero padding para a imagem encostar nas bordas */
    color: var(--text-color); 
    text-align: left; 
    position: relative;
    overflow: visible; /* Para o botão X aparecer do lado de fora */
}

#modal-config .modal-content, #ai-modal .modal-content, #modal-custom .modal-content {
    background-color: var(--card-bg);
    backdrop-filter: blur(20px);
    background: <?php echo ($config['tema'] == 'dark' ? '#1e1e1e' : '#ffffff'); ?>; /* Nestes mantemos opaco para leitura */
}

/* 4. Estilo dos inputs dentro dos modais */
.modal-content input, .modal-content select { 
    width: 100%; padding: 12px; margin: 10px 0; 
    border-radius: 10px; border: 1px solid #ddd; 
    box-sizing: border-box; 
}

/* 5. O botão X (fino) acima do card de detalhes */
.btn-close-modal {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
/* RODAPÉ ADMIN */
/* --- PAINEL ADMIN DESLIZANTE (GLASSMORPISM) --- */
.admin-drawer {
    position: fixed;
    bottom: -60px; 
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 500px;
    background: var(--card-bg);
   /* --- background: rgba(20, 20, 30, 0.9); --- */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 25px 25px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    padding: 20px 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 20000;
}

.sortable-ghost {
    opacity: 0.3;
    transform: scale(0.95);
    background: var(--accent-color) !important;
}



/* Quando o painel abrir */
.admin-drawer.open {
    bottom: 0;
}

/* A Aba/Botão de puxar */
.admin-pull-tab {
    position: absolute;
    top: -40px; /* Fica em cima da barra */
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px 15px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    cursor: pointer;
    color: var(--accent-color);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

/* Estilo dos ícones dentro da barra */
.btn-admin-icon {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.4rem;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.8;
}

.btn-admin-icon:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* BOTÕES */
.btn-pedir { background: var(--accent-color); color: white; text-decoration: none; padding: 10px; border-radius: 8px; text-align: center; font-weight: bold; }
/* Esconde os produtos da próxima página */
.produto-paginado {
    display: none !important;
}

/* Estilo do container do botão Ver Mais */
.ver-mais-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 30px 0;
}

.btn-ver-mais {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-ver-mais:hover {
    background: var(--accent-color);
    color: #fff;
}
/* --- AJUSTE CATEGORIAS --- */

.btn-cat { 
    white-space: nowrap; padding: 8px 18px; border-radius: 20px; 
    border: 1px solid var(--accent-color);
    background: transparent; color: var(--accent-color); 
    cursor: pointer; font-weight: 500; transition: 0.3s;
}
.btn-cat.active { 
    background: var(--accent-color) !important; 
    color: #ffffff !important; 
}


/* --- BOX QUEM SOMOS --- */
.quem-somos {
    margin: 40px 0;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.quem-somos h2 { margin-top: 0; color: var(--accent-color); }
.quem-somos p { line-height: 1.6; opacity: 0.8; }

/* --- AJUSTE PREÇO + ÍCONE DETALHES --- */
.preco-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.btn-detalhes-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s;
}
.btn-detalhes-icon:hover { transform: scale(1.2); }

/* --- INDICADOR DE SCROLL NAS CATEGORIAS --- */
.category-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
/* Efeito de transparência no final da linha para indicar scroll */
.category-wrapper {
    position: relative;
    width: 100%;
}
.category-wrapper::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40px; height: 100%;
    background: linear-gradient(to right, transparent, var(--bg-color));
    pointer-events: none;
}


/* --- AJUSTE MAPA --- */
.mapa-container { 
    margin-top: 30px; border-radius: 15px; overflow: hidden; 
    height: 300px; border: 3px solid var(--card-bg); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.mapa-container iframe { width: 100%; height: 100%; border: none; }

/* --- AJUSTE MODAL DETALHES (TEMA) --- */
#modal-detalhes .modal-content { 
    background-color: var(--card-bg) !important; 
    color: var(--text-color) !important; 
}
#det-nome { color: var(--text-color); }
#det-desc { color: var(--text-color); opacity: 0.7; font-size: 14px; line-height: 1.5; }
#det-preco { color: var(--text-color) !important; }

/* Correção Dropdown e Textarea no Editor */
.select-cat, .desc-produto {
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
    border: 1px solid rgba(128, 128, 128, 0.3) !important;
    padding: 8px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    margin-bottom: 10px;
}

/* Estilo do Dropdown quando aberto */
.select-cat option {
    background-color: var(--card-bg);
    color: var(--text-color);
}

/* Container da imagem para permitir o ícone por cima */
.container-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    cursor: pointer;
}

/* O ícone da câmera */
.camera-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: white !important;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 5;
    pointer-events: none; /* Evita que o ícone atrapalhe o clique na imagem */
}

/* Efeito ao passar o mouse */
.container-img:hover .camera-overlay {
    transform: scale(1.1);
    background-color: #1eb954; /* Um verde levemente mais escuro */
}

/* Ajuste das Categorias (Botões do Topo) */
.btn-cat {
    background-color: var(--card-bg);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-cat.active {
    background-color: var(--accent-color) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

#img-logo, #logo-preview, h1, p {
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Container das Bolinhas de Cores */
.color-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 25px;
    padding: 10px 0;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.color-item label {
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* A Bolinha Mágica */
.color-ball-wrapper {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff; /* Borda branca para destacar */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s;
}

.color-ball-wrapper:hover {
    transform: scale(1.1);
}

/* Esconde o seletor feio do navegador mas mantém ele clicável por cima da bolinha */
.color-ball-wrapper input[type="color"] {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 150%;
    height: 150%;
    cursor: pointer;
    opacity: 0; /* Deixa invisível */
}

/* Isso impede que o celular tente rolar a página quando pegamos o puxador */
.drag-handle {
    touch-action: none; 
    -webkit-tap-highlight-color: transparent;
}

/* Um efeito visual para quando o card está sendo segurado no celular */
.sortable-chosen {
    box-shadow: 0 15px 30px rgba(0,0,0,0.3) !important;
    transform: scale(1.05);
    z-index: 9999;
}

.card-produto {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.sortable-drag {
    opacity: 0.9 !important;
    background: var(--card-bg) !important;
    z-index: 20000;
}

/* Container das setas de movimentação */
.move-controls {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 20;
}

.btn-move {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: 0.2s;
}

.btn-move:active {
    transform: scale(0.9);
    background: var(--accent-color);
}

footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(128, 128, 128, 0.1);
    color: var(--text-color);
    font-size: 13px;
    opacity: 0.6; /* Deixa o texto suave */
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    margin-bottom: 20px;
    background: transparent;
    position: relative;
}

.carousel-track {
    display: flex;
    width: max-content; /* Importante para o loop */
    animation: slide-slow 30s linear infinite; /* Velocidade do carrossel */
}

.carousel-item {
    width: 120px;
    margin: 0 10px;
    flex-shrink: 0;
    cursor: pointer;
    text-align: center;
}

.carousel-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Pode deixar quadrado se preferir */
    object-fit: cover;
    border: 2px solid var(--text-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.carousel-item span {
    display: block;
    font-size: 10px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-color);
}

/* Animação do deslize */
@keyframes slide-slow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Move metade para o loop ser invisível */
}

/* Para o carrossel parar quando passar o mouse */
.carousel-track:hover {
    animation-play-state: paused;
}

/* Botões CTA WhatsApp */
/* BOTÃO CTA WHATSAPP COM OUTLINE */
.cta-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366; /* Verde Oficial */
    color: white !important;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    margin: 30px auto;
    
    /* LARGURA REDUZIDA */
    width: fit-content; 
    min-width: 220px;
    max-width: 280px;

    /* EFEITO BORDAR POR FORA (OUTLINE) */
    border: 2px solid #25d366; /* Borda colada no botão */
    outline: 2px solid #25d366; /* A borda "bifore" por fora */
    outline-offset: 4px;        /* O espaço entre o botão e o contorno */

    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-whatsapp:hover {
    transform: scale(1.05);
    outline-offset: 6px; /* Efeito de expansão ao passar o mouse */
    background-color: #1eb954;
    outline-color: #1eb954;
}

/* Ajuste para não colar no vídeo ou carrossel */
.cta-whatsapp i {
    font-size: 18px;
}

/* BOTÃO INSTAGRAM - APENAS ÍCONE MINIMALISTA */
.pwa-insta-btn {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 9999999 !important;
    
    /* REMOVENDO O FUNDO E BORDAS */
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    
    /* COR DO ÍCONE SEGUE O TEMA */
    color: var(--text-color) !important;
    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* TAMANHO MAIOR */
    font-size: 32px !important; /* Aumentado para destaque */
    
    text-decoration: none !important;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

/* Lógica de esconder se o campo estiver vazio */
.pwa-insta-btn[data-user=""], 
.pwa-insta-btn[data-user=" "] {
    display: none !important;
}

/* Efeito ao passar o mouse */
.pwa-insta-btn:hover {
    transform: scale(1.1);
    color: var(--accent-color) !important; /* Ganha a cor da loja */
}

/* Descrição que o Visitante vê (Sem scroll, texto completo) */
.desc-visivel {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.7;
    margin: 5px 0 10px 0;
    line-height: 1.4;
    text-align: left;
    /* Faz o texto quebrar a linha corretamente */
    word-wrap: break-word; 
    white-space: pre-wrap; /* Mantém as quebras de linha que o dono fez */
}

/* Ajuste no Textarea do Editor para não ter scroll horizontal */
.desc-produto {
    width: 100%;
    min-height: 60px; /* Altura inicial */
    background: rgba(128,128,128,0.1);
    color: var(--text-color);
    border: 1px solid rgba(128,128,128,0.2);
    border-radius: 8px;
    padding: 8px;
    font-family: inherit;
    font-size: 12px;
    resize: vertical; /* Permite ao dono puxar para baixo se quiser mais espaço */
    overflow-y: auto;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #02940B; /* Azul padrão */
    color: white !important;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    margin: 30px auto;
    
    /* LARGURA REDUZIDA */
    width: fit-content; 
    min-width: 220px;
    max-width: 280px;

    /* EFEITO BORDAR POR FORA (OUTLINE) */
    border: 2px solid #02940B; 
    outline: 2px solid #02940B; 
    outline-offset: 4px;

    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-phone:hover {
    transform: scale(1.05);
    outline-offset: 6px;
    background-color: #02940B; /* Azul mais escuro no hover */
    outline-color: #02940B;
}

.cta-phone i {
    font-size: 24px;
}

[contenteditable="true"]#footer-loja-nome:hover {
    background: rgba(128,128,128,0.1);
    border-radius: 4px;
    cursor: text;
}

/* Estilização Premium do Modal de Configurações */
.config-modal-wrapper {
    max-width: 420px !important;
    padding: 20px !important;
    text-align: left !important;
}

.config-modal-wrapper h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    color: var(--accent-color);
    font-size: 20px;
}

.config-scroll-area {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
}

/* Estilo dos Grupos de Input */
.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-color);
    opacity: 0.8;
}

.input-group input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(128,128,128,0.2);
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 14px;
}

/* Divisor Visual */
.config-divider {
    margin: 25px 0 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(128,128,128,0.2);
    font-size: 13px;
    font-weight: bold;
    color: var(--accent-color);
    text-transform: uppercase;
}

/* Checkbox Alinhado */
.input-group-inline {
    margin-bottom: 20px;
}

.switch-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color);
}

.switch-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

/* Upload de Marca d'água */
.watermark-upload-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.watermark-upload-box input[type="file"] {
    font-size: 11px;
    flex: 1;
}

.btn-remove-watermark {
    background: #ff4d4d;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Botões de Ação Final */
.config-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-save-config {
    background: var(--accent-color) !important;
    color: #000 !important; /* Texto preto para contraste no verde */
    font-weight: bold;
    padding: 14px !important;
    border-radius: 12px !important;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-close-config {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 13px;
    text-decoration: underline;
}

/* Scrollbar do modal */
.config-scroll-area::-webkit-scrollbar { width: 4px; }
.config-scroll-area::-webkit-scrollbar-thumb { background: var(--accent-color); border-radius: 10px; }

/* Widget Flutuante */
.status-floating-card {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 380px;
    z-index: 25000;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: none; /* Começa oculto */
}

/* Header do Widget */
.status-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255,255,255,0.05);
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--accent-color);
    font-weight: bold;
}

.status-header-mini button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.5;
}

/* Corpo do Widget */
.status-body-pro {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

#status-texto-principal {
    margin: 0;
    font-size: 18px; /* Letras Maiores */
    color: #fff;
}

#status-fila {
    margin: 5px 0 0 0;
    font-size: 13px;
    color: var(--text-dim);
}

/* Versão Pílula Minimizada */
#status-conteudo-recuado {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

#status-texto-pill {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
}

.pulse-green {
    color: var(--accent-color);
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(0.9); opacity: 1; }
}