/*==============================================
    Services One
===============================================*/
.services-one {
    position: relative;
    display: block;
    background-color: var(--careon-extra);
    padding: 0 0 90px;
    z-index: 1;
}

.services-one__left {
    position: relative;
    display: block;
    margin-top: 240px;
}

.services-one__left .section-title {
    margin-bottom: 30px;
}

.services-one__btn-box {
    position: relative;
    display: block;
    margin-top: 30px;
}

.services-one__btn-box .thm-btn {
    background-color: var(--careon-white);
    border: 1px solid var(--careon-primary);
    color: var(--careon-black);
}

.services-one__right {
    position: relative;
    display: block;
    margin-left: 30px;
}

.services-one__single {
    position: relative;
    display: block;
    background-color: var(--careon-white);
    border-radius: var(--careon-bdr-radius);
    padding: 40px 40px 37px;
    margin-bottom: 30px;
}

.services-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    background-color: var(--color3);
    border-radius: 50%;
    z-index: 1;
}

.services-one__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--careon-base);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.services-one__single:hover .services-one__icon:before {
    transform: scaleX(1);
}

.services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--careon-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
    transform: scale(0.9);
    color: var(--careon-white);
}

.services-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin: 22px 0 34px;
}

.services-one__title a {
    color: var(--careon-black);
}

.services-one__title a:hover {
    color: var(--careon-base);
}

.services-one__read-more {
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--careon-black);
    margin-top: 31px;
}

.services-one__read-more:hover {
    color: var(--careon-base);
}

.services-one__right ul li:first-child {
    margin-top: 80px;
}

.services-one__right ul li:last-child {
    margin-top: -80px;
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.services-two__inner {
    position: relative;
    display: block;
    border: 2px solid var(--careon-bdr-color);
    border-radius: var(--careon-bdr-radius);
    padding: 41px 40px 18px;
}

.services-two__single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 22px;
}

.services-two__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: -16px;
    bottom: 0;
    width: 2px;
    background-color: var(--careon-bdr-color);
}

.services-two__inner ul li:first-child .services-two__single::before {
    display: none;
}

.services-two__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.services-two__title a {
    color: var(--careon-black);
}

.services-two__title a:hover {
    color: var(--careon-base);
}

.services-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    background-color: var(--careon-extra);
    border-radius: 50%;
    margin: 23px auto 20px;
    z-index: 1;
}

.services-two__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--careon-base);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.services-two__single:hover .services-two__icon:before {
    transform: scaleX(1);
}

.services-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--careon-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-two__single:hover .services-two__icon span {
    transform: scale(0.9);
    color: var(--careon-white);
}

.services-two__btn-box {
    position: relative;
    display: block;
    margin-top: 30px;
}

.services-two__btn-box .thm-btn {
    color: var(--careon-black);
    padding: 12px 29px 16px;
    background-color: transparent;
    border: 1px solid var(--careon-black);
}

.services-two__btn-box .thm-btn::before,
.services-two__btn-box .thm-btn::after {
    background-color: var(--careon-black);
}

/*--------------------------------------------------------------
# Benefits Section - Dra. Brenda Briseño Fuentes
# Diseño elegante, responsive y aislado para Home
--------------------------------------------------------------*/
.services-three.services-three--benefits {
    position: relative;
    display: block;
    padding: 110px 0 95px;
    background: linear-gradient(
        180deg,
        var(--white) 0%,
        rgba(var(--careon-primary-rgb), 0.30) 100%
    );
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
}

.services-three.services-three--benefits::before,
.services-three.services-three--benefits::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.services-three.services-three--benefits::before {
    width: 360px;
    height: 360px;
    top: -145px;
    right: -120px;
    background: radial-gradient(
        circle,
        rgba(var(--careon-primary-rgb), 0.88) 0%,
        rgba(var(--careon-primary-rgb), 0) 72%
    );
}

.services-three.services-three--benefits::after {
    width: 300px;
    height: 300px;
    bottom: -135px;
    left: -105px;
    background: radial-gradient(
        circle,
        rgba(var(--careon-base-rgb), 0.12) 0%,
        rgba(var(--careon-base-rgb), 0) 72%
    );
}

.services-three--benefits .container {
    position: relative;
    z-index: 2;
}

/* Encabezado general: mismo lenguaje visual para el Home */
.services-three--benefits .section-title {
    max-width: 940px;
    margin: 0 auto 52px;
    text-align: center;
}

.services-three--benefits .web-section-title,
.services-three--benefits .section-title__title {
    color: var(--color1);
    font-size: 40px;
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: 0.012em;
    word-spacing: 0.06em;
    margin: 0;
    text-wrap: balance;
}

