h1 {
    font-size: calc(var(--font-size) * 2);
}

h2 {
    font-size: calc(var(--font-size) * 1.8);
}


.sub_categorias {
    font-size: var(--font-size);
}

.container-sub_categorias {
    margin-top: 3.5em;
}

.sub_categoria {
    margin-top: 2.5em;
}

/* -------- INCIO PRODUCTOS -------- */
.container-card-productos {
    display: flex;
    flex-wrap: wrap;
    padding-top: 2em;
}
.card-producto-layer {
    flex: 1;
    width: 100%;
    /*  */
    display: flex;
    /*  */
    justify-content: center;
    margin-bottom: 4em;
    flex-basis: calc(22em);
}
.productos__title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 1.2em;
}
.productos__title div {
    margin-top: .4em;
    max-width: 46.8em;
    text-align: center;
}
.card-producto {
    /*  */
    margin: 0 auto;    
    /*  */
    width: calc(16.875em + 3em + 2px);
    text-align: start;
    border: 0.0625em solid var(--color-oscuro);
    padding: 1.5em;
    border-radius: 1em;
    display: flex;
    flex-direction: column;
}
.card-producto > div > span {
    width: 7em;
    font-size: .8em;
    border-radius: 20px;
    padding: .15em 0;
    color: white;
    margin-bottom: .8em;
    background-color: #0481ef;
}
.card-producto > div > span:hover {
    background-color: white;
    color: #0481ef;
    border: 0.0625em solid #0481ef;
    transition: all .4s;
}
.card-producto > img {
    width: 180px;
    height: 100%;
    margin-top: .1em;
    align-self: center;
}
.card-producto h5 {
    margin-top: 1.5em;
    font-weight: 500;
    font-size: 1.25em;
}
.card-producto .card-body {
    padding: 0;
   
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;

}
.card-producto ul {
    height: 100px;
    flex-grow: 1;
    margin: 0;
    padding: 1em;
    font-weight: 500;
    font-size: .9em;
    color: rgb(105, 105, 105);
    overflow-x: auto;
    
}
.card-producto ul::-webkit-scrollbar {
    display: none;
}

.card-buttons {
    margin-top: .6em;
    display: flex;
    flex-direction: column;
}
.card-producto a {
    border-radius: 1em;
    text-align: center;
    width: 100%;
    border: 1px solid var(--color-oscuro);
    outline: none;
    padding: .4em 0;
    font-weight: 500;
    font-size: .8em;
    background-color: #fff;
    color: var(--color-oscuro);
}
.card-producto a:hover {
    cursor: pointer;
    text-decoration: none;
}
.card-producto a:last-child:hover {
    background-color: var(--color-oscuro);
    color: white;
    transition: all .4s;
}
.card-producto a:first-child {
    background-color: var(--color-primario);
    border: 1px solid transparent;
    color: white;
    margin-bottom: .5em;
    transition: all .4s;
}
.card-producto a:first-child:hover {
    background-color: white;
    color: var(--color-primario);
    border: 1px solid var(--color-primario)
}
/* -------- FIN PRODUCTOS -------- */