body,
.body-wrapper,
main {
    background: #eef2f7 !important;
}

.container {
    padding: 40px 15px 80px;
}

.page-header {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #1565c0;
    margin-bottom: 50px;
    letter-spacing: -.5px;
    border: none;
}

    .page-header:after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        margin: 15px auto 0;
        border-radius: 10px;
        background: linear-gradient(90deg,#1565c0,#42a5f5);
    }

.productoTable {
    max-width: 1200px;
    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: 14px;
    overflow: hidden;
    border-top: 4px solid #1565c0;
    box-shadow: 0 3px 12px rgba(13,43,94,.08);
    transition: all .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .productoCardFull:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(13,43,94,.15);
    }

.CategoriaTitulo {
    padding: 20px 20px 10px;
    text-align: center;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .CategoriaTitulo a {
        color: #0d2b5e;
        text-decoration: none;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
    }

        .CategoriaTitulo a:hover {
            color: #1565c0;
        }

.CategoriaDescripcionReductor {
    padding: 0 20px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

    .CategoriaDescripcionReductor img {
        display: block;
        margin: 0 auto 20px;
        max-width: 100%;
        width: auto !important;
        height: 180px !important;
        object-fit: contain;
        transition: transform .3s ease;
    }

.productoCardFull:hover img {
    transform: scale(1.05);
}

.producto-btn {
    display: inline-block;
    margin-top: auto;
    padding: 10px 18px;
    background: transparent;
    color: #1565c0;
    border: 2px solid #1565c0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
}

    .producto-btn:hover {
        background: #1565c0;
        color: #fff;
        text-decoration: none;
    }

@media (max-width: 991px) {

    .productoRow {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header {
        font-size: 32px;
    }
}

@media (max-width: 576px) {

    .productoRow {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-header {
        font-size: 28px;
    }

    .CategoriaTitulo {
        min-height: auto;
    }

    .CategoriaDescripcionReductor img {
        height: 150px !important;
    }
}
