/**
 * ====================================
 * BOTÕES TOUCH PERSONALIZADOS
 * Gerado pelo MakeBtn
 * Data: 26/08/2025, 00:00:15
 * Total de botões: 7
 * ====================================
 */

/* ===== CLASSE BASE PARA TODOS OS BOTÕES ===== */
.btn-touch {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  position: relative;
  padding: 1rem;
  min-width: 100px;
  min-height: 100px;
  text-decoration: none;
  outline: none;
  box-sizing: border-box;
}

.btn-touch i {
  margin-bottom: 0.5rem;
}

.btn-touch span {
  display: block;
  text-align: center;
  word-wrap: break-word;
}

/* ===== BOTÕES INDIVIDUAIS ===== */

/* 1. 45454 - lanches */
.btn-touch-5454 {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  width: 100px;
  height: 100px;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
}

.btn-touch-5454:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-touch-5454:active {
  transform: scale(0.98);
}

.btn-touch-5454 i {
  font-size: 1.5rem;
}

/* 2. Botão de Configuração - sistema */
.btn-touch-BTN_CONFIG {
  background-color: #ffffff;
  color: #e10e0e !important;
  border: 10px solid #d28484;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  width: 200px;
  height: 100px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.btn-touch-BTN_CONFIG:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-touch-BTN_CONFIG:active {
  transform: scale(0.98);
}

/* 3. Botão de Teste - teste */
.btn-touch-BTN_TESTE_001 {
  background-color: #FF0000;
  color: #FFFFFF;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  width: 100px;
  height: 100px;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
}

.btn-touch-BTN_TESTE_001:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-touch-BTN_TESTE_001:active {
  transform: scale(0.98);
}

.btn-touch-BTN_TESTE_001 i {
  font-size: 1.5rem;
}

/* 4. Botão de Teste 02 - sistema */
.btn-touch-BTN_TESTE_02 {
  background-color: #ffffff;
  color: #000000;
  border: 6px dotted #000000;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  width: 100px;
  height: 100px;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
}

.btn-touch-BTN_TESTE_02:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-touch-BTN_TESTE_02:active {
  transform: scale(0.98);
}

/* 5. Botão de Teste 05 - Geral */
.btn-touch-BTN_TESTE_05 {
  background-color: #1f2937;
  color: #f9fafb;
  border: 1px solid #374151;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  width: 100px;
  height: 100px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.btn-touch-BTN_TESTE_05:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-touch-BTN_TESTE_05:active {
  transform: scale(0.98);
}

/* 6. Botão Numeral - sistema */
.btn-touch-BTN_NUMERAL {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #cccccc;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  width: 100px;
  height: 100px;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
}

.btn-touch-BTN_NUMERAL:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-touch-BTN_NUMERAL:active {
  transform: scale(0.98);
}

.btn-touch-BTN_NUMERAL i {
  font-size: 1.5rem;
}

/* 7. novo - sistema */
.btn-touch-BTN_NOVO {
  background-color: #00704a;
  color: #ffffff;
  border: 1px solid #005a3c;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  width: 100px;
  height: 100px;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
}

.btn-touch-BTN_NOVO:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-touch-BTN_NOVO:active {
  transform: scale(0.98);
}

/* ===== ANIMAÇÕES DE FEEDBACK ===== */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-pulse { animation: pulse 0.3s ease-in-out; }
.animate-shake { animation: shake 0.3s ease-in-out; }
.animate-bounce { animation: bounce 0.3s ease-in-out; }

/* ===== CLASSES UTILITÁRIAS ===== */
.btn-touch-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-touch-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;
}


.pos-wrap button.btn-touch {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
}