.services-three--benefits .web-section-subtitle,
.services-three--benefits .section-title__tagline {
    color: var(--color2);
    font-size: 18px;
    line-height: 1.72;
    font-weight: 600;
    letter-spacing: 0.018em;
    word-spacing: 0.05em;
    margin: 12px auto 0;
    max-width: 780px;
    text-wrap: balance;
}

/* Separación real entre filas y tarjetas */
.services-three--benefits .services-three__grid {
    align-items: stretch;
    row-gap: 34px;
}

.services-three--benefits .services-three__grid > [class*="col-"] {
    display: flex;
}

.services-three--benefits .services-three__single {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    background: var(--white);
    border: 1px solid rgba(var(--careon-base-rgb), 0.12);
    box-shadow: 0 18px 44px rgba(var(--careon-gray-rgb), 0.08);
    border-radius: calc(var(--careon-bdr-radius) - 2px);
    padding: 34px 28px 31px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    z-index: 1;
}

.services-three--benefits .services-three__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color1) 0%, var(--color2) 100%);
}

.services-three--benefits .services-three__single::after {
    content: "";
    position: absolute;
    width: 175px;
    height: 175px;
    right: -86px;
    bottom: -92px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(var(--careon-primary-rgb), 0.62) 0%,
        rgba(var(--careon-primary-rgb), 0) 72%
    );
    z-index: -1;
    transition: transform 0.4s ease;
}

.services-three--benefits .services-three__single:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 55px rgba(var(--careon-gray-rgb), 0.13);
    border-color: rgba(var(--careon-base-rgb), 0.24);
}

.services-three--benefits .services-three__single:hover::after {
    transform: scale(1.08);
}

/* Iconos de beneficios más grandes */
.services-three--benefits .services-three__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    flex: 0 0 118px;
    margin: 0 0 28px;
    background: linear-gradient(180deg, var(--color3) 0%, var(--careon-primary) 100%);
    border: 1px solid rgba(var(--careon-base-rgb), 0.16);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 10px rgba(var(--careon-white-rgb), 0.72),
        0 12px 30px rgba(var(--careon-base-rgb), 0.12);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services-three--benefits .services-three__icon::before {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(var(--careon-base-rgb), 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.services-three--benefits .services-three__single:hover .services-three__icon {
    transform: scale(1.055) rotate(-1deg);
    box-shadow:
        inset 0 0 0 10px rgba(var(--careon-white-rgb), 0.76),
        0 16px 35px rgba(var(--careon-base-rgb), 0.17);
}

.services-three--benefits .services-three__icon img {
    position: relative;
    z-index: 2;
    display: block;
    width: 92px;
    height: 92px;
    max-width: 92px !important;
    max-height: 92px;
    object-fit: contain;
}

.services-three--benefits .services-three__title {
    color: var(--color1);
    font-size: 24px;
    line-height: 1.38;
    font-weight: 700;
    letter-spacing: 0.01em;
    word-spacing: 0.04em;
    margin: 0 0 16px;
}

.services-three--benefits .services-three__text,
.services-three--benefits .web-section-text {
    color: var(--careon-gray);
    font-size: 16px;
    line-height: 1.82;
    font-weight: 400;
    letter-spacing: 0.008em;
    word-spacing: 0.04em;
    margin: 0;
}

/* Bloque final de cita: imagen visible y texto legible */
.services-three--benefits .services-three__get-a-quote {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 100%;
    padding: 36px 36px 34px;
    background-color: var(--color1);
    border: 1px solid rgba(var(--careon-white-rgb), 0.12);
    border-radius: calc(var(--careon-bdr-radius) - 2px);
    box-shadow: 0 22px 50px rgba(var(--careon-gray-rgb), 0.14);
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
}

.services-three--benefits .services-three__get-a-quote-bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    opacity: 1;
    transform: scale(1.015);
    transition: transform 0.6s ease;
    z-index: -3;
}

.services-three--benefits .services-three__get-a-quote:hover .services-three__get-a-quote-bg {
    transform: scale(1.055);
}

.services-three--benefits .services-three__get-a-quote-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(var(--careon-black-rgb), 0.86) 0%,
        rgba(var(--careon-black-rgb), 0.66) 38%,
        rgba(var(--careon-black-rgb), 0.24) 72%,
        rgba(var(--careon-black-rgb), 0.08) 100%
    );
}

.services-three--benefits .services-three__get-a-quote::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    bottom: -110px;
    border: 1px solid rgba(var(--careon-white-rgb), 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 28px rgba(var(--careon-white-rgb), 0.04),
        0 0 0 56px rgba(var(--careon-white-rgb), 0.025);
    pointer-events: none;
    z-index: -1;
}

