body {
    background: #f3f6fb;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    color: #2b2b2b;
}

.container {
    max-width: 1400px;
    padding: 50px 15px 80px;
}


h4.text-primary {
    font-size: 26px;
    font-weight: 700;
    color: #0d47a1 !important;
    margin-top: 20px;
    margin-bottom: 15px;
}

hr {
    border: none;
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg,#0d47a1,#00acc1);
    border-radius: 10px;
    margin: 10px 0 20px;
}


p {
    line-height: 1.8;
    color: #4b5563;
    font-size: 15px;
}

.col-12.col-md-6 {
    margin-bottom: 30px;
}

.tab-content {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid #eef2f7;
    transition: all .3s ease;
}

    .tab-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 35px rgba(0,0,0,0.10);
    }


.fas.fa-check {
    margin-right: 8px;
}


.producto-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 22px;
    background: linear-gradient(135deg,#0d47a1,#1565c0);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 6px 15px rgba(13,71,161,0.25);
}

    .producto-btn:hover {
        transform: translateY(-3px);
        background: linear-gradient(135deg,#1565c0,#00acc1);
        color: #fff;
    }


.carousel {
    background: #fff;
    border-radius: 18px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all .3s ease;
}

    .carousel img {
        width: 100%;
        max-height: 360px;
        object-fit: contain;
        transition: transform .5s ease;
    }

    .carousel:hover img {
        transform: scale(1.05);
    }


button {
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    margin-right: 8px;
    font-weight: 600;
    color: #fff;
}

    button[style*="cc8505"] {
        background: #cc8505;
    }

    button[style*="c6c2c2"] {
        background: #aeb4bb;
    }

.bg-light {
    background: #e5e7eb !important;
    color: #333 !important;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.container > .row {
    animation: fadeUp .8s ease both;
}

    .container > .row:nth-child(2) {
        animation-delay: .1s;
    }

    .container > .row:nth-child(3) {
        animation-delay: .2s;
    }

    .container > .row:nth-child(4) {
        animation-delay: .3s;
    }


@media (max-width: 768px) {

    .container {
        padding: 25px 10px 60px;
    }

    h4.text-primary {
        font-size: 22px;
    }

    .tab-content {
        padding: 18px;
    }

    .carousel img {
        max-height: 250px;
    }
}
