/* ==========================================================================
   URBENORTE — Página de Servicios
   ========================================================================== */

.page-hero--servicios {
    background:
        linear-gradient(to bottom, rgba(10,30,30,0.55) 0%, rgba(10,30,30,0.75) 100%),
        url('../../img/Hero_Urbenorte.png') center 40% / cover no-repeat;
}

.page-hero--servicios .page-hero__title {
    color: #fff;
}

.page-hero--servicios .page-hero__eyebrow {
    color: var(--c-accent);
}

.page-hero--servicios .page-hero__subtitle {
    color: rgba(255,255,255,0.75);
}

/* ── Servicios detallados ── */

.servicios-section {
    padding: var(--sp-16) 0 var(--sp-20);
}

.servicio-detail {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--sp-8);
    align-items: start;
    padding: var(--sp-10) 0;
    border-bottom: 1px solid var(--c-border);
}

.servicio-detail:last-child {
    border-bottom: none;
}

.servicio-detail--reverse {
    direction: ltr; /* keep ltr for readability */
}

.servicio-detail__icon-wrap {
    display: flex;
    justify-content: center;
    padding-top: var(--sp-2);
}

.servicio-detail__icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    background: rgba(74, 90, 60, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
}

.servicio-detail__icon svg {
    width: 40px;
    height: 40px;
}

.servicio-detail__title {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: var(--sp-3);
    line-height: 1.25;
}

.servicio-detail__text {
    font-size: var(--fs-base);
    color: var(--c-text-light);
    line-height: 1.7;
    margin-bottom: var(--sp-5);
    max-width: 640px;
}

.servicio-detail__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.servicio-detail__bullets li {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--c-text);
}

.servicio-detail__bullets li svg {
    flex-shrink: 0;
    color: var(--c-primary);
}

/* ── Trust section ── */

.servicios-trust {
    background: var(--c-primary);
    padding: var(--sp-12) 0;
}

.trust-bar--light .trust-bar__num {
    color: #fff;
}

.trust-bar--light .trust-bar__label {
    color: rgba(255, 255, 255, 0.8);
}

.trust-bar--light .trust-bar__sep {
    background: rgba(255, 255, 255, 0.25);
}

/* ── CTA final ── */

.servicios-cta {
    padding: var(--sp-16) 0;
    text-align: center;
}

.servicios-cta__inner {
    max-width: 600px;
    margin: 0 auto;
}

.servicios-cta__title {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: var(--sp-3);
}

.servicios-cta__text {
    font-size: var(--fs-lg);
    color: var(--c-text-light);
    margin-bottom: var(--sp-8);
}

.servicios-cta__actions {
    display: flex;
    gap: var(--sp-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .servicio-detail {
        grid-template-columns: 1fr;
        gap: var(--sp-5);
        padding: var(--sp-8) 0;
    }

    .servicio-detail__icon-wrap {
        justify-content: flex-start;
    }

    .servicio-detail__icon {
        width: 64px;
        height: 64px;
    }

    .servicio-detail__icon svg {
        width: 32px;
        height: 32px;
    }

    .servicio-detail__title {
        font-size: var(--fs-xl);
    }

    .servicios-cta__title {
        font-size: var(--fs-2xl);
    }
}
