/* =========================================================
   TÍTULOS GENERALES DE LAS SECCIONES

   Estas clases son las mismas utilizadas en la biografía.
   Debe conservarse una sola copia en el archivo CSS.
========================================================= */



/* =========================================================
   SECCIÓN DE BENEFICIOS
========================================================= */
.ci-benefits-section {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 125px 0 135px;
    background:
        radial-gradient(
            circle at 8% 14%,
            rgba(var(--careon-white-rgb), 0.9) 0%,
            rgba(var(--careon-white-rgb), 0) 27%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(var(--careon-base-rgb), 0.1) 0%,
            rgba(var(--careon-base-rgb), 0) 28%
        ),
        linear-gradient(
            135deg,
            var(--careon-primary) 0%,
            var(--color3) 47%,
            var(--careon-primary) 100%
        );
    font-family: var(--careon-font);
    isolation: isolate;
}


/* Línea superior de transición */
.ci-benefits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(92%, 1380px);
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(var(--careon-base-rgb), 0) 0%,
        rgba(var(--careon-base-rgb), 0.3) 50%,
        rgba(var(--careon-base-rgb), 0) 100%
    );
    transform: translateX(-50%);
}


/* Forma decorativa de fondo */
.ci-benefits-section::after {
    content: "";
    position: absolute;
    top: -240px;
    right: -170px;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    border: 115px solid rgba(var(--careon-base-rgb), 0.045);
    pointer-events: none;
    z-index: -1;
}


/* =========================================================
   DECORACIONES DEL FONDO
========================================================= */
.ci-benefits-section__decoration {
    position: absolute;
    display: block;
    pointer-events: none;
    z-index: -1;
}

.ci-benefits-section__decoration--one {
    top: 105px;
    left: 3%;
    width: 125px;
    height: 125px;
    opacity: 0.2;
    background-image:
        linear-gradient(
            rgba(var(--careon-base-rgb), 0.5) 1px,
            rgba(var(--careon-base-rgb), 0) 1px
        ),
        linear-gradient(
            90deg,
            rgba(var(--careon-base-rgb), 0.5) 1px,
            rgba(var(--careon-base-rgb), 0) 1px
        );
    background-size: 18px 18px;
}

.ci-benefits-section__decoration--two {
    left: -180px;
    bottom: -220px;
    width: 480px;
    height: 480px;
    border: 90px solid rgba(var(--careon-white-rgb), 0.45);
    border-radius: 50%;
}

.ci-benefits-section__decoration--three {
    right: 5%;
    bottom: 12%;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background-color: rgba(var(--careon-base-rgb), 0.35);
    box-shadow:
        35px -33px 0 rgba(var(--careon-base-rgb), 0.1),
        69px 4px 0 rgba(var(--careon-base-rgb), 0.15),
        15px 43px 0 rgba(var(--careon-base-rgb), 0.08);
}


/* =========================================================
   DISTRIBUCIÓN GENERAL
========================================================= */
.ci-benefits-section__layout {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(340px, 0.85fr)
        minmax(0, 1.55fr);
    align-items: start;
    gap: 70px;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}


/* =========================================================
   CONTENIDO IZQUIERDO
========================================================= */
.ci-benefits-section__intro {
    position: sticky;
    top: 120px;
    display: block;
    padding: 48px 44px 45px;
    overflow: hidden;
    border: 1px solid rgba(var(--careon-base-rgb), 0.16);
    border-radius: calc(var(--careon-bdr-radius) + 8px);
    background:
        linear-gradient(
            145deg,
            rgba(var(--careon-white-rgb), 0.98) 0%,
            rgba(var(--careon-white-rgb), 0.8) 100%
        );
    box-shadow:
        0 30px 65px rgba(var(--careon-black-rgb), 0.1),
        0 8px 20px rgba(var(--careon-black-rgb), 0.045);
    backdrop-filter: blur(12px);
}


/* Barra decorativa lateral */
.ci-benefits-section__intro::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 0;
    width: 5px;
    height: 135px;
    border-radius: 0 var(--careon-bdr-radius) var(--careon-bdr-radius) 0;
    background: linear-gradient(
        180deg,
        var(--color2) 0%,
        rgba(var(--careon-base-rgb), 0.2) 100%
    );
}


/* Círculo decorativo interior */
.ci-benefits-section__intro::after {
    content: "";
    position: absolute;
    right: -95px;
    bottom: -105px;
    width: 220px;
    height: 220px;
    border: 38px solid rgba(var(--careon-base-rgb), 0.035);
    border-radius: 50%;
    pointer-events: none;
}


/* Texto principal */
.ci-benefits-section__description {
    position: relative;
    margin: 0;
    color: var(--careon-gray);
    font-family: var(--careon-font);
    font-size: 16px;
    line-height: 1.85;
    font-weight: 400;
    z-index: 1;
}


/* =========================================================
   DETALLE DECORATIVO DEL CONTENIDO
========================================================= */
.ci-benefits-section__intro-detail {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 35px;
    z-index: 1;
}

