/* =========================================
   PÁGINA DE SERVIÇOS - DIGITALCARTÓRIOS
   ========================================= */

.dc-services-page {
    padding: 120px 0 100px;
    background:
        radial-gradient(circle at top left, rgba(46, 88, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.dc-services-hero {
    background: linear-gradient(135deg, #02133a 0%, #08296b 55%, #2e58ff 100%);
    border-radius: 30px;
    padding: 55px 48px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 60px rgba(2, 19, 58, 0.18);
}

.dc-services-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.dc-services-hero__content {
    position: relative;
    z-index: 2;
}

.dc-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00092c 0%, #000929 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(46, 88, 255, 0.28);
}

.dc-section-badge.center {
    background: rgba(46, 88, 255, 0.08);
    color: #08306e;
}

/* reflexo animado - feixe de luz fino */
.dc-section-badge::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -35%;
    width: 18%;
    height: 220%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.08) 20%,
            rgba(255, 255, 255, 0.699) 50%,
            rgba(255, 255, 255, 0.08) 80%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(3px);
    transform: rotate(28deg);
    animation: badgeReflexo 2.5s linear infinite;
    pointer-events: none;
}

/* garante texto acima do brilho */
.dc-section-badge>* {
    position: relative;
    z-index: 2;
}

/* movimento suave atravessando */
@keyframes badgeReflexo {
    0% {
        left: -35%;
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

.dc-services-hero__title {
    color: #ffffff;
    font-size: 45px;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 18px;
}

.dc-services-hero__text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 720px;
}

.dc-services-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.dc-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    background: #ffffff;
    color: #04173f;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.dc-btn-primary:hover {
    transform: translateY(-2px);
    background: #eef4ff;
    color: #0b3c9d;
}

.dc-btn-primary.large {
    min-height: 58px;
    padding: 0 30px;
}

.dc-contact-mini span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.7;
}

.dc-services-hero__card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    padding: 32px 28px;
    backdrop-filter: blur(8px);
}

.dc-services-hero__card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.dc-services-hero__card h3 {
    color: #ffffff;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 700;
}

.dc-services-hero__card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.85;
    margin: 0;
}

.dc-services-block {
    margin-bottom: 42px;
}

.dc-section-heading {
    margin-bottom: 30px;
}

.dc-section-heading h2 {
    color: #04173f;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
    margin: 12px auto 0;
    max-width: 920px;
}

.dc-service-module-card {
    height: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 26px;
    border: 1px solid rgba(46, 88, 255, 0.08);
    box-shadow: 0 16px 40px rgba(4, 23, 63, 0.05);
    transition: all 0.3s ease;
}

.dc-service-module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(4, 23, 63, 0.10);
}

.dc-service-module-card__icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e9f1ff 0%, #f4f8ff 100%);
    color: #2e58ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.dc-service-module-card h3 {
    color: #071c4d;
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 10px;
    font-weight: 700;
}

.dc-service-module-card p {
    color: #5c6884;
    font-size: 16px;
    line-height: 1.85;
    margin: 0;
}

.dc-benefit-card {
    height: 100%;
    background: #ffffff;
    border-radius: 26px;
    padding: 32px 28px;
    border: 1px solid rgba(46, 88, 255, 0.08);
    box-shadow: 0 18px 45px rgba(4, 23, 63, 0.05);
}

.dc-benefit-card.highlight {
    background: linear-gradient(180deg, #04173f 0%, #0b2d78 100%);
    border-color: transparent;
}

.dc-benefit-card__top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.dc-benefit-card__icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: #edf3ff;
    color: #2e58ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.dc-benefit-card.highlight .dc-benefit-card__icon {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.dc-benefit-card h3 {
    color: #071c4d;
    font-size: 28px;
    margin: 0;
    font-weight: 700;
}

.dc-benefit-card.highlight h3 {
    color: #ffffff;
}

.dc-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dc-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #596580;
    line-height: 1.8;
    font-size: 15.5px;
}

.dc-check-list li i {
    color: #2e58ff;
    margin-top: 6px;
    min-width: 16px;
}

.dc-benefit-card.highlight .dc-check-list li {
    color: rgba(255, 255, 255, 0.92);
}

.dc-benefit-card.highlight .dc-check-list li i {
    color: #8ec3ff;
}

.dc-differentials-block {
    background: #04173f;
    border-radius: 30px;
    padding: 48px 34px 18px;
}

.dc-differentials-block .dc-section-heading h2,
.dc-differentials-block .dc-section-badge.center {
    color: #ffffff;
}

.dc-differentials-block .dc-section-badge.center {
    background: rgba(255, 255, 255, 0.12);
}

.dc-differential-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #00021f 0%, #001d6d 100%);
    border: 1px solid rgba(46, 88, 255, 0.08);
    border-radius: 24px;
    padding: 34px 28px;
    height: 100%;
    box-shadow: 0 14px 35px rgba(6, 24, 68, 0.06);
    transition: all 0.35s ease;
    isolation: isolate;
    /* importante */
}

/* hover */
.dc-differential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(6, 24, 68, 0.12);
    border-color: rgba(46, 88, 255, 0.16);
}

