/* Botões */
.btn {
  display: inline-block;
  background: #fff;
  color: var(--verde);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  background: #eaeaea;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--cinza);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--verde-escuro);
}

/* Textos informativos */
.info {
  text-align: center;
  font-size: 1.05rem;
}

.info strong {
  color: var(--verde-escuro);
}

/* Seção inscrição */
.inscricao {
  background: var(--cinza);
  text-align: center;
  border-radius: 12px;
  padding: 40px 20px;
}

/* Formulários básicos */
form {
  max-width: 600px;
  margin: 30px auto 0;
  text-align: center;
}

form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* ======================
   BOTÃO LANÇAR PARTIDA
====================== */

.tabela-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-lancar {
  background: var(--verde);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-lancar:hover {
  background: var(--verde-escuro);
  transform: translateY(-2px);
}

.btn-lancar:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .tabela-header {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lancar {
    width: 100%;
    text-align: center;
  }
}

.acoes {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.btn-acao {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-acao svg {
  width: 18px;
  height: 18px;
}

.btn-editar svg {
  color: #2e7d32;
}

.btn-remover svg {
  color: #c62828;
}

.btn-acao:hover {
  background-color: #f0f0f0;
  transform: scale(1.1);
}