.ci-benefits-section__intro-circle {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(var(--careon-base-rgb), 0.18);
    border-radius: 50%;
    background-color: var(--careon-primary);
}

.ci-benefits-section__intro-circle::before,
.ci-benefits-section__intro-circle::after {
    content: "";
    position: absolute;
    border-radius: var(--careon-bdr-radius);
    background-color: var(--color2);
}

.ci-benefits-section__intro-circle::before {
    width: 22px;
    height: 4px;
}

.ci-benefits-section__intro-circle::after {
    width: 4px;
    height: 22px;
}

.ci-benefits-section__intro-circle span {
    position: relative;
    width: 10px;
    height: 10px;
    border: 2px solid var(--careon-white);
    border-radius: 50%;
    background-color: var(--color2);
    z-index: 1;
}

.ci-benefits-section__intro-line {
    position: relative;
    display: block;
    flex: 1;
    height: 1px;
    margin-left: 16px;
    background: linear-gradient(
        90deg,
        rgba(var(--careon-base-rgb), 0.3) 0%,
        rgba(var(--careon-base-rgb), 0) 100%
    );
}


/* =========================================================
   CONTENEDOR DE TARJETAS
========================================================= */
.ci-benefits-section__cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 28px;
}


/* Línea decorativa detrás de las tarjetas */
.ci-benefits-section__cards::before {
    content: "";
    position: absolute;
    top: 60px;
    bottom: 60px;
    left: 50%;
    width: 1px;
    background: linear-gradient(
        180deg,
        rgba(var(--careon-base-rgb), 0) 0%,
        rgba(var(--careon-base-rgb), 0.17) 20%,
        rgba(var(--careon-base-rgb), 0.17) 80%,
        rgba(var(--careon-base-rgb), 0) 100%
    );
    transform: translateX(-50%);
    pointer-events: none;
}


/* =========================================================
   TARJETAS DE BENEFICIOS
========================================================= */
.ci-benefits-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 355px;
    height: 100%;
    padding: 34px 32px 31px;
    overflow: hidden;
    border: 1px solid rgba(var(--careon-base-rgb), 0.13);
    border-radius: calc(var(--careon-bdr-radius) + 4px);
    background:
        linear-gradient(
            145deg,
            var(--careon-white) 0%,
            rgba(var(--careon-white-rgb), 0.92) 100%
        );
    box-shadow:
        0 20px 45px rgba(var(--careon-black-rgb), 0.075),
        0 5px 15px rgba(var(--careon-black-rgb), 0.035);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    isolation: isolate;
}


/* Franja superior */
.ci-benefits-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 32px;
    width: 72px;
    height: 5px;
    border-radius: 0 0 var(--careon-bdr-radius) var(--careon-bdr-radius);
    background: linear-gradient(
        90deg,
        var(--color2) 0%,
        rgba(var(--careon-base-rgb), 0.28) 100%
    );
    transition: width 0.4s ease;
}


/* Fondo decorativo circular */
.ci-benefits-card::after {
    content: "";
    position: absolute;
    top: -75px;
    right: -75px;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    background-color: rgba(var(--careon-primary-rgb), 0.65);
    transition:
        transform 0.5s ease,
        background-color 0.5s ease;
    z-index: -1;
}


/* Hover */
.ci-benefits-card:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--careon-base-rgb), 0.34);
    box-shadow:
        0 32px 65px rgba(var(--careon-black-rgb), 0.12),
        0 10px 25px rgba(var(--careon-black-rgb), 0.055);
}

.ci-benefits-card:hover::before {
    width: calc(100% - 64px);
}

.ci-benefits-card:hover::after {
    background-color: rgba(var(--careon-primary-rgb), 0.95);
    transform: scale(1.12);
}


/* =========================================================
   PARTE SUPERIOR DE LA TARJETA
========================================================= */
.ci-benefits-card__top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    z-index: 1;
}


/* Icono */
.ci-benefits-card__icon {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(var(--careon-base-rgb), 0.14);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            var(--careon-primary) 0%,
            var(--color3) 100%
        );
    box-shadow:
        0 10px 22px rgba(var(--careon-black-rgb), 0.06);
    transition:
        transform 0.4s ease,
        border-radius 0.4s ease,
        box-shadow 0.4s ease;
}

.ci-benefits-card__icon::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(var(--careon-base-rgb), 0.12);
    border-radius: 17px;
    transition: border-radius 0.4s ease;
}

.ci-benefits-card:hover .ci-benefits-card__icon {
    transform: translateY(-4px) rotate(-2deg);
    border-radius: 50%;
    box-shadow:
        0 15px 28px rgba(var(--careon-black-rgb), 0.09);
}

.ci-benefits-card:hover .ci-benefits-card__icon::before {
    border-radius: 50%;
}

.ci-benefits-card__icon img {
    position: relative;
    display: block;
    width: 50px;
    max-width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.4s ease;
    z-index: 1;
}

.ci-benefits-card:hover .ci-benefits-card__icon img {
    transform: scale(1.08);
}


