body {
    background: linear-gradient(135deg, #eef4ff, #f7fbff);
    font-family: 'Segoe UI', sans-serif;
    color: #1e293b;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding: 40px 20px;
}

.page-headerborderless {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #0d3b66;
    margin: 50px 0;
    position: relative;
    animation: fadeDown 1s ease;
}

    .page-headerborderless::after {
        content: "";
        width: 120px;
        height: 5px;
        background: linear-gradient(90deg,#0077ff,#00c6ff);
        display: block;
        margin: 18px auto 0;
        border-radius: 50px;
    }

.productoTable {
    width: 100%;
}

.productoRow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 45px;
    margin-bottom: 50px;
}

.productoCell {
    flex: 1;
    min-width: 320px;
}

.productoCard {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transition: all .45s ease;
    animation: fadeUp 1s ease;
}

    .productoCard:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0,119,255,0.18);
    }

.ImagenProducto {
    text-align: center;
}

    .ImagenProducto img {
        width: 100%;
        max-width: 450px;
        border-radius: 25px;
        transition: transform .6s ease;
        filter: drop-shadow(0 20px 35px rgba(0,0,0,0.15));
    }

        .ImagenProducto img:hover {
            transform: scale(1.05);
        }

.DescripcionProductoTitleGeneral {
    font-size: 32px;
    font-weight: 800;
    color: #0d47a1;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ImagenDescripcionPage {
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
    text-align: justify;
}

.productoBlueSeparator {
    background: linear-gradient(135deg,#0d47a1,#1976d2,#2196f3);
    color: white;
    padding: 18px;
    border-radius: 18px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,119,255,0.25);
}

.producto-btn {
    display: inline-block;
    margin-top: 30px;
    background: linear-gradient(135deg,#0077ff,#00c6ff);
    color: white !important;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: .5px;
    transition: all .35s ease;
    box-shadow: 0 10px 25px rgba(0,119,255,0.25);
}

    .producto-btn:hover {
        transform: translateY(-4px) scale(1.04);
        background: linear-gradient(135deg,#005ce6,#0099ff);
        box-shadow: 0 18px 35px rgba(0,119,255,0.4);
    }

.productoNoCard {
    background: white;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    animation: fadeUp 1.2s ease;
}

.CategoriaDescripcionPage {
    line-height: 2;
    color: #475569;
    font-size: 16px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:768px) {

    .productoRow {
        flex-direction: column;
        text-align: center;
    }

    .page-headerborderless {
        font-size: 30px;
    }

    .DescripcionProductoTitleGeneral {
        font-size: 26px;
    }

    .productoCard,
    .productoNoCard {
        padding: 25px;
    }

    .ImagenDescripcionPage {
        text-align: left;
    }
}

.ImagenProducto {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
