* {
    padding: 0;
    margin: 0;
}

.gradiente00{
    background: rgb(19,36,99);
    background: linear-gradient(90deg, rgba(19,36,99,0.2007003484987745) 0%, rgba(250,250,250,1) 100%); 
}


header {
    width: 100%;
    position: fixed;
    z-index: 100;
}

.gradiente01{
   color:  rgb(19,36,99); 
    background: linear-gradient(90deg, rgba(19,36,99,0.6796919451374299) 0%, rgba(230,59,46,0.2455182756696429) 100%);
}


.contenido {
    padding-top: 100px;
  }

.wrapper {
    width: 80%;
    margin: auto;
    overflow:hidden;
  }

.cajon-lg {
    height: 400px;
}

.producto-plantilla{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background-color: white;
    margin-bottom: 40px;
}

.producto{
    width: 400px;
    height: 300px;
    padding: 30px;
    margin-bottom: 10px;
    border: solid 1px gray;
}


.marca-plantilla {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.redondeado {
    border-radius: 27px 27px 27px 27px;
    -moz-border-radius: 27px 27px 27px 27px;
    -webkit-border-radius: 27px 27px 27px 27px;
    border: 0px solid #000000;
}

.card {
    height: 200px;
}

@media only screen and (max-width: 900px) {
    .marca-plantilla {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 700px) {
    .marca-plantilla {
        grid-template-columns: 1fr 1fr;
    }
}