/* Número de tarjeta */
.ci-benefits-card__number {
    position: relative;
    display: block;
    color: rgba(var(--careon-base-rgb), 0.34);
    font-family: var(--careon-font);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
    transition: color 0.4s ease;
    z-index: 1;
}

.ci-benefits-card:hover .ci-benefits-card__number {
    color: var(--color2);
}


/* =========================================================
   CONTENIDO DE LA TARJETA
========================================================= */
.ci-benefits-card__content {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    margin-top: 27px;
    z-index: 1;
}

.ci-benefits-card__title {
    position: relative;
    margin: 0 0 18px;
    color: var(--color1);
    font-family: var(--careon-font);
    font-size: clamp(1.35rem, 1.6vw, 1.65rem);
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0;
    transition: color 0.35s ease;
}

.ci-benefits-card:hover .ci-benefits-card__title {
    color: var(--color2);
}

.ci-benefits-card__description {
    margin: 0;
    color: var(--careon-gray);
    font-family: var(--careon-font);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}


/* Línea inferior */
.ci-benefits-card__bottom-line {
    position: relative;
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 27px;
    border-radius: var(--careon-bdr-radius);
    background-color: rgba(var(--careon-base-rgb), 0.22);
    transition:
        width 0.4s ease,
        background-color 0.4s ease;
    z-index: 1;
}

.ci-benefits-card:hover .ci-benefits-card__bottom-line {
    width: 82px;
    background-color: var(--color2);
}


/* =========================================================
   PANTALLAS ENTRE 1200PX Y 1399PX
========================================================= */
@media only screen and (max-width: 1399px) {

    .ci-benefits-section__layout {
        grid-template-columns:
            minmax(330px, 0.82fr)
            minmax(0, 1.48fr);
        gap: 50px;
        max-width: 1160px;
    }

    .ci-benefits-section__intro {
        padding: 42px 35px 40px;
    }

    .ci-benefits-card {
        min-height: 375px;
        padding: 31px 27px 29px;
    }

    .ci-benefits-card::before {
        left: 27px;
    }

    .ci-benefits-card:hover::before {
        width: calc(100% - 54px);
    }
}


/* =========================================================
   TABLET GRANDE
========================================================= */
@media only screen and (max-width: 1199px) {

    .ci-benefits-section {
        padding: 105px 0 115px;
    }

    .ci-benefits-section__layout {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 930px;
    }

    .ci-benefits-section__intro {
        position: relative;
        top: auto;
        max-width: 760px;
        margin: 0 auto;
    }

    .ci-benefits-section__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ci-benefits-card {
        min-height: 350px;
    }
}


/* =========================================================
   TABLET
========================================================= */
@media only screen and (max-width: 991px) {

    .ci-benefits-section {
        padding: 90px 0 100px;
    }

    .ci-benefits-section__layout {
        max-width: 720px;
    }

    .ci-benefits-section__cards {
        gap: 24px;
    }

    .ci-benefits-card {
        min-height: 390px;
    }
}