.services-three--benefits .services-three__quote-content {
    position: relative;
    z-index: 2;
    max-width: 62%;
}

.services-three--benefits .services-three__get-a-quote-sub-title {
    color: var(--careon-primary);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 700;
    letter-spacing: 0.025em;
    word-spacing: 0.04em;
    margin: 0 0 10px;
}

.services-three--benefits .services-three__get-a-quote-title {
    color: var(--white);
    font-size: 32px;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: 0.01em;
    word-spacing: 0.04em;
    margin: 0;
    text-shadow: 0 2px 12px rgba(var(--careon-gray-rgb), 0.32);
}

.services-three--benefits .services-three__thm-btn {
    position: relative;
    display: block;
    margin-top: 50px;
    z-index: 2;
}

.services-three--benefits .services-three__thm-btn .thm-btn,
.services-three--benefits .services-three__thm-btn a.thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 16px 30px;
    background-color: var(--color2);
    color: var(--white);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.01em;
    word-spacing: 0.04em;
    text-decoration: none;
    border: 1px solid rgba(var(--careon-white-rgb), 0.24);
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(var(--careon-gray-rgb), 0.18);
    transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
    cursor: pointer;
}

.services-three--benefits .services-three__thm-btn .thm-btn:hover,
.services-three--benefits .services-three__thm-btn a.thm-btn:hover {
    background-color: var(--white);
    color: var(--color1);
    transform: translateY(-2px);
}

/* Animación propia: no usa title-animation */
.services-three--benefits .benefits-reveal {
    opacity: 1;
    transform: none;
}

.services-three--benefits.benefits-motion-ready .benefits-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    transition-delay: var(--benefits-delay, 0ms);
}

.services-three--benefits.benefits-motion-ready .benefits-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .services-three--benefits .benefits-reveal,
    .services-three--benefits.benefits-motion-ready .benefits-reveal,
    .services-three--benefits .services-three__single,
    .services-three--benefits .services-three__icon,
    .services-three--benefits .services-three__get-a-quote-bg,
    .services-three--benefits .services-three__thm-btn .thm-btn {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 1199px) {
    .services-three.services-three--benefits {
        padding: 95px 0 82px;
    }

    .services-three--benefits .services-three__quote-content {
        max-width: 70%;
    }
}

@media (max-width: 991px) {
    .services-three.services-three--benefits {
        padding: 86px 0 74px;
    }

    .services-three--benefits .section-title {
        margin-bottom: 42px;
    }

    .services-three--benefits .web-section-title,
    .services-three--benefits .section-title__title {
        font-size: 34px;
    }

    .services-three--benefits .services-three__grid {
        row-gap: 30px;
    }

    .services-three--benefits .services-three__single {
        padding: 31px 25px 29px;
    }

    .services-three--benefits .services-three__icon {
        width: 110px;
        height: 110px;
        flex-basis: 110px;
    }

    .services-three--benefits .services-three__icon img {
        width: 67px;
        height: 67px;
        max-width: 67px !important;
        max-height: 67px;
    }

    .services-three--benefits .services-three__get-a-quote {
        min-height: 370px;
    }

    .services-three--benefits .services-three__quote-content {
        max-width: 68%;
    }
}

@media (max-width: 767px) {
    .services-three.services-three--benefits {
        padding: 76px 0 64px;
    }

    .services-three--benefits .section-title {
        margin-bottom: 36px;
        text-align: center;
    }

    .services-three--benefits .web-section-title,
    .services-three--benefits .section-title__title {
        font-size: 29px;
        line-height: 1.28;
        text-align: center;
    }

    .services-three--benefits .web-section-subtitle,
    .services-three--benefits .section-title__tagline {
        font-size: 16px;
        line-height: 1.72;
        text-align: center;
    }

    .services-three--benefits .services-three__grid {
        row-gap: 26px;
    }

    .services-three--benefits .services-three__single {
        padding: 29px 23px 27px;
    }

    .services-three--benefits .services-three__icon {
        width: 104px;
        height: 104px;
        flex-basis: 104px;
        margin-bottom: 24px;
    }

    .services-three--benefits .services-three__icon img {
        width: 64px;
        height: 64px;
        max-width: 64px !important;
        max-height: 64px;
    }

    .services-three--benefits .services-three__title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .services-three--benefits .services-three__text,
    .services-three--benefits .web-section-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .services-three--benefits .services-three__get-a-quote {
        min-height: 340px;
        padding: 31px 25px;
    }

    .services-three--benefits .services-three__quote-content {
        max-width: 75%;
    }

    .services-three--benefits .services-three__get-a-quote-title {
        font-size: 28px;
    }

    .services-three--benefits .services-three__thm-btn {
        margin-top: 38px;
    }
}

