/* =========================================================
   VIP CAR ESTÉTICA AUTOMOTIVA
   Página: Serviços
   Arquivo: services.css

   Responsável por:
   - Hero da página de serviços
   - Breadcrumb
   - Navegação por categorias
   - Grupos de serviços
   - Cards
   - Bloco de orientação
   - Processo
   - Estados interativos
   - Responsividade específica
========================================================= */


/* =========================================================
   PÁGINA
========================================================= */

.services-page {
    overflow-x: hidden;
}


/* =========================================================
   HERO
========================================================= */

.services-hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 680px;

    padding:
        calc(var(--header-height, 88px) + 110px)
        0
        110px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 16% 16%,
            rgba(23, 71, 184, 0.22),
            transparent 32%
        ),
        radial-gradient(
            circle at 87% 35%,
            rgba(214, 168, 67, 0.10),
            transparent 31%
        ),
        linear-gradient(
            180deg,
            #050a13 0%,
            #03070d 100%
        );

    isolation: isolate;
}


/* =========================================================
   TEXTURA DO HERO
========================================================= */

.services-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -3;

    opacity: 0.22;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size:
        72px 72px;
}


/* =========================================================
   FADE INFERIOR
========================================================= */

.services-hero::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 180px;

    z-index: -1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(3, 7, 13, 0.94)
        );
}


/* =========================================================
   GLOWS
========================================================= */

.services-hero-glow {
    position: absolute;

    border-radius: 999px;

    pointer-events: none;

    filter: blur(90px);

    z-index: -2;
}


.services-hero-glow-blue {
    top: 130px;
    left: -170px;

    width: 420px;
    height: 420px;

    background:
        rgba(23, 71, 184, 0.28);
}


.services-hero-glow-gold {
    right: -170px;
    bottom: 30px;

    width: 360px;
    height: 360px;

    background:
        rgba(214, 168, 67, 0.12);
}


/* =========================================================
   CONTEÚDO DO HERO
========================================================= */

.services-hero-content {
    position: relative;

    width: min(900px, 100%);

    z-index: 2;
}


.services-hero h1 {
    max-width: 900px;

    margin-top: 18px;
    margin-bottom: 26px;

    font-family:
        var(
            --font-heading,
            "Montserrat",
            sans-serif
        );

    font-size:
        clamp(
            3rem,
            6vw,
            6.4rem
        );

    font-weight: 900;

    line-height: 0.98;

    letter-spacing: -0.055em;

    text-wrap: balance;
}


.services-hero-description {
    max-width: 720px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.70);

    font-size:
        clamp(
            1rem,
            1.4vw,
            1.2rem
        );

    line-height: 1.8;
}


.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 36px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 12px;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 0.82rem;

    font-weight: 600;

    letter-spacing: 0.04em;
}


.breadcrumb a {
    color:
        rgba(255, 255, 255, 0.68);

    transition:
        color 180ms ease;
}


.breadcrumb a:hover {
    color:
        var(
            --vip-gold,
            #d6a843
        );
}


.breadcrumb span[aria-current="page"] {
    color:
        var(
            --vip-gold-light,
            #f0c65a
        );
}


/* =========================================================
   CATEGORIAS
========================================================= */

.services-categories {
    position: sticky;
    top: var(--header-height, 88px);

    z-index: 50;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.04);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.07);

    background:
        rgba(3, 7, 13, 0.86);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}


.services-category-list {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 14px 0;

    overflow-x: auto;

    scrollbar-width: none;
}


.services-category-list::-webkit-scrollbar {
    display: none;
}


.service-category-chip {
    position: relative;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 10px 18px;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 999px;

    color:
        rgba(255, 255, 255, 0.66);

    background:
        rgba(255, 255, 255, 0.025);

    font-size: 0.82rem;

    font-weight: 700;

    white-space: nowrap;

    transition:
        transform 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}


.service-category-chip:hover,
.service-category-chip.active {
    color: #ffffff;

    border-color:
        rgba(214, 168, 67, 0.48);

    background:
        linear-gradient(
            135deg,
            rgba(214, 168, 67, 0.14),
            rgba(23, 71, 184, 0.12)
        );

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.20);
}


.service-category-chip:hover {
    transform:
        translateY(-2px);
}


/* =========================================================
   CATÁLOGO
========================================================= */

.services-catalog {
    position: relative;

    overflow: hidden;
}


