:root {
  --primary: #3A833C;
  --secondary: #3498db;
  --success: #e5ac00;
  --warning: #f39c12;
  --danger: #e74c3c;
  --light: #c2318f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f5f6fa;
  padding: 20px;
}

  h1, h2 {
        margin-bottom: 10px;  
        color: var(--secondary-color);
    }



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background: var(--primary);
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.header h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.filters {
 /* background: white; */
  /* padding: 15px; */
  border-radius: 8px;
  margin-bottom: 10px;
/*  box-shadow: 0 2px 4px rgba(0,0,0,0.1); */

}
.filter-label {
   
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.filters h3 {
  margin-bottom: 15px;
}

.select-group {
  width: 100%;
  max-width: 300px;
  margin-bottom: 26px;

}

select {
  width: 60%;
  padding: 5px;
 /* border: 1px solid var(--primary); */
  
  background: white;
  font-size: 1rem;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
}

select:hover {
  border-color: var(--primary);
}

select:focus {
  outline: none;
 /* border-color: var(--secondary);*/
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}


.filtersResult {
    background: #FFFFFF; /* Fundo branco */
    color: #333; /* Texto escuro para bom contraste */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-right: 3px solid #c2318f; /* Borda verde sutil à esquerda */
      border-top: 1px solid #c2318f; /* Borda verde sutil à esquerda */
     border-left: 1px solid #c2318f; /* Borda verde sutil à esquerda */
    border-bottom: 3px solid #c2318f; /* Borda dourada suave */
    transition: box-shadow 0.3s ease-in-out;
}

.filtersResult:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Sombra mais suave no hover */
}

.filtersResult h3 {
    margin-bottom: 12px;
    margin-top: 1px;
    color: black; /* Título com cor verde escuro */
    font-size: 1.4em; /* Tamanho maior para dar mais destaque */
    font-weight: 700; /* Peso mais forte para o título */
    letter-spacing: 1px;
/* border-bottom: 2px solid rgba(58, 131, 60, 0.2);  Linha fina verde */
    padding-bottom: 10px;
}

.filtersResult p {
    color: #555; /* Cor do texto para contraste suave */
    font-size: 1em; /* Tamanho de fonte equilibrado */
    line-height: 1.6; /* Melhor espaçamento entre linhas */
    margin: 0;
    font-weight: 700; /* Peso leve e confortável para o texto */
}

.filtersResult span {
    font-weight: 600;
    color: black; /* Título com cor verde escuro */
    font-weight: 400; /* Peso mais forte para o título */
    padding: 6px 12px;
    border-radius: 6px;
    margin-left: 8px;
    transition: background 0.3s ease;
}

.filtersResult span:hover {
    background: rgba(58, 131, 60, 0.25); /* Efeito de hover para o span */
}




.btn-groupPalpite {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btnPalpite {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 120px;
  max-width: 200px;
}

.btn-primaryPalpite {
  background: var(--primary);
  color: white;
}

.btn-primaryPalpite:hover {
  background: var(--secondary);
}

.btn-primaryPalpite.active {
  background: var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  color: gold;
}

.combinations {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.combination-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #d4a514; /* Borda dourada mais suave */
  transition: box-shadow 0.3s ease, transform 0.3s ease; /* Adiciona uma animação suave */
}

.combination-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); /* Elevação sutil no hover */
}


.combination-card p {
    margin-bottom: 0;
}

.combination-card h3 {
    margin-top: 0;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(5, 32px); /* Leve aumento no tamanho */
  gap: 6px; /* Gap ligeiramente aumentado para mais espaço entre números */
  margin: 20px 0; /* Simplificação da margem */
  justify-content: center;
}

.number {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  color: #fff;
  border-radius: 50%;
  
          font-size: 14px;
        font-weight: bold;
  width: 32px;
  height: 32px;
  transition: background-color 0.2s ease; /* Efeito leve no hover */
}



.match {
  background: var(--success);
  color: white;
}

.match:hover {
  background-color: #b58810; /* Cor clara para um destaque sutil */
   color: white;
}

.loading {
  text-align: center;
  padding: 20px;
  font-size: 1.2em;
  color: var(--primary);
}

.ad-space {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  grid-column: 1 / -1;
  margin: 10px 0;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-style: italic;
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  
  .filtersResult h3 {
  
    letter-spacing: 1px;
    margin-top: 1px;
}

  .header h1 {
    font-size: 1.5rem;
  }re

  .btnPalpite {
    width: 100%;
    max-width: none;
  }

  .combinations {
    grid-template-columns: 1fr;
  }

.combination-card {
   max-width: 320px; /* Tamanho máximo do cartão */
   width: 100%;
   
   display: block;   /* Garante que o bloco ocupe o espaço necessário */
   
}


  .numbers {
    grid-template-columns: repeat(5, 28px);
   /* grid-template-rows: repeat(4, 28px); */
     margin-top: 20px;
  margin-bottom: 20px;
  }

    .number {
        width: 30px;
        height: 30px;
        font-size: 14px;
        font-weight: bold;
    }
}