.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-2);
  background: #fff;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.filter-pill:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.filter-pill.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.associates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .associates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .associates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 440px) {
  .associates-grid {
    grid-template-columns: 1fr;
  }
}

.associate {
  display: flex;
  flex-direction: column;
}
.associate__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 14px;
  padding: 0;
  border: none;
  cursor: pointer;
}
.associate__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.associate:hover .associate__photo img {
  transform: scale(1.04);
}
.associate h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.associate__role {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.associate__creci {
  display: block;
  font-size: 12px;
  color: var(--brand);
  font-weight: 500;
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}

.associate-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.associate-modal[hidden] {
  display: none;
}
.associate-modal__panel {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}
.associate-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  background: var(--surface-2);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
}
.associate-modal__close:hover {
  background: var(--line);
}
.associate-modal__photo {
  flex-shrink: 0;
  width: 100%;
  max-height: 60vh;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.associate-modal__photo img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  display: block;
}
.associate-modal__body {
  padding: 24px;
  flex: 1;
}
.associate-modal__categoria {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.associate-modal h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 4px;
}
.associate-modal__role {
  display: block;
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.associate-modal__info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.associate-modal__info li {
  color: var(--ink-2);
}
.associate-modal__info strong {
  color: var(--ink);
  margin-right: 4px;
}
.associate-modal__info a {
  color: var(--ink-2);
  text-decoration: underline;
}
.associate-modal__descricao {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  white-space: pre-line;
}

.reveal--stagger.is-visible > *:nth-child(9) {
  transition-delay: 0.45s;
}
.reveal--stagger.is-visible > *:nth-child(10) {
  transition-delay: 0.5s;
}
.reveal--stagger.is-visible > *:nth-child(11) {
  transition-delay: 0.55s;
}
.reveal--stagger.is-visible > *:nth-child(12) {
  transition-delay: 0.6s;
}

/*# sourceMappingURL=equipe.css.map */
