/* =========================================================
   TEAM CARD – BASE
   ========================================================= */

.ce-team-card {
  text-align: center;
  padding: 1rem;
}

/* =========================================================
   FOTO
   ========================================================= */

.ce-team-foto {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.ce-team-foto img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* =========================================================
   TEXTO
   ========================================================= */

.ce-team-nome {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.5rem 0 0;
}

.ce-team-cargo {
  font-size: 0.9rem;
  margin-top: 0.25rem;
  opacity: 0.75;
}

/* =========================================================
   BOTÃO
   ========================================================= */

.ce-team-btn {
  margin-top: 0.9rem;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* =========================================================
   MODAL – FULLSCREEN CENTRALIZADO
   ========================================================= */

.ce-team-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

/* Modal ativo */
.ce-team-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.ce-team-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

/* Conteúdo */
.ce-team-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: rgba(255, 255, 255, 1);
  padding: 2rem;
  overflow-y: auto;
  border-radius: 6px;
  z-index: 1;
}

/* Botão fechar */
.ce-team-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1em;
  border: none;
  cursor: pointer;
  font-weight: bold;
  background: #f5f5f5;
  color: #d3b574;
}

.ce-team-close:hover {
  background: #d3b574;
  color: #fafafa;
}

.ce-team-modal-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.ce-team-modal-body {
  text-align: justify;
}

/* Trava scroll do body */
body.ce-team-modal-open {
  overflow: hidden;
}

/* =========================================================
   REDES SOCIAIS
   ========================================================= */

.ce-team-redes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px; /* fallback */
  margin-top: 0.75rem;
}

.ce-team-redes a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: color 0.25s ease;
}

/* Ícones FONT */
.ce-team-redes a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px; /* fallback */
}

/* Ícones SVG */
.ce-team-redes svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 767px) {
  .ce-team-modal-content {
    width: 95%;
    padding: 1.5rem;
  }

  .ce-team-foto img {
    max-width: 150px;
  }
}