.services-catalog::before {
    content: "";

    position: absolute;

    top: 200px;
    right: -320px;

    width: 620px;
    height: 620px;

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(23, 71, 184, 0.11),
            transparent 67%
        );
}


/* =========================================================
   GRUPO DE SERVIÇOS
========================================================= */

.services-group {
    position: relative;

    padding-top: 74px;

    scroll-margin-top:
        calc(
            var(--header-height, 88px)
            + 90px
        );
}


.services-group + .services-group {
    margin-top: 44px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);
}


.services-group-heading {
    display: flex;
    align-items: center;

    gap: 22px;

    margin-bottom: 34px;
}


.services-group-heading h3 {
    margin: 4px 0 0;

    font-family:
        var(
            --font-heading,
            "Montserrat",
            sans-serif
        );

    font-size:
        clamp(
            1.65rem,
            3vw,
            2.5rem
        );

    font-weight: 800;

    letter-spacing: -0.035em;
}


.services-group-number {
    display: grid;
    place-items: center;

    flex: 0 0 auto;

    width: 62px;
    height: 62px;

    border:
        1px solid
        rgba(214, 168, 67, 0.28);

    border-radius: 20px;

    color:
        var(
            --vip-gold-light,
            #f0c65a
        );

    background:
        linear-gradient(
            145deg,
            rgba(214, 168, 67, 0.10),
            rgba(23, 71, 184, 0.08)
        );

    font-family:
        var(
            --font-heading,
            "Montserrat",
            sans-serif
        );

    font-size: 0.9rem;

    font-weight: 900;

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.06);
}


/* =========================================================
   GRID
========================================================= */

.services-page-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}


.services-page-grid-single {
    grid-template-columns:
        minmax(0, 760px);
}


.services-page-grid-three {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}


/* =========================================================
   CARD DE SERVIÇO
========================================================= */

.service-page-card {
    position: relative;

    min-height: 100%;

    padding: 34px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.075);

    border-radius:
        26px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );

    box-shadow:
        0 22px 70px
        rgba(0, 0, 0, 0.19);

    isolation: isolate;

    transition:
        transform 280ms ease,
        border-color 280ms ease,
        box-shadow 280ms ease,
        background 280ms ease;
}


/* brilho interno */

.service-page-card::before {
    content: "";

    position: absolute;

    top: -140px;
    right: -130px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    z-index: -1;

    pointer-events: none;

    opacity: 0;

    background:
        radial-gradient(
            circle,
            rgba(23, 71, 184, 0.23),
            transparent 66%
        );

    transition:
        opacity 280ms ease,
        transform 500ms ease;
}


/* linha dourada */

.service-page-card::after {
    content: "";

    position: absolute;

    right: 34px;
    bottom: 0;
    left: 34px;

    height: 1px;

    opacity: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(
                --vip-gold,
                #d6a843
            ),
            transparent
        );

    transform:
        scaleX(0.4);

    transition:
        opacity 280ms ease,
        transform 280ms ease;
}


.service-page-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(214, 168, 67, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.022)
        );

    box-shadow:
        0 28px 85px
        rgba(0, 0, 0, 0.31);
}


.service-page-card:hover::before {
    opacity: 1;

    transform:
        scale(1.12);
}


.service-page-card:hover::after {
    opacity: 0.85;

    transform:
        scaleX(1);
}


/* =========================================================
   CARD DESTAQUE
========================================================= */

.service-page-card.featured {
    border-color:
        rgba(214, 168, 67, 0.19);

    background:
        linear-gradient(
            145deg,
            rgba(214, 168, 67, 0.075),
            rgba(23, 71, 184, 0.05) 52%,
            rgba(255, 255, 255, 0.025)
        );
}


.service-page-card.featured::before {
    opacity: 0.45;

    background:
        radial-gradient(
            circle,
            rgba(214, 168, 67, 0.18),
            transparent 67%
        );
}


/* =========================================================
   CATEGORIA DO CARD
========================================================= */

.service-page-category {
    display: inline-block;

    margin-bottom: 10px;

    color:
        var(
            --vip-gold,
            #d6a843
        );

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


/* =========================================================
   CARD — TEXTO
========================================================= */

.service-page-card h3 {
    margin:
        8px 0
        14px;

    font-family:
        var(
            --font-heading,
            "Montserrat",
            sans-serif
        );

    font-size:
        clamp(
            1.35rem,
            2vw,
            1.72rem
        );

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -0.025em;
}


.service-page-card > p {
    min-height: 78px;

    margin-bottom: 24px;

    color:
        rgba(255, 255, 255, 0.62);

    line-height: 1.72;
}


/* =========================================================
   LISTA RESUMIDA
========================================================= */

.service-mini-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px 14px;

    margin:
        0 0
        28px;

    padding: 0;

    list-style: none;
}


