.carteirinha-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px auto;
  flex-wrap: wrap;
}

.carteirinha {
  width: 400px;
  height: auto;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 15px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  transition: all 0.5s ease;
}

.hidden {
  display: none;
}

.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 60px;
}

.foto-membro {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #333;
}

.info-igreja {
  flex: 1;
  text-align: center;
  padding: 0 10px;
}

.dados p, .dados-verso p {
  margin: 4px 0;
  font-size: 13px;
}

.assinatura {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
}

.assinaturas {
  width: 100%;
  margin-top: 10px;
  border: 1px solid #000;
  border-collapse: collapse;
}

.assinaturas th, .assinaturas td {
  border: 1px solid #000;
  padding: 6px;
  text-align: center;
  font-size: 13px;
}

.botoes {
  text-align: center;
  margin-top: 20px;
}

.botoes button {
  margin: 0 8px;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 6px;
  border: none;
  background-color: #444;
  color: white;
  cursor: pointer;
}

.botoes button:hover {
  background-color: #222;
}

.carteirinha-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.botoes button:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}
