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;
        animation: fadeUp .7s ease both;
    }

.section-title-2121 {
    font-size: 26px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 15px;
    position: relative;
}

    .section-title-2121::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;
}


.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);
    }


.list-group-item {
    border: none;
    background: #fff;
    padding: 12px 15px;
    font-size: 14px;
    color: #4b5563;
    border-left: 4px solid transparent;
    transition: all .2s ease;
}

    .list-group-item:hover {
        border-left: 4px solid #0d47a1;
        background: #f8fbff;
    }


table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

    table th {
        background: #0d47a1;
        color: white;
        text-align: center;
        font-weight: 600;
        padding: 12px;
    }

    table td {
        text-align: center;
    }


.punto-2121 {
    width: 18px;
    height: 18px;
    background: #00acc1;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(0,172,193,0.2);
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {

    .section-title-2121 {
        font-size: 22px;
    }

    .container.bg-white {
        padding: 20px !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}