.service-mini-list li {
    position: relative;

    padding-left: 20px;

    color:
        rgba(255, 255, 255, 0.67);

    font-size: 0.83rem;

    line-height: 1.45;
}


.service-mini-list li::before {
    content: "✓";

    position: absolute;

    top: 0;
    left: 0;

    color:
        var(
            --vip-gold,
            #d6a843
        );

    font-weight: 900;
}


/* =========================================================
   PREÇO
========================================================= */

.service-page-card .service-price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 18px;

    margin-top: auto;
    margin-bottom: 22px;

    padding-top: 21px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);
}


.service-page-card .service-price span {
    color:
        rgba(255, 255, 255, 0.42);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.075em;

    text-transform: uppercase;
}


.service-page-card .service-price strong {
    color:
        #ffffff;

    font-family:
        var(
            --font-heading,
            "Montserrat",
            sans-serif
        );

    font-size:
        clamp(
            1rem,
            1.6vw,
            1.25rem
        );

    font-weight: 800;

    text-align: right;
}


/* =========================================================
   LINK DO CARD
========================================================= */

.service-page-card .service-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color:
        #ffffff;

    font-weight: 800;

    transition:
        color 180ms ease,
        gap 180ms ease;
}


.service-page-card .service-link span {
    color:
        var(
            --vip-gold,
            #d6a843
        );

    font-size: 1.15rem;

    transition:
        transform 180ms ease;
}


.service-page-card .service-link:hover {
    color:
        var(
            --vip-gold-light,
            #f0c65a
        );

    gap: 14px;
}


.service-page-card .service-link:hover span {
    transform:
        translateX(3px);
}


/* =========================================================
   ESTADO ATIVO USADO PELO JS
========================================================= */

.service-page-card.is-active,
.service-page-card.is-highlighted {
    border-color:
        rgba(214, 168, 67, 0.48);

    box-shadow:
        0 28px 85px
        rgba(214, 168, 67, 0.08);
}


/* =========================================================
   BLOCO "NÃO SABE QUAL ESCOLHER?"
========================================================= */

.services-help {
    position: relative;
}


.services-help-box {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        auto;

    align-items: center;

    gap: 50px;

    padding:
        clamp(34px, 6vw, 68px);

    overflow: hidden;

    border:
        1px solid
        rgba(214, 168, 67, 0.20);

    border-radius:
        34px;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(23, 71, 184, 0.21),
            transparent 37%
        ),
        radial-gradient(
            circle at 88% 40%,
            rgba(214, 168, 67, 0.10),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.018)
        );

    box-shadow:
        0 34px 100px
        rgba(0, 0, 0, 0.27);
}


.services-help-box::before {
    content: "";

    position: absolute;

    top: -170px;
    right: -90px;

    width: 380px;
    height: 380px;

    border:
        1px solid
        rgba(214, 168, 67, 0.10);

    border-radius: 50%;

    pointer-events: none;
}


.services-help-box::after {
    content: "";

    position: absolute;

    top: -80px;
    right: 10px;

    width: 180px;
    height: 180px;

    border:
        1px solid
        rgba(255, 255, 255, 0.05);

    border-radius: 50%;

    pointer-events: none;
}


.services-help-content {
    position: relative;

    z-index: 2;

    max-width: 800px;
}


.services-help-content h2 {
    margin:
        10px 0
        18px;

    max-width: 820px;

    font-family:
        var(
            --font-heading,
            "Montserrat",
            sans-serif
        );

    font-size:
        clamp(
            2rem,
            4vw,
            3.5rem
        );

    font-weight: 900;

    line-height: 1.06;

    letter-spacing: -0.045em;
}


.services-help-content p {
    max-width: 650px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.64);

    line-height: 1.75;
}


.services-help-action {
    position: relative;

    z-index: 2;

    display: flex;
    justify-content: flex-end;
}


/* =========================================================
   PROCESSO
========================================================= */

.services-process {
    position: relative;

    overflow: hidden;
}


