/* =========================================================
   NETSERVICE ANGOLA
   CSS PRINCIPAL — VERSÃO LIMPA
   Homepage + base para páginas internas
========================================================= */

:root {
    --ns-blue: #082238;
    --ns-blue-deep: #061827;
    --ns-green: #65bd36;
    --ns-green-hover: #58aa2d;
    --ns-green-dark: #1f5b3a;
    --ns-text: #17212b;
    --ns-muted: #65727d;
    --ns-white: #ffffff;
    --ns-light: #f5f7f8;
    --ns-border: #dfe5e8;
    --container: 1180px;
    --header-height: 76px;
    --header-height-mobile: 68px;
    --radius: 10px;
    --radius-card: 12px;
    --shadow-soft: 0 10px 28px rgba(8, 34, 56, .08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    padding: var(--header-height) 0 0;
    background: var(--ns-white);
    color: var(--ns-text);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 10000;
    background: #fff;
    border-bottom: 1px solid var(--ns-border);
    box-shadow: 0 2px 10px rgba(8, 34, 56, .05);
}

.header-inner {
    position: relative;
    height: 100%;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-logo {
    width: auto;
    height: 50px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: #263643;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: color .2s ease, transform .2s ease;
}

.main-nav > a:not(.nav-cta):hover {
    color: var(--ns-green);
}

.main-nav .nav-cta {
    min-height: 42px;
    padding: 0 20px;
    justify-content: center;
    border-radius: 7px;
    background: var(--ns-green);
    color: #10200c;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

.main-nav .nav-cta:hover {
    background: var(--ns-green-hover);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: var(--ns-blue);
    transition: transform .2s ease, opacity .2s ease;
}

/* HERO */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ns-blue);
}

.hero-image {
    position: absolute;
    inset: 0;
    background-color: var(--ns-blue);
    background-image: url("../images/hero/hero-netservice.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    transform: scale(1.015);
    transition: transform 7s ease-out;
}

.page-ready .hero-image {
    transform: scale(1.035);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 27, 46, .98) 0%,
            rgba(5, 27, 46, .94) 32%,
            rgba(5, 27, 46, .76) 55%,
            rgba(5, 27, 46, .28) 100%
        );
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-content {
    width: min(650px, 56%);
    padding: 68px 0 60px;
}

.hero-kicker {
    margin: 0 0 18px;
    color: var(--ns-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    animation: heroFadeUp .55s ease both;
}

.hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 4.3vw, 66px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.04em;
    animation: heroFadeUp .65s ease .08s both;
}

.hero-text {
    max-width: 590px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
    line-height: 1.6;
    animation: heroFadeUp .65s ease .16s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    animation: heroFadeUp .65s ease .24s both;
}

.btn-primary,
.btn-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn-primary {
    background: var(--ns-green);
    color: #10200c;
}

.btn-primary:hover {
    background: var(--ns-green-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .42);
    color: #fff;
    background: rgba(255, 255, 255, .03);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, .72);
    transform: translateY(-1px);
}

.hero-stats {
    max-width: 640px;
    margin-top: 38px;
    padding-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, .20);
    animation: heroFadeUp .65s ease .32s both;
}

.hero-stats strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.hero-stats span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
}

/* COMUM */

.section-label {
    margin: 0 0 12px;
    color: var(--ns-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
}

.section-label-light {
    color: var(--ns-green);
}

/* SERVIÇOS */

.services-section {
    padding: 52px 0;
    background: var(--ns-light);
}

.services-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 26px;
}

.services-heading h2 {
    max-width: 620px;
    margin: 0;
    color: var(--ns-blue);
    font-size: clamp(36px, 3.4vw, 50px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.services-heading-text {
    max-width: 420px;
    padding-bottom: 5px;
}

.services-heading-text p {
    margin: 0;
    color: #596773;
    font-size: 15px;
    line-height: 1.65;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ns-border);
    border-radius: var(--radius-card);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(101, 189, 54, .45);
    box-shadow: var(--shadow-soft);
}

.service-image {
    position: relative;
    display: block;
    height: 145px;
    overflow: hidden;
    background: #dce2e6;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.045);
}

.service-number {
    position: absolute;
    left: 16px;
    bottom: 14px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .95);
    color: var(--ns-green);
    font-size: 12px;
    font-weight: 800;
}

.service-content {
    padding: 20px 21px 22px;
}

