/* wrapper */
.colaborador-card{
  position: relative;
  overflow: hidden;
  background-color: #f2f2f2; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 160px;
}


.colaborador-img{
  display: block;
  width: 100%;
  height: auto;        
  object-fit: contain; 
}


.colaborador-img--placeholder{
  width: 100%;
  padding-top: 56.25%; 
  background: linear-gradient(180deg,#ddd,#ccc);
}


.colaborador-card::before{
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 45%; 
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
  z-index: 1;
  pointer-events: none;
}

.colaborador-overlay{
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2;
  text-align: center;       
  padding: 40px 20px;
  color: #fff;
}


.colaborador-nome{ margin: 0 0 0.25rem; font-size: 1.05rem; font-weight: 700; }
.colaborador-funcao,
.colaborador-email{ margin: 0; font-size: 0.9rem; }


.colaborador-email a{ color: inherit; text-decoration: underline; }


.colaborador-card.card-fixed-height{ max-height: 320px; }
.colaborador-card.card-fixed-height .colaborador-img{
  height: 100%;
  width: 100%;
  object-fit: contain; 
}
