.equipe {
  background: var(--color-bg-alt);
  padding: var(--space-3xl) 0;
}

.equipe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 251, 0.98));
  box-shadow: var(--shadow-sm);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
}

.team-photo-placeholder {
  position: relative;
  background: var(--gradient-brand);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.85rem;
  overflow: hidden;
}

.team-photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 0 22%, rgba(255, 255, 255, 0.06) 22% 46%, transparent 46% 100%);
  opacity: 0.7;
}

.team-photo-placeholder__logo {
  position: relative;
  z-index: 1;
  width: min(58%, 9rem);
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.team-photo-placeholder__label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  z-index: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-oab {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.team-name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.team-specialties {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.team-bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.team-credential {
  display: inline-block;
  font-size: 11px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  color: rgba(143, 112, 57, 0.96);
  border: 1px solid rgba(143, 112, 57, 0.18);
  border-radius: 999px;
  padding: 0.52rem 0.9rem;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(255, 255, 255, 0.35),
    0 12px 26px rgba(10, 35, 58, 0.08);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}

.btn-whatsapp-team {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background var(--transition-fast), transform var(--transition-fast);
  margin-top: auto;
  box-shadow: 0 16px 26px rgba(10, 35, 58, 0.14);
}

.btn-whatsapp-team:hover {
  background: var(--color-navy-light);
  transform: translateY(-1px);
}

.btn-whatsapp-team .ti {
  font-size: 18px;
}
