.titulotop{
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    font-family: 'Roboto',sans-serif;
    color: rgba(0,0,0,1);
    background:rgba(255,255,255,1);
}
.contenido-productos{
    background:rgba(255,255,255,1);
    width:100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0px 50px 0px;
}
.cuadrosproductos{
    width: 350px;
    height: auto;
    overflow: hidden;
    border-radius: 3%;
    padding: 10px;
    margin: auto;
}
.cuadrosproductos div:first-child img{
    width:100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: scale 100ms ease-in-out;
    box-shadow: 3px 3px 13px rgba(123,123,123,1);
}
.cuadrosproductos div:first-child img:hover{
    scale:1.5;
}
.cuadrosproductos div:nth-child(2){
    color: rgba(0,0,0,1);
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Roboto',sans-serif;
    margin: 10px 0px 10px 0px;
    width: 100%;
}
.cuadrosproductos div:nth-child(3){
    color: rgba(0,0,0,1);
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    font-family: 'Roboto',sans-serif;
    margin: 10px 0px 10px 0px; 
}
.cuadrosproductos div:nth-child(4){
    color: rgba(0,0,0,1);
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    font-family: 'Roboto',sans-serif;
    margin: 10px 0px 10px 0px;
}
.cuadrosproductos div:nth-child(5){
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}
.cuadrosproductos div:nth-child(5) a input[type='button']{
    padding: 8px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
}
.cuadrosproductos div:nth-child(5) a input[type='button']:hover{
    background: rgba(123,123,123,1);
    color:rgba(255,255,255,1);
}