    /* =====================================================
       HERO DEL SERVICIO
    ===================================================== */
    .service-detail-hero {
        background: var(--azul-navy);
        padding: 145px 0 100px;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .service-detail-hero::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border: 45px solid rgba(197, 160, 89, 0.05);
        border-radius: 50%;
        top: -220px;
        right: -130px;
    }

    .service-detail-hero::after {
        content: '';
        position: absolute;
        width: 260px;
        height: 260px;
        border: 30px solid rgba(255, 255, 255, 0.025);
        border-radius: 50%;
        bottom: -170px;
        left: -90px;
    }

    .service-detail-hero .container {
        position: relative;
        z-index: 1;
    }

    .service-breadcrumb {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 28px;
        font-size: 13px;
        font-weight: 700;
    }

    .service-breadcrumb a {
        color: var(--oro);
        text-decoration: none;
        transition: 0.3s ease;
    }

    .service-breadcrumb a:hover {
        color: white;
    }

    .service-breadcrumb i {
        color: rgba(255, 255, 255, 0.4);
        font-size: 10px;
    }

    .service-breadcrumb span {
        color: rgba(255, 255, 255, 0.65);
    }

    .hero-service-content {
        max-width: 950px;
    }

    .hero-service-icon {
        width: 76px;
        height: 76px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(197, 160, 89, 0.13);
        border: 1px solid rgba(197, 160, 89, 0.22);
        border-radius: 20px;
        margin-bottom: 28px;
    }

    .hero-service-icon i {
        color: var(--oro);
        font-size: 31px;
    }

    .service-detail-hero h1 {
        max-width: 900px;
        margin: 0 0 25px;
        color: white;
        font-size: 52px;
        font-weight: 800;
        line-height: 1.12;
    }

    .service-detail-hero h1 span {
        color: var(--oro);
    }

    .service-detail-hero .hero-description {
        max-width: 820px;
        margin: 0;
        color: rgba(255, 255, 255, 0.8);
        font-size: 18px;
        line-height: 1.85;
    }


    /* =====================================================
       ELEMENTOS COMUNES
    ===================================================== */
    .service-eyebrow {
        display: inline-block;
        color: var(--oro);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 13px;
        margin-bottom: 18px;
    }

    .service-heading {
        color: var(--azul-navy);
        font-size: 40px;
        font-weight: 800;
        line-height: 1.2;
        margin: 0 0 25px;
    }


    /* =====================================================
       DESCRIPCIÓN GENERAL
    ===================================================== */
    .sec-service-overview {
        padding: 110px 0;
        background: white;
    }

    .service-overview-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 80px;
        align-items: center;
    }

    .service-overview-content p {
        color: var(--text-light);
        font-size: 17px;
        line-height: 1.9;
        margin: 0 0 22px;
    }

    .service-overview-content p:last-child {
        margin-bottom: 0;
    }

    .service-highlight-box {
        position: relative;
        padding: 50px;
        background: #f8fafc;
        border: 1px solid #edf0f4;
        border-radius: 28px;
        overflow: hidden;
    }

    .service-highlight-box::after {
        content: '';
        position: absolute;
        width: 180px;
        height: 180px;
        border: 22px solid rgba(197, 160, 89, 0.07);
        border-radius: 50%;
        right: -90px;
        bottom: -90px;
    }

    .highlight-icon {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(197, 160, 89, 0.12);
        border-radius: 18px;
        margin-bottom: 25px;
    }

    .highlight-icon i {
        color: var(--oro);
        font-size: 28px;
    }

    .service-highlight-box h3 {
        position: relative;
        z-index: 1;
        color: var(--azul-navy);
        font-size: 25px;
        line-height: 1.35;
        margin: 0 0 18px;
    }

    .service-highlight-box p {
        position: relative;
        z-index: 1;
        color: var(--text-light);
        line-height: 1.85;
        margin: 0;
    }


    /* =====================================================
       SITUACIONES QUE ATENDEMOS
    ===================================================== */
    .sec-situations {
        padding: 110px 0;
        background: #f8fafc;
    }

    .situations-header {
        max-width: 780px;
        margin: 0 auto 60px;
        text-align: center;
    }

    .situations-header p {
        color: var(--text-light);
        font-size: 17px;
        line-height: 1.8;
        margin: 0;
    }

    .situations-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .situation-card {
        background: white;
        border: 1px solid #e9edf2;
        border-radius: 22px;
        padding: 38px 32px;
        transition:
            transform 0.35s ease,
            box-shadow 0.35s ease,
            border-color 0.35s ease;
    }

    .situation-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 55px rgba(0, 0, 0, 0.07);
        border-color: rgba(197, 160, 89, 0.5);
    }

    .situation-card i {
        color: var(--oro);
        font-size: 27px;
        margin-bottom: 22px;
    }

    .situation-card h3 {
        color: var(--azul-navy);
        font-size: 19px;
        font-weight: 800;
        line-height: 1.4;
        margin: 0 0 13px;
    }

    .situation-card p {
        color: var(--text-light);
        font-size: 15px;
        line-height: 1.75;
        margin: 0;
    }


    /* =====================================================
       SERVICIOS INCLUIDOS
    ===================================================== */
    .sec-included-services {
        padding: 115px 0;
        background: white;
    }

    .included-header {
        max-width: 780px;
        margin: 0 auto 65px;
        text-align: center;
    }

    .included-header p {
        color: var(--text-light);
        font-size: 17px;
        line-height: 1.8;
        margin: 0;
    }

    .included-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .included-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 28px;
        background: #f8fafc;
        border: 1px solid #edf0f4;
        border-radius: 18px;
        transition: 0.3s ease;
    }

    .included-item:hover {
        transform: translateY(-4px);
        border-color: rgba(197, 160, 89, 0.5);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    }

    .included-number {
        min-width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--azul-navy);
        color: var(--oro);
        border-radius: 13px;
        font-size: 14px;
        font-weight: 900;
    }

    .included-item p {
        color: var(--text-light);
        line-height: 1.75;
        margin: 2px 0 0;
    }


    /* =====================================================
       NUESTRO ENFOQUE
    ===================================================== */
    .sec-service-process {
        padding: 115px 0;
        background: var(--azul-navy);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .sec-service-process::before {
        content: '';
        position: absolute;
        width: 320px;
        height: 320px;
        border: 35px solid rgba(197, 160, 89, 0.04);
        border-radius: 50%;
        top: -180px;
        left: -140px;
    }

    .process-header {
        max-width: 750px;
        margin: 0 auto 70px;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .process-header .service-heading {
        color: white;
    }

    .process-header p {
        color: rgba(255, 255, 255, 0.72);
        font-size: 16px;
        line-height: 1.8;
        margin: 0;
    }

    .service-process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        position: relative;
        z-index: 1;
    }

    .process-step {
        position: relative;
        padding: 38px 28px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        transition: 0.35s ease;
    }

    .process-step:hover {
        transform: translateY(-7px);
        border-color: var(--oro);
        background: rgba(255, 255, 255, 0.06);
    }

    .process-number {
        display: block;
        color: var(--oro);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .process-step i {
        display: block;
        color: var(--oro);
        font-size: 27px;
        margin-bottom: 22px;
    }

    .process-step h3 {
        color: white;
        font-size: 19px;
        line-height: 1.35;
        margin: 0 0 14px;
    }

    .process-step p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        line-height: 1.75;
        margin: 0;
    }


    /* =====================================================
       CTA
    ===================================================== */
    .sec-service-cta {
        padding: 110px 0;
        background: #f8fafc;
    }

    .service-cta-box {
        max-width: 950px;
        margin: 0 auto;
        padding: 70px 60px;
        text-align: center;
        background: white;
        border: 1px solid #edf0f4;
        border-radius: 30px;
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    }

    .service-cta-box h2 {
        max-width: 750px;
        margin: 0 auto 20px;
        color: var(--azul-navy);
        font-size: 38px;
        font-weight: 800;
        line-height: 1.25;
    }

    .service-cta-box p {
        max-width: 680px;
        margin: 0 auto 35px;
        color: var(--text-light);
        font-size: 16px;
        line-height: 1.8;
    }

    .service-cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 11px;
        padding: 16px 30px;
        background: var(--oro);
        color: var(--azul-navy);
        border-radius: 30px;
        text-decoration: none;
        font-weight: 800;
        transition: 0.3s ease;
    }

    .service-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(197, 160, 89, 0.3);
    }


    /* =====================================================
       RESPONSIVE
    ===================================================== */
    @media (max-width: 1000px) {
        .service-overview-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .situations-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .service-process-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .service-detail-hero {
            padding: 125px 0 75px;
        }

        .service-detail-hero h1 {
            font-size: 36px;
        }

        .service-detail-hero .hero-description {
            font-size: 16px;
        }

        .service-heading {
            font-size: 32px;
        }

        .sec-service-overview,
        .sec-situations,
        .sec-included-services,
        .sec-service-process,
        .sec-service-cta {
            padding: 80px 0;
        }

        .situations-grid,
        .included-grid,
        .service-process-grid {
            grid-template-columns: 1fr;
        }

        .service-highlight-box {
            padding: 35px 28px;
        }

        .service-cta-box {
            padding: 50px 25px;
        }

        .service-cta-box h2 {
            font-size: 30px;
        }
    }
