#voluntariado{
  padding: 60px 0;
  color:#3a8fff;
  height:100vh;
  background-color: #D8E9FF;
}

#voluntariado .title{
  font-weight: 1000;
  font-size: 80px;
  font-family: 'Outfit', sans-serif !important;


  padding-top: 80px;
}
#voluntariado .education-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* tres columnas iguales */
  gap: 40px; /* separación uniforme entre boxes */
  justify-items: center;
  align-items: start;
}
#voluntariado .thumbnail {
  width: 100%;
  max-width: 320px;
  height: 370px;
  background-color: #c0dbff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-template-rows: 1fr 1fr;
  transition: background-color 0.3s, transform 0.3s;
}
#voluntariado .education-layout .thumbnail:nth-child(2),
#voluntariado .education-layout .thumbnail:nth-child(4) {
  display: none;
}
#voluntariado .thumbnail:hover{
  background-color:#579ffc;
  color:#0347a0;
  transform: translateY(-10px);
}

.thumbnail .picture{

  margin-top: 20px;
}

#voluntariado .thumbnail .text h3 {
  margin-bottom: 10px; /* espacio entre h3 y p */
}

.thumbnail .pic:hover{
  transform: scale(1.05);
}