/* =========================================================
   NETSERVICE ANGOLA
   PÁGINA: CONTACTO / SOLICITAR RECOLHA
========================================================= */


/* =========================================================
   01. HERO
========================================================= */

.contact-hero {
    padding: 76px 0 70px;

    background: var(--ns-blue);

    color: #ffffff;
}


.contact-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, .7fr);

    gap: 90px;

    align-items: end;
}


.contact-hero-label {
    margin: 0 0 16px;

    color: var(--ns-green);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .16em;
}


.contact-hero h1 {
    max-width: 760px;

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            44px,
            4.5vw,
            64px
        );

    font-weight: 800;

    line-height: 1;

    letter-spacing: -.045em;
}


.contact-hero-copy {
    max-width: 430px;
}


.contact-hero-copy p {
    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            .76
        );

    font-size: 15px;

    line-height: 1.7;
}



/* =========================================================
   02. INTRODUÇÃO
========================================================= */

.contact-intro {
    padding: 56px 0;

    background: #ffffff;
}


.contact-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 80px;

    align-items: start;
}


.contact-intro h2,
.contact-form-heading h2,
.contact-section-heading h2 {
    max-width: 620px;

    margin: 0;

    color: var(--ns-blue);

    font-size:
        clamp(
            35px,
            3.2vw,
            47px
        );

    font-weight: 800;

    line-height: 1.03;

    letter-spacing: -.04em;
}


.contact-intro-points {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;
}


.contact-intro-points > div {
    min-height: 100px;

    display: grid;

    grid-template-columns:
        34px 1fr;

    gap: 12px;

    align-items: start;

    padding: 19px;

    border:
        1px solid #dfe5e8;

    border-radius: 8px;

    background: #f8fafb;
}


.contact-intro-points span {
    color: var(--ns-green);

    font-size: 11px;

    font-weight: 800;
}


.contact-intro-points p {
    margin: 0;

    color: var(--ns-blue);

    font-size: 13px;

    font-weight: 700;

    line-height: 1.45;
}



/* =========================================================
   03. SECÇÃO DO FORMULÁRIO
========================================================= */

.contact-form-section {
    padding: 58px 0 62px;

    background: #f5f7f8;
}


.contact-main-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.38fr)
        minmax(300px, .62fr);

    gap: 28px;

    align-items: start;
}



/* =========================================================
   04. FORM WRAPPER
========================================================= */

.contact-form-wrapper {
    padding: 34px;

    border:
        1px solid #dce3e7;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 8px 28px
        rgba(
            8,
            34,
            56,
            .045
        );
}


.contact-form-heading {
    padding-bottom: 26px;

    border-bottom:
        1px solid #e1e6e9;
}


.contact-form-heading h2 {
    font-size:
        clamp(
            30px,
            2.8vw,
            40px
        );
}


.contact-form-heading > p:last-child {
    margin: 12px 0 0;

    color: #65727d;

    font-size: 14px;

    line-height: 1.6;
}



/* =========================================================
   05. FORM
========================================================= */

.contact-form {
    margin-top: 27px;
}


.form-row {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 15px;
}


.form-field {
    margin-bottom: 18px;
}


.form-field label {
    display: block;

    margin-bottom: 7px;

    color: var(--ns-blue);

    font-size: 12px;

    font-weight: 800;
}


.form-field label span,
.form-consent label span {
    color: var(--ns-green);
}


.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    border:
        1px solid #d4dde2;

    border-radius: 7px;

    background: #ffffff;

    color: #182c3a;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.form-field input,
.form-field select {
    height: 47px;

    padding: 0 13px;
}


.form-field textarea {
    min-height: 145px;

    padding: 13px;

    resize: vertical;

    line-height: 1.55;
}


.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #96a0a7;
}


.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--ns-green);

    box-shadow:
        0 0 0 3px
        rgba(
            101,
            189,
            54,
            .10
        );
}



/* =========================================================
   06. HONEYPOT
========================================================= */

.form-hidden {
    position: absolute;

    left: -9999px;

    width: 1px;
    height: 1px;

    overflow: hidden;
}



/* =========================================================
   07. CONSENTIMENTO
========================================================= */

.form-consent {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 17px;

    border-radius: 7px;

    background: #f5f7f8;
}


.form-consent input {
    width: 17px;
    height: 17px;

    flex-shrink: 0;

    margin-top: 2px;

    accent-color: var(--ns-green);
}


.form-consent label {
    color: #65727d;

    font-size: 12px;

    line-height: 1.5;
}



/* =========================================================
   08. SUBMIT
========================================================= */

.form-submit {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 22px;
}


.contact-submit {
    min-height: 46px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 22px;

    border: 0;

    border-radius: 7px;

    background: var(--ns-green);

    color: #10200c;

    cursor: pointer;

    font-family: inherit;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform .2s ease,
        background .2s ease;
}


.contact-submit:hover {
    transform: translateY(-2px);

    background:
        var(
            --ns-green-hover,
            #58aa2d
        );
}


.contact-submit span {
    font-size: 16px;
}


.form-submit p {
    max-width: 300px;

    margin: 0;

    color: #7a858d;

    font-size: 11px;

    line-height: 1.45;
}



/* =========================================================
   09. SIDEBAR
========================================================= */

.contact-sidebar {
    display: grid;

    gap: 12px;
}


.contact-sidebar-card {
    padding: 23px;

    border:
        1px solid #dce3e7;

    border-radius: 10px;

    background: #ffffff;
}


.contact-sidebar-main {
    padding: 27px;

    background: var(--ns-blue);

    border-color: var(--ns-blue);

    color: #ffffff;
}


