﻿:root {
    --p-navy: #1b2f4a;
    --p-navy-deep: #0d47a1;
    --p-navy-light: #0B4F8A;
    --p-gold: #e8a020;
    --p-cyan: #00acc1;
    --p-text: #4b5563;
    --p-text-dark: #2b2b2b;
    --p-border: #eef2f7;
    --p-bg: #f3f6fb;
}

body {
    background: var(--p-bg);
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--p-text-dark);
}

.container {
    max-width: 1200px;
}

    .container.bg-white {
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(27, 47, 74, 0.10);
        border: 1px solid var(--p-border);
        padding: 30px;
        animation: fadeUp .8s ease both;
        transition: box-shadow .3s ease;
    }

        .container.bg-white:hover {
            box-shadow: 0 14px 36px rgba(27, 47, 74, 0.14);
        }

.section-title-22 {
    font-size: 26px;
    font-weight: 700;
    color: var(--p-navy-deep);
    margin-bottom: 15px;
    position: relative;
    letter-spacing: .2px;
}

    .section-title-22::after {
        content: "";
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--p-navy-deep), var(--p-cyan));
        display: block;
        margin-top: 8px;
        border-radius: 10px;
        transition: width .35s ease;
    }

    .section-title-22:hover::after {
        width: 90px;
    }

p {
    line-height: 1.8;
    color: var(--p-text);
    font-size: 15px;
}

.custom-list {
    padding-left: 18px;
    list-style: none;
}

    .custom-list li {
        margin-bottom: 10px;
        position: relative;
        color: #374151;
        font-size: 15px;
        padding-left: 4px;
        transition: transform .2s ease;
    }

        .custom-list li:hover {
            transform: translateX(4px);
        }

        .custom-list li::before {
            content: "✔";
            color: var(--p-navy-deep);
            font-weight: bold;
            margin-right: 10px;
        }

.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%;
    }

.producto-btn.gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--p-navy), var(--p-gold));
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 6px 15px rgba(232,160,32,0.25);
}

    .producto-btn.gold:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(232,160,32,0.35);
        color: #fff;
    }

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;
    border-collapse: separate;
}

    table thead {
        background: linear-gradient(90deg, var(--p-navy), var(--p-navy-deep));
        color: white;
    }

    table th {
        padding: 14px;
        text-align: center;
        font-weight: 600;
    }

    table td {
        padding: 12px;
        text-align: center;
        color: var(--p-text);
    }

    table tbody tr {
        transition: background .2s ease;
    }

        table tbody tr:hover {
            background: #f1f7ff;
        }

        table tbody tr:nth-child(even) {
            background: #fafcff;
        }

hr.morpheus-den-gradient {
    border: none;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--p-navy-deep), var(--p-cyan));
    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;
    }

    table {
        font-size: 13px;
    }
}