/* =========================================================
   MÓVILES
========================================================= */
@media only screen and (max-width: 767px) {

    .ci-benefits-section {
        padding: 75px 0 85px;
    }

    .ci-benefits-section__layout {
        gap: 30px;
    }

    .ci-benefits-section__intro {
        padding: 34px 25px 33px;
        border-radius: calc(var(--careon-bdr-radius) + 3px);
    }

    .ci-benefits-section__cards {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ci-benefits-section__cards::before {
        display: none;
    }

    .ci-benefits-card {
        min-height: auto;
        padding: 31px 25px 28px;
        border-radius: calc(var(--careon-bdr-radius) + 2px);
    }

    .ci-benefits-card::before {
        left: 25px;
    }

    .ci-benefits-card:hover::before {
        width: calc(100% - 50px);
    }

    .ci-benefits-card__content {
        margin-top: 24px;
    }
}


/* =========================================================
   MÓVILES PEQUEÑOS
========================================================= */
@media only screen and (max-width: 480px) {

    .ci-benefits-section {
        padding: 65px 0 75px;
    }

    .ci-benefits-section__intro {
        padding: 30px 19px;
    }

    .ci-cardio-heading__title {
        font-size: 2.3rem;
        line-height: 1.14;
    }

    .ci-cardio-heading__subtitle {
        padding-left: 14px;
        font-size: 1.2rem;
        line-height: 1.45;
    }

    .ci-benefits-card {
        padding: 29px 20px 27px;
    }

    .ci-benefits-card::before {
        left: 20px;
    }

    .ci-benefits-card:hover::before {
        width: calc(100% - 40px);
    }

    .ci-benefits-card__icon {
        flex-basis: 70px;
        width: 70px;
        height: 70px;
    }

    .ci-benefits-card__icon img {
        width: 46px;
        max-width: 46px;
        height: 46px;
    }

    .ci-benefits-card__title {
        font-size: 1.35rem;
    }
}
/*--------------------------------------------------------------
# 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);
}

/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.services-three__single {
    position: relative;
    display: block;
    background-color: var(--careon-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px 30px 31px;
}

.services-three__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background-color: var(--careon-extra);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.services-three__icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--careon-base);
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.services-three__single:hover .services-three__icon::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.services-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--careon-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-three__single:hover .services-three__icon span {
    color: var(--careon-white);
    transform: scale(0.9);
}

.services-three__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 37px;
    margin-bottom: 29px;
}

.services-three__title a {
    color: var(--careon-black);
}

.services-three__title a:hover {
    color: var(--careon-base);
}

.services-three__text {
    margin-bottom: 28px;
}

.services-three__read-more {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 500;
    color: var(--careon-black);
    gap: 10px;
}

.services-three__read-more span {
    font-weight: 600;
    font-size: 16px;
}

.services-three__read-more:hover {
    color: var(--careon-base);
}

.services-three__get-a-quote {
    position: relative;
    display: block;
    background-color: var(--careon-base);
    padding: 36px 40px 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
}

.services-three__get-a-quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.services-three__get-a-quote-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, rgba(0, 109, 119, 0) -95%, #006D77 65%);
}

.services-three__get-a-quote-sub-title {
    font-size: 18px;
    color: var(--careon-white);
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 21px;
}

.services-three__get-a-quote-title {
    font-size: 24px;
    color: var(--careon-white);
    font-weight: 700;
    line-height: 30px;
}

.services-three__thm-btn {
    position: relative;
    display: block;
    margin-top: 138px;
}

.services-three__thm-btn .thm-btn {
    padding: 22.5px 30px 22.5px;
}

.services-three__thm-btn .thm-btn::before,
.services-three__thm-btn .thm-btn::after {
    background-color: var(--careon-white);
}

.services-three__thm-btn .thm-btn:hover {
    color: var(--careon-black);
}


/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
.service-details {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 120px 0 115px;
    background:
        radial-gradient(
            circle at 7% 12%,
            rgba(var(--careon-primary-rgb), 0.75) 0%,
            rgba(var(--careon-primary-rgb), 0) 25%
        ),
        radial-gradient(
            circle at 94% 86%,
            rgba(var(--careon-base-rgb), 0.07) 0%,
            rgba(var(--careon-base-rgb), 0) 27%
        ),
        linear-gradient(
            180deg,
            var(--careon-white) 0%,
            var(--careon-extra) 100%
        );
    font-family: var(--careon-font);
    isolation: isolate;
    z-index: 1;
}

.service-details::before {
    content: "";
    position: absolute;
    top: -260px;
    left: -230px;
    width: 650px;
    height: 650px;
    border: 110px solid rgba(var(--careon-base-rgb), 0.03);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.service-details::after {
    content: "";
    position: absolute;
    right: -210px;
    bottom: -260px;
    width: 600px;
    height: 600px;
    border: 105px solid rgba(var(--careon-primary-rgb), 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}


/*==============================================================
   COLUMNA PRINCIPAL
==============================================================*/
.service-details__left {
    position: relative;
    display: block;
    min-width: 0;
}


/*==============================================================
   IMAGEN PRINCIPAL
==============================================================*/
.service-details__img {
    position: relative;
    display: block;
    overflow: hidden;
    border: 8px solid var(--careon-white);
    border-radius: calc(var(--careon-bdr-radius) + 9px);
    background-color: var(--careon-primary);
    box-shadow:
        0 30px 65px rgba(var(--careon-black-rgb), 0.14),
        0 9px 22px rgba(var(--careon-black-rgb), 0.06);
    isolation: isolate;
}

.service-details__img::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(var(--careon-black-rgb), 0) 52%,
            rgba(var(--careon-black-rgb), 0.3) 100%
        );
    pointer-events: none;
    z-index: 2;
}

.service-details__img::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -70%;
    width: 45%;
    height: 320%;
    opacity: 0;
    background-color: rgba(var(--careon-white-rgb), 0.25);
    transform: rotate(24deg);
    transition:
        left 0.9s ease,
        opacity 0.9s ease;
    pointer-events: none;
    z-index: 3;
}

.service-details__img:hover::after {
    left: 140%;
    opacity: 1;
}

