/* =========================================================
   NETSERVICE ANGOLA
   PÁGINA: SERVIÇOS
========================================================= */


/* =========================================================
   01. HERO INTERNO
========================================================= */

.services-hero {
    padding: 72px 0 66px;

    background: var(--ns-blue);
    color: #ffffff;
}


.services-hero-grid {
    display: grid;

    grid-template-columns:
        1.1fr .7fr;

    gap: 90px;

    align-items: end;
}


.services-hero .section-label {
    margin-bottom: 16px;
}


.services-hero h1 {
    max-width: 720px;

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            42px,
            4.2vw,
            62px
        );

    font-weight: 800;
    line-height: 1;
    letter-spacing: -.045em;
}


.services-hero-text {
    max-width: 430px;

    padding-bottom: 6px;
}


.services-hero-text p {
    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            .76
        );

    font-size: 15px;
    line-height: 1.7;
}


.services-hero-text a {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-top: 18px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
}


.services-hero-text strong {
    color: var(--ns-green);
}



/* =========================================================
   02. CATÁLOGO
========================================================= */

.services-catalogue {
    padding: 60px 0 64px;

    background: #f5f7f8;
}


.services-catalogue-heading {
    display: grid;

    grid-template-columns:
        1.15fr .75fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 34px;
}


.services-catalogue-heading h2 {
    max-width: 650px;

    margin: 0;

    color: var(--ns-blue);

    font-size:
        clamp(
            36px,
            3.4vw,
            50px
        );

    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}


.services-catalogue-heading > p {
    max-width: 420px;

    margin: 0;

    color: #65727d;

    font-size: 14px;
    line-height: 1.65;
}



/* =========================================================
   03. GRELHA DOS 9 SERVIÇOS
========================================================= */

.services-catalogue .services-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 18px;

    align-items: stretch;
}



/* =========================================================
   04. CARTÕES DOS SERVIÇOS
========================================================= */

.services-catalogue .service-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 390px;

    overflow: hidden;

    border:
        1px solid
        #dce3e7;

    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 2px 8px
        rgba(
            8,
            34,
            56,
            .035
        );

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}


.services-catalogue .service-card:hover {
    transform: translateY(-3px);

    border-color: #cbd6dc;

    box-shadow:
        0 14px 30px
        rgba(
            8,
            34,
            56,
            .08
        );
}



/* =========================================================
   05. IMAGEM DO CARTÃO
========================================================= */

.services-catalogue .service-image {
    position: relative;

    display: block;

    width: 100%;
    height: 165px;

    flex-shrink: 0;

    overflow: hidden;

    background: #dfe5e8;
}


.services-catalogue .service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .35s ease;
}


.services-catalogue
.service-card:hover
.service-image img {
    transform: scale(1.035);
}



/* =========================================================
   06. NÚMERO DO SERVIÇO
========================================================= */

.services-catalogue .service-number {
    position: absolute;

    left: 15px;
    bottom: 14px;

    z-index: 2;

    min-width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 8px;

    border-radius: 6px;

    background: #ffffff;

    color: var(--ns-green);

    box-shadow:
        0 3px 12px
        rgba(
            8,
            34,
            56,
            .16
        );

    font-size: 10px;
    font-weight: 800;
}



/* =========================================================
   07. CONTEÚDO DO CARTÃO
========================================================= */

.services-catalogue .service-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    min-width: 0;

    padding: 20px 20px 18px;
}


.services-catalogue
.service-content h3 {
    min-height: 42px;

    margin: 0;

    color: var(--ns-blue);

    font-size: 17px;
    font-weight: 800;

    line-height: 1.22;

    letter-spacing: -.02em;
}


.services-catalogue
.service-content p {
    flex: 1;

    min-height: 70px;

    margin: 11px 0 0;

    color: #697680;

    font-size: 13px;
    line-height: 1.55;
}



/* =========================================================
   08. LINK DO CARTÃO
========================================================= */

.services-catalogue .service-link {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: auto;

    padding-top: 20px;

    color: var(--ns-blue);

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
}


.services-catalogue
.service-link span {
    color: var(--ns-green);

    font-size: 15px;

    transition:
        transform .2s ease;
}


.services-catalogue
.service-link:hover span {
    transform: translateX(4px);
}



/* =========================================================
   09. SERVIÇO 10
   ACONDICIONANTES
========================================================= */

