
.proyectos-grid .work{
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.proyectos-grid .work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  opacity: 0.45;
  transition: opacity 0.3s ease;
}
.project-card:hover .work img {
  opacity: 0.90;
}


.proyectos-grid .caption{
  position: absolute;
  inset: 0;                    
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 16px;
  text-align: center;

  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;        
  text-transform: lowercase;    
  color: rgba(0,0,0,0.65);

  pointer-events: none;         
}

.proyectos-grid .caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 16px;
  text-align: center;

  font-family: Helvetica, Arial, sans-serif; 
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: lowercase;

  color: rgba(0, 0, 0, 0.85);

  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);

  pointer-events: none;
}

.proyectos-grid .caption::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25);
  z-index: -1;
}