@media (max-width: 575px) {
    .services-three.services-three--benefits::before {
        width: 260px;
        height: 260px;
        top: -100px;
        right: -120px;
    }

    .services-three--benefits .web-section-title,
    .services-three--benefits .section-title__title {
        font-size: 27px;
    }

    .services-three--benefits .services-three__single,
    .services-three--benefits .services-three__get-a-quote {
        border-radius: 18px;
    }

    .services-three--benefits .services-three__icon {
        width: 100px;
        height: 100px;
        flex-basis: 100px;
    }

    .services-three--benefits .services-three__icon img {
        width: 62px;
        height: 62px;
        max-width: 62px !important;
        max-height: 62px;
    }

    .services-three--benefits .services-three__get-a-quote {
        min-height: 360px;
    }

    .services-three--benefits .services-three__get-a-quote-bg {
        background-position: 62% center;
    }

    .services-three--benefits .services-three__get-a-quote-bg::before {
        background: linear-gradient(
            90deg,
            rgba(var(--careon-black-rgb), 0.88) 0%,
            rgba(var(--careon-black-rgb), 0.62) 52%,
            rgba(var(--careon-black-rgb), 0.18) 100%
        );
    }

    .services-three--benefits .services-three__quote-content {
        max-width: 82%;
    }

    .services-three--benefits .services-three__thm-btn .thm-btn,
    .services-three--benefits .services-three__thm-btn a.thm-btn {
        width: 100%;
        text-align: center;
    }
}


/*--------------------------------------------------------------
# Services Four
--------------------------------------------------------------*/
.services-four {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.services-four__single {
    position: relative;
    display: block;
    background-color: var(--careon-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 40px 40px 40px;
    border: 5px solid transparent;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-four__single:hover {
    border: 5px solid rgba(var(--careon-base-rgb), .10);
}

.services-four__icon {
    position: relative;
    display: flex;
    align-items: center;
}

.services-four__icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--careon-primary);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.services-four__single:hover .services-four__icon span {
    transform: rotateY(360deg);
}

.services-four__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
    margin-top: 42px;
    margin-bottom: 24px;
}

.services-four__title a {
    color: var(--careon-black);
}

.services-four__title a:hover {
    color: var(--careon-base);
}

.services-four__text {
    margin-bottom: 31px;
}

.services-four__btn-box {
    position: relative;
    display: block;
}

.services-four__btn-box .thm-btn {
    background-color: var(--careon-extra);
    padding: 21px 30px 21px;
    color: var(--careon-black);
}

/*--------------------------------------------------------------
# Services Five
--------------------------------------------------------------*/
.services-five {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 90px;
    z-index: 1;
}

.services-five__single {
    position: relative;
    display: block;
    border: 1px solid var(--careon-extra);
    border-radius: 10px;
    padding: 59px 39px 59px;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-five__single:hover {
    border: 1px solid var(--careon-primary);
}

.services-five__count {
    position: absolute;
    top: 63px;
    right: 41px;
}

.services-five__count:before {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    color: rgba(var(--careon-black-rgb), .20);
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-five__icon {
    position: relative;
    display: flex;
    align-items: center;
}

.services-five__icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--careon-primary);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.services-five__single:hover .services-five__icon span {
    transform: rotateY(360deg);
    color: var(--careon-base);
}

.services-five__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
    margin-top: 42px;
    margin-bottom: 24px;
}

.services-five__title a {
    color: var(--careon-black);
}

.services-five__title a:hover {
    color: var(--careon-base);
}

.services-five__text {
    margin-bottom: 31px;
}

.services-five__btn-box {
    position: relative;
    display: block;
}

.services-five__btn-box .thm-btn {
    background-color: var(--careon-extra);
    padding: 21px 30px 21px;
    color: var(--careon-black);
}



.service-details {
    position: relative;
    display: block;
    padding: 110px 0 105px;
    background:
        linear-gradient(
            180deg,
            var(--careon-white) 0%,
            var(--color3) 48%,
            var(--careon-white) 100%
        );
    overflow: hidden;
    z-index: 1;
}

.service-details::before,
.service-details::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.service-details::before {
    width: 420px;
    height: 420px;
    top: -180px;
    right: -170px;
    background: radial-gradient(
        circle,
        rgba(var(--careon-primary-rgb), 0.72) 0%,
        rgba(var(--careon-primary-rgb), 0) 72%
    );
}

.service-details::after {
    width: 340px;
    height: 340px;
    left: -160px;
    bottom: 120px;
    background: radial-gradient(
        circle,
        rgba(var(--careon-base-rgb), 0.10) 0%,
        rgba(var(--careon-base-rgb), 0) 72%
    );
}

/*--------------------------------------------------------------
# Columna izquierda
--------------------------------------------------------------*/

.service-details__left {
    position: relative;
    display: block;
}

.service-details__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: calc(var(--careon-bdr-radius) + 6px);
    border: 1px solid rgba(var(--careon-base-rgb), 0.12);
    box-shadow: 0 24px 60px rgba(var(--careon-gray-rgb), 0.10);
    background: var(--careon-white);
    isolation: isolate;
}

