html{
    height: 100%;
    box-sizing: border-box;
}

  *, *:before, *:after {
    box-sizing: inherit;
  }
  
body{
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    height: 100%;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#cb60b3+0,cb60b3+7,ad1283+39,ad1283+66,cb60b3+85,de47ac+100;Pink+3D */
background: #cb60b3; /* Old browsers */
background: -moz-linear-gradient(left, #cb60b3 0%, #cb60b3 7%, #ad1283 39%, #ad1283 66%, #cb60b3 85%, #de47ac 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #cb60b3 0%,#cb60b3 7%,#ad1283 39%,#ad1283 66%,#cb60b3 85%,#de47ac 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #cb60b3 0%,#cb60b3 7%,#ad1283 39%,#ad1283 66%,#cb60b3 85%,#de47ac 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cb60b3', endColorstr='#de47ac',GradientType=1 ); /* IE6-9 */
background-attachment: fixed; 
}
img {
    max-width: 100%;
}
header{
    text-align: center;
    padding: 40px 0;
}

.contenedor{
    max-width: 1200px;
    margin: 0 auto;
}
.hero{
    margin-bottom: 40px; 
}
h2{
    text-align: center;
    text-transform: uppercase;
}
.lista-productos{
    margin-top: 40px;
    padding: 0;
    list-style: none;
    margin: 0;
}
/*LISTA DE LOS PRODUCTOS*/
.lista-productos li{
    float: left;
    width: 50%;
    padding: 20px;
    text-align: center;
}
.lista-productos li:nth-child(2n+1)/*2 veces por 0 mas 1 pero aumentando con cada iteracion*/
{
    clear: both;
}
@media (min-width: 768px) {
    .lista-productos li{
        width: 33.33%;
    }
    .lista-productos li:nth-child(2n+1)/*2 veces por 0 mas 1 pero aumentando con cada iteracion*/
{
    clear: unset;/*/LIMPIAR EL CLEAR HEREDADO DE ARRIBA/*
}
    .lista-productos li:nth-child(3n+1)/*3 veces por 0 mas 1 pero aumentando con cada iteracion*/
{
    clear: both;
}
}

.lista-productos li img{
    border: 10px solid rgba(128, 1, 195, .45);
    transition: border-color .3s ease-in-out;
}
.lista-productos li img:hover{
    border: 10px solid #ffce00;
}
.lista-productos  li p{
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.lista-productos  li p  span{
    color: #ffce00;
    font-size: 40px;
}
.boton{
background-color: #ffce00;
padding: 10px 40px;
margin-top: 10px; 
display: inline-block;
text-decoration: none;
font-size: 28px;
text-transform: uppercase;
font-weight: bold;
color: #8001c3;
transition:  background-color .4s ease-in-out;
}
.boton:hover{
    background-color: #8001c3;
    color: #ffce00;
    border: 2px solid #ffce00
}