/* ============================================
   SUPORTE — Estilos simples e focados
   Reaproveita classes base de dashboard.css
============================================ */

/* Cards de suporte (reutiliza padrão dashboard) */
.suporte-card {
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.status-badge.aberto {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.3);
}

.status-badge.fechado {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.3);
}

/* FAQ Toggle Button */
.faq-toggle {
  cursor: pointer;
  user-select: none;
}

.faq-toggle:focus {
  outline: 2px solid #f59e0b;
  outline-offset: -2px;
}

.faq-toggle span:last-child {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle span:last-child {
  transform: rotate(90deg);
}

/* FAQ Content */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-content {
  display: block;
}

/* WhatsApp Button */
#btn-whatsapp {
  position: relative;
  overflow: hidden;
}

#btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

#btn-whatsapp:hover::before {
  width: 300px;
  height: 300px;
}

#btn-whatsapp:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: scale(1) !important;
}

/* Responsividade Mobile */
@media (max-width: 640px) {
  .suporte-card {
    padding: 1.25rem !important;
  }

  .faq-toggle {
    padding: 1rem !important;
  }

  #btn-whatsapp {
    font-size: 1rem;
  }
}