.service-details__img::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(var(--careon-black-rgb), 0) 58%,
            rgba(var(--careon-black-rgb), 0.13) 100%
        );
    pointer-events: none;
    z-index: 1;
}

.service-details__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: -90%;
    width: 42%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(var(--careon-white-rgb), 0) 0%,
        rgba(var(--careon-white-rgb), 0.46) 50%,
        rgba(var(--careon-white-rgb), 0) 100%
    );
    transform: skewX(-18deg);
    transition: left 0.9s ease;
    z-index: 2;
}

.service-details__img:hover::after {
    left: 140%;
}

.service-details__img img {
    width: 100%;
    display: block;
    border-radius: calc(var(--careon-bdr-radius) + 6px);
    transition: transform 0.75s ease;
}

.service-details__img:hover img {
    transform: scale(1.025);
}

.service-details__content {
    position: relative;
    display: block;
    margin-top: 36px;
    padding: 38px 40px 40px;
    background: rgba(var(--careon-white-rgb), 0.88);
    border: 1px solid rgba(var(--careon-base-rgb), 0.10);
    border-radius: calc(var(--careon-bdr-radius) + 6px);
    box-shadow: 0 18px 48px rgba(var(--careon-gray-rgb), 0.065);
    overflow: hidden;
}

.service-details__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 38px;
    width: 110px;
    height: 4px;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(
        90deg,
        var(--color1) 0%,
        var(--color2) 100%
    );
}

.service-details__content::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -100px;
    bottom: -105px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(var(--careon-primary-rgb), 0.55) 0%,
        rgba(var(--careon-primary-rgb), 0) 72%
    );
    pointer-events: none;
}

.service-details__title-1 {
    position: relative;
    color: var(--color1);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.005em;
    margin: 0;
    padding-bottom: 18px;
    text-wrap: balance;
}

.service-details__title-1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 74px;
    height: 3px;
    border-radius: 999px;
    background: var(--color2);
}

.service-details__text-1,
.service-details__text-3,
.service-details__text-4,
.service-details__text-list li {
    color: var(--careon-gray);
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.008em;
}

.service-details__text-1 {
    margin: 24px 0 24px;
}

.service-details__title-2,
.service-details__title-3 {
    position: relative;
    color: var(--color1);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.006em;
}

.service-details__title-2 {
    margin: 38px 0 24px;
}

.service-details__title-3 {
    margin: 0;
    padding-left: 18px;
}

.service-details__title-3::before {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 0;
    width: 4px;
    border-radius: 10px;
    background: linear-gradient(
        180deg,
        var(--color1) 0%,
        var(--color2) 100%
    );
}

/*--------------------------------------------------------------
# Puntos / beneficios internos
--------------------------------------------------------------*/

.service-details__points-box {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 18px;
    flex-wrap: wrap;
    margin: 26px 0 4px;
}

.service-details__points-list {
    position: relative;
    display: grid;
    gap: 12px;
    flex: 1 1 280px;
}

.service-details__points-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 56px;
    padding: 12px 16px;
    margin: 0 !important;
    background: rgba(var(--careon-primary-rgb), 0.28);
    border: 1px solid rgba(var(--careon-base-rgb), 0.10);
    border-radius: 14px;
    color: var(--careon-gray);
    font-size: 16px;
    line-height: 1.6;
    transition:
        transform 0.30s ease,
        border-color 0.30s ease,
        background-color 0.30s ease,
        box-shadow 0.30s ease;
}

.service-details__points-list li:hover {
    transform: translateY(-2px);
    background: rgba(var(--careon-primary-rgb), 0.44);
    border-color: rgba(var(--careon-base-rgb), 0.22);
    box-shadow: 0 10px 24px rgba(var(--careon-gray-rgb), 0.055);
}

.service-details__points-list li .icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--careon-white);
    border: 1px solid rgba(var(--careon-base-rgb), 0.15);
    box-shadow: 0 6px 16px rgba(var(--careon-gray-rgb), 0.05);
}

.service-details__points-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 11px;
    color: var(--color2);
}

.service-details__text-3 {
    margin: 24px 0 38px;
}

.service-details__text-4 {
    margin: 24px 0 32px;
}

/*--------------------------------------------------------------
# Imágenes internas
--------------------------------------------------------------*/

