@font-face {
    font-family: "Botera";
    src: url("../../static/fonts/botera/BoteraTFE-Regular.woff2") format("woff2"),
         url("../../static/fonts/botera/BoteraTFE-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

:root {
    --principal: #606060;
}

body{
    font-family: 'Botera', sans-serif;
}

/* PRODUCTOS */
.productos{
    width: 100%;
    max-width: 1000px;
    height: auto;
    padding: 30px 0 30px 0;
    /* display: flex;*/
    /* flex-direction: column;*/
    
    margin-left: auto;
    margin-right: auto;
}

.productos .listado{
    /* display: flex;*/
    /* place-content: center;*/
    justify-items: center;
    /*justify-content: space-around;*/
}

.productos .producto .enlace{
    width: 100%;
    height: 100%;
}

/* .productos .producto .enlace a:link, .productos .producto .enlace a:active{
    text-decoration: none;
} */

.productos .title{
    font-size: 2rem;
    text-align: center;
    padding-bottom: 24px;
    color: #606060;
}

/* .productos .producto .enlace a .title a:active, .productos .producto .enlace a .title a:link{
    text-decoration: none;
} */

.productos a:link, .productos a:active{
    color: var(--principal);
    text-decoration: none;
    /* height: 100%; */
}

.productos .producto{
    background: white;
    width: 330px;
    height: 380px;
    /* border: rgba(0,0,0,0.15) 1px solid;*/
    margin: 6px;
    display: flex;
    flex-direction: column;
    /* transition: background-color 900ms ease;*/
}


.productos .producto .title{
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    padding-top: 9px;
    padding-bottom: 1px;
    text-align: center;
    text-transform: uppercase;
    color: var(--principal);
}

.productos .producto .sub{
    text-align: center;
    font-family: 'Verdana';
    font-size: 1rem;
    color: #a9a9a9;
}

.productos .producto .desc{
    padding: 0 18px 0 18px;
    font-size: 1rem;
}

.productos .producto .imagen{
    /* margin: 12px;*/
    padding: 60px 60px 0 60px;
    overflow: hidden;
}

.productos .more{
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    color: inherit;
}

.producto .more a:link{
    color: inherit;
}



/* FOOTER */
footer{
    padding-top: 39px;
    padding-bottom: 30px;
    background-color: #1c1d21;
    color: white;
    font-family: 'Botera';
    font-size: 1.3rem;
}

footer .content{
    width: 100%;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


footer .top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer h3{
    font-size: 1.8rem;
    font-weight: bold;
    padding: 6px 0 6px 0;
}

footer .item{
    padding: 6px 0;
}

footer .middle{
    padding: 30px 0 30px 0;
    width: 100%;
}

footer .middle .icon .logo{
    width: 90px;
    margin-left: auto;
    margin-right: auto;
}

footer .legend{
    width: 100%;
    max-width: 1220px;
    padding: 10px 0 10px 0;
    font-size: 1.3rem;
    font-weight: 400;
    color: #f4a64b;
    margin-left: auto;
    margin-right: auto;
}

footer .middle .icon img{
    margin-left: auto;
    margin-right: auto;
    width: 90px;
}

footer .bottom{
    width: 100%;
    max-width: 1220px;
    padding-bottom: 24px;
    padding-top: 24px;
    display: flex;
    flex-direction: row;
    color: #f4a64b;
    margin-left: auto;
    margin-right: auto;
}

footer .bottom .copy{
    margin-top: auto;
    margin-bottom: auto;
}

footer .bottom .icons{
    display: flex;
    flex-direction: row;
    margin-left: auto;
}

footer .bottom .icons .icon{
    margin: 0 3px;
    width: 48px;
    height: 48px;
    fill: none;
}

footer a:link, footer a{
    text-decoration: none;
    color: inherit;
}


@media screen and (max-width: 992px) {
    .productos .producto{
        margin: 0;
        padding: 3px 3px;
    }

    .productos .producto .imagen{
        padding: 0;
    }
    
    .productos .producto img{
        max-width: 96%;
    }

    footer{
        padding-bottom: 6px;
        padding-left: 6px;
        padding-right: 6px;
    }

    footer .content{
        flex-direction: column;
    }

    footer .bottom{
        flex-direction: column-reverse;
    }

    footer .bottom .icons{
        margin-right: auto;
        padding-bottom: 12px;
    }

   
}

/*     GRID  moviles    */
@media screen and (max-width: 576px) {
    .productos{
        overflow-x: hidden;
        /* background-color: green; */
    }

    footer .ocultar{
        display: none;
    }
}