body {
    background: linear-gradient( 180deg, #f4f8fc 0%, #eef3f9 100% );
    animation: pageFade 1s ease;
    font-size: 1.15rem;
    line-height: 1.5;
}

@keyframes pageFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.container {
    max-width: 1500px !important;
    width: 95%;
}

.prosea-industrial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.font-bigger {
    position: relative;
    display: inline-block;
    color: #005c99;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    transition: .35s;
}

    .font-bigger:hover {
        color: #0095ff;
        transform: translateX(10px);
    }

    .font-bigger::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 0;
        height: 4px;
        border-radius: 20px;
        background: linear-gradient( 90deg, #005c99, #00bfff );
        transition: .4s;
    }

    .font-bigger:hover::after {
        width: 100%;
    }

.card {
    border: none !important;
    border-radius: 18px !important;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s ease;
    animation: cardFade .9s ease;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,.15);
    }

@keyframes cardFade {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel {
    overflow: hidden;
    border-radius: 18px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.carousel-item {
    padding: 25px;
}

    .carousel-item img {
        transition: .6s ease;
        animation: floatProduct 5s ease-in-out infinite;
        filter: drop-shadow( 0 15px 20px rgba(0,0,0,.15) );
    }

.carousel:hover img {
    transform: scale(1.06);
}

@keyframes floatProduct {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.nav-pills {
    padding: 12px;
    background: #f7fafc;
}

    .nav-pills .nav-link {
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: .3s;
    }

        .nav-pills .nav-link:hover {
            transform: translateY(-2px);
            background: #edf5ff;
        }

        .nav-pills .nav-link.active {
            background: linear-gradient( 135deg, #005c99, #0088e8 ) !important;
            box-shadow: 0 8px 20px rgba(0,136,232,.25);
        }

.producto-btn.green {
    font-size: 1.15rem;
    position: relative;
    overflow: hidden;
    display: block;
    text-align: center;
    border-radius: 50px;
    padding: 15px;
    color: white !important;
    font-weight: 700;
    background: linear-gradient( 90deg, #53b325, #7ed957 );
    transition: .35s;
}

    .producto-btn.green:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 15px 30px rgba(83,179,37,.35);
    }

    .producto-btn.green::before {
        content: "";
        position: absolute;
        top: 0;
        left: -150%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,.35), transparent );
    }

    .producto-btn.green:hover::before {
        animation: buttonShine .8s;
    }

@keyframes buttonShine {

    100% {
        left: 150%;
    }
}


.bg-primary {
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #005c99, #009cff ) !important;
}

    .bg-primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,.25), transparent );
        animation: shineBar 5s infinite;
    }

@keyframes shineBar {

    100% {
        left: 150%;
    }
}


.form-control {
    border-radius: 12px;
    border: 2px solid #e5ebf2;
    font-size: 1.1rem;
    transition: .35s;
}

    .form-control:hover {
        border-color: #9ed2ff;
    }

    .form-control:focus {
        transform: translateY(-2px);
        border-color: #0088e8;
        box-shadow: 0 10px 20px rgba(0,136,232,.15) !important;
    }


.alert {
    animation: alertPop .5s ease;
}

@keyframes alertPop {

    0% {
        transform: scale(.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.tab-pane {
    font-size: 1.1rem;
    line-height: 1.6;
}

.fa-check {
    color: #28a745;
    font-size: 1.1rem;
    margin-right: 6px;
    transition: .3s;
}

    .fa-check:hover {
        transform: scale(1.3);
        color: #00c851;
    }

.tab-pane .container .row {
    transition: .25s;
    font-size: 1.1rem;
}

    .tab-pane .container .row:not(:first-child):hover {
        background: #eef8ff;
        transform: scale(1.01);
    }

    .tab-pane .container .row:first-child {
        background: linear-gradient( 90deg, #005c99, #0088e8 );
        color: white;
        border-radius: 8px;
    }

.tab-pane table {
    width: 100%;
    font-size: 1.1rem;
    border-collapse: collapse;
}

    .tab-pane table th,
    .tab-pane table td {
        padding: 10px 12px;
        font-size: 1.1rem;
    }

    .tab-pane table th {
        font-weight: 700;
        border-bottom: 2px solid #005c99;
    }


#respuesta {
    font-size: 1.4rem;
    font-weight: 700;
    animation: resultAnimation .5s ease;
}

@keyframes resultAnimation {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.morpheus-den-gradient {
    height: 5px !important;
    border: none !important;
    background: linear-gradient( 90deg, #005c99, #00bfff );
    position: relative;
    overflow: hidden;
}

    .morpheus-den-gradient::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: rgba(255,255,255,.4);
        animation: separatorShine 4s infinite;
    }

#textinfo {
    font-size: 1.1rem;
}

@keyframes separatorShine {

    100% {
        left: 150%;
    }
}