.service-details__img-box {
    position: relative;
    display: block;
    margin: 10px 0 30px;
}

.service-details__img-box-img {
    position: relative;
    display: block;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: calc(var(--careon-bdr-radius) + 4px);
    border: 1px solid rgba(var(--careon-base-rgb), 0.10);
    box-shadow: 0 16px 42px rgba(var(--careon-gray-rgb), 0.08);
}

.service-details__img-box-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(var(--careon-black-rgb), 0) 62%,
        rgba(var(--careon-black-rgb), 0.10) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.service-details__img-box-img img {
    width: 100%;
    display: block;
    border-radius: calc(var(--careon-bdr-radius) + 4px);
    transition: transform 0.65s ease;
}

.service-details__img-box-img:hover img {
    transform: scale(1.025);
}

.service-details__text-list {
    position: relative;
    display: grid;
    gap: 14px;
}

.service-details__text-list li {
    position: relative;
    display: block;
    margin: 0 !important;
    padding: 16px 18px 16px 22px;
    background: var(--color3);
    border-left: 4px solid var(--color2);
    border-radius: 0 14px 14px 0;
}

/*--------------------------------------------------------------
# Sidebar derecha
--------------------------------------------------------------*/

.service-details__right {
    position: relative;
    display: block;
}

.service-details__services-box {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--careon-base-rgb), 0.12);
    border-radius: calc(var(--careon-bdr-radius) + 6px);
    padding: 34px;
    background: rgba(var(--careon-white-rgb), 0.92);
    box-shadow: 0 20px 50px rgba(var(--careon-gray-rgb), 0.07);
    overflow: hidden;
}

.service-details__services-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    right: 34px;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(
        90deg,
        var(--color1) 0%,
        var(--color2) 100%
    );
}

.service-details__service-title {
    position: relative;
    color: var(--color1);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 26px;
    padding-bottom: 13px;
}

.service-details__service-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    height: 3px;
    border-radius: 999px;
    background: var(--color2);
}

.service-details__service-list {
    position: relative;
    display: grid;
    gap: 12px;
}

.service-details__service-list li {
    position: relative;
    display: block;
    margin: 0 !important;
}

.service-details__service-list li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    color: var(--careon-gray);
    background:
        linear-gradient(
            90deg,
            var(--color3) 0%,
            rgba(var(--careon-primary-rgb), 0.44) 100%
        );
    border: 1px solid rgba(var(--careon-base-rgb), 0.10);
    padding: 14px 20px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 0.30s ease,
        color 0.30s ease,
        border-color 0.30s ease,
        box-shadow 0.30s ease;
}

.service-details__service-list li a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--color1) 0%,
        var(--color2) 100%
    );
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
    z-index: -1;
}

.service-details__service-list li:hover a,
.service-details__service-list li.active a {
    color: var(--careon-white);
    border-color: rgba(var(--careon-base-rgb), 0.40);
    transform: translateX(4px);
    box-shadow: 0 12px 26px rgba(var(--careon-gray-rgb), 0.10);
    background-color: var(--careon-base);
}

.service-details__service-list li:hover a::before,
.service-details__service-list li.active a::before {
    transform: scaleX(1);
}

.service-details__service-list li a span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 11px;
    color: var(--color1);
    background: var(--careon-white);
    border: 1px solid rgba(var(--careon-base-rgb), 0.14);
    transition:
        color 0.30s ease,
        background-color 0.30s ease;
}

.service-details__service-list li:hover a span,
.service-details__service-list li.active a span {
    color: var(--color1);
    background: var(--careon-primary);
}

/*--------------------------------------------------------------
# Caja "Need Help"
--------------------------------------------------------------*/

.service-details__need-help-inner {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--careon-base-rgb), 0.12);
    border-radius: calc(var(--careon-bdr-radius) + 6px);
    padding: 12px;
    margin-top: 32px;
    background: var(--careon-white);
    box-shadow: 0 20px 50px rgba(var(--careon-gray-rgb), 0.08);
}

.service-details__need-help {
    position: relative;
    display: block;
    min-height: 410px;
    border-radius: var(--careon-bdr-radius);
    text-align: center;
    padding: 70px 38px 62px;
    overflow: hidden;
    z-index: 1;
}

.service-details__need-help::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(var(--careon-white-rgb), 0.25);
    border-radius: calc(var(--careon-bdr-radius) - 6px);
    pointer-events: none;
    z-index: 2;
}

.service-details__need-help-bg {
    position: absolute;
    inset: 0;
    border-radius: var(--careon-bdr-radius);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: -1;
}

.service-details__need-help-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--careon-bdr-radius);
    background:
        linear-gradient(
            180deg,
            rgba(var(--careon-black-rgb), 0.34) 0%,
            rgba(var(--careon-black-rgb), 0.58) 100%
        );
    backdrop-filter: blur(2px);
}

