body {
    background: #f4f7fb;
}

.container {
    max-width: 1400px !important;
    width: 95%;
}

.page-headerborderless {
    text-align: center;
    color: #005c99;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 30px 0;
}

.productoCard,
.productoNoCard {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
    transition: .3s;
}

    .productoCard:hover,
    .productoNoCard:hover {
        box-shadow: 0 10px 35px rgba(0,0,0,.12);
    }

.productoBlueSeparator {
    background: linear-gradient(90deg,#005c99,#0085d4);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    margin: 20px 0;
}

.CategoriaDescripcion,
.CategoriaDescripcionPage {
    line-height: 1.8;
    color: #444;
    font-size: 15px;
}

.DescripcionProductoTitleGeneral {
    color: #005c99;
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    border-left: 4px solid #0085d4;
    padding-left: 12px;
}

.producto-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .producto-btn.green {
        background: linear-gradient(90deg,#28a745,#5bc85b);
        color: white;
    }

    .producto-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }

.container-fluid .row {
    border-bottom: 1px solid #eaeaea;
    padding: 8px 0;
}

    .container-fluid .row:first-child {
        background: #005c99;
        color: white;
        font-weight: bold;
    }

.bg-light {
    background: #f8fafc !important;
}

.motorw22 {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,.1);
}

@media (max-width:768px) {

    .productoRow {
        display: block;
    }

    .productoCell {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }

    .page-headerborderless {
        font-size: 1.6rem;
    }
}

body {
    animation: fadePage 1s ease;
}

@keyframes fadePage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.page-headerborderless {
    animation: slideDown 0.8s ease-out;
    position: relative;
}

    .page-headerborderless::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        margin: 12px auto 0;
        background: linear-gradient(90deg,#005c99,#00bfff);
        border-radius: 20px;
        animation: expandLine 1.2s ease;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }

    to {
        width: 80px;
    }
}

.productoCard,
.productoNoCard {
    animation: fadeUp .9s ease;
    transition: all .35s ease;
}

    .productoCard:hover,
    .productoNoCard:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.productoBlueSeparator {
    position: relative;
    overflow: hidden;
    animation: glowBar 2s infinite alternate;
}

    .productoBlueSeparator::before {
        content: "";
        position: absolute;
        top: 0;
        left: -150%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,.4), transparent );
        animation: shine 4s infinite;
    }

@keyframes shine {
    100% {
        left: 150%;
    }
}

@keyframes glowBar {
    from {
        box-shadow: 0 0 5px rgba(0,133,212,.3);
    }

    to {
        box-shadow: 0 0 20px rgba(0,133,212,.5);
    }
}

.DescripcionProductoTitleGeneral {
    transition: all .3s ease;
}

    .DescripcionProductoTitleGeneral:hover {
        padding-left: 20px;
        color: #0085d4;
    }

.producto-btn {
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}

    .producto-btn:hover {
        transform: translateY(-4px) scale(1.03);
    }

    .producto-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 80%;
        height: 100%;
        background: rgba(255,255,255,.25);
        transform: skewX(-25deg);
    }

    .producto-btn:hover::before {
        animation: buttonShine .8s ease;
    }

@keyframes buttonShine {
    to {
        left: 150%;
    }
}

.container-fluid .row {
    transition: all .25s ease;
}

    .container-fluid .row:hover {
        background: #eaf6ff !important;
        transform: scale(1.01);
    }

.motorw22 {
    transition: all .5s ease;
    animation: floatMotor 4s ease-in-out infinite;
}

    .motorw22:hover {
        transform: scale(1.05);
    }

@keyframes floatMotor {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.CategoriaDescripcionPage {
    animation: fadeText 1.2s ease;
}

@keyframes fadeText {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
