
    /* ===== Iniciativas mejoradas ===== */
    .service-style-two {
        padding: 80px 0;
        background: #fff;
    }
    .service-style-two .sec-title h2 {
        font-size: 34px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 50px;
        position: relative;
    }
    .service-style-two .sec-title h2::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: #28a745; /* verde de la paleta */
        margin: 12px auto 0;
        border-radius: 2px;
    }

    .gallery-item {
        margin-bottom: 40px;
    }
    .gallery-item .inner-box {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        transition: transform .3s ease, box-shadow .3s ease;
    }
    .gallery-item .inner-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.25);
    }

    .gallery-item .image-box img {
        width: 100%;
        height: auto;
        transition: transform .4s ease;
    }
    .gallery-item .inner-box:hover .image-box img {
        transform: scale(1.08);
    }

    .gallery-item .caption {
        text-align: center;
        padding: 12px;
        font-size: 16px;
        font-weight: 600;
        color: #2c3e50;
        background: #f9fafc;
    }

    /* Overlay para ver más */
    .gallery-item .overlay-box {
        position: absolute;
        top: 0; left: 0;
        right: 0; bottom: 0;
        background: rgba(40, 167, 69, 0.85); /* verde con transparencia */
        opacity: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity .4s ease;
    }
    .gallery-item .inner-box:hover .overlay-box {
        opacity: 1;
    }
    .overlay-box .content h2 a {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
    }
    .overlay-box .plus {
        display: inline-block;
        font-size: 28px;
        color: #fff;
        margin-top: 12px;
    }