.service-details__img img {
    position: relative;
    display: block;
    width: 100%;
    min-height: 420px;
    border-radius: calc(var(--careon-bdr-radius) + 1px);
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-details__img:hover img {
    transform: scale(1.025);
}


/*==============================================================
   CONTENIDO GENERAL
==============================================================*/
.service-details__content {
    position: relative;
    display: block;
    margin-top: 38px;
    padding: 42px 42px 45px;
    overflow: hidden;
    border: 1px solid rgba(var(--careon-base-rgb), 0.13);
    border-radius: calc(var(--careon-bdr-radius) + 7px);
    background:
        linear-gradient(
            145deg,
            var(--careon-white) 0%,
            rgba(var(--careon-extra-rgb), 0.9) 100%
        );
    box-shadow:
        0 20px 45px rgba(var(--careon-black-rgb), 0.07),
        0 5px 15px rgba(var(--careon-black-rgb), 0.03);
}

.service-details__content::before {
    content: "";
    position: absolute;
    top: 37px;
    left: 0;
    width: 5px;
    height: 125px;
    border-radius: 0 var(--careon-bdr-radius) var(--careon-bdr-radius) 0;
    background:
        linear-gradient(
            180deg,
            var(--color2) 0%,
            rgba(var(--careon-base-rgb), 0.2) 100%
        );
}

.service-details__content::after {
    content: "";
    position: absolute;
    right: -105px;
    bottom: -115px;
    width: 240px;
    height: 240px;
    border: 45px solid rgba(var(--careon-base-rgb), 0.025);
    border-radius: 50%;
    pointer-events: none;
}


/*==============================================================
   TÍTULO PRINCIPAL
==============================================================*/
.service-details__title-1 {
    position: relative;
    margin: 0;
    padding-bottom: 22px;
    color: var(--color1);
    font-family: var(--careon-font);
    font-size: clamp(2.3rem, 3.3vw, 3.25rem);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: 0;
    text-wrap: balance;
    z-index: 1;
}

.service-details__title-1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 88px;
    height: 5px;
    border-radius: var(--careon-bdr-radius);
    background:
        linear-gradient(
            90deg,
            var(--color2) 0%,
            rgba(var(--careon-base-rgb), 0.24) 100%
        );
}


/*==============================================================
   PÁRRAFOS
==============================================================*/
.service-details__text-1,
.service-details__text-3,
.service-details__text-4 {
    position: relative;
    color: var(--careon-gray);
    font-family: var(--careon-font);
    font-size: 16px;
    line-height: 1.85;
    font-weight: 400;
    z-index: 1;
}

.service-details__text-1 {
    margin: 27px 0 22px;
}

.service-details__text-3 {
    margin: 26px 0 35px;
}

.service-details__text-4 {
    margin: 24px 0 31px;
}


/*==============================================================
   SUBTÍTULOS
==============================================================*/
.service-details__title-2,
.service-details__title-3 {
    position: relative;
    margin: 0;
    padding-left: 18px;
    border-left: 4px solid var(--color2);
    color: var(--color1);
    font-family: var(--careon-font);
    font-size: clamp(1.5rem, 2vw, 1.85rem);
    line-height: 1.32;
    font-weight: 800;
    letter-spacing: 0;
    text-wrap: balance;
    z-index: 1;
}

.service-details__title-2 {
    margin-top: 38px;
    margin-bottom: 25px;
}

.service-details__title-3 {
    margin-top: 5px;
}


/*==============================================================
   PUNTOS DESTACADOS
==============================================================*/
.service-details__points-box {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
    margin-top: 25px;
    z-index: 1;
}

.service-details__points-list {
    position: relative;
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
}

.service-details__points-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-height: 61px;
    margin: 0;
    padding: 14px 15px;
    border: 1px solid rgba(var(--careon-base-rgb), 0.12);
    border-radius: calc(var(--careon-bdr-radius) - 5px);
    background-color: rgba(var(--careon-white-rgb), 0.88);
    color: var(--careon-gray);
    font-family: var(--careon-font);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    box-shadow:
        0 6px 16px rgba(var(--careon-black-rgb), 0.03);
    transition:
        border-color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.service-details__points-list li + li {
    margin-top: 0;
}

.service-details__points-list li:hover {
    border-color: rgba(var(--careon-base-rgb), 0.34);
    background-color: var(--careon-white);
    transform: translateX(5px);
    box-shadow:
        0 12px 25px rgba(var(--careon-black-rgb), 0.07);
}

.service-details__points-list li .icon {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    margin-top: 1px;
    border-radius: 10px;
    background:
        linear-gradient(
            145deg,
            var(--careon-primary) 0%,
            rgba(var(--careon-base-rgb), 0.13) 100%
        );
}

.service-details__points-list li .icon span {
    position: relative;
    display: inline-block;
    color: var(--color2);
    font-size: 13px;
    line-height: 1;
}


/*==============================================================
   IMÁGENES INTERIORES
==============================================================*/
.service-details__img-box {
    position: relative;
    display: block;
    margin-top: 35px;
    z-index: 1;
}

.service-details__img-box-img {
    position: relative;
    display: block;
    margin-bottom: 30px;
    overflow: hidden;
    border: 6px solid var(--careon-white);
    border-radius: calc(var(--careon-bdr-radius) + 5px);
    background-color: var(--careon-primary);
    box-shadow:
        0 20px 42px rgba(var(--careon-black-rgb), 0.1);
}

.service-details__img-box-img::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background:
        linear-gradient(
            180deg,
            rgba(var(--careon-black-rgb), 0) 0%,
            rgba(var(--careon-black-rgb), 0.25) 100%
        );
    pointer-events: none;
    z-index: 1;
}

