@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&display=swap");

.productos-titulo {
  font-size: 25px;
  font-weight: bold;
  color: var(--primary-color);
  font-family: "Noto Sans", sans-serif;
  text-align: center;
}

.productos{
  text-align: center;
}

.container{
  width: 100%; 
  max-width: 1200px; 
  height: 430px;
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  margin: auto;
  margin-top: 80px;
}

.container .card{
  width: 140px;
  height: 330px;
  border-radius: 8px 8px;
  box-shadow: 0 2px 2px rgba(0,0,0,0.2);
  overflow: hidden;
  margin: 10px;
  text-align: center;
  transition: all 0.35s;
  background-color: #fcfcfc;
}

.container .card:hover{
  transform: translateY(-20px);
  box-shadow: 0 12px 16px rgba(0,0,0,0.2);
  filter: drop-shadow(rgb(0, 21, 116) 1rem 1rem 10px);

}

.container .card img{
  width: 100%;
  max-width: 100px;
}

@media (min-width: 950px) {
  .productos {
    text-align: left;
    display: flex;
    justify-content: space-between;
    max-width: 980px;
    margin: 0 auto;
    align-items: center;
  }
  .productos-titulo {
    font-size: 30px;
    margin: 0 auto;
    text-align: center;
  }
} 