.service-details__need-help-title {
    position: relative;
    max-width: 290px;
    margin: 0 auto;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--careon-white);
    text-shadow: 0 3px 14px rgba(var(--careon-gray-rgb), 0.20);
    z-index: 3;
}

.service-details__need-help-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    background: var(--careon-primary);
    border: 8px solid rgba(var(--careon-white-rgb), 0.15);
    border-radius: 50%;
    margin: 28px auto 22px;
    box-shadow: 0 16px 34px rgba(var(--careon-gray-rgb), 0.16);
    transition:
        transform 0.35s ease,
        background-color 0.35s ease;
    z-index: 3;
}

.service-details__need-help-icon:hover {
    transform: translateY(-4px) rotate(-3deg);
    background-color: var(--color2);
}

.service-details__need-help-icon span {
    position: relative;
    display: inline-block;
    font-size: 34px;
    color: var(--color1);
    transition: color 0.30s ease;
}

.service-details__need-help-icon:hover span {
    color: var(--careon-white);
}

.service-details__need-help-call {
    position: relative;
    display: block;
    z-index: 3;
}

.service-details__need-help-call a {
    position: relative;
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--careon-white);
    padding-bottom: 4px;
}

.service-details__need-help-call a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 44px;
    height: 2px;
    background: var(--careon-primary);
    transform: translateX(-50%);
    transition: width 0.30s ease;
}

.service-details__need-help-call a:hover {
    color: var(--careon-primary);
}

.service-details__need-help-call a:hover::after {
    width: 100%;
}

/*--------------------------------------------------------------
# Caja de descargas
--------------------------------------------------------------*/

.service-details__download-box {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--careon-base-rgb), 0.12);
    border-radius: calc(var(--careon-bdr-radius) + 6px);
    padding: 30px;
    margin-top: 32px;
    background: rgba(var(--careon-white-rgb), 0.92);
    box-shadow: 0 20px 50px rgba(var(--careon-gray-rgb), 0.07);
}

.service-details__download-list {
    position: relative;
    display: grid;
    gap: 12px;
}

.service-details__download-list li {
    position: relative;
    display: block;
    margin: 0 !important;
}

.service-details__download-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 14px 20px 14px 66px;
    border-radius: 16px;
    overflow: hidden;
    color: var(--careon-gray);
    background:
        linear-gradient(
            90deg,
            var(--color3) 0%,
            rgba(var(--careon-primary-rgb), 0.42) 100%
        );
    border: 1px solid rgba(var(--careon-base-rgb), 0.10);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    isolation: isolate;
    transition:
        transform 0.30s ease,
        color 0.30s ease,
        border-color 0.30s ease,
        box-shadow 0.30s ease;
    z-index: 1;
}

.service-details__download-list li a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--color1) 0%,
        var(--color2) 100%
    );
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
    z-index: -1;
}

.service-details__download-list li a::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--careon-white);
    border: 1px solid rgba(var(--careon-base-rgb), 0.14);
    transform: translateY(-50%);
    box-shadow: 0 7px 16px rgba(var(--careon-gray-rgb), 0.05);
    z-index: -1;
}

.service-details__download-list li:hover a {
    color: var(--careon-white);
    transform: translateY(-2px);
    border-color: rgba(var(--careon-base-rgb), 0.30);
    box-shadow: 0 12px 26px rgba(var(--careon-gray-rgb), 0.09);
}

.service-details__download-list li:hover a::before {
    transform: scaleX(1);
}

.service-details__download-list li a span {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: var(--color1);
    transition: color 0.30s ease;
    z-index: 2;
}

.service-details__download-list li:hover a span {
    color: var(--careon-white);
}

/*--------------------------------------------------------------
# Animaciones suaves usando las mismas clases
--------------------------------------------------------------*/

.service-details__img,
.service-details__content,
.service-details__services-box,
.service-details__need-help-inner,
.service-details__download-box {
    animation: serviceDetailsReveal 0.75s ease both;
}

.service-details__content {
    animation-delay: 0.10s;
}

.service-details__services-box {
    animation-delay: 0.14s;
}

.service-details__need-help-inner {
    animation-delay: 0.22s;
}

.service-details__download-box {
    animation-delay: 0.28s;
}