.service-details__img-box-img img {
    display: block;
    width: 100%;
    min-height: 280px;
    border-radius: calc(var(--careon-bdr-radius) - 1px);
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-details__img-box-img:hover img {
    transform: scale(1.035);
}


/*==============================================================
   LISTADO DE TEXTO
==============================================================*/
.service-details__text-list {
    position: relative;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.service-details__text-list li {
    position: relative;
    display: block;
    margin: 0;
    padding: 16px 18px 16px 49px;
    border: 1px solid rgba(var(--careon-base-rgb), 0.1);
    border-radius: calc(var(--careon-bdr-radius) - 5px);
    background-color: rgba(var(--careon-white-rgb), 0.86);
    color: var(--careon-gray);
    font-family: var(--careon-font);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    transition:
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.service-details__text-list li::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 18px;
    width: 17px;
    height: 17px;
    border: 5px solid var(--careon-primary);
    border-radius: 50%;
    background-color: var(--color2);
}

.service-details__text-list li + li {
    margin-top: 0;
}

.service-details__text-list li:hover {
    border-color: rgba(var(--careon-base-rgb), 0.3);
    transform: translateX(4px);
    box-shadow:
        0 10px 23px rgba(var(--careon-black-rgb), 0.06);
}


/*==============================================================
   COLUMNA DERECHA
==============================================================*/
.service-details__right {
    position: sticky;
    top: 120px;
    display: block;
    min-width: 0;
}


/*==============================================================
   CAJA DE SERVICIOS
==============================================================*/
.service-details__services-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 35px;
    border: 1px solid rgba(var(--careon-base-rgb), 0.15);
    border-radius: calc(var(--careon-bdr-radius) + 5px);
    background:
        linear-gradient(
            145deg,
            var(--careon-white) 0%,
            rgba(var(--careon-extra-rgb), 0.96) 100%
        );
    box-shadow:
        0 20px 45px rgba(var(--careon-black-rgb), 0.075),
        0 5px 15px rgba(var(--careon-black-rgb), 0.03);
}

.service-details__services-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 35px;
    width: 72px;
    height: 5px;
    border-radius: 0 0 var(--careon-bdr-radius) var(--careon-bdr-radius);
    background:
        linear-gradient(
            90deg,
            var(--color2) 0%,
            rgba(var(--careon-base-rgb), 0.25) 100%
        );
}

.service-details__services-box::after {
    content: "";
    position: absolute;
    top: -85px;
    right: -85px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background-color: rgba(var(--careon-primary-rgb), 0.55);
    pointer-events: none;
}

.service-details__service-title {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 17px;
    color: var(--color1);
    font-family: var(--careon-font);
    font-size: clamp(1.6rem, 2.1vw, 2rem);
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0;
    z-index: 1;
}

.service-details__service-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    border-radius: var(--careon-bdr-radius);
    background-color: var(--color2);
}


/*==============================================================
   LISTA DE SERVICIOS
==============================================================*/
.service-details__service-list {
    position: relative;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.service-details__service-list li {
    position: relative;
    display: block;
    margin: 0;
}

.service-details__service-list li + li {
    margin-top: 0;
}

.service-details__service-list li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 12px 18px;
    overflow: hidden;
    border: 1px solid rgba(var(--careon-base-rgb), 0.12);
    border-radius: calc(var(--careon-bdr-radius) - 3px);
    background-color: var(--careon-white);
    color: var(--careon-gray);
    font-family: var(--careon-font);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    text-decoration: none;
    box-shadow:
        0 5px 14px rgba(var(--careon-black-rgb), 0.025);
    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
    isolation: isolate;
}

.service-details__service-list li a::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            var(--color2) 0%,
            var(--color1) 100%
        );
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.42s ease;
    z-index: -1;
}

.service-details__service-list li:hover a::before,
.service-details__service-list li.active a::before {
    transform: scaleX(1);
    transform-origin: left center;
}

.service-details__service-list li:hover a,
.service-details__service-list li.active a {
    border-color: var(--color2);
    background-color: var(--color2);
    color: var(--careon-white);
    transform: translateX(5px);
    box-shadow:
        0 13px 25px rgba(var(--careon-black-rgb), 0.11);
}

.service-details__service-list li a span {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    border-radius: 9px;
    background-color: var(--careon-primary);
    color: var(--color2);
    font-size: 11px;
    line-height: 1;
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease;
}

.service-details__service-list li:hover a span,
.service-details__service-list li.active a span {
    background-color: var(--careon-white);
    color: var(--color2);
    transform: rotate(5deg);
}


/*==============================================================
   CAJA DE AYUDA
==============================================================*/
.service-details__need-help-inner {
    position: relative;
    display: block;
    margin-top: 30px;
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(var(--careon-base-rgb), 0.16);
    border-radius: calc(var(--careon-bdr-radius) + 6px);
    background-color: var(--careon-white);
    box-shadow:
        0 20px 45px rgba(var(--careon-black-rgb), 0.08);
}

.service-details__need-help {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 65px 35px;
    border-radius: calc(var(--careon-bdr-radius) + 1px);
    text-align: center;
    isolation: isolate;
    z-index: 1;
}

