* {
  font-family: 'Poppins', sans-serif;
}

/* Badge com brilho para "Economize" */
@keyframes shine-move {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 100% 0;
  }
}

.shine-badge {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(90deg,
      #22c55e 0%,
      #16a34a 35%,
      rgba(255, 255, 255, 0.65) 50%,
      #16a34a 65%,
      #22c55e 100%);
  background-size: 200% auto;
  animation: shine-move 2s linear infinite;
  display: inline-block;
}
/* Inputs */
.input-field {
  width: 100%;
  border: 1px solid #d1d5db; /* gray-300 */
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  transition: all 0.2s;
}

.input-field:focus {
  outline: none;
  border-color: #9333ea; /* purple-600 */
  box-shadow: 0 0 0 2px #c084fc; /* purple-300 */
}

/* Botão */
.btn-submit {
  width: 100%;
  background-color: #9333ea; /* purple-600 */
  color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.btn-submit:hover {
  background-color: #db2777; /* pink-600 */
}

/* Aviso animado */
.aviso-publico {
  background-color: #FEF3C7;
  border-left: 4px solid #F59E0B;
  color: #92400E;
  padding: 1rem;
  font-weight: 600;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}
.btn-back { background-color: #f3f4f6; /* cinza claro */ color: #374151; /* cinza escuro */ padding: 0.75rem; border-radius: 0.5rem; font-weight: 600; display: flex; align-items: center; justify-content: center; transition: background 0.3s, color 0.3s; } .btn-back:hover { background-color: #e5e7eb; /* cinza mais escuro */ color: #111827; /* quase preto */ }
@keyframes shine-move {
  0%   { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

.shine-badge {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  background-image: linear-gradient(
    90deg,
    #22c55e 0%,
    #16a34a 35%,
    rgba(255,255,255,0.65) 50%,
    #16a34a 65%,
    #22c55e 100%
  );
  background-size: 200% auto;
  animation: shine-move 2s linear infinite;
  display: inline-block;
}