.services-catalogue .service-feature {
    display: grid;

    grid-template-columns:
        minmax(360px, .88fr)
        minmax(0, 1.12fr);

    width: 100%;
    min-height: 310px;

    margin-top: 22px;

    overflow: hidden;

    border: 0;

    border-radius: 12px;

    background: var(--ns-blue);

    box-shadow:
        0 12px 32px
        rgba(
            8,
            34,
            56,
            .12
        );
}


/*
   IMPORTANTE:
   se o serviço 10 tiver sido colocado dentro
   da services-grid, força-o a ocupar a linha inteira.
*/

.services-catalogue
.services-grid > .service-feature {
    grid-column: 1 / -1;
}



/* =========================================================
   10. IMAGEM DO SERVIÇO 10
========================================================= */

.services-catalogue
.service-feature-image {
    position: relative;

    display: block;

    min-height: 310px;

    overflow: hidden;

    background: #dfe5e8;
}


.services-catalogue
.service-feature-image::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(8, 34, 56, .02),
            rgba(8, 34, 56, .18)
        );
}


.services-catalogue
.service-feature-image img {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}


.services-catalogue
.service-feature:hover
.service-feature-image img {
    transform: scale(1.025);
}



/* =========================================================
   11. NÚMERO SERVIÇO 10
========================================================= */

.services-catalogue
.service-feature-number {
    position: absolute;

    z-index: 3;

    left: 22px;
    bottom: 22px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: var(--ns-green);

    color: #10200c;

    font-size: 11px;
    font-weight: 800;

    box-shadow:
        0 5px 16px
        rgba(
            0,
            0,
            0,
            .16
        );
}



/* =========================================================
   12. CONTEÚDO SERVIÇO 10
========================================================= */

.services-catalogue
.service-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;

    padding: 40px 46px;
}


.services-catalogue
.service-feature-label {
    margin: 0 0 12px;

    color: var(--ns-green);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .15em;
}


.services-catalogue
.service-feature-content h3 {
    max-width: 580px;

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            30px,
            3vw,
            42px
        );

    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -.04em;
}


.services-catalogue
.service-feature-description,
.services-catalogue
.service-feature-content
> p:not(.service-feature-label) {
    max-width: 570px;

    margin: 17px 0 0;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    font-size: 14px;
    line-height: 1.6;
}



/* =========================================================
   13. ETIQUETAS SERVIÇO 10
========================================================= */

.services-catalogue
.service-feature-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 20px;
}


.services-catalogue
.service-feature-meta span {
    padding: 7px 11px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .18
        );

    border-radius: 6px;

    background:
        rgba(
            255,
            255,
            255,
            .05
        );

    color:
        rgba(
            255,
            255,
            255,
            .86
        );

    font-size: 11px;
    font-weight: 700;
}



/* =========================================================
   14. LINK SERVIÇO 10
========================================================= */

.services-catalogue
.service-feature-link {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 23px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
}


.services-catalogue
.service-feature-link span {
    color: var(--ns-green);

    font-size: 16px;

    transition:
        transform .2s ease;
}


.services-catalogue
.service-feature-link:hover span {
    transform: translateX(4px);
}



/* =========================================================
   15. COMO TRABALHAMOS
========================================================= */

.services-process {
    padding: 58px 0;

    background: #ffffff;
}


.services-process-grid {
    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 90px;

    align-items: start;
}


.services-process-intro h2 {
    max-width: 470px;

    margin: 0;

    color: var(--ns-blue);

    font-size:
        clamp(
            36px,
            3.2vw,
            48px
        );

    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.04em;
}


.services-process-list {
    border-top:
        1px solid #dfe5e8;
}


.services-process-item {
    display: grid;

    grid-template-columns:
        50px 1fr;

    gap: 18px;

    padding: 18px 0;

    border-bottom:
        1px solid #dfe5e8;
}


.services-process-item > span {
    color: var(--ns-green);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .08em;
}


.services-process-item h3 {
    margin: 0;

    color: var(--ns-blue);

    font-size: 16px;
    font-weight: 700;
}


.services-process-item p {
    margin: 5px 0 0;

    color: #697680;

    font-size: 13px;
    line-height: 1.55;
}



/* =========================================================
   16. CTA FINAL
========================================================= */

.services-contact {
    padding: 48px 0;

    background:
        var(
            --ns-green-dark,
            #1f5b3a
        );

    color: #ffffff;
}


.services-contact-grid {
    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    gap: 70px;

    align-items: center;
}


.services-contact-label {
    margin: 0 0 10px;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .15em;
}