.service-details__need-help::before {
    content: "";
    position: absolute;
    top: -105px;
    right: -95px;
    width: 230px;
    height: 230px;
    border: 45px solid rgba(var(--careon-white-rgb), 0.055);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.service-details__need-help-bg {
    position: absolute;
    inset: 0;
    border-radius: calc(var(--careon-bdr-radius) + 1px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -2;
}

.service-details__need-help-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: calc(var(--careon-bdr-radius) + 1px);
    background:
        linear-gradient(
            145deg,
            rgba(var(--careon-black-rgb), 0.9) 0%,
            rgba(var(--careon-base-rgb), 0.78) 100%
        );
    backdrop-filter: blur(3px);
}

.service-details__need-help-title {
    position: relative;
    margin: 0;
    color: var(--careon-white);
    font-family: var(--careon-font);
    font-size: clamp(1.45rem, 1.9vw, 1.75rem);
    line-height: 1.4;
    font-weight: 800;
    text-shadow:
        0 4px 14px rgba(var(--careon-black-rgb), 0.32);
    z-index: 2;
}

.service-details__need-help-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin: 27px auto 22px;
    border: 1px solid rgba(var(--careon-white-rgb), 0.45);
    border-radius: 50%;
    background-color: var(--careon-white);
    box-shadow:
        0 14px 28px rgba(var(--careon-black-rgb), 0.2);
    transition:
        background-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
    z-index: 2;
}

.service-details__need-help-icon::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(var(--careon-white-rgb), 0.18);
    border-radius: 50%;
}

.service-details__need-help-icon:hover {
    background-color: var(--careon-primary);
    transform: scale(1.07) rotate(5deg);
    box-shadow:
        0 18px 35px rgba(var(--careon-black-rgb), 0.27);
}

.service-details__need-help-icon span {
    position: relative;
    display: inline-block;
    color: var(--color2);
    font-size: 31px;
    line-height: 1;
    transition: color 0.35s ease;
    z-index: 1;
}

.service-details__need-help-icon:hover span {
    color: var(--color1);
}

.service-details__need-help-call {
    position: relative;
    display: block;
    z-index: 2;
}

.service-details__need-help-call a {
    position: relative;
    display: inline-block;
    color: var(--careon-white);
    font-family: var(--careon-font);
    font-size: clamp(1.25rem, 1.7vw, 1.55rem);
    line-height: 1.45;
    font-weight: 800;
    text-decoration: none;
    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

.service-details__need-help-call a:hover {
    color: var(--careon-primary);
    transform: translateY(-2px);
}


/*==============================================================
   CAJA DE DESCARGAS
==============================================================*/
.service-details__download-box {
    position: relative;
    display: block;
    margin-top: 30px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(var(--careon-base-rgb), 0.15);
    border-radius: calc(var(--careon-bdr-radius) + 5px);
    background:
        linear-gradient(
            145deg,
            var(--careon-white) 0%,
            rgba(var(--careon-extra-rgb), 0.96) 100%
        );
    box-shadow:
        0 20px 45px rgba(var(--careon-black-rgb), 0.07);
}

.service-details__download-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 32px;
    width: 70px;
    height: 5px;
    border-radius: 0 0 var(--careon-bdr-radius) var(--careon-bdr-radius);
    background-color: var(--color2);
}

.service-details__download-list {
    position: relative;
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
}

.service-details__download-list li {
    position: relative;
    display: block;
    margin: 0;
}

.service-details__download-list li + li {
    margin-top: 0;
}

.service-details__download-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 61px;
    padding: 12px 18px 12px 65px;
    overflow: hidden;
    border: 1px solid rgba(var(--careon-base-rgb), 0.12);
    border-radius: calc(var(--careon-bdr-radius) - 3px);
    background-color: var(--careon-white);
    color: var(--careon-gray);
    font-family: var(--careon-font);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    text-decoration: none;
    box-shadow:
        0 5px 15px rgba(var(--careon-black-rgb), 0.025);
    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
    isolation: isolate;
    z-index: 1;
}

.service-details__download-list li a::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            var(--color2) 0%,
            var(--color1) 100%
        );
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.45s ease;
    z-index: -1;
}

.service-details__download-list li a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background-color: var(--careon-primary);
    transform: translateY(-50%);
    transition:
        background-color 0.35s ease,
        transform 0.35s ease;
    z-index: -1;
}

.service-details__download-list li:hover a::before {
    transform: scaleY(1);
    transform-origin: top center;
}

.service-details__download-list li:hover a {
    border-color: var(--color2);
    color: var(--careon-white);
    transform: translateY(-3px);
    box-shadow:
        0 13px 26px rgba(var(--careon-black-rgb), 0.1);
}

.service-details__download-list li:hover a::after {
    background-color: var(--careon-white);
    transform: translateY(-50%) rotate(5deg);
}

.service-details__download-list li a span {
    position: relative;
    color: var(--careon-gray);
    font-family: var(--careon-font);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    transition: color 0.35s ease;
    z-index: 1;
}

.service-details__download-list li:hover a span {
    color: var(--careon-white);
}


