@charset "utf-8";
/* CSS Document */
#contenedor1  h3 {
    font-size: var(--h6);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: .5em;
}
#contenedorproductos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1em;
    margin-top: var(--rellenovertical);
        
}
#contenedorproductos a {
    background-color: var(--ui00);
    border-radius: var(--radiocajas);
    padding: 1em;
    cursor: pointer;
    transition: background-color .2s ease-in 0s;    
}

#contenedorproductos a:hover {
    background-color: var(--marca04);
}
#contenedorproductos a img {
    width: 100%;
    display: block;
    background-size: cover;
    background-position: center center;
    border-radius: var(--radiocajas);
}
#contenedorproductos a h2 {
    font-size: var(--h6);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    color: var(--marca02);
    margin-top: 2em;
}
#seccion2 {
    text-align: center;
}
/*#seccion2 > div {
    padding: 0px calc(var(--rellenovertical) * 2);
}*/
#seccion2 > p:last-of-type {
    margin: 0px;
    margin-top: 2em;
}
#seccion2 h2 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
}
#seccion2 .boton1 {
    text-transform: uppercase;
}
@media (max-width: 1350px) {
}
@media (max-width: 1200px) {
}
@media (max-width: 1100px) {
}
@media (max-width: 1000px) {
    #contenedorproductos {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
}

@media (max-width: 850px) {
}
@media (max-width: 750px) {
}
@media (max-width: 650px) {
}
@media (max-width: 550px) {
    #contenedorproductos {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 450px) {
}