/* FEIXE DE LUZ */
.dc-differential-card::before {
    content: "";
    position: absolute;
    top: -60%;
    left: 0;
    width: 70px;
    height: 220%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.10) 20%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(255, 255, 255, 0.10) 80%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(3px);
    opacity: 0;
    transform: translateX(-220%) rotate(24deg);
    transition: transform 0.9s ease, opacity 0.25s ease;
}

/* brilho suave de fundo */
.dc-differential-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at top right,
            rgba(46, 88, 255, 0.07),
            transparent 42%);
}

/* ativa no hover */
.dc-differential-card:hover::before {
    animation: lightHoverSweep 1s ease-out;
}

/* =========================================
   CONTEÚDO
========================================= */

.dc-differential-card__icon,
.dc-differential-card h3,
.dc-differential-card p {
    position: relative;
    z-index: 2;
}

.dc-differential-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #2e58ff 0%, #446cff 100%);
    box-shadow: 0 12px 25px rgba(46, 88, 255, 0.20);
    margin-bottom: 22px;
}

.dc-differential-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
    line-height: 1.3;
}

.dc-differential-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #ffffff8f;
    margin: 0;
}

/* animação */
@keyframes lightHoverSweep {
    0% {
        left: -60%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        opacity: 0.95;
    }

    100% {
        left: 140%;
        opacity: 0;
    }
}

.dc-services-cta {
    margin-top: 42px;
    background: linear-gradient(135deg, #eff5ff 0%, #f7faff 100%);
    border-radius: 28px;
    padding: 34px 34px;
    border: 1px solid rgba(46, 88, 255, 0.08);
}

.dc-services-cta h2 {
    color: #04173f;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 10px;
    font-weight: 700;
}

.dc-services-cta p {
    color: #5c6884;
    line-height: 1.85;
    margin: 0;
    font-size: 16px;
    max-width: 760px;
}

.dc-services-cta__btn {
    display: flex;
    justify-content: flex-end;
}

/* ícones títulos */
/* ÍCONE SUBTÍTULO PLATAFORMA */
.platform-sub-icon {
    width: 34px;
    height: 34px;
    margin-right: 12px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #000294, #1033ff);
    box-shadow: 0 10px 24px rgba(37, 73, 235, 0.28);
    vertical-align: middle;
    position: relative;
    top: -2px;
    transition: all .35s ease;
}

/* brilho suave */
.platform-sub-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, .22),
            transparent 55%);
}

.sub-title:hover .platform-sub-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 32px rgba(37, 73, 235, 0.28);
}

/* ícones títulos */

/* header */
/* HERO SERVIÇOS SLIDER */
.service-hero-slider {
    position: relative;
    width: 100%;
    height: 470px;
    overflow: hidden;
    background: #050816;
}

.service-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: opacity 1s ease, visibility 1s ease, transform 5s ease;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 7, 18, .55), rgba(3, 7, 18, .70)),
        radial-gradient(circle at center, rgba(106, 37, 235, .22), transparent 42%);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: serviceHeroFade .8s ease both;
}

/* BADGE */
.service-hero-badge {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 11px 18px;
    margin: 0 0 22px;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);

    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

/* REFLEXO */
.service-hero-badge::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -70%;
    width: 45%;
    height: 180%;
    transform: rotate(22deg);
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, .06) 35%,
            rgba(255, 255, 255, .38) 50%,
            rgba(255, 255, 255, .06) 65%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(1px);
    animation: badgeReflection 4.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.service-hero-badge::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, .12),
            rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 0;
}

.service-hero-badge>* {
    position: relative;
    z-index: 2;
}

/* TÍTULO */
.service-hero-content h1 {
    max-width: 1000px;
    margin: 0 0 22px;
    font-size: clamp(1.2rem, 3vw, 3.2rem);
    line-height: 1.05;
    color: #ffffff;
    font-weight: 900;
    text-align: center;
    text-shadow: 0 8px 22px rgba(0, 0, 0, .35);
}

/* PARÁGRAFO */
.service-hero-content p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .88);
    font-size: 0.98rem;
    line-height: 1.65;
    text-align: center;
}

/* BREADCRUMB */
.service-hero-breadcrumb {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    font-weight: 700;
}

.service-hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.service-hero-breadcrumb a:hover {
    color: #a322ee;
}

/* SETAS */
.service-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .12);
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transform: translateY(-50%);
    transition: all .3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.service-hero-arrow:hover {
    background: #ffffff;
    color: #07142e;
}

.service-hero-arrow.prev {
    left: 35px;
}

.service-hero-arrow.next {
    right: 35px;
}

/* DOTS */
.service-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 35px;
    z-index: 6;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.service-hero-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: all .35s ease;
}

.service-hero-dots button.active {
    width: 36px;
    background: linear-gradient(135deg, #000399, #1600da);
}

/* ANIMAÇÕES */
@keyframes badgeReflection {
    0% {
        left: -70%;
        opacity: 0;
    }

    8% {
        opacity: .9;
    }

    28% {
        left: 130%;
        opacity: .35;
    }

    100% {
        left: 130%;
        opacity: 0;
    }
}

@keyframes serviceHeroFade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVO */
@media (max-width: 767px) {
    .service-hero-slider {
        height: 430px;
    }

    .service-hero-arrow {
        display: none;
    }

    .service-hero-content h1 {
        font-size: 2.5rem;
    }

    .service-hero-content p {
        font-size: .98rem;
    }
}

/* header */