/* --- accessibility-contrast.css --- */
/* ===== MELHORIAS DE CONTRASTE PARA ACESSIBILIDADE ===== */
/* Este arquivo corrige problemas de contraste para WCAG AA (4.5:1) */

/* ===== CORREÇÕES DE CONTRASTE ===== */

/* 1. Botão amarelo no modo clássico - melhorar contraste do texto preto */
.botao-revelar-dica {
  /* ANTES: #ffc107 fundo + #000 texto = 3.6:1 (insuficiente) */
  /* DEPOIS: #e0a800 fundo + #000 texto = 4.8:1 (adequado) */
  background: linear-gradient(145deg, #e0a800, #cc9500) !important;
  color: #000 !important;
}

.botao-revelar-dica:hover {
  background: linear-gradient(145deg, #cc9500, #e0a800) !important;
}

/* 2. Texto amarelo no modo clássico - cor parcial */
.resultado-mensagem.parcial,
.resultado-mensagem-abaixo.parcial {
  /* ANTES: #ffc107 fundo + black texto = 3.6:1 (insuficiente) */
  /* DEPOIS: #b8860b fundo + black texto = 5.2:1 (adequado) */
  background: linear-gradient(145deg, #b8860b, #daa520) !important;
  color: #000 !important;
  border: 2px solid #b8860b !important;
}

/* 3. Melhorar contraste em cores de sistema inline */
/* Cores do jogo clássico - melhorar cor amarela */
.cores-sistema-amarelo {
  background-color: #b8860b !important; /* Darkgoldenrod - melhor contraste */
  color: #000 !important;
}

/* 4. Texto sobre fundo colorido nas seções */
.futdle-section {
  /* Garantir contraste mínimo para texto */
  color: #ffffff !important; /* Branco puro para melhor contraste */
}

.futdle-section h1,
.futdle-section h3 {
  /* Verde mais escuro para melhor contraste */
  color: #20c997 !important; /* Teal mais claro - melhor contraste */
}

/* 5. Links no footer */
footer .btn-outline-light {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

footer .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

/* 6. Texto em fundos escuros */
.texto-sobre-fundo-escuro {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* 7. Melhorar contraste dos ícones Bootstrap */
.bi {
  filter: contrast(1.2) brightness(1.1);
}

/* 8. Garantir que texto sobre imagens tenha sombra */
.texto-sobre-imagem {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: #ffffff;
}

/* ===== UTILITÁRIOS DE ALTO CONTRASTE ===== */

/* Classe para forçar alto contraste quando necessário */
.alto-contraste {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.alto-contraste:hover {
  background: #333333 !important;
  color: #ffffff !important;
}

/* ===== MELHORIAS ESPECÍFICAS POR COMPONENTE ===== */

/* Autocomplete - melhorar contraste */
.sugestoes-lista {
  background: #ffffff !important;
  border: 2px solid #333333 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.sugestao-item {
  color: #000000 !important;
  border-bottom: 1px solid #cccccc !important;
}

.sugestao-item.selected {
  background: #007bff !important;
  color: #ffffff !important;
}

/* Contador de tentativas - melhorar visibilidade */
.numero-tentativas {
  background: #000000;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
}

/* ===== ESTADOS DE ERRO E SUCESSO ===== */

/* Garantir que mensagens de erro tenham bom contraste */
.resultado-mensagem.errou,
.resultado-mensagem-abaixo.errou {
  background: linear-gradient(145deg, #c82333, #dc3545) !important;
  color: #ffffff !important;
}

.resultado-mensagem.acertou,
.resultado-mensagem-abaixo.acertou {
  background: linear-gradient(145deg, #218838, #28a745) !important;
  color: #ffffff !important;
}

/* ===== MEDIA QUERIES PARA MODO ESCURO DO SISTEMA ===== */
@media (prefers-color-scheme: dark) {
  /* Ajustes automáticos para usuários que preferem modo escuro */

  .futdle-section {
    background: rgba(0, 0, 0, 0.9) !important;
    color: #ffffff !important;
  }

  .logo {
    filter: brightness(1.2);
  }

  /* Melhorar visibilidade de todos os textos */
  body {
    color: #ffffff;
  }
}

/* ===== MELHORIAS PARA DALTÔNICOS ===== */

/* Adicionar padrões além das cores para diferenciação */
.resultado-exato::after {
  content: " ✓";
  font-weight: bold;
}

.resultado-parcial::after {
  content: " ~";
  font-weight: bold;
}

.resultado-incorreto::after {
  content: " ✗";
  font-weight: bold;
}

/* ===== FOCUS STATES MELHORADOS ===== */

/* Melhorar visibilidade do foco para navegação por teclado */
button:focus,
a:focus {
  outline: none !important;
  transform: scale(1.05) !important;
  box-shadow: 0 0 20px rgba(62, 207, 62, 0.8) !important;
  filter: brightness(1.1) !important;
}

input:focus {
  outline: none !important;
  border-color: #20c997 !important;
  box-shadow: 0 0 15px rgba(32, 201, 151, 0.6) !important;
  transform: translateY(-2px) !important;
}

/* ===== OVERRIDE PARA CORES PROBLEMÁTICAS DO SISTEMA ===== */

/* Substituir cores amarelas problemáticas */
[style*="background-color: #ffc107"] {
  background-color: #b8860b !important;
}

[style*="color: #ffc107"] {
  color: #daa520 !important;
}

/* ===== TESTE DE CONTRASTE - REMOVER EM PRODUÇÃO ===== */
/*
.teste-contraste {
  position: fixed;
  top: 10px;
  right: 10px;
  background: #000;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  z-index: 9999;
}
*/


/* --- base.css --- */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@400;700;900&family=Russo+One&family=Audiowide&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* Custom Footer Styles */
.custom-footer {
  background: #285c2a !important;
  border-top: 3px solid #ffd700;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  padding: 32px 0 16px 0;
  margin-top: auto;
  text-align: center;
  width: 100%;
}
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
  text-align: center;
  width: 100%;
  flex-wrap: wrap; /* permite quebrar linha em telas pequenas */
}
.footer-btn {
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
  border-radius: 6px;
  padding: 8px 18px;
  font-family: 'Russo One', 'Exo 2', 'Orbitron', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap; /* evita quebra de linha nos botões */
  display: inline-block; /* garante que seja clicável */
  pointer-events: auto; /* garante que aceite cliques */
  z-index: 10; /* garante que fique acima de outros elementos */
  position: relative; /* garante posicionamento correto */
}
.footer-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #ffd700;
  border-color: #ffd700;
}
.footer-copy {
  text-align: center;
  margin-top: 10px;
}
.footer-copy small {
  color: #e0e0e0;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Responsividade do rodapé */
@media (max-width: 768px) {
  .custom-footer {
    padding: 20px 0 12px 0; /* reduz padding em mobile */
  }
  
  .footer-nav {
    gap: 12px; /* reduz gap entre botões */
    margin-bottom: 16px;
  }
  
  .footer-btn {
    font-size: 0.9rem; /* reduz tamanho da fonte */
    padding: 6px 14px; /* reduz padding dos botões */
  }
  
  .footer-copy small {
    font-size: 0.85rem; /* reduz tamanho do texto de copyright */
  }
}

@media (max-width: 480px) {
  .footer-nav {
    gap: 8px; /* gap ainda menor para telas muito pequenas */
  }
  
  .footer-btn {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

/* ===== ESTILOS GERAIS ===== */
html, body {
  overflow-x: hidden !important;
  box-sizing: border-box;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* Força box-sizing para todos os elementos */
*, *::before, *::after {
  box-sizing: border-box !important;
}

/* Previne qualquer overflow horizontal */
.container, .container-fluid, .row, [class*="col-"] {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif, "Orbitron",
    "Exo 2", "Russo One";
  min-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
}

.container {
  max-width: 1400px;
}

.fundo {
  /* Fallback PNG */
  background-image: url("../images/fundo_home.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}

/* WebP para navegadores modernos */
@supports (background-image: url("image.webp")) {
  .fundo {
    background-image: url("../images/fundo_home.webp");
  }
}

/* ===== ANIMAÇÕES GLOBAIS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInAbaixo {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flipIn {
  from {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  to {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-out;
}
.subtitulo-home {
  margin-top: -30px !important; /* força a subir */
}
/* Modal */
.modal-sugestao {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
}

.modal-sugestao.show {
  display: block !important;
}

.modal-content-sugestao {
  background: #205624 !important;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  color: #fff;
  position: relative;
  border: 2px solid #28a745;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-content-sugestao textarea,
.modal-content-sugestao input {
  width: calc(100% - 20px);
  padding: 10px;
  margin: 8px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  color: #000;
  background: #fff;
}

.modal-content-sugestao button {
  padding: 10px 15px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.modal-content-sugestao button:hover {
  background: #218838;
}

.fechar-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  z-index: 1;
}

/* ===== CENTRALIZAÇÃO DAS PÁGINAS DO FOOTER ===== */
/* Centralizar conteúdo das páginas: Sobre, Como Jogar, Política de Privacidade, Contato, Atualizações */
.futdle-section {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 2rem !important;
  text-align: left !important;
}

/* Garantir que o container principal também esteja centralizado */
.container {
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

/* Centralizar especificamente para páginas com fundo escuro */
body .container .futdle-section {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Forçar centralização em todas as páginas do footer */
body.fundo .container {
  display: flex !important;
  justify-content: center !important;
  min-height: 80vh !important;
}

body.fundo .container > div {
  width: 100% !important;
  max-width: 900px !important;
}

/* Forçar centralização do footer em todos os dispositivos */
.custom-footer * {
  text-align: center !important;
}

/* ===== REGRAS DE OVERFLOW PREVENTION ===== */
/* Media query específica para mobile overflow */
@media (max-width: 768px) {
  body, html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100vw !important;
  }
  
  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .container, .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100vw !important;
    width: 100% !important;
  }
  
  .footer-nav {
    max-width: 100% !important;
    overflow-x: hidden !important;
    flex-wrap: wrap !important;
    padding: 0 15px !important;
  }
  
  /* Força elementos com posição absoluta a respeitarem os limites */
  .botao-suporte-pequeno {
    right: 15px !important;
    max-width: calc(100vw - 30px) !important;
  }
}


/* --- bootstrap-custom.css --- */
/* ===== MELHORIAS BOOTSTRAP ===== */
.text-primary {
  color: #667eea !important;
}

/* ===== SISTEMA DE CORES BOOTSTRAP ===== */
.bg-success {
  background-color: #28a745 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
  color: #212529 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

/* ===== MODAIS BOOTSTRAP ===== */
.modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
  border-radius: 15px 15px 0 0;
  border-bottom: none;
}

.modal-footer {
  border-radius: 0 0 15px 15px;
  border-top: none;
}

/* ===== CARDS E ELEMENTOS BOOTSTRAP ===== */
.card {
  border-radius: 15px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
}

/* ===== TABELAS BOOTSTRAP ===== */
.table {
  border-radius: 10px;
  overflow: hidden;
}

.table th {
  background-color: #f8f9fa;
  border: none;
  font-weight: 600;
  padding: 15px;
}

.table td {
  border: none;
  padding: 15px;
  vertical-align: middle;
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 123, 255, 0.05);
}

/* ===== BADGES BOOTSTRAP ===== */
.badge {
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* ===== ALERTS BOOTSTRAP ===== */
.alert {
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===== AJUSTES PARA BOOTSTRAP ===== */
.gap-4 {
  gap: 1.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}


/* --- buttons.css --- */
/* Bootstrap, Bootstrap Icons e Font Awesome via @import para minificação manual */
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

/* ===== BOTÕES PRINCIPAIS ===== */
.botao-classico {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(145deg, #1c4520, #256a29);
  border: 3px solid #3ecf3e;
  border-radius: 14px;
  font-family: "Russo One", "Orbitron", "Exo 2", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fffbe9;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.35);
  transform: translateY(-40px);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  width: 320px;
  height: 90px;
  justify-content: center;
}

.botao-classico:hover {
  transform: translateY(-40px) scale(1.07);
  box-shadow: 0px 6px 20px rgba(62, 207, 62, 0.7);
  background: linear-gradient(145deg, #256a29, #2f7c35);
}

.botao-classico a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.botao-classico .icone {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  transition: transform 0.3s ease;
}

.botao-classico:hover .icone {
  transform: rotate(10deg) scale(1.1);
}

.botao-classico .icone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* ===== BOTÃO ESCUDO ===== */
.botao-escudo {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(145deg, #1c4520, #256a29);
  border: 3px solid #3ecf3e;
  border-radius: 14px;
  font-family: "Russo One", "Orbitron", "Exo 2", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fffbe9;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.35);
  transform: translateY(-40px);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  width: 320px;
  height: 90px;
  justify-content: center;
}

.botao-escudo:hover {
  transform: translateY(-40px) scale(1.07);
  box-shadow: 0px 6px 20px rgba(62, 207, 62, 0.7);
  background: linear-gradient(145deg, #256a29, #2f7c35);
}

.botao-escudo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.botao-escudo .icone {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  transition: transform 0.3s ease;
}

.botao-escudo:hover .icone {
  transform: rotate(10deg) scale(1.1);
}

.botao-escudo .icone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* ===== BOTÃO SUPORTE ===== */
.botao-suporte {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: linear-gradient(145deg, #2e4a7a, #3a5998);
  border: 3px solid #5b9bd5;
  border-radius: 14px;
  font-family: "Russo One", "Orbitron", "Exo 2", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fffbe9;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.35);
  transform: translateY(-40px);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.botao-suporte:hover {
  transform: translateY(-40px) scale(1.07);
  box-shadow: 0px 6px 20px rgba(91, 155, 213, 0.7);
  background: linear-gradient(145deg, #3a5998, #4a6bb8);
}

.botao-suporte a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.botao-suporte .icone {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  transition: transform 0.3s ease;
}

.botao-suporte:hover .icone {
  transform: rotate(10deg) scale(1.1);
}

.icone-suporte {
  font-size: 24px;
  pointer-events: none;
}

/* ===== BOTÃO SUPORTE PEQUENO ===== */
.botao-suporte-pequeno {
  position: absolute;
  right: calc(50% - 200px);
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2e4a7a, #3a5998);
  border: 2px solid #5b9bd5;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100;
  max-width: calc(100vw - 30px) !important;
}

.botao-suporte-pequeno:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0px 6px 20px rgba(91, 155, 213, 0.6);
  background: linear-gradient(145deg, #3a5998, #4a6bb8);
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .botao-suporte-pequeno {
    right: 15px !important;
    max-width: calc(100vw - 30px) !important;
  }
}

/* ===== BOTÃO ATUALIZAÇÕES ===== */
.botao-atualizacoes {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: linear-gradient(145deg, #7a4a2e, #9d5f3a);
  border: 3px solid #d2691e;
  border-radius: 14px;
  font-family: "Russo One", "Orbitron", "Exo 2", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fffbe9;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.35);
  transform: translateY(-40px);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.botao-atualizacoes:hover {
  transform: translateY(-40px) scale(1.07);
  box-shadow: 0px 6px 20px rgba(210, 105, 30, 0.7);
  background: linear-gradient(145deg, #9d5f3a, #b8723f);
}
/* ===== BOTÃO FEEDBACK ===== */
.botao-feedback {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background: linear-gradient(145deg, #1c4520, #256a29);
  border: 3px solid #3ecf3e;
  border-radius: 14px;
  font-family: "Russo One", "Orbitron", "Exo 2", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fffbe9;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.35);
  transform: translateY(-40px);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  width: 400px; /* largura maior para não quebrar */
  height: 90px; /* altura igual aos outros */
  margin: 30px auto 0 auto;
  white-space: nowrap; /* impede quebra de linha */
}

.botao-feedback:hover {
  transform: translateY(-40px) scale(1.07);
  box-shadow: 0px 6px 20px rgba(62, 207, 62, 0.7);
  background: linear-gradient(145deg, #256a29, #2f7c35);
}

.botao-feedback a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.botao-feedback .icone {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 18px;
  transition: transform 0.3s ease;
}

.botao-feedback:hover .icone {
  transform: rotate(10deg) scale(1.1);
}

.botao-feedback .icone img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.botao-feedback .icone i {
  font-size: 2.5rem;
  color: #fffbe9;
  pointer-events: none;
}

.botao-feedback span {
  font-size: 1.8rem; /* reduz um pouco o texto */
}
.botao-atualizacoes .icone {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  transition: transform 0.3s ease;
}

.botao-atualizacoes:hover .icone {
  transform: rotate(10deg) scale(1.1);
}

.icone-atualizacoes {
  font-size: 24px;
  pointer-events: none;
}

/* ===== BOTÃO JOGAR NOVAMENTE ===== */
.botao-jogar-novamente {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  background: linear-gradient(145deg, #28a745, #20c997);
  border: 3px solid #20c997;
  border-radius: 15px;
  font-family: "Russo One", "Exo 2", "Orbitron", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fffbe9;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 6px 20px rgba(40, 167, 69, 0.5);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 120px 0 60px 0;
  text-decoration: none;
  border: none;
  z-index: 100;
  position: relative;
}

.botao-jogar-novamente:hover {
  background: linear-gradient(145deg, #20c997, #17a2b8);
  box-shadow: 0px 8px 25px rgba(40, 167, 69, 0.7);
  transform: scale(1.05);
  border-color: #17a2b8;
}

.botao-jogar-novamente:active {
  transform: scale(0.98);
}

/* ===== BOTÃO REVELAR DICA - MODERNIZADO ===== */
.botao-revelar-dica {
  background: linear-gradient(145deg, #32cd32, #4ded4d);
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.botao-revelar-dica::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.botao-revelar-dica:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.6),
    0 6px 15px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #3b82f6);
}

.botao-revelar-dica:hover::before {
  left: 100%;
}

.botao-revelar-dica:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5),
    0 3px 8px rgba(59, 130, 246, 0.3);
}

/* ===== BOTÃO TENTAR NOVAMENTE INLINE ===== */
.botao-tentar-novamente-inline {
  background: linear-gradient(135deg, #28a745, #20c997);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
  animation: fadeInAbaixo 0.5s ease-out;
}

.botao-tentar-novamente-inline:hover {
  background: linear-gradient(135deg, #20c997, #28a745);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
  color: white;
}

.botao-tentar-novamente-inline:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* ===== MELHORIAS BOOTSTRAP ===== */
.btn-success {
  margin: 120px 0 60px 0;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
}

.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}


/* --- classico.css --- */
/* Centralizar dicas, contador de tentativas e mensagens de acerto/erro */
.dica,
.contador-tentativas,
.mensagem-resultado {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 16px auto;
}
/* ===== MODO CLÁSSICO ===== */
.conteudo-classico {
  background: transparent; /* ou remova esta linha */
  min-height: auto; /* remove a altura mínima forçada */
}

.titulo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: -60px !important;
  margin-bottom: 16px !important;
}

.titulo-container h1 {
  margin-bottom: 0;
  position: relative;
}

/* ===== BADGE E DATA DIÁRIA ===== */
.badge-diario {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #2c5f2d;
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 15px;
  margin-left: 10px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
  animation: pulse-gold 2s infinite;
  vertical-align: middle;
}

.data-diaria {
  color: #ffd700;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.desafio-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.desafio-diario {
  color: #ffd700;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(5px);
  animation: glow-text 3s ease-in-out infinite alternate;
}

@keyframes glow-text {
  0% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
  }
  100% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.5);
  }
}

@keyframes pulse-gold {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
  }
}

.modo-classico-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Russo One", "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #28a745;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 3px 3px 0px #14532d, -2px -2px 0px #14532d,
    0px 6px 10px rgba(0, 0, 0, 0.6);
  background: transparent;
  border: none;
  padding: 0;
  margin: 1rem 0 2rem 0;
}

.modo-classico-titulo i {
  font-size: 3rem;
  color: #ffd700; /* Dourado para destacar */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.modo-classico-titulo:hover i {
  transform: scale(1.2) rotate(-5deg);
}

.conteudo-classico form {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* ===== CONTAINER DO INPUT + BOTÃO ===== */
.autocomplete-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}

.autocomplete-container input {
  flex: 1;
  border-radius: 12px 0 0 12px;
  padding: 12px 16px;
  font-size: 1.1rem;
  border: 2px solid #28a745;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.autocomplete-container input:focus {
  border: 2px solid #20c997;
  box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1),
    inset 0 2px 4px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  transform: translateY(-1px);
}

.autocomplete-container button {
  border-radius: 0 12px 12px 0;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(145deg, #28a745, #20c997);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.autocomplete-container button:hover {
  transform: scale(1.05) translateY(-1px);
  background: linear-gradient(145deg, #20c997, #28a745);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* ===== LISTA DE SUGESTÕES ===== */
.sugestoes-lista {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 420px;
  margin-top: 4px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(40, 167, 69, 0.1);
  border: 2px solid rgba(40, 167, 69, 0.1);
  z-index: 1000;
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-15px) scale(0.95);
  animation: sugestoesFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  display: none;
  backdrop-filter: blur(10px);
}

.sugestoes-lista[style*="block"] {
  display: block !important;
}

@keyframes sugestoesFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sugestao-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 8px;
  margin: 4px 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.sugestao-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(40, 167, 69, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.sugestao-item:hover::before {
  left: 100%;
}

.sugestao-item:hover,
.sugestao-item.selected {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  transform: translateX(4px) scale(1.02);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.sugestao-item:hover .sugestao-nome,
.sugestao-item.selected .sugestao-nome {
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 600;
}

.sugestao-item:first-child {
  margin-top: 8px;
}

.sugestao-item:last-child {
  margin-bottom: 8px;
}

.sugestao-item img.sugestao-escudo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
  padding: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.sugestao-item:hover img.sugestao-escudo,
.sugestao-item.selected img.sugestao-escudo {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sugestao-nome {
  font-size: 1.05rem;
  font-weight: 600;
  font-family: "Exo 2", sans-serif;
  color: #1c4520;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

/* ===== SCROLLBAR CUSTOMIZADA ===== */
.sugestoes-lista::-webkit-scrollbar {
  width: 6px;
}

.sugestoes-lista::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 8px 0;
}

.sugestoes-lista::-webkit-scrollbar-thumb {
  background: linear-gradient(145deg, #28a745, #20c997);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.sugestoes-lista::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(145deg, #20c997, #17a2b8);
}

/* ===== EFEITOS ESPECIAIS ===== */
.autocomplete-container.loading input {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  position: relative;
}

.autocomplete-container.loading input::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(40, 167, 69, 0.1),
    transparent
  );
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ===== ESTADO VAZIO DAS SUGESTÕES ===== */
.sugestoes-lista.empty::after {
  content: "Nenhum time encontrado 🤔";
  display: block;
  text-align: center;
  padding: 20px;
  color: #6c757d;
  font-style: italic;
  font-family: "Exo 2", sans-serif;
}

/* ===== HIGHLIGHT PARA BUSCA ===== */
.sugestao-nome mark {
  background: linear-gradient(145deg, #ffc107, #ffed4e);
  color: #000;
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: 700;
}

.conteudo-classico label {
  color: #fffbe9;
  font-family: "Russo One", "Exo 2", "Orbitron", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}

.conteudo-classico input:not(.autocomplete-container input) {
  padding: 15px 20px;
  margin: 0;
  border: 3px solid #3ecf3e;
  border-radius: 12px;
  width: 300px;
  font-family: "Exo 2", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.95);
  color: #1c4520;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.conteudo-classico input:not(.autocomplete-container input):focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0px 6px 20px rgba(62, 207, 62, 0.6);
  transform: scale(1.02);
}

.conteudo-classico button:not(.autocomplete-container button) {
  padding: 12px 30px;
  margin: 0;
  background: linear-gradient(145deg, #1c4520, #256a29);
  border: 3px solid #3ecf3e;
  border-radius: 12px;
  font-family: "Russo One", "Exo 2", "Orbitron", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fffbe9;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease;
}

.conteudo-classico button:not(.autocomplete-container button):hover {
  background: linear-gradient(145deg, #256a29, #2f7c35);
  box-shadow: 0px 6px 20px rgba(62, 207, 62, 0.7);
  transform: scale(1.05);
}

/* ===== INTERFACE DE JOGO FINALIZADO ===== */
.jogo-concluido-container {
  background: rgba(40, 167, 69, 0.15);
  border: 2px solid #28a745;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 500px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(40, 167, 69, 0.3);
}

.mensagem-parabens h3 {
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.mensagem-parabens p {
  color: #f8f9fa;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.botao-pos-jogo {
  min-width: 250px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-width: 2px !important;
}

.botao-pos-jogo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.botao-pos-jogo i {
  margin-right: 0.5rem;
}

/* Remove regra que esconde formulário - não é mais necessária */
.jogo-finalizado .formulario-chute {
  display: block;
}

/* ===== DROPDOWN DE SUGESTÕES BOOTSTRAP ===== */
.dropdown-sugestoes {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
}

.dropdown-sugestoes.show {
  display: block;
}

.sugestao-item {
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease;
}

.sugestao-item:hover,
.sugestao-item.active {
  background-color: #f8f9fa;
}

.sugestao-item:last-child {
  border-bottom: none;
}

/* ===== MENSAGEM DESAFIO DIÁRIO ===== */
.mensagem-desafio {
  background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
  border: 3px solid #ffd700;
  border-radius: 20px;
  padding: 15px 25px;
  margin: 20px auto;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.mensagem-desafio::before {
  content: "⚽";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  animation: rotate-ball 3s linear infinite;
}

.mensagem-desafio::after {
  content: "🏆";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  animation: trophy-glow 2s ease-in-out infinite alternate;
}

.mensagem-desafio h3 {
  color: #ffd700;
  font-family: "Russo One", sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
  letter-spacing: 1px;
  animation: text-glow 2s ease-in-out infinite alternate;
}

/* Animações */
@keyframes rotate-ball {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes trophy-glow {
  from {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
    transform: translateY(-50%) scale(1);
  }
  to {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
    transform: translateY(-50%) scale(1.1);
  }
}

@keyframes text-glow {
  from {
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
  }
  to {
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.8),
      0 0 40px rgba(255, 215, 0, 0.3);
  }
}

/* ===== CALENDÁRIO DE DIAS ANTERIORES ===== */
.calendario-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.calendario-container {
  background: linear-gradient(145deg, #1c4520, #256a29);
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  border: 3px solid #ffd700;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.calendario-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  color: #ffd700;
}

.calendario-header h3 {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-size: 1.4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.btn-fechar-calendario {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  font-weight: bold;
}

.btn-fechar-calendario::before {
  content: "×";
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffd700;
  line-height: 1;
}

.btn-fechar-calendario i {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
}

.btn-fechar-calendario:hover {
  background: #ffd700;
  color: #1c4520;
  transform: scale(1.1);
}

.btn-fechar-calendario:hover::before {
  color: #1c4520;
}

.btn-fechar-calendario:hover i {
  color: #1c4520;
}

.calendario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
  max-height: 400px; /* Aumentado para acomodar mais dias */
  overflow-y: auto;
  padding: 10px 0;
}

.calendario-dia {
  background: linear-gradient(145deg, #28a745, #20c997);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px 8px;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendario-dia:hover:not(:disabled) {
  background: linear-gradient(145deg, #ffd700, #ffed4e);
  color: #1c4520;
  transform: translateY(-2px);
  border-color: #1c4520;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.calendario-dia.dia-atual {
  background: linear-gradient(145deg, #dc3545, #c82333);
  border-color: #ffd700;
  animation: pulse-atual 2s infinite;
}

.calendario-dia.dia-hoje {
  background: linear-gradient(145deg, #28a745, #20c997);
  border: 2px solid transparent;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendario-dia.dia-hoje:hover {
  background: linear-gradient(145deg, #ffd700, #ffed4e);
  color: #1c4520;
  transform: translateY(-2px);
  border-color: #1c4520;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

@keyframes pulse-atual {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.8);
  }
}

/* Separador de mês no calendário */
.calendario-separador-mes {
  grid-column: 1 / -1; /* Ocupa toda a largura do grid */
  text-align: center;
  margin: 15px 0 10px 0;
  position: relative;
}

.calendario-separador-mes span {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.95rem;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.calendario-separador-mes::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #28a745, transparent);
  z-index: 1;
}

/* Responsivo para o calendário */
@media (max-width: 768px) {
  .calendario-container {
    padding: 20px;
    margin: 20px;
  }

  .calendario-grid {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 8px;
  }

  .calendario-dia {
    padding: 10px 6px;
    font-size: 0.8rem;
    min-height: 40px;
  }
}

/* ===== BOTÃO DIAS ANTERIORES NO CABEÇALHO - MODERNIZADO ===== */
.botao-dias-anteriores-header {
  background: linear-gradient(135deg, #2563eb, #3b82f6, #8b5cf6);
  border: 2px solid rgba(99, 102, 241, 0.8);
  color: #ffffff;
  font-family: "Orbitron", "Russo One", sans-serif;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4),
    0 4px 12px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.botao-dias-anteriores-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.botao-dias-anteriores-header:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #7c3aed);
  border-color: rgba(139, 92, 246, 1);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.6),
    0 6px 15px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.botao-dias-anteriores-header:hover::before {
  left: 100%;
}

.botao-dias-anteriores-header:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5),
    0 3px 8px rgba(59, 130, 246, 0.3);
}

/* Responsividade para o container do desafio */
@media (max-width: 576px) {
  .desafio-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .desafio-diario {
    font-size: 1rem;
  }

  .botao-dias-anteriores-header {
    font-size: 0.9rem;
    padding: 10px 18px;
    letter-spacing: 1px;
  }
}


/* --- dicas.css --- */
/* ===== SISTEMA DE DICAS ===== */
/* Seção de dicas alinhada com os botões acima */
.secao-dicas {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: start;
  column-gap: 1.5rem;
  row-gap: 32px;
  width: 100%;
  max-width: 760px; /* alinha com .desafio-container */
  margin: 22px auto 16px auto;
  padding: 0 16px;
  box-sizing: border-box;
  text-align: center;
}

/* Primeira dica (série) alinha com "Desafio do dia" */
.secao-dicas .dica-container-wrapper:nth-child(1) {
  grid-column: 1;
  justify-self: center;
  align-self: start;
  width: 100%;
  max-width: 360px;
}

/* Segunda dica (mascote) alinha com "JOGAR OUTROS DIAS" */
.secao-dicas .dica-container-wrapper:nth-child(2) {
  grid-column: 2;
  justify-self: center;
  align-self: start;
  width: 100%;
  max-width: 360px;
}

/* Responsivo: quando for só uma dica ou tela estreita, volta a coluna */
@media (max-width: 768px) {
  .secao-dicas {
    grid-template-columns: 1fr; /* uma coluna só */
    gap: 20px;
    padding: 0 15px; /* padding reduzido em telas menores */
    max-width: 100%; /* largura total para mobile */
  }

  .secao-dicas .dica-container-wrapper:nth-child(1),
  .secao-dicas .dica-container-wrapper:nth-child(2) {
    grid-column: 1; /* ambas ficam na coluna única */
    transform: none; /* remove os ajustes de posição */
    justify-self: center;
    max-width: 320px; /* tamanho otimizado para mobile */
  }

  .dica-container-wrapper {
    max-width: 100%;
    min-width: unset;
  }
}

/* ===== NOVA ESTRUTURA DE DICAS ===== */
.dica-container-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  max-width: 450px; /* aumentado para consistência */
  min-width: 300px; /* reduzido para melhor responsividade */
  margin: 0 auto; /* centralização explícita */
  width: 100%;
}

.dica-container-wrapper .dica-container {
  width: 100%;
  margin-bottom: 15px;
}

.dica-container-wrapper .contador-tentativas {
  width: auto;
  margin-bottom: 0;
  padding: 10px 20px;
  font-size: 1rem;
}

/* ===== CONTADOR DE TENTATIVAS ===== */
.contador-tentativas {
  background: linear-gradient(145deg, #1c4520, #256a29);
  padding: 15px 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 2px solid #3ecf3e;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 8px 32px rgba(28, 69, 32, 0.3);
  backdrop-filter: blur(20px);
}

.label-contador {
  color: #fffbe9;
  font-family: "Inter", "Exo 2", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 10px;
}

.numero-tentativas {
  color: #3ecf3e !important;
  font-family: "Russo One", sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: bold !important;
  text-shadow: none !important;
}

.contador-tentativas-integrado {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 5px;
}

.contador-tentativas-integrado .label-contador {
  font-family: "Russo One", sans-serif;
  font-size: 1.1rem;
  color: #fffbe9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contador-tentativas-integrado .numero-tentativas {
  font-family: "Orbitron", sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #3ecf3e !important;
  text-shadow: none !important;
}

/* ===== CONTAINER DE DICAS ===== */
.dica-container {
  background: linear-gradient(145deg, #2c5f2d, #1a4a1d);
  padding: 25px;
  border-radius: 20px;
  border: 4px solid #3ecf3e;
  box-shadow: 0px 8px 25px rgba(62, 207, 62, 0.4),
    0px 4px 15px rgba(0, 0, 0, 0.3), inset 0px 1px 3px rgba(255, 255, 255, 0.1);
  outline: 2px solid rgba(62, 207, 62, 0.3);
  outline-offset: 3px;
  animation: pulseHint 0.8s ease-out;
  margin: 0 auto;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* Efeito de brilho sutil */
.dica-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.8s ease;
}

.dica-container:hover::before {
  left: 100%;
}

/* ===== ESTADOS DAS DICAS ===== */

/* DICA BLOQUEADA */
.dica-container:has(.dica-bloqueada-individual) {
  background: linear-gradient(145deg, #1e4620, #163319);
  border: 4px solid #2d5a30;
  box-shadow: 0px 8px 25px rgba(45, 90, 48, 0.4),
    0px 4px 15px rgba(0, 0, 0, 0.3), inset 0px 1px 3px rgba(255, 255, 255, 0.05);
  outline: 2px solid rgba(45, 90, 48, 0.3);
  outline-offset: 3px;
}

.dica-bloqueada-individual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0.7;
}

.texto-dica-bloqueada {
  background: linear-gradient(45deg, #2d5a30, #1e4620);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid #2d5a30;
  box-shadow: 0 4px 12px rgba(45, 90, 48, 0.4);
  animation: shake 0.5s ease-in-out;
}

/* DICA DISPONÍVEL */
.dica-container:has(.dica-serie:not([style*="display: none"])),
.dica-container:has(.dica-mascote:not([style*="display: none"])) {
  background: linear-gradient(145deg, #0f3d0f, #145214);
  border: 4px solid #1e7a1e;
  box-shadow: 0 8px 25px rgba(30, 122, 30, 0.5), 0 4px 15px rgba(0, 0, 0, 0.4);
  outline: 2px solid rgba(30, 122, 30, 0.4);
  outline-offset: 3px;
  animation: pulseAvailable 2s infinite;
}

/* DICA REVELADA/ABERTA */
.dica-container:has(.texto-dica-oculto:not([style*="display: none"])) {
  background: linear-gradient(145deg, #27ae60, #2ecc71);
  border: 4px solid #2ecc71;
  box-shadow: 0px 8px 25px rgba(46, 204, 113, 0.6),
    0px 4px 15px rgba(0, 0, 0, 0.3), inset 0px 1px 3px rgba(255, 255, 255, 0.2);
  outline: 2px solid rgba(46, 204, 113, 0.4);
  outline-offset: 3px;
  animation: pulseRevealed 1s ease-out;
}

/* ===== RESPONSIVIDADE PARA TABLETS ===== */
@media (max-width: 992px) and (min-width: 769px) {
  .secao-dicas {
    gap: 50px;
  }

  .dica-container-wrapper {
    max-width: 320px;
  }
}

@media (max-width: 1200px) and (min-width: 993px) {
  .secao-dicas {
    gap: 55px;
  }
}

.dicas-disponiveis {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 100%;
}

.dicas-disponiveis .dica-container {
  flex: 1;
  min-width: 300px;
  max-width: 420px;
  margin: 0;
  background: linear-gradient(135deg, #2563eb, #3b82f6, #8b5cf6);
  border: 2px solid rgba(99, 102, 241, 0.8);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4),
    0 4px 12px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dicas-disponiveis .dica-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.dicas-disponiveis .dica-container:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #7c3aed);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.6),
    0 6px 15px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(139, 92, 246, 1);
}

.dicas-disponiveis .dica-container:hover::before {
  left: 100%;
}

.dica-container h3 {
  color: #ffffff;
  font-family: "Orbitron", "Russo One", sans-serif;
  font-size: 1.8rem;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

/* Títulos específicos por estado */
#titulo-dica-serie,
#titulo-dica-mascote {
  transition: all 0.3s ease;
}

/* Título quando disponível */
.dica-container:has(.dica-serie:not([style*="display: none"])) h3,
.dica-container:has(.dica-mascote:not([style*="display: none"])) h3 {
  color: #ffffff;
  font-family: "Orbitron", "Russo One", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

/* Título quando revelada */
.dica-container:has(.texto-dica-oculto:not([style*="display: none"])) h3 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  animation: titleSuccess 0.6s ease-out;
}

.texto-dica {
  color: #fffbe9;
  font-family: "Exo 2", sans-serif;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.texto-dica-inicio {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 15px 0;
  opacity: 0.95;
  font-style: normal;
  line-height: 1.5;
}

/* ===== ESTRUTURA DAS DICAS ===== */
.dica-mascote,
.dica-serie {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

/* ===== BOTÃO REVELAR DICA - MODERNIZADO ===== */
.botao-revelar-dica {
  background: linear-gradient(145deg, #32cd32, #4ded4d);
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.botao-revelar-dica::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.botao-revelar-dica:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.6);
}

.botao-revelar-dica:hover::before {
  left: 100%;
}

.botao-revelar-dica:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5),
    0 3px 8px rgba(59, 130, 246, 0.3);
}

/* ===== TEXTO DA DICA REVELADA ===== */
.texto-dica-oculto {
  background: linear-gradient(45deg, #2ecc71, #27ae60);
  color: white;
  padding: 15px 25px;
  border-radius: 20px;
  font-family: "Russo One", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 3px solid #27ae60;
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
  animation: revelarDica 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.texto-dica-oculto::before {
  content: "✨";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 1.5rem;
  animation: sparkle 1.5s ease-in-out infinite;
}

.texto-dica-oculto strong {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ===== ANIMAÇÕES DAS DICAS ===== */

/* Animação de disponibilidade */
@keyframes pulseAvailable {
  0%,
  100% {
    box-shadow: 0px 8px 25px rgba(76, 175, 80, 0.5),
      0px 4px 15px rgba(0, 0, 0, 0.3),
      inset 0px 1px 3px rgba(255, 255, 255, 0.15);
    border-color: #4caf50;
    outline-color: rgba(76, 175, 80, 0.4);
  }
  50% {
    box-shadow: 0px 12px 35px rgba(76, 175, 80, 0.8),
      0px 6px 20px rgba(0, 0, 0, 0.4),
      inset 0px 1px 3px rgba(255, 255, 255, 0.2);
    border-color: #66bb6a;
    outline-color: rgba(102, 187, 106, 0.6);
  }
}

/* Animação quando revelada */
@keyframes pulseRevealed {
  0% {
    transform: scale(1);
    box-shadow: 0px 8px 25px rgba(46, 204, 113, 0.6);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0px 15px 40px rgba(46, 204, 113, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0px 8px 25px rgba(46, 204, 113, 0.6);
  }
}

/* Animação do título brilhando */
@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.6),
      0 0 15px rgba(241, 196, 64, 0.5);
  }
}

/* Animação do título de sucesso */
@keyframes titleSuccess {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Animação de revelação da dica */
@keyframes revelarDica {
  0% {
    opacity: 0;
    transform: scale(0.5) rotateY(90deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1) rotateY(45deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

/* Animação do brilho */
@keyframes sparkle {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg) scale(1.2);
    opacity: 0.7;
  }
}

/* Animação de bloqueado */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* ===== ANIMAÇÕES ===== */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes successPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.texto-dica-oculto {
  color: #fffbe9;
  font-family: "Russo One", sans-serif;
  font-size: 1.3rem;
  margin: 10px 0 0 0;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.5s ease-in;
}

/* ===== DICAS BLOQUEADAS ===== */
.dica-bloqueada {
  background: linear-gradient(145deg, #1c4520, #256a29);
  border: 2px solid #3ecf3e;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.dica-bloqueada p {
  color: #fffbe9;
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  margin: 10px 0 0 0;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.dica-bloqueada-individual {
  background: #002e11;
  border: 2px solid #3ecf3e;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.dica-bloqueada-individual .texto-dica-inicio {
  color: #fffbe9;
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  margin: 10px 0 0 0;
  font-style: italic;
}

.dica-bloqueada-individual .texto-dica-bloqueada {
  color: #fffbe9;
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  margin: 10px 0 0 0;
  font-style: italic;
}

/* ===== NOVOS CARDS DE DICA ===== */
.cards-dicas {
  gap: 1rem;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.card-dica {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 1.5rem;
  width: 260px;
  text-align: center;
  color: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card-dica:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.card-dica .card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.card-dica.disponivel {
  background: linear-gradient(135deg, #2563eb, #3b82f6, #8b5cf6);
  border: 2px solid rgba(99, 102, 241, 0.8);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4),
    0 4px 12px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.card-dica.disponivel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.card-dica.disponivel:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #7c3aed);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.6),
    0 6px 15px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(139, 92, 246, 1);
}

.card-dica.disponivel:hover::before {
  left: 100%;
}

.card-dica.disponivel .card-title,
.card-dica.disponivel .card-text,
.card-dica.disponivel .card-disponivel {
  font-family: "Orbitron", "Russo One", sans-serif;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 1.2px;
}

.card-dica.disponivel .card-title {
  font-weight: 700;
  text-transform: uppercase;
}

.card-dica.bloqueada:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.card-dica.bloqueada .card-icon {
  font-size: 2rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.card-dica.bloqueada .card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ccc;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-dica.bloqueada .card-text {
  font-size: 1rem;
  color: #ddd;
}

.card-dica.bloqueada .card-disponivel {
  font-size: 0.95rem;
  color: #28a745;
  font-weight: bold;
  margin-top: 8px;
}

.card-dica.bloqueada {
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(100, 255, 100, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  width: 260px;
  text-align: center;
  color: #f8f9fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  animation: cardFadeIn 0.6s ease-out, pulseCard 2s infinite ease-in-out;
}

/* ===== FONTES MELHORADAS ===== */
.card-dica .card-title,
.card-dica .card-text,
.card-dica .card-disponivel {
  font-family: "Russo One", "Orbitron", sans-serif;
  letter-spacing: 1px;
}

/* ===== ANIMAÇÕES ===== */
@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card-dica {
  animation: cardFadeIn 0.6s ease-out;
}

@keyframes pulseCard {
  0% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    transform: scale(1.01);
  }
  100% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
}

@keyframes pulseHint {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* --- resultados.css --- */
/* ===== SISTEMA DE RESULTADOS ===== */
.resultado-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.resultado-container-abaixo {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ===== ESTILOS BASE RESULTADO MENSAGEM ===== */
.resultado-mensagem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 12px;
  font-family: "Russo One", "Orbitron", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeSlideDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 20px 0;
}

.resultado-mensagem-abaixo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: "Russo One", "Orbitron", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  animation: fadeInAbaixo 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Forçar animação em elementos criados dinamicamente */
.resultado-mensagem.acertou,
.resultado-mensagem.errou,
.resultado-mensagem.time-nao-encontrado,
.resultado-mensagem-abaixo.acertou,
.resultado-mensagem-abaixo.errou,
.resultado-mensagem-abaixo.time-nao-encontrado {
  animation: fadeSlideDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInAbaixo {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-2px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== VARIAÇÕES DE RESULTADO ===== */
.resultado-mensagem.acertou,
.resultado-mensagem-abaixo.acertou {
  background: linear-gradient(145deg, #28a745, #20c997);
  color: #fff;
  border: 2px solid #20c997;
}
.resultado-mensagem.acertou::before,
.resultado-mensagem-abaixo.acertou::before {
  content: "✔";
  font-weight: bold;
}

.resultado-mensagem.errou,
.resultado-mensagem-abaixo.errou {
  background: linear-gradient(145deg, #dc3545, #e74c3c);
  color: #fff;
  border: 2px solid #e74c3c;
}
.resultado-mensagem.errou::before,
.resultado-mensagem-abaixo.errou::before {
  content: "✖";
  font-weight: bold;
}

.resultado-mensagem.time-nao-encontrado,
.resultado-mensagem-abaixo.time-nao-encontrado {
  background: linear-gradient(145deg, #007bff, #0056b3);
  color: #fff;
  border: 2px solid #0056b3;
}
.resultado-mensagem.time-nao-encontrado::before,
.resultado-mensagem-abaixo.time-nao-encontrado::before {
  content: "❓";
  font-weight: bold;
}

.resultado-mensagem.repetido,
.resultado-mensagem-abaixo.repetido {
  background: linear-gradient(145deg, #17a2b8, #138496);
  color: #fff;
  border: 2px solid #138496;
}
.resultado-mensagem.repetido::before,
.resultado-mensagem-abaixo.repetido::before {
  content: "↺";
  font-weight: bold;
}

.resultado-wrapper {
  animation: fadeInAbaixo 0.5s ease-out;
}


/* --- tentativas.css --- */
/* ===== SISTEMA DE TENTATIVAS ===== */
.tentativas-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 900px; /* igual ao cabeçalho */
  margin: 20px auto; /* centralizado */
  flex-wrap: wrap;
}

/* ===== CABEÇALHO DAS TENTATIVAS ===== */
.cabecalho-tentativas {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 2fr;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 12px auto;
  background: #14532d;
  color: #fff;
  font-family: "Russo One", sans-serif;
  padding: 15px 0; /* <-- remover padding lateral */
  border-radius: 12px;
  font-size: 1.1rem;
  gap: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.cabecalho-tentativas div {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.col-nome,
.col-cores,
.col-estado,
.col-ano {
  text-align: center;
  font-size: 0.9rem;
}

/* ===== ITENS DE TENTATIVAS ===== */
.tentativa-item {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 2fr;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 12px auto;
  background: #1f5b2e;
  border-radius: 12px;
  padding: 15px 0; /* <-- igual ao cabeçalho */
  gap: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: flipIn 0.6s ease-out forwards;
  opacity: 0;
  transform: rotateY(90deg);
}

.tentativa-item:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

/* ===== ANIMAÇÃO FLIP ===== */
@keyframes flipIn {
  0% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  60% {
    transform: rotateY(-10deg);
    opacity: 1;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

/* ===== ESCUDO E NOME ===== */
.escudo-simples {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.nome-clube {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.escudo-simples img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  object-fit: cover;
}

/* ===== CHIPS DE INFORMAÇÕES ===== */
.cores-simples,
.estado-simples,
.ano-simples {
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-right: 10px;
}

/* ===== ESTADOS DE ACERTO/ERRO ===== */
.cores-simples {
  background-color: #dc3545;
}
.cores-simples.exato,
.cores-exato {
  background-color: #28a745 !important;
  color: white !important;
}
.cores-simples.parcial,
.cores-parcial {
  background-color: #ffc107 !important;
  color: #212529 !important;
}
.cores-simples.diferente,
.cores-diferente {
  background-color: #dc3545 !important;
  color: white !important;
}

.estado-simples {
  background-color: #dc3545;
}
.estado-simples.correto,
.estado-correto {
  background-color: #28a745 !important;
  color: white !important;
}
.estado-simples.incorreto,
.estado-incorreto {
  background-color: #dc3545 !important;
  color: white !important;
}

.ano-simples {
  background-color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.ano-simples.correto,
.ano-correto {
  background-color: #28a745 !important;
  color: white !important;
}
.ano-simples.incorreto,
.ano-incorreto {
  background-color: #dc3545 !important;
  color: white !important;
}

.ano-simples span {
  font-size: 16px;
}

/* ===== ESCUDOS DIVERSOS ===== */
.escudo-pequeno {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.escudo-resultado {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.escudo-sugestao {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 10px;
}


/* --- escudo.css --- */
/* ===== ZOOM PROGRESSIVO DO ESCUDO ===== */
.zoom-nivel-0 {
  transform: translate(-50%, -50%) scale(5);
}
.zoom-nivel-1 {
  transform: translate(-50%, -50%) scale(4.5);
}
.zoom-nivel-2 {
  transform: translate(-50%, -50%) scale(4);
}
.zoom-nivel-3 {
  transform: translate(-50%, -50%) scale(3.5);
}
.zoom-nivel-4 {
  transform: translate(-50%, -50%) scale(3);
}
.zoom-nivel-5 {
  transform: translate(-50%, -50%) scale(2.5);
}
.zoom-nivel-6 {
  transform: translate(-50%, -50%) scale(2);
}
.zoom-nivel-7 {
  transform: translate(-50%, -50%) scale(1.5);
}
.zoom-nivel-8 {
  transform: translate(-50%, -50%) scale(1);
}
/* ===== MODO ESCUDO ===== */
/* Sobrescreve o fundo para o modo escudo */
body:has(.conteudo-classico) {
  /* Fallback PNG */
  background-image: url("../images/fundo_home.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* WebP para modo escudo */
@supports (background-image: url("image.webp")) {
  body:has(.conteudo-classico) {
    background-image: url("../images/fundo_home.webp");
  }
}

/* Alternativa: fundo sólido para modo escudo */
.conteudo-classico {
  background: transparent; /* ou remova esta linha */
  min-height: auto; /* remove a altura mínima forçada */
}

/* ===== FORMULÁRIO ESCUDO ===== */
/* Garante que o formulário sempre apareça no modo escudo, mesmo quando finalizado */
/* Formulário específico apenas para o escudo */
.escudo-time-secreto ~ .formulario-chute {
  display: block !important;
}

.conteudo-escudo {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  color: white;
  text-align: center;
}
.contador-tentativas {
  display: block; /* mudando para block para melhor controle */
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 25px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 20px auto; /* margin auto para centralizar horizontalmente */
  color: #fff;
  text-align: center;
  max-width: 300px; /* limita a largura */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.contador-tentativas .label-contador {
  margin-right: 8px;
}

.numero-tentativas {
  font-size: 1.4rem;
  color: #ffd700;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  margin-left: 5px;
}

.escudo-secreto-container {
  margin-bottom: 30px;
}

.escudo-time-secreto {
  width: 280px;
  height: 280px;
  margin: 0 auto 20px;
  border-radius: 20px;
  border: 4px solid #28a745;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Remove qualquer texto de fundo que possa aparecer */
.escudo-time-secreto::before,
.escudo-time-secreto::after {
  display: none !important;
  content: none !important;
}

.conteudo-classico::before,
.conteudo-classico::after {
  display: none !important;
  content: none !important;
}

.escudo-time-secreto img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  transition: transform 0.5s ease-in-out, filter 0.3s ease;
  filter: grayscale(100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 50%; /* padrão, mas JS sobrescreve */
  transform: translate(-50%, -50%) scale(5);
  opacity: 0;

  /* Previne o menu de contexto e drag */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;

  pointer-events: auto;

  /* Previne o comportamento de "press and hold" no iOS */
  -webkit-tap-highlight-color: transparent;
}

/* Classe aplicada quando o JS termina de carregar */
.escudo-time-secreto img.js-loaded {
  opacity: 1;
}

.escudo-time-secreto img.colorido {
  filter: grayscale(0%);
}

.escudo-time-secreto img.rotacao-normal {
  /* Rotação controlada via JavaScript */
}

/* Zoom e transformações controladas dinamicamente via JavaScript */

/* Classes de rotação aleatória - funcionam junto com zoom via JavaScript */
.rotacao-15 {
  transform: rotate(15deg);
}
.rotacao-30 {
  transform: rotate(30deg);
}
.rotacao-45 {
  transform: rotate(45deg);
}
.rotacao-60 {
  transform: rotate(60deg);
}
.rotacao-90 {
  transform: rotate(90deg);
}
.rotacao-120 {
  transform: rotate(120deg);
}
.rotacao-135 {
  transform: rotate(135deg);
}
.rotacao-150 {
  transform: rotate(150deg);
}
.rotacao-180 {
  transform: rotate(180deg);
}
.rotacao-210 {
  transform: rotate(210deg);
}
.rotacao-225 {
  transform: rotate(225deg);
}
.rotacao-240 {
  transform: rotate(240deg);
}
.rotacao-270 {
  transform: rotate(270deg);
}
.rotacao-300 {
  transform: rotate(300deg);
}
.rotacao-315 {
  transform: rotate(315deg);
}
.rotacao-330 {
  transform: rotate(330deg);
}
.rotacao-210 {
  transform: rotate(210deg);
}
.rotacao-225 {
  transform: rotate(225deg);
}
.rotacao-240 {
  transform: rotate(240deg);
}
.rotacao-270 {
  transform: rotate(270deg);
}
.rotacao-300 {
  transform: rotate(300deg);
}
.rotacao-315 {
  transform: rotate(315deg);
}
.rotacao-330 {
  transform: rotate(330deg);
}

/* Pontos de zoom aleatórios para evitar áreas transparentes */
.zoom-ponto-centro {
  transform-origin: 50% 50%;
}
.zoom-ponto-superior {
  transform-origin: 50% 30%;
}
.zoom-ponto-inferior {
  transform-origin: 50% 70%;
}
.zoom-ponto-esquerda {
  transform-origin: 30% 50%;
}
.zoom-ponto-direita {
  transform-origin: 70% 50%;
}
.zoom-ponto-superior-esquerda {
  transform-origin: 35% 35%;
}
.zoom-ponto-superior-direita {
  transform-origin: 65% 35%;
}
.zoom-ponto-inferior-esquerda {
  transform-origin: 35% 65%;
}
.zoom-ponto-inferior-direita {
  transform-origin: 65% 65%;
}

/* Botão para alternar cores */
.botao-alternar-cores {
  background: linear-gradient(135deg, #6c757d, #495057);
  color: white;
  border: none;
  border-radius: 15px;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 15px auto;
  display: block;
  width: fit-content;
  position: relative;
  z-index: 1000;
  pointer-events: auto;
}

.botao-alternar-cores:hover {
  background: linear-gradient(135deg, #5a6268, #3d4143);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.botao-alternar-cores.colorido {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.botao-alternar-cores.colorido:hover {
  background: linear-gradient(135deg, #218838, #1eaa8a);
}

/* Botão para alternar rotação */
.botao-alternar-rotacao {
  background: linear-gradient(135deg, #fd7e14, #e55353);
  color: white;
  border: none;
  border-radius: 15px;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 15px auto;
  display: block;
  width: fit-content;
  position: relative;
  z-index: 1000;
  pointer-events: auto;
}

/* Garantir centralização dos botões do modo escudo */
.escudo-secreto-container {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* Garantir que os botões sejam clicáveis */
.escudo-secreto-container .botao-alternar-cores,
.escudo-secreto-container .botao-alternar-rotacao {
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 1001 !important;
  position: relative !important;
}

.botao-alternar-rotacao:hover {
  background: linear-gradient(135deg, #e55353, #dc3545);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.botao-alternar-rotacao.normal {
  background: linear-gradient(135deg, #17a2b8, #138496);
}

.botao-alternar-rotacao.normal:hover {
  background: linear-gradient(135deg, #138496, #117a8b);
}

.texto-escudo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fffbe9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}

/* ===== TENTATIVAS DO MODO ESCUDO ===== */
.tentativas-container-escudo {
  margin-top: 30px;
  text-align: center;
}

.tentativas-container-escudo h3 {
  color: #fffbe9;
  margin-bottom: 20px;
  font-size: 1.4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.tentativa-item-escudo {
  display: inline-block;
  margin: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.tentativa-item-escudo:hover {
  transform: scale(1.05);
  border-color: rgba(40, 167, 69, 0.8);
  background: rgba(255, 255, 255, 0.15);
}

.tentativa-escudo {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  border-radius: 10px;
  border: 2px solid #28a745;
  overflow: hidden;
  background: transparent;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tentativa-escudo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.tentativa-nome {
  color: #fffbe9;
  font-weight: bold;
  font-size: 0.9rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* ===== MENSAGEM DESAFIO DIÁRIO (ESCUDO) ===== */
.mensagem-desafio {
  background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
  border: 3px solid #ffd700;
  border-radius: 20px;
  padding: 15px 25px;
  margin: 20px auto 25px auto;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.mensagem-desafio::before {
  content: "🛡️";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  animation: shield-pulse 2s ease-in-out infinite alternate;
}

.mensagem-desafio::after {
  content: "🏆";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  animation: trophy-glow 2s ease-in-out infinite alternate;
}

.mensagem-desafio h3 {
  color: #ffd700;
  font-family: "Russo One", sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
  letter-spacing: 1px;
  animation: text-glow 2s ease-in-out infinite alternate;
}

/* Animações específicas do escudo */
@keyframes shield-pulse {
  from {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
    transform: translateY(-50%) scale(1);
  }
  to {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
    transform: translateY(-50%) scale(1.1);
  }
}

@keyframes trophy-glow {
  from {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
    transform: translateY(-50%) scale(1);
  }
  to {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
    transform: translateY(-50%) scale(1.1);
  }
}

@keyframes text-glow {
  from {
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
  }
  to {
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.8),
      0 0 40px rgba(255, 215, 0, 0.3);
  }
}
.titulo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Centralizar e aproximar a mensagem de feedback */
#resultado-container-abaixo {
  position: relative !important; /* usa o fluxo normal */
  margin-top: 20px !important; /* espaço entre input e mensagem */
  text-align: center !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center;
}

#resultado-container-abaixo .resultado-mensagem-abaixo {
  max-width: 500px;
  width: auto;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  margin: 0 auto;
}
/* Aproxima título da logo em todos os modos */
.titulo-container {
  margin-top: -10px !important; /* aproxima verticalmente */
}

/* Títulos específicos apenas do modo escudo */
.modo-escudo-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Russo One', 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #28a745;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow:
    3px 3px 0px #14532d,
    -2px -2px 0px #14532d,
    0px 6px 10px rgba(0, 0, 0, 0.6);
  background: transparent;
  border: none;
  padding: 0;
  margin: 1rem 0 2rem 0;
}

.modo-escudo-titulo i {
  font-size: 3rem;
  color: #ffd700; /* Dourado para destacar */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.modo-escudo-titulo:hover i {
  transform: scale(1.2) rotate(-5deg);
}

/* Estilo para o botão de hoje no calendário - igual aos outros */
.calendario-dia.dia-hoje {
  background: linear-gradient(145deg, #28a745, #20c997);
  border: 2px solid transparent;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendario-dia.dia-hoje:hover {
  background: linear-gradient(145deg, #ffd700, #ffed4e);
  color: #1c4520;
  transform: translateY(-2px);
  border-color: #1c4520;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* ===== BOTÃO DIAS ANTERIORES NO CABEÇALHO - MODERNIZADO (ESCUDO) ===== */
.botao-dias-anteriores-header {
  background: linear-gradient(135deg, #2563eb, #3b82f6, #8b5cf6);
  border: 2px solid rgba(99, 102, 241, 0.8);
  color: #ffffff;
  font-family: "Orbitron", "Russo One", sans-serif;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4),
    0 4px 12px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.botao-dias-anteriores-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.botao-dias-anteriores-header:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #7c3aed);
  border-color: rgba(139, 92, 246, 1);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.6),
    0 6px 15px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.botao-dias-anteriores-header:hover::before {
  left: 100%;
}

.botao-dias-anteriores-header:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5),
    0 3px 8px rgba(59, 130, 246, 0.3);
}

/* ===== FORMULÁRIO ESPECÍFICO DO MODO ESCUDO ===== */
/* Estilos apenas para escudo */
  display: flex !important;
  position: relative !important;
  max-width: 500px;
  margin: 0 auto 20px auto;
  align-items: center;
  gap: 10px;
}

.conteudo-classico .autocomplete-container input {
  display: block !important;
  visibility: visible !important;
  flex: 1;
  padding: 12px 20px;
  font-size: 1rem;
  border: 3px solid #28a745;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  font-weight: 500;
  text-align: center;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.conteudo-classico .autocomplete-container input:focus {
  border-color: #ffd700;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.conteudo-classico .autocomplete-container button {
  display: block !important;
  visibility: visible !important;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 100px;
}

.conteudo-classico .autocomplete-container button:hover {
  background: linear-gradient(135deg, #218838, #1eaa8a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.conteudo-classico .autocomplete-container button:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== BOTÃO FECHAR CALENDÁRIO ===== */
.btn-fechar-calendario {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  font-weight: bold;
}

.btn-fechar-calendario::before {
  content: "×";
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffd700;
  line-height: 1;
}

.btn-fechar-calendario i {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
}

.btn-fechar-calendario:hover {
  background: #ffd700;
  color: #1c4520;
  transform: scale(1.1);
}

.btn-fechar-calendario:hover::before {
  color: #1c4520;
}

.btn-fechar-calendario:hover i {
  color: #1c4520;
}


/* --- confetti.css --- */
/* ===== ANIMAÇÕES DE CONFETES ===== */

/* Animação principal dos confetes caindo do centro */
@keyframes confetti-fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Animação dos confetes saindo da esquerda */
@keyframes confetti-fall-left {
  0% {
    transform: translateY(-10px) translateX(-100px) rotate(0deg);
    opacity: 1;
  }
  20% {
    transform: translateY(20vh) translateX(-50px) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) translateX(50px) rotate(720deg);
    opacity: 0;
  }
}

/* Animação dos confetes saindo da direita */
@keyframes confetti-fall-right {
  0% {
    transform: translateY(-10px) translateX(100px) rotate(0deg);
    opacity: 1;
  }
  20% {
    transform: translateY(20vh) translateX(50px) rotate(-180deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) translateX(-50px) rotate(-720deg);
    opacity: 0;
  }
}

/* Animação dos confetes saindo do canto superior esquerdo */
@keyframes confetti-corner-left {
  0% {
    transform: translateY(-20px) translateX(-20px) rotate(0deg) scale(0.8);
    opacity: 1;
  }
  30% {
    transform: translateY(30vh) translateX(100px) rotate(360deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(120vh) translateX(200px) rotate(1080deg) scale(0.5);
    opacity: 0;
  }
}

/* Animação dos confetes saindo do canto superior direito */
@keyframes confetti-corner-right {
  0% {
    transform: translateY(-20px) translateX(20px) rotate(0deg) scale(0.8);
    opacity: 1;
  }
  30% {
    transform: translateY(30vh) translateX(-100px) rotate(-360deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(120vh) translateX(-200px) rotate(-1080deg) scale(0.5);
    opacity: 0;
  }
}

/* Classe base para confetes */
.confetti {
  position: fixed;
  z-index: 9999;
  animation-name: confetti-fall;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  pointer-events: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  /* Duração mais rápida por padrão */
  animation-duration: 0.8s; /* Reduzido de 1.0s para 0.8s */
}

/* Variações de formas dos confetes */
.confetti:nth-child(odd) {
  border-radius: 0; /* Formato quadrado */
}

.confetti:nth-child(even) {
  border-radius: 50%; /* Formato circular */
}

/* Algumas variações triangulares */
.confetti:nth-child(3n) {
  width: 0 !important;
  height: 0 !important;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 8px solid;
  border-radius: 0;
  background: transparent !important;
}

/* Cor para triângulos */
.confetti:nth-child(3n):after {
  content: '';
  border-bottom-color: inherit;
}

/* Cores padrão dos confetes (caso não sejam definidas via JavaScript) */
.confetti-vermelho {
  background: #ff6b6b;
}

.confetti-azul {
  background: #4ecdc4;
}

.confetti-verde {
  background: #45b7d1;
}

.confetti-amarelo {
  background: #ffa726;
}

.confetti-roxo {
  background: #ab47bc;
}

.confetti-rosa {
  background: #f06292;
}

/* Classes para variações de movimento */
.confetti-left {
  animation-name: confetti-fall-left;
  animation-duration: 0.6s; /* Mais rápido ainda - era 0.8s */
}

.confetti-right {
  animation-name: confetti-fall-right;
  animation-duration: 0.6s; /* Mais rápido ainda - era 0.8s */
}

.confetti-corner-left {
  animation-name: confetti-corner-left;
  animation-duration: 1.0s; /* Mais rápido - era 1.2s */
}

.confetti-corner-right {
  animation-name: confetti-corner-right;
  animation-duration: 1.0s; /* Mais rápido - era 1.2s */
}

.confetti-fall {
  animation-name: confetti-fall;
  animation-duration: 0.8s; /* Mais rápido que o padrão */
}

/* Responsividade para confetes */
@media (max-width: 768px) {
  .confetti {
    width: 6px !important;
    height: 6px !important;
  }
  
  .confetti:nth-child(3n) {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 6px solid;
  }
}

@media (max-width: 480px) {
  .confetti {
    width: 4px !important;
    height: 4px !important;
  }
  
  .confetti:nth-child(3n) {
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: 4px solid;
  }
}


/* --- popup.css --- */
/* ===== POPUP/MODAL STYLES ===== */

/* Overlay de fundo do popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: popup-fade-in 0.3s ease-out;
}

/* Container principal do popup */
.popup-container {
  background: linear-gradient(145deg, #1c4520, #256a29);
  border: 3px solid #28a745;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 8px 25px rgba(40, 167, 69, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: popup-slide-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Header do popup */
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px 15px 25px;
  border-bottom: 2px solid rgba(40, 167, 69, 0.3);
  margin-bottom: 0;
}

.popup-header h3 {
  color: #ffd700;
  font-family: "Russo One", "Orbitron", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popup-header h3 i {
  margin-right: 10px;
  color: #28a745;
  text-shadow: none;
}

/* Botão fechar popup */
.btn-fechar-popup {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0;
}

.btn-fechar-popup:hover {
  background: #ffd700;
  color: #1c4520;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-fechar-popup i {
  font-size: 1rem;
  font-weight: bold;
}

/* Conteúdo do popup */
.popup-content {
  padding: 15px 25px 20px 25px; /* Reduzido padding superior de 20px para 15px */
}

/* Container dos botões do modo */
.botoes-modos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

/* Estilo dos botões dentro do popup */
.botao-modo {
  width: 100%;
  max-width: 300px;
  padding: 15px 25px;
  font-family: "Russo One", "Orbitron", "Exo 2", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.botao-modo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.botao-modo:hover::before {
  left: 100%;
}

.botao-modo:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.botao-modo:active {
  transform: translateY(-1px) scale(1.01);
}

.botao-modo i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Cores específicas dos botões */
.btn-primary.botao-modo {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border-color: rgba(0, 123, 255, 0.3);
}

.btn-primary.botao-modo:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  border-color: #007bff;
  color: white;
}

.btn-warning.botao-modo {
  background: linear-gradient(135deg, #ffc107, #e0a800);
  color: #000;
  border-color: rgba(255, 193, 7, 0.3);
  font-weight: bold;
}

.btn-warning.botao-modo:hover {
  background: linear-gradient(135deg, #e0a800, #d39e00);
  border-color: #ffc107;
  color: #000;
}

/* Animações */
@keyframes popup-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popup-slide-in {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .popup-container {
    width: 95%;
    margin: 10px;
  }
  
  .popup-header {
    padding: 15px 20px 10px 20px;
  }
  
  .popup-header h3 {
    font-size: 1.2rem;
  }
  
  .popup-content {
    padding: 15px 20px 20px 20px;
  }
  
  .btn-fechar-popup {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .botao-modo {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .popup-container {
    width: 98%;
    margin: 5px;
  }
  
  .popup-header h3 {
    font-size: 1.1rem;
  }
  
  .botao-modo {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
  
  .btn-fechar-popup {
    width: 35px;
    height: 35px;
  }
}

/* Scrollbar customizada para o popup */
.popup-container::-webkit-scrollbar {
  width: 8px;
}

.popup-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.popup-container::-webkit-scrollbar-thumb {
  background: linear-gradient(145deg, #28a745, #20c997);
  border-radius: 10px;
}

.popup-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(145deg, #20c997, #17a2b8);
}


/* --- botoes-pos-jogo.css --- */
/* ===== MELHORIAS DOS BOTÕES PÓS-JOGO ===== */

/* Container principal da conclusão do jogo */
.jogo-concluido-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* Mensagem de parabéns centralizada */
.mensagem-parabens {
  text-align: center;
  margin-bottom: 2rem;
}

.mensagem-parabens h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mensagem-parabens p {
  font-size: 1.2rem;
  margin-bottom: 0;
  text-align: center;
}

/* Container dos botões após finalizar o jogo */
.botoes-pos-jogo {
  margin: 2rem 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
  max-width: 400px;
}

/* Espaçamento específico entre os botões */
.botao-pos-jogo + .botao-pos-jogo {
  margin-top: 1rem;
}

/* Melhorar centralização dos botões */
.jogo-concluido-container .d-flex.flex-column {
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 2rem 1rem;
}

/* Garantir que os botões tenham altura mínima consistente */
.botao-pos-jogo {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px !important;
  margin: 8px 0 !important;
  /* Tipografia forte e consistente */
  font-family: "Russo One", "Orbitron", "Exo 2", sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Deixa TODOS os botões pós-jogo na cor #1D4921 */
#botao-jogar-outros-dias {
  background: #1D4921 !important;
  border: 2px solid #1D4921 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(29, 73, 33, 0.35) !important;
}

#botao-jogar-outros-dias:hover {
  background: #1D4921 !important;
  border-color: #1D4921 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(29, 73, 33, 0.45) !important;
}

#botao-jogar-outros-dias i { margin-right: .5rem; }

/* "Jogar Próximo Modo" na mesma cor */
#botao-jogar-outros-modos {
  background: #1D4921 !important;
  border: 2px solid #1D4921 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(29, 73, 33, 0.35) !important;
}

#botao-jogar-outros-modos:hover {
  background: #1D4921 !important;
  border-color: #1D4921 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(29, 73, 33, 0.45) !important;
}

#botao-jogar-outros-modos i { margin-right: .5rem; }

/* "Tentar Novamente" na mesma cor */
#botao-resetar-data {
  background: #1D4921 !important;
  border: 2px solid #1D4921 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(29, 73, 33, 0.35) !important;
}

#botao-resetar-data:hover {
  background: #1D4921 !important;
  border-color: #1D4921 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(29, 73, 33, 0.45) !important;
}

#botao-resetar-data i { margin-right: .5rem; }

/* ===== HISTÓRICO NA TELA DE VITÓRIA ===== */

/* Container do histórico na vitória */
.historico-vitoria {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.historico-vitoria h5 {
  color: #ffd700;
  font-family: "Russo One", sans-serif;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Lista do histórico */
.lista-historico {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  max-height: 120px;
  overflow-y: auto;
}

/* Item individual do histórico */
.item-historico {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 80px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.item-historico:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Foto do time no histórico */
.foto-historico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 0.3rem;
}

/* Nome do time no histórico */
.nome-historico {
  font-size: 0.7rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 1.1;
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Contador de tentativas na vitória */
.contador-vitoria {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  margin: 1rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contador-vitoria .label-contador {
  color: #ffd700;
  font-weight: 600;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.contador-vitoria .numero-tentativas-vitoria {
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  background: rgba(255, 215, 0, 0.2);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 215, 0, 0.4);
}

/* Responsividade para os botões pós-jogo */
@media (max-width: 768px) {
  .botoes-pos-jogo {
    margin: 1.5rem 0;
    padding: 1rem;
    gap: 0.8rem;
  }

  .jogo-concluido-container .d-flex.flex-column {
    min-height: 150px;
    padding: 1.5rem 0.5rem;
  }

  .botao-pos-jogo {
    min-height: 50px;
  font-size: 0.95rem;
    padding: 12px 20px !important;
  letter-spacing: 1px;
  }

  .historico-vitoria {
    padding: 1rem;
    margin: 0.8rem 0;
  }

  .lista-historico {
    gap: 0.6rem;
    max-height: 100px;
  }

  .item-historico {
    min-width: 70px;
    padding: 0.4rem;
  }

  .foto-historico {
    width: 28px;
    height: 28px;
  }

  .nome-historico {
    font-size: 0.65rem;
    max-width: 60px;
  }
}

@media (max-width: 480px) {
  .botoes-pos-jogo {
    margin: 1rem 0;
    padding: 0.8rem;
    gap: 0.6rem;
  }

  .jogo-concluido-container .d-flex.flex-column {
    min-height: 120px;
    padding: 1rem 0.3rem;
  }

  .botao-pos-jogo {
    min-height: 45px;
  font-size: 0.85rem;
    padding: 10px 15px !important;
  letter-spacing: 0.9px;
  }

  .historico-vitoria {
    padding: 0.8rem;
    margin: 0.6rem 0;
  }

  .historico-vitoria h5 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .lista-historico {
    gap: 0.5rem;
    max-height: 80px;
  }

  .item-historico {
    min-width: 60px;
    padding: 0.3rem;
  }

  .foto-historico {
    width: 24px;
    height: 24px;
  }

  .nome-historico {
    font-size: 0.6rem;
    max-width: 50px;
  }

  .contador-vitoria {
    padding: 0.6rem 1rem;
    margin: 0.8rem 0;
  }

  .contador-vitoria .label-contador {
    font-size: 0.8rem;
  }

  .contador-vitoria .numero-tentativas-vitoria {
    font-size: 1rem;
    padding: 0.2rem 0.5rem;
  }
}


/* --- layout.css --- */
/* ===== HEADER E LOGO ===== */
.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin-bottom: 80px;
}

.logo {
  width: 300px;
  height: auto;
  display: block;
  text-align: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link {
  display: block;
  text-decoration: none;
  width: fit-content;
}

.logo-link:hover .logo {
  transform: scale(1.05);
  filter: brightness(1.1) drop-shadow(0 0 20px rgba(62, 207, 62, 0.6));
}

/* ===== CONTEÚDO HOME ===== */
.conteudo-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateY(-40px);
  gap: 40px;
}

/* ===== SUBTÍTULO HOME ===== */
.subtitulo-home {
  font-family: "Russo One", "Exo 2", "Orbitron", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fffbe9;
  text-align: center;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;

  /* centralizado e mais próximo da logo */
  margin: -30px auto 0 !important;
  transform: translateY(-70px);

  padding: 10px 20px;
  border: 3px solid #3ecf3e;
  border-radius: 12px;
  background: rgba(28, 69, 32, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(62, 207, 62, 0.3);
}

.botoes-extras {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
body {
  /* Fallback PNG */
  background: url("images/fundo_home.png") no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
}

/* WebP para layout geral */
@supports (background-image: url("image.webp")) {
  body {
    background-image: url("images/fundo_home.webp");
  }
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #2c5f2d, #1a4a1d) !important;
  backdrop-filter: blur(10px);
  border-top: 3px solid #ffd700;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  padding: 25px 0;
}
/* Faz o body ocupar a tela toda e usa flexbox */
html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* A área do conteúdo cresce automaticamente */
body > *:not(footer) {
  flex: 1 0 auto;
}

/* Footer fica sempre colado embaixo */
footer {
  flex-shrink: 0;
  margin-top: auto;
}

/* ===== HEADER E NAVEGAÇÃO BOOTSTRAP ===== */
.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  padding: 12px 24px;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}


/* --- responsive.css --- */
/* ===== RESPONSIVIDADE ===== */
/* ===== OVERFLOW PREVENTION ===== */
@media (max-width: 768px) {
  /* Controle geral de overflow */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100vw !important;
  }
  
  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .container, .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100vw !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }
  
  /* Força todos os elementos principais a respeitarem a largura da tela */
  .conteudo-home, .conteudo-classico, .conteudo-escudo, .header-container {
    max-width: 100vw !important;
    width: 100% !important;
    overflow-x: hidden !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .dica-container-wrapper {
    max-width: 100%;
    min-width: auto;
    width: 100%;
  }

  .dica-container-wrapper .contador-tentativas {
    width: 100%;
    text-align: center;
  }

  .resultado-mensagem {
    padding: 15px;
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .card {
    margin-bottom: 15px;
  }

  .custom-card {
    padding: 15px;
  }

  /* Ajustes para o modo clássico em mobile */
  .conteudo-classico {
    transform: translateY(-60px);
    padding: 10px 15px !important;
    max-width: 100vw !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .modo-classico-titulo {
    font-size: 2.2rem;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }

  .logo {
    width: 200px;
    max-width: 90vw !important;
  }

  .botao-classico,
  .botao-escudo {
    width: min(280px, 90vw) !important;
    height: 80px;
    font-size: 1.6rem;
    padding: 12px 25px;
    max-width: 90vw !important;
  }

  .botao-suporte,
  .botao-atualizacoes {
    font-size: 1.5rem;
    padding: 8px 20px;
  }

  /* Ajustes para tentativas em mobile */
  .cabecalho-tentativas,
  .tentativa-item {
    grid-template-columns: 1.5fr 1.5fr 1fr 1.5fr;
    padding: 12px 20px;
    margin: 0 auto 12px auto;
    width: 100%;
    max-width: 900px;
  }

  .col-nome,
  .col-cores,
  .col-estado,
  .col-ano {
    font-size: 0.8rem;
  }

  .escudo-simples img {
    width: 60px;
    height: 60px;
  }

  .nome-clube {
    font-size: 0.9rem;
  }

  .cores-simples,
  .estado-simples,
  .ano-simples {
    padding: 8px 10px;
    font-size: 1rem;
  }

  /* Ajustes para dicas em mobile */
  .dicas-disponiveis {
    flex-direction: column;
    gap: 15px;
  }

  .dicas-disponiveis .dica-container {
    min-width: auto;
    max-width: none;
  }

  .card-dica {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  /* Ajustes para escudo em mobile */
  .conteudo-escudo {
    padding: 20px 15px;
  }

  .escudo-time-secreto {
    width: 150px;
    height: 150px;
  }

  .tentativa-item-escudo {
    margin: 5px;
    padding: 10px;
  }

  .tentativa-escudo {
    width: 60px;
    height: 60px;
  }

  /* Ajustes para autocomplete em mobile */
  .autocomplete-container {
    max-width: min(350px, 90vw) !important;
    width: 100% !important;
    flex-direction: column;
    gap: 10px;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .autocomplete-container input {
    border-radius: 8px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .autocomplete-container button {
    border-radius: 8px;
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 16px;
    box-sizing: border-box !important;
  }

  .sugestoes-lista {
    max-width: min(350px, 90vw) !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 480px) {
  .header-container {
    margin-bottom: 40px;
    padding: 0 15px !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .logo {
    width: 150px;
    max-width: 80vw !important;
  }

  .conteudo-home {
    gap: 20px;
    transform: translateY(-20px);
    padding: 0 15px !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .botoes-extras {
    flex-direction: column;
    gap: 15px;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .botao-classico,
  .botao-escudo {
    width: min(260px, 85vw) !important;
    height: 75px;
    font-size: 1.4rem;
    transform: translateY(-20px);
    max-width: 85vw !important;
  }

  .botao-classico:hover,
  .botao-escudo:hover {
    transform: translateY(-20px) scale(1.05);
  }

  .botao-suporte,
  .botao-atualizacoes {
    font-size: 1.3rem;
    padding: 6px 18px;
    transform: translateY(-20px);
  }

  .botao-suporte:hover,
  .botao-atualizacoes:hover {
    transform: translateY(-20px) scale(1.05);
  }

  .modo-classico-titulo {
    font-size: 1.8rem;
  }

  .conteudo-classico {
    transform: translateY(-40px);
  }

  /* Botão suporte pequeno em mobile */
  .botao-suporte-pequeno {
    right: calc(50% - 150px);
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  /* Ajustes extremos para telas muito pequenas */
  .cabecalho-tentativas,
  .tentativa-item {
    padding: 8px 15px;
    margin: 0 auto 12px auto;
    width: 100%;
    max-width: 900px;
    gap: 10px;
  }

  .escudo-simples img {
    width: 50px;
    height: 50px;
  }

  .cores-simples,
  .estado-simples,
  .ano-simples {
    padding: 6px 8px;
    font-size: 0.9rem;
  }

  .resultado-mensagem,
  .resultado-mensagem-abaixo {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

/* Ajustes para telas muito grandes */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  .cabecalho-tentativas,
  .tentativa-item {
    max-width: 900px;
    margin: 0 auto 12px auto;
    width: 100%;
  }
}

/* Ajustes para landscape em tablets */
@media (max-width: 1024px) and (orientation: landscape) {
  .conteudo-classico {
    transform: translateY(-80px);
  }

  .conteudo-home {
    transform: translateY(-30px);
  }

  .header-container {
    margin-bottom: 40px;
  }
}


/* --- forcas.css --- */
/* CSS de força para correções específicas */

/* Força remoção do fundo preto do contador */
.numero-tentativas,
.contador-tentativas-integrado .numero-tentativas,
#contador-erradas {
  color: #3ecf3e !important;
  text-shadow: none !important;
  background: transparent !important;
  border: none !important;
}

/* Força animações suaves nos resultados */
.resultado-mensagem,
.resultado-mensagem-abaixo {
  animation: fadeSlideDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Animação específica para elementos dinâmicos */
.resultado-mensagem.acertou,
.resultado-mensagem.errou,
.resultado-mensagem.time-nao-encontrado {
  animation: fadeSlideDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.resultado-mensagem-abaixo.acertou,
.resultado-mensagem-abaixo.errou,
.resultado-mensagem-abaixo.time-nao-encontrado {
  animation: fadeInAbaixo 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}


/* --- desafio-alignment.css --- */
/* ===== CORREÇÕES DE ALINHAMENTO ===== */

/* Alinhamento do desafio do dia com a dica de série */
/* Largura fixa opcional para alinhar com a grade de dicas (2 colunas de ~350px + gap) */
.desafio-container {
  max-width: 720px;
  margin-inline: auto;
}

.desafio-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.desafio-diario {
  color: #ffd700;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(5px);
  animation: glow-text 3s ease-in-out infinite alternate;
}

/* Responsividade para o container do desafio */
@media (max-width: 576px) {
  .desafio-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .desafio-diario {
    font-size: 1rem;
  }

  .desafio-container { max-width: none; }
}


/* --- emoji-button.css --- */
/* ===== BOTÃO EMOJI ===== */
.botao-emoji {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(145deg, #1c4520, #256a29);
  border: 3px solid #3ecf3e;
  border-radius: 14px;
  font-family: "Russo One", "Orbitron", "Exo 2", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fffbe9;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.35);
  transform: translateY(-40px);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  width: 320px;
  height: 90px;
  justify-content: center;
}

.botao-emoji:hover {
  transform: translateY(-40px) scale(1.07);
  box-shadow: 0px 6px 20px rgba(62, 207, 62, 0.7);
  background: linear-gradient(145deg, #256a29, #2f7c35);
}

.botao-emoji a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.botao-emoji .icone {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  transition: transform 0.3s ease;
}

.botao-emoji:hover .icone {
  transform: rotate(10deg) scale(1.1);
}

.botao-emoji .icone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* ===== RESPONSIVIDADE DO BOTÃO EMOJI ===== */
@media (max-width: 768px) {
  .botao-emoji {
    width: min(280px, 90vw) !important;
    height: 80px;
    font-size: 1.6rem;
    padding: 12px 25px;
    max-width: 90vw !important;
  }
}

@media (max-width: 480px) {
  .botao-emoji {
    width: min(260px, 85vw) !important;
    height: 75px;
    font-size: 1.4rem;
    transform: translateY(-20px);
    max-width: 85vw !important;
  }

  .botao-emoji:hover {
    transform: translateY(-20px) scale(1.05);
  }
}


/* --- emoji.css --- */
/* ===== BOTÃO EMOJI - MODO EMOJI ===== */
.botao-emoji {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(145deg, #1c4520, #256a29);
  border: 3px solid #3ecf3e;
  border-radius: 14px;
  font-family: "Russo One", "Orbitron", "Exo 2", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fffbe9;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.35);
  transform: translateY(-40px);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  width: 320px;
  height: 90px;
  justify-content: center;
}

.botao-emoji:hover {
  transform: translateY(-40px) scale(1.07);
  box-shadow: 0px 6px 20px rgba(62, 207, 62, 0.7);
  background: linear-gradient(145deg, #256a29, #2f7c35);
}

.botao-emoji a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.botao-emoji .icone {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  transition: transform 0.3s ease;
}

.botao-emoji:hover .icone {
  transform: rotate(10deg) scale(1.1);
}

.botao-emoji .icone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* ===== RESPONSIVIDADE BOTÃO EMOJI ===== */
@media (max-width: 768px) {
  .botao-emoji {
    width: min(280px, 90vw) !important;
    height: 80px;
    font-size: 1.6rem;
    padding: 12px 25px;
    max-width: 90vw !important;
  }
}

@media (max-width: 480px) {
  .botao-emoji {
    width: min(260px, 85vw) !important;
    height: 75px;
    font-size: 1.4rem;
    transform: translateY(-20px);
    max-width: 85vw !important;
  }

  .botao-emoji:hover {
    transform: translateY(-20px) scale(1.05);
  }
}

/* ===== CONTEÚDO DO MODO EMOJI ===== */
.conteudo-emoji {
  background: transparent;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #fffbe9;
}

/* Header: padroniza o botão "Jogar Outros Dias" para o estilo do Escudo */
.conteudo-emoji .botao-dias-anteriores-header {
  background: #1D4921 !important;
  /* Neon green border */
  border: 2px solid #39FF14 !important;
  color: #ffffff !important;
  font-family: "Orbitron", "Russo One", sans-serif !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-radius: 30px !important;
  transition: all 0.25s ease !important;
  /* Drop shadow + neon glow */
  box-shadow:
    0 8px 25px rgba(29, 73, 33, 0.35),
    0 0 10px rgba(57, 255, 20, 0.7),
    0 0 18px rgba(57, 255, 20, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  font-size: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
}

.conteudo-emoji .botao-dias-anteriores-header:hover {
  background: #1D4921 !important;
  border-color: #39FF14 !important;
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow:
    0 12px 35px rgba(29, 73, 33, 0.45),
    0 0 12px rgba(57, 255, 20, 0.85),
    0 0 22px rgba(57, 255, 20, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.titulo-emoji {
  font-family: "Russo One", "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #28a745;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 3px 3px 0px #14532d, -2px -2px 0px #14532d,
    0px 6px 10px rgba(0, 0, 0, 0.6);
  margin: 1rem 0 2rem 0;
}

.titulo-emoji i {
  font-size: 3rem;
  color: #ffd700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.titulo-emoji:hover i {
  transform: scale(1.2) rotate(-5deg);
}

/* Placeholder para conteúdo futuro do modo emoji */
.emoji-placeholder {
  background: rgba(40, 167, 69, 0.15);
  border: 2px solid #28a745;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 500px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(40, 167, 69, 0.3);
}

.emoji-placeholder h3 {
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.emoji-placeholder p {
  color: #f8f9fa;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

/* ===== FORM + LABEL NO PADRÃO DOS OUTROS MODOS ===== */
.conteudo-emoji form {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.conteudo-emoji label {
  color: #fffbe9;
  font-family: "Russo One", "Exo 2", "Orbitron", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}

/* Responsividade para o modo emoji */
@media (max-width: 768px) {
  .conteudo-emoji {
    padding: 1rem;
  }

  .titulo-emoji {
    font-size: 2.2rem;
  }

  .emoji-placeholder {
    padding: 1.5rem;
    margin: 1rem auto;
  }
}

@media (max-width: 480px) {
  .titulo-emoji {
    font-size: 1.8rem;
  }

  .emoji-placeholder h3 {
    font-size: 1.4rem;
  }

  .emoji-placeholder p {
    font-size: 1rem;
  }
}


