.main-content{
    flex:1;
}

.contenedor-productos {
    max-width: 1380px;
    margin: 0 auto;   /* centra horizontalmente */
    padding: 20px 0;
}

.grid-productos {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas en PC */
    gap: 20px;
    padding: 20px;
}

.item-producto {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    text-align: left;
    margin-bottom:30px;
}

.img-box {
    width: 100%;
    height: 320px; 
    overflow: hidden;

    position: relative;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: opacity .4s ease, transform .4s ease;
}

/* Imagen trasera */
.img-box .img-back {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.05);
}

/* Hover */
.img-box:hover .img-back {
    opacity: 1;
    transform: scale(1);
}

.img-box:hover img:not(.img-back) {
    opacity: 0;
    transform: scale(1);
}


@media (max-width: 768px) {
    .grid-productos {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en móvil */
    }

    .contenedor-productos {
        width: 95%; /* un poquito más ancho en móvil */
    }

    .img-box {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .img-box {
        height: 220px;
    }
}