/* ===================================================
   HERO SELECTOR - Antigravity Edition
   =================================================== */

.specialty-selector-container {
  margin-bottom: 70px; /* Espaço generoso para os boxes */
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1000px;
}

.selection-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
  display: block;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.professional-selector {
  display: flex;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 10px 30px -10px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  gap: 5px;
  position: relative;
  z-index: 50;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.professional-selector:hover {
  transform: translateY(-5px) scale(1.02);
}

.prof-btn {
  background: transparent;
  border: none;
  color: rgba(148, 163, 184, 0.8);
  padding: 12px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.prof-btn.active {
  background: #C59B2E;
  color: #000;
  font-weight: 700;
  box-shadow: 
    0 4px 15px rgba(197, 155, 46, 0.4),
    0 0 30px rgba(197, 155, 46, 0.2);
  transform: scale(1.05);
}

.prof-btn:not(.active):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.prof-btn:nth-child(1) { animation-delay: 0.1s; }
.prof-btn:nth-child(2) { animation-delay: 0.2s; }
.prof-btn:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .professional-selector {
    padding: 6px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 20px;
  }

  .prof-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 375px) {
  .prof-btn {
    padding: 10px 16px;
    font-size: 12px;
  }
}