/*==============================================================
   PANTALLAS ENTRE 1200PX Y 1399PX
==============================================================*/
@media only screen and (max-width: 1399px) {

    .service-details {
        padding: 110px 0 105px;
    }

    .service-details__content {
        padding: 38px 35px 40px;
    }

    .service-details__content::after {
        right: -120px;
    }

    .service-details__services-box {
        padding: 31px 27px;
    }

    .service-details__services-box::before {
        left: 27px;
    }

    .service-details__download-box {
        padding: 29px 26px;
    }

    .service-details__download-box::before {
        left: 26px;
    }

    .service-details__need-help {
        padding: 58px 27px;
    }
}


/*==============================================================
   TABLET GRANDE
==============================================================*/
@media only screen and (max-width: 1199px) {

    .service-details {
        padding: 100px 0 95px;
    }

    .service-details__right {
        position: relative;
        top: auto;
        margin-top: 50px;
    }

    .service-details__services-box,
    .service-details__need-help-inner,
    .service-details__download-box {
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
    }

    .service-details__need-help-inner,
    .service-details__download-box {
        margin-top: 30px;
    }
}


/*==============================================================
   TABLET
==============================================================*/
@media only screen and (max-width: 991px) {

    .service-details {
        padding: 90px 0 85px;
    }

    .service-details__img img {
        min-height: 380px;
    }

    .service-details__content {
        margin-top: 30px;
        padding: 35px 30px 38px;
    }

    .service-details__content::after {
        display: none;
    }

    .service-details__points-box {
        gap: 13px;
    }
}


/*==============================================================
   MÓVILES
==============================================================*/
@media only screen and (max-width: 767px) {

    .service-details {
        padding: 75px 0 75px;
    }

    .service-details__img {
        border-width: 5px;
        border-radius: calc(var(--careon-bdr-radius) + 4px);
    }

    .service-details__img img {
        min-height: 310px;
        border-radius: var(--careon-bdr-radius);
    }

    .service-details__content {
        padding: 31px 24px 34px;
        border-radius: calc(var(--careon-bdr-radius) + 3px);
    }

    .service-details__content::before {
        top: 30px;
        height: 105px;
    }

    .service-details__title-1 {
        font-size: clamp(2.15rem, 9vw, 2.7rem);
    }

    .service-details__points-box {
        grid-template-columns: 1fr;
    }

    .service-details__title-2,
    .service-details__title-3 {
        font-size: 1.45rem;
    }

    .service-details__img-box-img {
        border-width: 4px;
    }

    .service-details__img-box-img img {
        min-height: 240px;
    }

    .service-details__services-box {
        padding: 30px 24px;
        border-radius: calc(var(--careon-bdr-radius) + 3px);
    }

    .service-details__services-box::before {
        left: 24px;
    }

    .service-details__need-help {
        padding: 52px 24px;
    }

    .service-details__download-box {
        padding: 29px 24px;
        border-radius: calc(var(--careon-bdr-radius) + 3px);
    }

    .service-details__download-box::before {
        left: 24px;
    }
}


/*==============================================================
   MÓVILES PEQUEÑOS
==============================================================*/
@media only screen and (max-width: 480px) {

    .service-details {
        padding: 65px 0;
    }

    .service-details__img img {
        min-height: 260px;
    }

    .service-details__content {
        padding: 28px 18px 31px;
    }

    .service-details__title-1 {
        font-size: 2.1rem;
        line-height: 1.14;
    }

    .service-details__title-1::after {
        width: 70px;
        height: 4px;
    }

    .service-details__title-2,
    .service-details__title-3 {
        padding-left: 14px;
        font-size: 1.35rem;
    }

    .service-details__points-list li {
        padding: 13px;
    }

    .service-details__text-list li {
        padding: 14px 14px 14px 43px;
    }

    .service-details__text-list li::before {
        top: 19px;
        left: 15px;
    }

    .service-details__services-box {
        padding: 28px 18px;
    }

    .service-details__services-box::before {
        left: 18px;
    }

    .service-details__service-list li a {
        padding: 11px 14px;
    }

    .service-details__need-help {
        padding: 48px 18px;
    }

    .service-details__need-help-icon {
        width: 75px;
        height: 75px;
    }

    .service-details__download-box {
        padding: 27px 18px;
    }

    .service-details__download-box::before {
        left: 18px;
    }

    .service-details__download-list li a {
        padding-right: 13px;
        padding-left: 58px;
    }

    .service-details__download-list li a::after {
        left: 12px;
        width: 32px;
        height: 32px;
    }
}


/*==============================================================
   REDUCCIÓN DE MOVIMIENTO
==============================================================*/
@media (prefers-reduced-motion: reduce) {

    .service-details__img::after,
    .service-details__img img,
    .service-details__points-list li,
    .service-details__img-box-img img,
    .service-details__text-list li,
    .service-details__service-list li a,
    .service-details__service-list li a::before,
    .service-details__service-list li a span,
    .service-details__need-help-icon,
    .service-details__download-list li a,
    .service-details__download-list li a::before,
    .service-details__download-list li a::after {
        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
--------------------------------------------------------------*/