.service-content h3 {
    margin: 0 0 9px;
    color: var(--ns-blue);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.service-content p {
    min-height: 46px;
    margin: 0 0 18px;
    color: var(--ns-muted);
    font-size: 14px;
    line-height: 1.55;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ns-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.service-link span {
    color: var(--ns-green);
    transition: transform .2s ease;
}

.service-link:hover span {
    transform: translateX(4px);
}

/* PORQUÊ A NETSERVICE */

.why-section {
    padding: 50px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.why-intro h2 {
    margin: 0;
    color: var(--ns-blue);
    font-size: clamp(36px, 3.4vw, 50px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.04em;
}

.why-description {
    max-width: 460px;
    margin: 16px 0 0;
    color: #5f6d78;
    font-size: 15px;
    line-height: 1.65;
}

.why-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    color: var(--ns-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.why-link span {
    color: var(--ns-green);
}

.why-list {
    border-top: 1px solid var(--ns-border);
}

.why-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--ns-border);
}

.why-number {
    color: var(--ns-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.why-item h3 {
    margin: 0;
    color: var(--ns-blue);
    font-size: 16px;
    font-weight: 700;
}

.why-item p {
    margin: 5px 0 0;
    color: #697680;
    font-size: 13px;
    line-height: 1.5;
}

/* SECTORES */

.sectors-section {
    padding: 48px 0;
    background: var(--ns-blue);
    color: #fff;
}

.sectors-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.sectors-intro h2 {
    max-width: 430px;
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 3.3vw, 48px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.04em;
}

.sectors-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.sector-item {
    position: relative;
    min-height: 66px;
    display: flex;
    align-items: center;
    padding: 0 20px 0 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.01em;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.sector-item::before {
    content: "";
    width: 4px;
    height: 22px;
    margin-right: 12px;
    flex-shrink: 0;
    border-radius: 4px;
    background: var(--ns-green);
}

.sector-item:hover {
    border-color: rgba(101, 189, 54, .65);
    background: rgba(101, 189, 54, .08);
    transform: translateY(-1px);
}

/* PROJECTOS */

.projects-section {
    padding: 52px 0;
    background: #fff;
}

.projects-heading {
    display: grid;
    grid-template-columns: 1.1fr .7fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 26px;
}

.projects-heading h2 {
    max-width: 620px;
    margin: 0;
    color: var(--ns-blue);
    font-size: clamp(36px, 3.4vw, 50px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.projects-intro {
    max-width: 420px;
    margin: 0;
    color: #66737d;
    font-size: 14px;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.project-card {
    overflow: hidden;
    border: 1px solid var(--ns-border);
    border-radius: var(--radius-card);
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.project-image {
    height: 185px;
    overflow: hidden;
    background: #dce3e7;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.04);
}

.project-content {
    padding: 20px 21px;
}

.project-type {
    display: block;
    margin-bottom: 8px;
    color: var(--ns-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.project-content h3 {
    margin: 0 0 9px;
    color: var(--ns-blue);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.project-content p {
    margin: 0;
    color: #66737d;
    font-size: 14px;
    line-height: 1.55;
}

.projects-action {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.projects-button {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid #b8c5cd;
    border-radius: 7px;
    background: #fff;
    color: var(--ns-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: border-color .2s ease, transform .2s ease;
}

.projects-button:hover {
    border-color: var(--ns-green);
    transform: translateY(-1px);
}

/* CLIENTES */

.clients-section {
    padding: 50px 0;
    background: var(--ns-light);
}

.clients-heading {
    max-width: 760px;
    margin-bottom: 24px;
}

.clients-heading h2 {
    margin: 0;
    color: var(--ns-blue);
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.client-logo {
    width: 260px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    overflow: hidden;
    border: 1px solid var(--ns-border);
    border-radius: var(--radius);
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-logo:hover {
    transform: translateY(-3px);
    border-color: rgba(101, 189, 54, .40);
    box-shadow: 0 8px 22px rgba(8, 34, 56, .07);
}

.clients-grid .client-logo:nth-child(1) img {
    transform: scale(1.55);
}

.clients-grid .client-logo:nth-child(4) img {
    transform: scale(1.45);
}

.clients-grid .client-logo:nth-child(5) img {
    transform: scale(1.20);
}

/* CTA */

.cta-section {
    padding: 46px 0;
    background: var(--ns-green-dark);
    color: #fff;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center;
}

.cta-label {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .88);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
}

.cta-content h2 {
    max-width: 600px;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3.2vw, 46px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.cta-content > p:last-child {
    max-width: 610px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    line-height: 1.55;
}

.cta-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cta-button-primary,
.cta-button-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, box-shadow .2s ease, background .2s ease;
}

.cta-button-primary {
    background: #fff;
    color: var(--ns-blue);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 34, 56, .13);
}

.cta-button-phone {
    border: 1px solid rgba(255, 255, 255, .48);
    color: #fff;
}

.cta-button-phone:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .10);
}

/* FOOTER */

.site-footer {
    padding: 46px 0 20px;
    background: var(--ns-blue-deep);
    color: rgba(255, 255, 255, .68);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr .7fr;
    gap: 70px;
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 7px;
    background: #fff;
    text-decoration: none;
}

.footer-logo img {
    width: auto;
    height: 34px;
    object-fit: contain;
}

.footer-brand p {
    max-width: 360px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.6;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.footer-column a {
    padding: 4px 0;
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
    font-size: 13px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, .11);
}

.footer-bottom p {
    margin: 0;
    font-size: 11px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .62);
    text-decoration: none;
    font-size: 11px;
}

/* ANIMAÇÕES */

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* TABLET */

@media (max-width: 900px) {
    .services-heading,
    .projects-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .client-logo {
        width: calc(33.333% - 10px);
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cta-actions {
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* MOBILE */

@media (max-width: 700px) {
    html {
        scroll-padding-top: calc(var(--header-height-mobile) + 16px);
    }

    body {
        padding-top: var(--header-height-mobile);
    }

    .site-header {
        height: var(--header-height-mobile);
    }

    .header-inner {
        min-height: var(--header-height-mobile);
        height: var(--header-height-mobile);
        gap: 14px;
    }

    .brand-logo {
        height: 40px;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        margin-left: auto;
        position: relative;
        z-index: 10002;
    }

    .nav-toggle span {
        width: 24px;
        height: 2px;
        margin: 0;
        background: var(--ns-blue);
    }

    .main-nav {
        position: fixed;
        top: var(--header-height-mobile);
        right: 12px;
        left: auto;
        width: min(300px, calc(100vw - 24px));
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 14px 14px;
        margin: 0;
        background: #fff;
        border: 1px solid var(--ns-border);
        border-top: 0;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 14px 30px rgba(8, 34, 56, .14);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
        z-index: 10001;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav > a {
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0 6px;
        border-bottom: 1px solid #eef1f3;
        color: var(--ns-blue);
        font-size: 14px;
        font-weight: 600;
    }

    .main-nav .nav-cta {
        width: 100%;
        min-height: 44px;
        margin-top: 10px;
        padding: 0 14px;
        justify-content: center;
        border: 0;
        border-radius: 7px;
        background: var(--ns-green);
        color: #10200c;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: 610px;
    }

    .hero-image {
        background-position: 67% center;
        background-size: cover;
        transform: none;
    }

    .page-ready .hero-image {
        transform: none;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 27, 46, .94) 0%,
                rgba(5, 27, 46, .86) 48%,
                rgba(5, 27, 46, .66) 100%
            );
    }

    .hero-content {
        width: 100%;
        padding: 52px 0 48px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(40px, 10.5vw, 54px);
        line-height: 1.02;
    }

    .hero-text {
        max-width: 500px;
        font-size: 16px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }

    .services-heading,
    .projects-heading {
        gap: 18px;
    }

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

    .service-image {
        height: 185px;
    }

    .service-content p {
        min-height: 0;
    }

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

    .sector-item {
        min-height: 56px;
    }

    .client-logo {
        width: calc(50% - 7px);
        height: 92px;
        padding: 14px 18px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* MOBILE PEQUENO */

@media (max-width: 600px) {
    .services-section,
    .why-section,
    .projects-section,
    .clients-section {
        padding: 46px 0;
    }

    .sectors-section {
        padding: 44px 0;
    }

    .cta-section {
        padding: 42px 0;
    }

    .services-heading h2,
    .why-intro h2,
    .sectors-intro h2,
    .projects-heading h2,
    .clients-heading h2,
    .cta-content h2 {
        font-size: 34px;
    }
}

/* ACESSIBILIDADE */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .hero-kicker,
    .hero h1,
    .hero-text,
    .hero-actions,
    .hero-stats,
    .scroll-reveal {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