.services-process::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -330px;

    width: 760px;
    height: 760px;

    border-radius: 50%;

    transform:
        translateX(-50%);

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(23, 71, 184, 0.12),
            transparent 68%
        );
}


.services-process-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    margin-top: 54px;
}


/* linha conectando os cards */

.services-process-grid::before {
    content: "";

    position: absolute;

    top: 44px;
    right: 8%;
    left: 8%;

    height: 1px;

    z-index: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(214, 168, 67, 0.26),
            rgba(23, 71, 184, 0.30),
            rgba(214, 168, 67, 0.26),
            transparent
        );
}


.services-process-card {
    position: relative;

    z-index: 1;

    min-height: 255px;

    padding: 28px;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.025);

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.13);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}


.services-process-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(214, 168, 67, 0.24);

    background:
        rgba(255, 255, 255, 0.045);
}


.services-process-number {
    display: grid;
    place-items: center;

    width: 54px;
    height: 54px;

    margin-bottom: 32px;

    border:
        1px solid
        rgba(214, 168, 67, 0.35);

    border-radius: 17px;

    color:
        var(
            --vip-gold-light,
            #f0c65a
        );

    background:
        #070d18;

    font-family:
        var(
            --font-heading,
            "Montserrat",
            sans-serif
        );

    font-size: 0.82rem;

    font-weight: 900;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.26);
}


.services-process-card h3 {
    margin:
        0 0
        12px;

    font-size: 1.15rem;

    font-weight: 800;
}


.services-process-card p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.58);

    line-height: 1.7;
}


/* =========================================================
   SCROLLBAR HORIZONTAL DAS CATEGORIAS
========================================================= */

.services-category-list {
    scroll-snap-type:
        x proximity;
}


.service-category-chip {
    scroll-snap-align:
        start;
}


/* =========================================================
   LINKS COM FOCO
========================================================= */

.service-category-chip:focus-visible,
.service-page-card .service-link:focus-visible,
.breadcrumb a:focus-visible {
    outline:
        2px solid
        var(
            --vip-gold,
            #d6a843
        );

    outline-offset: 4px;
}


/* =========================================================
   DESKTOP MÉDIO
========================================================= */

