/*
Theme Name: Legislação Pedagógica News
Theme URI: https://legislacaopedagogica.com.br/
Author: Legislação Pedagógica
Description: Tema personalizado para notícias e concursos educacionais, baseado no novo layout.
Version: 2.0.0
Text Domain: legislacao-pedagogica
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, featured-images, blog, custom-header
*/

:root {
  --purple: #7c3aed;
  --orange: #fb923c;
}
body {
  box-sizing: border-box;
}
.card-hover {
  transition: all 0.25s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366; /* Cor do WhatsApp */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}
.tag-container {
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

/* Cores das Tags (usadas no JavaScript de protótipo do HTML, mantidas aqui como referência) */
.tag-edital { background-color: #f97316; } /* orange-500 */
.tag-dica { background-color: #22c55e; } /* green-500 */
.tag-analise { background-color: #3b82f6; } /* blue-500 */
.tag-resultado { background-color: #ef4444; } /* red-500 */
.tag-geral { background-color: #a855f7; } /* purple-500 */
.tag-urgente { background-color: #f43f5e; } /* rose-500 */

/* Estilo para botões de filtro ativo */
.filter-btn.active {
  background-color: var(--purple) !important;
  color: white !important;
}

/* Estilos para o menu mobile (adaptado) */
#mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
}
#mobile-menu.active {
  transform: translateX(0);
}