/* =============================================
   PROFILE — Pantalla de perfil del colaborador
   ============================================= */

/* ── Header con fondo oscuro ── */
.profile-header {
  background: var(--primary-dk);
  padding: calc(16px + var(--safe-top)) var(--gap-xl) 22px;
  margin-top: calc(-1 * var(--safe-top));
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.profile-avatar {
  width:  clamp(68px, 18vw, 84px);
  height: clamp(68px, 18vw, 84px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(28px, 8vw, 38px);
  color: var(--primary-100);
  margin-bottom: 10px;
}

.profile-name { font-size: clamp(16px, 4.5vw, 20px); font-weight: 800; color: white; }
.profile-sub  { font-size: clamp(11px, 3vw, 13px); color: rgba(255, 255, 255, 0.55); margin-top: 3px; }

.profile-badge {
  margin-top: 10px;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 5px;
}

.profile-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: #4ade80;
}

/* ── Scroll del formulario ── */
.profile-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 12px 18px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

.profile-scroll::-webkit-scrollbar { display: none; }
