.productos {
   
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background-size: cover;
    background-attachment: fixed;
    

    animation-name: aparece;
    animation-duration: 2s;
    animation-delay: o.5s;
  }
  
  .productos .card{
    position: relative;
    width: 600px;
    height: 350px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    transition: 0.5s;
    background-color:transparent;
  }
  
  .productos .circle{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .productos .card .circle::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: yellowgreen;
    opacity: 0.5;
    clip-path: circle(120px at center);
    transition: 0.5s;
  }
  
  .productos .card:hover .circle:before {
    clip-path: circle(400px at center);
  }
  
  .productos .card img{
     position: absolute;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    height: 210px;
    pointer-events: none;
    transition: 0.5s;
  }
  
  .productos .card:hover img{
    left: 72%;
    height: 290px;
  }
  
  .productos .card .content{
    position: relative;
    width: 50%;
    left: 20%;
    padding: 20px 20px 20px 40px;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
  }
  
  .productos .card:hover .content{
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  
  .productos .card .content h2{
    color: white;
    text-transform: uppercase;
    font-size: 2em;
    line-height: 1em;
    margin-bottom: 5px;
  }
  
  .productos .card .content p{
    color: white;
  }
  
  .productos .card .content a{
    position: relative;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    background: white;
    color: black;
    margin-top: 18px;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
  }

  #holantao{
    display: none;
  }

  #esparrago{
    display: none;
  }

  #mango{
    display: none;
  }
  
  @media (max-width:952px){
    .productos{
      flex-wrap: wrap;
      margin-top: -18vh;
    }
  
    .productos .card{
      width: auto;
      max-width: 350px;
      align-items: flex-start;
      margin: 10px;
    }
  
    .productos .card:hover{
      height: 600px;
    }
  
    .productos .card .content{
      width: 100%;
      left: 0;
      padding: 30px;
    }
    
    .productos .card:hover img{
      top:70%;
      left: 50%;
      height: 300px;
    }
  }
  
  @media (max-width:420px){

    .productos{
      flex-wrap: wrap;
      margin-top: -18vh;
    }
  
    .productos .card{
      width: auto;
      max-width: 350px;
      align-items: flex-start;
      margin: 10px;
    }
  
    .productos .card:hover{
      height: 600px;
    }
  
    .productos .card .content{
      width: 100%;
      left: 0;
      padding: 30px;
    }
    
    .productos .card:hover img{
      top:70%;
      left: 50%;
      height: 300px;
    }
  }

  @keyframes aparece{
    0%{
        opacity: 0;
        transform:  translatey(75px);
    }

    100%{
        opacity: 1;
        transform: translatey(0);
    }
}