@media (max-width: 1180px) {

    .services-page-grid-three {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .services-process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .services-process-grid::before {
        display: none;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .services-hero {
        min-height: 620px;

        padding-top:
            calc(
                var(--header-height, 78px)
                + 90px
            );

        padding-bottom: 86px;
    }


    .services-categories {
        top:
            var(
                --header-height-mobile,
                74px
            );
    }


    .services-page-grid,
    .services-page-grid-three {
        grid-template-columns:
            1fr;
    }


    .services-page-grid-single {
        grid-template-columns:
            1fr;
    }


    .service-page-card > p {
        min-height: auto;
    }


    .services-help-box {
        grid-template-columns:
            1fr;

        gap: 30px;
    }


    .services-help-action {
        justify-content: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .services-hero {
        min-height: auto;

        padding:
            calc(
                var(--header-height-mobile, 72px)
                + 78px
            )
            0
            80px;
    }


    .services-hero::before {
        background-size:
            48px 48px;
    }


    .services-hero h1 {
        font-size:
            clamp(
                2.75rem,
                13vw,
                4.5rem
            );
    }


    .services-hero-description {
        font-size: 1rem;
    }


    .services-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .services-hero-actions .btn {
        width: 100%;

        justify-content: center;
    }


    .services-category-list {
        margin-inline:
            calc(
                var(--container-padding, 20px)
                * -1
            );

        padding-inline:
            var(
                --container-padding,
                20px
            );
    }


    .services-group {
        padding-top: 58px;
    }


    .services-group + .services-group {
        margin-top: 24px;
    }


    .services-group-heading {
        gap: 16px;

        margin-bottom: 26px;
    }


    .services-group-number {
        width: 52px;
        height: 52px;

        border-radius: 16px;
    }


    .service-page-card {
        padding: 28px 24px;

        border-radius: 22px;
    }


    .service-mini-list {
        grid-template-columns:
            1fr;
    }


    .services-process-grid {
        grid-template-columns:
            1fr;

        margin-top: 38px;
    }


    .services-process-card {
        min-height: auto;
    }

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 560px) {

    .services-hero {
        padding-bottom: 68px;
    }


    .breadcrumb {
        font-size: 0.76rem;
    }


    .services-category-list {
        gap: 8px;
    }


    .service-category-chip {
        min-height: 39px;

        padding:
            9px 14px;

        font-size: 0.76rem;
    }


    .services-group-heading {
        align-items: flex-start;
    }


    .services-group-heading h3 {
        font-size: 1.5rem;
    }


    .service-page-card {
        padding: 24px 20px;
    }


    .service-page-card .service-price {
        align-items: flex-start;
        flex-direction: column;

        gap: 7px;
    }


    .service-page-card .service-price strong {
        text-align: left;
    }


    .services-help-box {
        padding: 30px 22px;

        border-radius: 26px;
    }


    .services-help-content h2 {
        font-size:
            clamp(
                1.9rem,
                9vw,
                2.6rem
            );
    }


    .services-help-action,
    .services-help-action .btn {
        width: 100%;
    }


    .services-help-action .btn {
        justify-content: center;
    }


    .services-process-card {
        padding: 24px;

        border-radius: 20px;
    }

}


/* =========================================================
   TELAS MUITO PEQUENAS
========================================================= */

@media (max-width: 380px) {

    .services-hero h1 {
        font-size: 2.55rem;
    }


    .services-group-number {
        width: 46px;
        height: 46px;

        border-radius: 14px;
    }


    .service-page-card {
        padding:
            22px 18px;
    }

}


/* =========================================================
   DISPOSITIVOS SEM HOVER
========================================================= */

@media (hover: none) {

    .service-page-card:hover,
    .services-process-card:hover,
    .service-category-chip:hover {
        transform: none;
    }

}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .service-page-card,
    .services-process-card,
    .service-category-chip,
    .service-page-card::before,
    .service-page-card::after,
    .service-page-card .service-link,
    .service-page-card .service-link span {
        transition: none;
    }

}


/* =========================================================
   IMPRESSÃO
========================================================= */

@media print {

    .services-categories,
    .services-hero-actions,
    .services-help,
    .floating-whatsapp {
        display: none !important;
    }


    .services-hero {
        min-height: auto;

        padding: 30px 0;

        background: none;
    }


    .services-page-grid,
    .services-page-grid-three,
    .services-process-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .service-page-card,
    .services-process-card {
        break-inside: avoid;

        box-shadow: none;
    }

}

/* =========================================================
   VIP CAR — CORREÇÕES FINAIS DA PÁGINA DE SERVIÇOS
========================================================= */


/* =========================================================
   OFFSET DO HEADER
========================================================= */

.services-page main {
    overflow: hidden;
}


.services-hero {
    position: relative;

    padding-top:
        calc(
            var(--header-height, 86px) + 90px
        );

    padding-bottom: 80px;
}


/* =========================================================
   GRUPOS DO CATÁLOGO
========================================================= */

.services-group {
    position: relative;

    scroll-margin-top:
        calc(
            var(--header-height, 86px) + 40px
        );

    padding:
        40px
        0
        78px;
}


.services-group + .services-group {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);
}


.services-group-header {
    display: grid;

    grid-template-columns:
        64px
        minmax(0, 1fr);

    align-items: start;

    gap: 28px;

    margin-bottom: 42px;
}


.services-group-number {
    display: grid;

    place-items: center;

    width: 64px;
    height: 64px;

    border:
        1px solid
        rgba(214, 168, 67, 0.32);

    border-radius: 18px;

    background:
        rgba(214, 168, 67, 0.035);

    font-family:
        var(--font-heading, "Montserrat", sans-serif);

    font-size: 0.85rem;

    font-weight: 900;

    color:
        var(--vip-gold, #d6a843);
}


.services-group-header .eyebrow {
    margin-bottom: 18px;
}


.services-group-header h2 {
    margin: 0 0 12px;

    font-size:
        clamp(
            2.8rem,
            5vw,
            5rem
        );

    line-height: 0.98;

    letter-spacing: -0.05em;
}


.services-group-header p {
    max-width: 700px;

    margin: 0;

    line-height: 1.7;
}


/* =========================================================
   GRID DOS CARDS
========================================================= */

.services-page-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 22px;

    align-items: stretch;
}


/* =========================================================
   CARD
========================================================= */

.service-page-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;

    min-height: 430px;

    padding: 34px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(10, 25, 43, 0.9),
            rgba(5, 12, 22, 0.97)
        );

    box-shadow: none;
}