.contact-sidebar-label {
    margin: 0 0 12px;

    color: var(--ns-green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .15em;
}


.contact-sidebar h3 {
    margin: 0;

    color: var(--ns-blue);

    font-size: 18px;

    font-weight: 800;

    line-height: 1.2;
}


.contact-sidebar-main h3 {
    color: #ffffff;

    font-size: 25px;

    letter-spacing: -.025em;
}


.contact-sidebar-card > p {
    margin: 10px 0 0;

    color: #65727d;

    font-size: 13px;

    line-height: 1.55;
}


.contact-sidebar-main > p {
    color:
        rgba(
            255,
            255,
            255,
            .70
        );
}


.contact-sidebar-number {
    display: block;

    margin-bottom: 17px;

    color: var(--ns-green);

    font-size: 11px;

    font-weight: 800;
}



/* =========================================================
   TELEFONE
========================================================= */

.contact-sidebar-phone {
    display: block;

    margin-top: 24px;

    padding: 16px 0;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .16
        );

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .16
        );

    text-decoration: none;
}


.contact-sidebar-phone span {
    display: block;

    color:
        rgba(
            255,
            255,
            255,
            .60
        );

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.contact-sidebar-phone strong {
    display: block;

    margin-top: 5px;

    color: #ffffff;

    font-size: 20px;

    font-weight: 800;
}


.contact-whatsapp {
    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;
}


.contact-whatsapp span {
    color: var(--ns-green);

    font-size: 15px;
}



/* =========================================================
   10. PROCESSO
========================================================= */

.contact-process {
    padding: 56px 0;

    background: #ffffff;
}


.contact-section-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, .7fr);

    gap: 70px;

    align-items: end;

    margin-bottom: 29px;
}


.contact-section-heading > p {
    max-width: 420px;

    margin: 0;

    color: #65727d;

    font-size: 14px;

    line-height: 1.6;
}


.contact-process-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 11px;
}


.contact-process-grid article {
    min-height: 180px;

    padding: 22px;

    border:
        1px solid #dfe5e8;

    border-radius: 9px;

    background: #f8fafb;
}


.contact-process-grid span {
    color: var(--ns-green);

    font-size: 11px;

    font-weight: 800;
}


.contact-process-grid h3 {
    margin: 21px 0 7px;

    color: var(--ns-blue);

    font-size: 17px;

    font-weight: 800;
}


.contact-process-grid p {
    margin: 0;

    color: #65727d;

    font-size: 13px;

    line-height: 1.5;
}



/* =========================================================
   11. CTA FINAL
========================================================= */

.contact-bottom {
    padding: 46px 0;

    background:
        var(
            --ns-green-dark,
            #1f5b3a
        );

    color: #ffffff;
}


.contact-bottom-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(0, .8fr);

    gap: 70px;

    align-items: center;
}


.contact-bottom-label {
    margin: 0 0 9px;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .15em;
}


.contact-bottom h2 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            34px,
            3vw,
            44px
        );

    font-weight: 800;

    line-height: 1.03;

    letter-spacing: -.04em;
}


.contact-bottom-grid
> div
> p:last-child {
    max-width: 570px;

    margin: 13px 0 0;

    color:
        rgba(
            255,
            255,
            255,
            .78
        );

    font-size: 13px;

    line-height: 1.55;
}


.contact-bottom-actions {
    display: flex;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 9px;
}


.contact-bottom-primary,
.contact-bottom-secondary {
    min-height: 43px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 18px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;
}


.contact-bottom-primary {
    background: #ffffff;

    color: var(--ns-blue);
}


.contact-bottom-secondary {
    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .45
        );

    color: #ffffff;
}



/* =========================================================
   12. TABLET
========================================================= */

@media (max-width: 900px) {

    .contact-hero-grid,
    .contact-intro-grid,
    .contact-main-grid,
    .contact-section-heading,
    .contact-bottom-grid {
        grid-template-columns: 1fr;
    }


    .contact-hero-grid,
    .contact-intro-grid {
        gap: 30px;
    }


    .contact-main-grid {
        gap: 20px;
    }


    .contact-sidebar {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .contact-sidebar-main {
        grid-column: 1 / -1;
    }


    .contact-process-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .contact-bottom-actions {
        justify-content: flex-start;
    }

}



/* =========================================================
   13. MOBILE
========================================================= */

@media (max-width: 700px) {

    .contact-hero {
        padding:
            52px 0 48px;
    }


    .contact-hero h1 {
        font-size: 40px;
    }


    .contact-intro,
    .contact-form-section,
    .contact-process {
        padding:
            44px 0;
    }


    .contact-intro-points,
    .form-row,
    .contact-sidebar,
    .contact-process-grid {
        grid-template-columns: 1fr;
    }


    .contact-sidebar-main {
        grid-column: auto;
    }


    .contact-form-wrapper {
        padding:
            27px 20px;
    }


    .form-submit {
        flex-direction: column;

        align-items: flex-start;
    }


    .contact-submit {
        width: 100%;
    }


    .contact-bottom {
        padding:
            40px 0;
    }


    .contact-bottom-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .contact-bottom-primary,
    .contact-bottom-secondary {
        width: 100%;
    }

}



/* =========================================================
   14. MOBILE PEQUENO
========================================================= */

@media (max-width: 420px) {

    .contact-hero h1 {
        font-size: 36px;
    }


    .contact-intro h2,
    .contact-form-heading h2,
    .contact-section-heading h2,
    .contact-bottom h2 {
        font-size: 31px;
    }

}