/* ===================================================
   HERO 3D CARDS - Cards Flutuantes
   =================================================== */

.card-3d-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 12px;
}

.card-header-icon {
  font-size: 16px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.card-header-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-title);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.card-3d {
  position: absolute;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 18px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  color: var(--text-main);
}

.card-3d:hover {
  background: var(--nav-bg);
  border-color: var(--gold-premium) !important;
  z-index: 999 !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.card-approaches:hover { transform: scale(1.02) rotateY(10deg) translateZ(220px) !important; }
.card-wounds:hover { transform: scale(1.02) rotateY(-10deg) translateZ(220px) !important; }
.card-disc:hover { transform: scale(1.02) rotateY(10deg) translateZ(220px) !important; }
.card-character:hover { transform: scale(1.02) rotateY(-10deg) translateZ(220px) !important; }
.card-emotions:hover { transform: scale(1.02) rotateY(5deg) translateZ(220px) !important; }

.card-approaches {
  top: 0%; left: -5%;
  transform: scale(0.6) rotateY(15deg) translateZ(60px);
  animation: float-3d-3 7s infinite ease-in-out 0.5s;
  width: 280px;
}

.card-wounds {
  top: 10%; right: -8%;
  transform: scale(0.6) rotateY(-15deg) translateZ(80px);
  animation: float-3d-1 8s infinite ease-in-out;
}

.card-disc {
  bottom: 25%; left: -2%;
  transform: scale(0.65) rotateY(15deg) translateZ(140px);
  animation: float-3d-disc 11s infinite ease-in-out 2s;
}

.card-character {
  bottom: 10%; right: -5%;
  transform: scale(0.55) rotateY(-15deg) translateZ(120px);
  animation: float-3d-2 9s infinite ease-in-out 1s;
}

.card-emotions {
  bottom: 5%; left: -5%;
  transform: scale(0.6) rotateY(10deg) translateZ(160px);
  animation: float-3d-emotions 10s infinite ease-in-out;
}

/* Card 1: Feridas Emocionais */
.card-wounds-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wound-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.wound-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.wound-value {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
}

.wound-bar-container {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.wound-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #00CED1);
  border-radius: 100px;
  position: relative;
}

.bar-rejection { background: linear-gradient(90deg, #00A5B5, #00E4EC) !important; }
.bar-abandonment { background: linear-gradient(90deg, #3B82F6, #60A5FA) !important; }
.bar-humiliation { background: linear-gradient(90deg, #8B5CF6, #A78BFA) !important; }
.bar-betrayal { background: linear-gradient(90deg, #F59E0B, #FBBF24) !important; }
.bar-injustice { background: linear-gradient(90deg, #EF4444, #F87171) !important; }

.wound-value.val-rejection { color: #00A5B5; }
.wound-value.val-abandonment { color: #3B82F6; }
.wound-value.val-humiliation { color: #8B5CF6; }
.wound-value.val-betrayal { color: #F59E0B; }
.wound-value.val-injustice { color: #EF4444; }

/* Card 2: Traços de Caráter */
.card-character-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.character-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.char-icon {
  width: 24px;
  height: 24px;
  position: relative;
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.char-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.char-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.char-val {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-title);
}

.char-skizoid { width: 14px; height: 24px; background: rgba(0, 165, 181, 0.2); border-color: #00A5B5; border-radius: 2px; }
.char-oral { width: 22px; height: 22px; background: rgba(59, 130, 246, 0.2); border-color: #3B82F6; border-radius: 50%; }
.char-psychopath {
  width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent;
  border-top: 22px solid rgba(139, 92, 246, 0.3); border-bottom: 0; filter: drop-shadow(0 4px 6px rgba(139, 92, 246, 0.2));
}
.char-masochist { width: 20px; height: 20px; background: rgba(245, 158, 11, 0.2); border-color: #F59E0B; border-radius: 3px; }
.char-rigid {
  width: 18px; height: 22px; background: rgba(239, 68, 68, 0.2); border-color: #EF4444;
  clip-path: polygon(0% 0%, 100% 0%, 50% 50%, 100% 100%, 0% 100%, 50% 50%);
}

/* Card 3: Abordagens */
.card-approaches-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.card-approaches-tags span {
  font-size: 9.5px;
  font-weight: 800;
  padding: 6px 4px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  word-break: break-word;
}

.tag-tcc { background: rgba(0, 165, 181, 0.1); color: #00A5B5; }
.tag-behavior { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.tag-humanism { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.tag-gestalt { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.tag-analytic { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
.tag-hypnosis { background: rgba(236, 72, 153, 0.1); color: #EC4899; }
.tag-constellation { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
.tag-pnl { background: rgba(20, 184, 166, 0.1); color: #14B8A6; }
.tag-psychoanalysis { background: rgba(239, 68, 68, 0.1); color: #EF4444; }
.tag-etc { background: rgba(100, 116, 139, 0.1); color: #64748B; }

/* Card 4: Emoções */
.card-emotions-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.card-emotions-chips span {
  font-size: 9px;
  font-weight: 900;
  padding: 6px 4px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chip-alegria { background: #10b981; color: #fff; }
.chip-tristeza { background: #3b82f6; color: #fff; }
.chip-raiva { background: #ef4444; color: #fff; }
.chip-medo { background: #f59e0b; color: #fff; }
.chip-nojo { background: #84cc16; color: #fff; }
.chip-surpresa { background: #8b5cf6; color: #fff; }

/* Card 5: Perfil DISC */
.card-disc-chart {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.disc-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.disc-label {
  font-size: 9px;
  font-weight: 800;
  color: var(--text-muted);
}

.disc-val {
  font-size: 11px;
  font-weight: 900;
  color: var(--text-title);
}

.disc-bar-wrap {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  overflow: hidden;
}

.disc-bar { height: 100%; border-radius: 100px; }
.bar-d { background: #ef4444; }
.bar-i { background: #f59e0b; }
.bar-s { background: #10b981; }
.bar-c { background: #3b82f6; }