.contenedorCategoria p {
    display: flex;
    justify-content: center;
    margin: auto;
    font-family: Oswald-Light;
    font-weight: normal;
    font-size: 14px;
    color: #191919;
}

.filaCategorias {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* ESTO ES PARA ASIGNAR LAS COLUMNAS */
    display: grid;
    /* DIVICION DE LAS MAGENES EN TRES COLUMNAS */
    grid-template-columns: repeat(4, 200px);
    /* SEPARACION ENTRE LAS IMAGENES */
    gap: 15px;
    min-height: 110vh;
}

.contenedorProducto {
    display: inline-block;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 13px -5px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    border: 1px solid silver;
    border-radius: 10px;
}

img {
    /* AQUI DECIMOS QUE LA IMAGEN OCUPE EL 100% DEL VIEWPORT */
    /* SIN ESTE DIRECTAMENTE A LA ETIQUETA img NO SE ACOPLA LA IMAGEN SIN DEFORMARCE */
    max-width: 100%;
}

.contenedorImagen {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid silver;
    box-shadow: 0px 10px 13px -5px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    margin: 10px;
    overflow: hidden;
    /* EFECTO ZOOM PARTE 1 */
    transition: all 2.50s;
}

.contenedorImagen:hover {
    /* EFECTO ZOOM PARTE 2 */
    transform: scale(1.2);
    filter: saturate(150%);
    transition: all .5s ease-in-out;
    /* MEJORES EFECTOS DE IMAGEN mdl https://www.enriquejros.com/efectos-imagenes-css/ */
}

.contenedorImagen:active {
    /* EFECTO DE CRESIMIENTO AL DEJAR EL CLIC PRECIONADO */
    transform: scale(3);
}

.imagenProducto {
    border: 1px solid silver;
}

.contenedorNombreProducto {
    /* ESTA PARTE ES PARA EL ESTILO DE LAS CATEGORIAS */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.contenedorNombreProducto a,
.contenedorNombreProducto h2 {
    display: flex;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
    font-family: Oswald-Light;
    font-weight: normal;
    font-size: 14px;
    margin-top: 5px;
    color: #191919;
}


/* ////////////////////// */

.contenedorNombreProducto a,
.contenedorNombreProducto h2 {
    display: flex;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
    font-family: Oswald-Light;
    font-weight: normal;
    font-size: 14px;
    margin-top: 5px;
    color: #191919;
}

.contenedorNombreProducto a:hover {
    color: blue;
}

.contenedorPrecioProducto p a {
    font-family: Oswald-Light;
    font-weight: normal;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 0;
    color: darkblue;
}

.contenedorPrecioProducto small {
    font-family: Oswald-Light;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 5px;
    color: gray;
}

.contenedorStockProducto,
.contenedorStockProducto a {
    font-family: Oswald-Light;
    font-weight: normal;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 5px;
    color: gray;
}

.botonDetallesProducto {
    display: flex;
    margin: auto;
}

.botonDetallesProducto:hover {
    filter: saturate(150%);
}

.botonDetallesProducto a {
    padding: 5px;
    border: 2px solid silver;
    border-radius: 10px;
    background-color: darkblue;
    color: silver;
    font-family: Oswald-Light;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-top: 10px;
    margin-bottom: 15px;
    box-shadow: 0px 10px 13px -7px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.contenedorAgregarDetallesRemover {
    display: flex;
    justify-content: center;
    height: 45px;
}

.detallesProducto,
.agregarCarrito {
    display: flex;
    align-items: center;
    border: 2px solid silver;
    border-radius: 10px;
    padding: 4px;
    color: silver;
    font-family: Oswald-Light;
    margin-top: 4px;
    margin-bottom: 15px;
    box-shadow: 0px 10px 13px -7px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.detallesProducto {
    background-color: darkblue;
    transition: filter 2s;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.agregarCarrito {
    padding: 6px;
    background-color: #191919;
    font-size: 18px;
    transition: background-color 2s;
}

.agregarCarrito img {
    width: 20px;
}

.detallesProducto:hover {
    filter: saturate(150%);
}

.agregarCarrito:hover {
    background-color: orange;
}


/* Area Responsiva */

@media (max-width: 1280px) {
    .contenedorImagen:active {
        transform: none;
    }
    .contenedorImagen:hover {
        transform: none;
    }
}

@media (max-width: 1024px) and (min-width: 720px) {
    .filaCategorias {
        grid-template-columns: repeat(3, 200px);
    }
}

@media (max-width: 720px) and (min-width: 460px) {
    .filaCategorias {
        grid-template-columns: repeat(2, 200px);
    }
}

@media (max-width: 460px) {
    .filaCategorias {
        grid-template-columns: repeat(1, 240px);
    }
}