.services-contact h2 {
    max-width: 620px;

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            34px,
            3.2vw,
            46px
        );

    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.04em;
}


.services-contact-grid
> div
> p:last-child {
    max-width: 610px;

    margin: 15px 0 0;

    color:
        rgba(
            255,
            255,
            255,
            .78
        );

    font-size: 14px;
    line-height: 1.6;
}



/* =========================================================
   17. BOTÕES CTA
========================================================= */

.services-contact-actions {
    display: flex;

    justify-content: flex-end;
    align-items: center;

    flex-wrap: wrap;

    gap: 10px;
}


.services-contact-primary,
.services-contact-phone {
    min-height: 44px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


.services-contact-primary {
    background: #ffffff;

    color: var(--ns-blue);
}


.services-contact-phone {
    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .45
        );

    color: #ffffff;
}


.services-contact-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(
            0,
            0,
            0,
            .10
        );
}


.services-contact-phone:hover {
    transform: translateY(-2px);

    background:
        rgba(
            255,
            255,
            255,
            .08
        );
}



/* =========================================================
   18. TABLET
========================================================= */

@media (max-width: 900px) {

    .services-hero-grid,
    .services-catalogue-heading,
    .services-process-grid,
    .services-contact-grid {
        grid-template-columns: 1fr;
    }


    .services-hero-grid {
        gap: 30px;
    }


    .services-catalogue-heading {
        gap: 18px;
    }


    .services-catalogue
    .services-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .services-catalogue
    .service-feature {
        grid-template-columns: 1fr;
    }


    .services-catalogue
    .service-feature-image {
        min-height: 280px;
    }


    .services-catalogue
    .service-feature-content {
        padding: 34px 34px 38px;
    }


    .services-process-grid {
        gap: 34px;
    }


    .services-contact-grid {
        gap: 28px;
    }


    .services-contact-actions {
        justify-content: flex-start;
    }

}



/* =========================================================
   19. MOBILE
========================================================= */

@media (max-width: 700px) {

    /* HERO */

    .services-hero {
        padding:
            52px 0 48px;
    }


    .services-hero-grid {
        gap: 28px;
    }


    .services-hero h1 {
        font-size: 40px;
    }


    .services-hero-text {
        max-width: 100%;
    }



    /* CATÁLOGO */

    .services-catalogue {
        padding:
            46px 0 50px;
    }


    .services-catalogue-heading {
        margin-bottom: 24px;
    }


    .services-catalogue-heading h2 {
        font-size: 34px;
    }


    .services-catalogue
    .services-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }



    /* CARTÕES */

    .services-catalogue
    .service-card {
        min-height: 0;
    }


    .services-catalogue
    .service-image {
        height: 210px;
    }


    .services-catalogue
    .service-content {
        min-height: 190px;

        padding:
            20px 20px 19px;
    }


    .services-catalogue
    .service-content h3 {
        min-height: 0;

        font-size: 18px;
    }


    .services-catalogue
    .service-content p {
        min-height: 0;
    }



    /* SERVIÇO 10 */

    .services-catalogue
    .service-feature {
        grid-template-columns: 1fr;

        min-height: 0;

        margin-top: 16px;
    }


    .services-catalogue
    .service-feature-image {
        min-height: 235px;
    }


    .services-catalogue
    .service-feature-content {
        padding:
            30px 23px 32px;
    }


    .services-catalogue
    .service-feature-content h3 {
        font-size: 30px;
    }



    /* PROCESSO */

    .services-process {
        padding:
            46px 0;
    }


    .services-process-intro h2 {
        font-size: 34px;
    }


    .services-process-item {
        grid-template-columns:
            42px 1fr;

        gap: 14px;
    }



    /* CTA */

    .services-contact {
        padding:
            42px 0;
    }


    .services-contact h2 {
        font-size: 34px;
    }


    .services-contact-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .services-contact-primary,
    .services-contact-phone {
        width: 100%;
    }

}



/* =========================================================
   20. MOBILE PEQUENO
========================================================= */

@media (max-width: 420px) {

    .services-hero h1 {
        font-size: 36px;
    }


    .services-catalogue-heading h2,
    .services-process-intro h2,
    .services-contact h2 {
        font-size: 31px;
    }


    .services-hero {
        padding:
            44px 0 42px;
    }


    .services-catalogue
    .service-image {
        height: 190px;
    }


    .services-catalogue
    .service-feature-image {
        min-height: 210px;
    }


    .services-catalogue
    .service-feature-content h3 {
        font-size: 28px;
    }

}