﻿body {
    background: #f3f6fb;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    color: #2b2b2b;
}

.container {
    max-width: 1200px;
}


    .container.bg-white {
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
        border: 1px solid #eef2f7;
        padding: 30px;
        animation: fadeUp .8s ease both;
    }


.section-title-22 {
    font-size: 26px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 15px;
    position: relative;
}

    .section-title-22::after {
        content: "";
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg,#0d47a1,#00acc1);
        display: block;
        margin-top: 8px;
        border-radius: 10px;
    }


p {
    line-height: 1.8;
    color: #4b5563;
    font-size: 15px;
}


.custom-list {
    padding-left: 18px;
}

    .custom-list li {
        margin-bottom: 8px;
        position: relative;
        color: #374151;
        font-size: 15px;
    }

        .custom-list li::before {
            content: "✔";
            color: #0d47a1;
            font-weight: bold;
            margin-right: 8px;
        }

.producto-btn.green {
    display: inline-block;
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 6px 15px rgba(46,125,50,0.25);
    position: relative;
    overflow: hidden;
}

    .producto-btn.green:hover {
        transform: translateY(-3px);
        background: linear-gradient(135deg, #2e7d32, #43a047);
        box-shadow: 0 10px 25px rgba(46,125,50,0.35);
        color: #fff;
    }

    .producto-btn.green::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: rgba(255,255,255,0.25);
        transform: skewX(-25deg);
        transition: .5s;
    }

    .producto-btn.green:hover::after {
        left: 120%;
    }


img {
    border-radius: 14px;
    transition: all .4s ease;
}

    img:hover {
        transform: scale(1.03);
    }


.table-responsive {
    margin-top: 20px;
}

table {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    font-size: 14px;
}

    table thead {
        background: #0d47a1;
        color: white;
    }

    table th {
        padding: 14px;
        text-align: center;
        font-weight: 600;
    }

    table td {
        padding: 12px;
        text-align: center;
        color: #4b5563;
    }

    table tbody tr:hover {
        background: #f1f7ff;
    }


hr.morpheus-den-gradient {
    border: none;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg,#0d47a1,#00acc1);
    border-radius: 10px;
    margin: 20px 0;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {

    .section-title-22 {
        font-size: 22px;
    }

    .container.bg-white {
        padding: 20px;
    }

    img {
        width: 100% !important;
        height: auto;
    }
}