.service-page-card.featured {
    border-color:
        rgba(214, 168, 67, 0.35);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(214, 168, 67, 0.08),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(12, 27, 45, 0.95),
            rgba(6, 13, 23, 0.98)
        );
}


.service-page-card.featured::after {
    content: "";

    position: absolute;

    left: 34px;
    bottom: 0;

    width: 58px;
    height: 3px;

    border-radius:
        999px
        999px
        0
        0;

    background:
        var(--vip-gold, #d6a843);
}


/* =========================================================
   TOPO DOS CARDS

   Antes estava aparecendo:
   "01 Limpeza"

   Agora ficam separados e organizados.
========================================================= */

.service-page-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    width: 100%;

    margin-bottom: 24px;
}


.service-page-card-number {
    display: block;

    font-family:
        var(--font-heading, "Montserrat", sans-serif);

    font-size: 0.82rem;

    font-weight: 900;

    letter-spacing: 0.08em;

    color:
        rgba(255, 255, 255, 0.25);
}


.service-page-card-category {
    display: inline-flex;

    align-items: center;

    min-height: 30px;

    padding:
        6px
        11px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.025);

    font-size: 0.67rem;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color:
        var(--text-muted, #8e99a8);
}


/* =========================================================
   DESTAQUE

   Corrige o selo que estava pegando estilos de outros cards.
========================================================= */

