/* Start custom CSS for html, class: .elementor-element-82fc7e0 *//* Correção global para não vazar a largura */
.chapa-card-container *, 
.chapa-card-container *::before, 
.chapa-card-container *::after {
  box-sizing: border-box !important;
}

/* Container Principal Centralizado */
.chapa-card-container {
  width: 100%;
  max-width: 360px; /* Largura ideal para caber perfeito em qualquer tela mobile */
  margin: 0 auto;
  background-color: #ffffff;
  border: 3px solid #1a39dc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  font-family: 'Arial Black', Impact, sans-serif;
}

/* Header COROADO.ON */
.chapa-header {
  background-color: #1a39dc;
  padding: 8px 4px;
  text-align: center;
}

.chapa-header h1 {
  color: #ffffff;
  font-size: 22px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0px #b93322;
}

/* Grid de 3 Colunas Perfeitas */
.chapa-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* Evita o estouro lateral */
  gap: 6px;
  padding: 8px 6px;
  background-color: #ffffff;
}

/* Item do Integrante */
.membro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0; /* Permite que o texto quebre sem empurrar a coluna */
}

/* Quadrado da Foto */
.foto-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1.5px solid #000000;
  background-color: #f1f3f5;
  overflow: hidden;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foto-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cargo e Nome Ajustados */
.membro-item .cargo {
  font-size: 8.5px;
  color: #1a39dc;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.membro-item .nome {
  font-size: 9.5px;
  color: #111111;
  font-family: Arial, sans-serif;
  font-weight: 600;
  margin-top: 2px;
  line-height: 1.1;
  word-break: break-word;
}

/* Rodapé CHAPA .ON */
.chapa-footer {
  background-color: #1a39dc;
  padding: 6px 4px;
  text-align: center;
}

.chapa-footer h2 {
  color: #ff9999;
  font-size: 24px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 0 6px rgba(255, 100, 100, 0.8);
}/* End custom CSS */