@keyframes serviceDetailsReveal {
    0% {
        opacity: 0;
        transform: translateY(22px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 1199px) {
    .service-details {
        padding: 95px 0 90px;
    }

    .service-details__title-1 {
        font-size: 42px;
    }

    .service-details__content {
        padding: 34px 32px 36px;
    }

    .service-details__services-box,
    .service-details__download-box {
        padding: 28px;
    }

    .service-details__need-help {
        padding: 62px 30px 56px;
    }
}

@media (max-width: 991px) {
    .service-details {
        padding: 85px 0 80px;
    }

    .service-details__right {
        margin-top: 42px;
    }

    .service-details__title-1 {
        font-size: 38px;
    }

    .service-details__points-box {
        gap: 14px;
    }

    .service-details__services-box,
    .service-details__need-help-inner,
    .service-details__download-box {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-details__need-help-inner,
    .service-details__download-box {
        margin-top: 28px;
    }
}

@media (max-width: 767px) {
    .service-details {
        padding: 72px 0 68px;
    }

    .service-details__content {
        margin-top: 26px;
        padding: 30px 22px 32px;
        border-radius: var(--careon-bdr-radius);
    }

    .service-details__content::before {
        left: 22px;
        width: 86px;
    }

    .service-details__title-1 {
        font-size: 32px;
        line-height: 1.25;
    }

    .service-details__title-2,
    .service-details__title-3 {
        font-size: 24px;
    }

    .service-details__text-1,
    .service-details__text-3,
    .service-details__text-4,
    .service-details__text-list li,
    .service-details__points-list li,
    .service-details__service-list li a,
    .service-details__download-list li a {
        font-size: 16px;
    }

    .service-details__points-box {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-details__points-list {
        flex-basis: auto;
    }

    .service-details__right {
        margin-top: 36px;
    }

    .service-details__services-box,
    .service-details__download-box {
        padding: 24px 20px;
        border-radius: var(--careon-bdr-radius);
    }

    .service-details__service-title {
        font-size: 27px;
    }

    .service-details__need-help-inner {
        padding: 9px;
        border-radius: var(--careon-bdr-radius);
    }

    .service-details__need-help {
        min-height: 370px;
        padding: 58px 24px 50px;
    }

    .service-details__need-help-title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .service-details {
        padding: 62px 0 58px;
    }

    .service-details__img,
    .service-details__img img,
    .service-details__img-box-img,
    .service-details__img-box-img img {
        border-radius: 16px;
    }

    .service-details__content {
        padding: 27px 17px 28px;
    }

    .service-details__content::before {
        left: 17px;
        width: 72px;
    }

    .service-details__title-1 {
        font-size: 29px;
    }

    .service-details__title-2 {
        margin-top: 32px;
    }

    .service-details__points-list li {
        padding: 12px 13px;
    }

    .service-details__services-box,
    .service-details__download-box {
        padding: 22px 16px;
    }

    .service-details__service-list li a {
        padding-left: 15px;
        padding-right: 15px;
    }

    .service-details__need-help {
        min-height: 350px;
        padding: 52px 18px 46px;
    }

    .service-details__need-help-icon {
        width: 84px;
        height: 84px;
    }

    .service-details__need-help-call a {
        font-size: 20px;
    }

    .service-details__download-list li a {
        padding-left: 60px;
        padding-right: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-details__img,
    .service-details__content,
    .service-details__services-box,
    .service-details__need-help-inner,
    .service-details__download-box,
    .service-details__img img,
    .service-details__img-box-img img,
    .service-details__points-list li,
    .service-details__service-list li a,
    .service-details__download-list li a,
    .service-details__need-help-icon {
        animation: none;
        transition: none;
    }
}



/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-page {
    position: relative;
    display: block;
    padding: 120px 0 30px;
    z-index: 1;
}

.services-page .services-two__single {
    margin-bottom: 30px;
    margin-top: 32px;
}

.services-page .services-two__single-list li {
    border-bottom: 1px solid var(--careon-bdr-color);
}

.services-page .services-two__inner ul li:nth-child(4) .services-two__single::before {
    display: none;
}


.services-page .services-two__inner ul li:nth-child(7) .services-two__single::before {
    display: none;
}

.services-page .services-two__inner ul li:nth-child(7) {
    border-bottom: none;
}

.services-page .services-two__inner ul li:nth-child(8) {
    border-bottom: none;
}

.services-page .services-two__inner ul li:nth-child(9) {
    border-bottom: none;
}

.services-page .services-two__inner ul li:nth-child(1) .services-two__single {
    margin-top: 0px;
}

.services-page .services-two__inner ul li:nth-child(2) .services-two__single {
    margin-top: 0px;
}

.services-page .services-two__inner ul li:nth-child(3) .services-two__single {
    margin-top: 0px;
}


/*--------------------------------------------------------------
# Services Carousel Page
--------------------------------------------------------------*/
.services-carousel-page {
    position: relative;
    display: block;
    padding: 120px 0 170px;
}

.services-carousel-page .services-three__single {
    margin-bottom: 0;
}













/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/