.service-page-card > .badge {
    position: static !important;

    inset: auto !important;

    transform: none !important;

    display: inline-flex !important;

    align-items: center;

    justify-content: center;

    align-self: flex-start;

    width: auto !important;

    min-width: 0 !important;

    min-height: 30px;

    margin:
        -8px
        0
        18px;

    padding:
        6px
        13px;

    border:
        1px solid
        rgba(214, 168, 67, 0.35);

    border-radius: 999px;

    background:
        rgba(214, 168, 67, 0.08);

    font-size: 0.67rem;

    font-weight: 900;

    line-height: 1;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color:
        var(--vip-gold, #d6a843);

    box-shadow: none !important;
}


/* =========================================================
   TEXTO DOS CARDS
========================================================= */

.service-page-card h3 {
    margin:
        0
        0
        17px;

    font-size:
        clamp(
            1.45rem,
            2vw,
            1.85rem
        );

    line-height: 1.1;

    letter-spacing: -0.035em;
}


.service-page-card > p {
    max-width: 580px;

    margin:
        0
        0
        26px;

    line-height: 1.7;

    color:
        var(--text-muted, #929dab);
}


.service-page-card > ul {
    display: grid;

    gap: 8px;

    margin:
        0
        0
        30px;

    padding: 0;

    list-style: none;
}


.service-page-card > ul li {
    position: relative;

    padding-left: 20px;

    line-height: 1.5;

    color:
        rgba(255, 255, 255, 0.88);
}


.service-page-card > ul li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color:
        var(--vip-gold, #d6a843);

    font-weight: 900;
}


/* =========================================================
   RODAPÉ DO CARD
========================================================= */

.service-page-card-footer {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 24px;

    width: 100%;

    margin-top: auto;

    padding-top: 24px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
}


.service-card-price {
    display: flex;

    flex-direction: column;

    gap: 6px;
}


.service-card-price span {
    font-size: 0.67rem;

    font-weight: 800;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    color:
        var(--text-muted, #8994a4);
}


.service-card-price strong {
    font-family:
        var(--font-heading, "Montserrat", sans-serif);

    font-size: 1.55rem;

    font-weight: 900;

    line-height: 1;

    color: #ffffff;
}


.service-page-card-footer > a {
    flex-shrink: 0;

    font-weight: 800;

    color: #ffffff;

    transition:
        color 180ms ease,
        transform 180ms ease;
}


.service-page-card-footer > a:hover {
    color:
        var(--vip-gold, #d6a843);

    transform:
        translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .services-page-grid {
        grid-template-columns: 1fr;
    }


    .service-page-card {
        min-height: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .services-group-header {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .services-group-number {
        width: 54px;
        height: 54px;
    }


    .service-page-card {
        padding: 26px;
    }


    .service-page-card-footer {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }

}

/* =========================================================
   VIP CAR — CORREÇÕES FINAIS /SERVICOS/
========================================================= */


/* =========================================================
   DESTAQUE DO CARD
========================================================= */

.service-page-card.featured {
    position: relative !important;
}


/*
   Reserva espaço no topo para não deixar
   categoria/número brigarem com o destaque.
*/

.service-page-card.featured .service-page-card-top {
    padding-right: 112px;
}


/*
   Destaque vai definitivamente para
   o canto superior direito.
*/

.service-page-card > .badge {
    position: absolute !important;

    top: 30px !important;
    right: 30px !important;
    left: auto !important;
    bottom: auto !important;

    inset: auto 30px auto auto !important;

    transform: none !important;

    display: inline-flex !important;

    align-items: center;

    justify-content: center;

    width: auto !important;
    height: auto !important;

    min-width: 0 !important;
    min-height: 30px;

    margin: 0 !important;

    padding:
        7px
        13px;

    border:
        1px solid
        rgba(214, 168, 67, 0.38);

    border-radius: 999px;

    background:
        rgba(214, 168, 67, 0.08);

    box-shadow: none !important;

    font-size: 0.66rem;

    font-weight: 900;

    line-height: 1;

    letter-spacing: 0.09em;

    text-transform: uppercase;

    color:
        var(--vip-gold, #d6a843);
}


/* =========================================================
   TOPO DO CARD
========================================================= */

.service-page-card-top {
    display: flex !important;

    align-items: center !important;

    justify-content: flex-start !important;

    gap: 12px !important;

    min-height: 32px;

    margin-bottom: 24px !important;
}


.service-page-card-number {
    display: inline-flex;

    flex: none;

    font-size: 0.78rem;

    font-weight: 900;

    letter-spacing: 0.08em;

    color:
        rgba(255, 255, 255, 0.26);
}


.service-page-card-category {
    display: inline-flex !important;

    align-items: center;

    width: fit-content !important;

    padding:
        6px
        10px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.025);

    font-size: 0.64rem;

    font-weight: 800;

    letter-spacing: 0.07em;

    text-transform: uppercase;

    color:
        var(--text-muted, #8d98a8);
}


/* =========================================================
   REMOVE O TRAÇO BUGADO DOS 4 PASSOS

   Esse é o risco horizontal que apareceu atravessando
   os cards "Entre em contato / Avaliação / ...".
========================================================= */

.services-process::before,
.services-process::after,
.services-process-grid::before,
.services-process-grid::after {
    content: none !important;

    display: none !important;
}


/* =========================================================
   CARDS DO PROCESSO
========================================================= */

.services-process-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 18px;
}


.services-process-card {
    position: relative;

    min-width: 0;

    min-height: 255px;

    padding:
        32px
        28px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(9, 22, 37, 0.94),
            rgba(5, 11, 20, 0.97)
        );
}


/*
   Caso alguma regra antiga use pseudo-elementos
   diretamente no card, removemos também.
*/

.services-process-card::before,
.services-process-card::after {
    content: none !important;

    display: none !important;
}


.services-process-card > span {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 24px;

    border:
        1px solid
        rgba(214, 168, 67, 0.24);

    border-radius: 12px;

    background:
        rgba(214, 168, 67, 0.04);

    font-family:
        var(--font-heading, "Montserrat", sans-serif);

    font-size: 0.76rem;

    font-weight: 900;

    color:
        var(--vip-gold, #d6a843);
}


.services-process-card h3 {
    margin:
        0
        0
        14px;

    font-size: 1.12rem;

    line-height: 1.2;
}


.services-process-card p {
    margin: 0;

    font-size: 0.92rem;

    line-height: 1.7;

    color:
        var(--text-muted, #909baa);
}


/* =========================================================
   CTA FINAL DA PÁGINA
========================================================= */

.services-page .service-detail-cta {
    position: relative;

    padding-top: 40px;

    padding-bottom: 90px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);
}


.services-page .service-detail-cta-box {
    position: relative;

    overflow: hidden;

    border:
        1px solid
        rgba(214, 168, 67, 0.18);

    background:
        radial-gradient(
            circle at 86% 25%,
            rgba(214, 168, 67, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 15% 75%,
            rgba(23, 71, 184, 0.08),
            transparent 35%
        ),
        #050b13;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1000px) {

    .services-process-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


@media (max-width: 600px) {

    .service-page-card.featured .service-page-card-top {
        padding-right: 0;
    }


    .service-page-card > .badge {
        position: static !important;

        inset: auto !important;

        align-self: flex-start;

        margin:
            -8px
            0
            18px !important;
    }


    .services-process-grid {
        grid-template-columns: 1fr;
    }


    .services-process-card {
        min-height: 0;
    }

}