.productoTable {
    max-width: 1100px;
    margin: 0 auto;
}

.productoRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}

.productoCellThree {
    width: 100%;
}

.productoCardFull {
    background: #fff;
    border-radius: 12px;
    border-top: 4px solid #1565c0;
    box-shadow: 0 2px 8px rgba(13,43,94,.07);
    overflow: hidden;
    transition: .25s;
    height: 100%;
}

    .productoCardFull:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 36px rgba(13,43,94,.15);
    }

.CategoriaTitulo {
    padding: 18px 20px 0;
    text-align: center;
}

    .CategoriaTitulo a {
        color: #0d2b5e;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
    }

.CategoriaDescripcionReductor {
    padding: 20px;
    text-align: center;
}

    .CategoriaDescripcionReductor img {
        max-width: 100%;
        height: 160px !important;
        width: auto !important;
        object-fit: contain;
    }

.producto-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 14px;
    border: 1.5px solid #1565c0;
    border-radius: 6px;
    color: #1565c0;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
}

    .producto-btn:hover {
        background: #1565c0;
        color: #fff;
    }

@media (max-width: 900px) {
    .productoRow {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .productoRow {
        grid-template-columns: 1fr;
    }
}