/* =============================================================
   SolidStack — Folha de Estilos Principal
   Estrutura:
     1. Reset & Variáveis
     2. Base
     3. Navegação
     4. Hero
     5. Stats Bar
     6. Layout de Seção
     7. Cards de Serviços
     8. Seção Expertise
     9. Processo
    10. CTA
    11. Rodapé
    12. Utilitários
    13. Animações
    14. Responsivo
   ============================================================= */


/* ─────────────────────────────────────────────
   1. RESET & VARIÁVEIS
   ───────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Paleta verde (identidade SolidStack) */
    --green-dark: #3a6b1a;
    --green-mid: #5a9a28;
    --green-light: #7abe3c;
    --green-pale: #d6f0b2;

    /* Escala de cinza */
    --gray-900: #0f0f10;
    --gray-800: #1a1b1e;
    --gray-700: #252629;
    --gray-600: #32343a;
    --gray-400: #6b6e78;
    --gray-200: #c8cad1;
    --gray-100: #e8eaef;
    --white: #f5f6f8;

    /* Aliases */
    --accent: var(--green-light);
    --bg: var(--gray-900);
    --text: var(--gray-100);

    /* Tipografia */
    --font-display: 'Inter', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', 'Courier New', monospace;

    /* Layout */
    --max-width: 1280px;
    --gutter: 4rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 10px;
}


/* ─────────────────────────────────────────────
   2. BASE
   ───────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--green-light);
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Grid de fundo decorativo */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(90, 154, 40, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 154, 40, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

img,
svg {
    display: block;
}

.container-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    width: 100%;
    max-width: 1400px;
}


/* ──────────────────────────────────────────
   3. NAVEGAÇÃO
   ───────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem var(--gutter);
    background: rgba(15, 15, 16, 0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(90, 154, 40, 0.12);
    transition: background 0.3s;
}

.site-nav.scrolled {
    background: rgba(15, 15, 16, 0.97);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    width: 250px;
}

.nav-logo__wordmark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    color: var(--white);
}

.nav-logo__wordmark span {
    color: var(--green-light);
}

/* Links de navegação */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--green-light);
}

/* Botão CTA da nav */
.nav-cta {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.55rem 1.4rem;
    border: 1px solid var(--green-mid);
    border-radius: var(--radius-sm);
    color: var(--green-light);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
    background: var(--green-mid);
    color: #fff;
}

/* Hambúrguer mobile (controlado via JS) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-200);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.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);
}


/* ─────────────────────────────────────────────
   4. HERO
   ───────────────────────────────────────────── */
.hero-wrap {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(90, 154, 40, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero {
    position: relative;
    z-index: 1;
    padding: 10rem var(--gutter) 6rem;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__left {}

.hero__right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__illustration {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 1.6rem;
}

.hero__eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--green-light);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero__title em {
    font-style: normal;
    color: var(--green-light);
}

.hero__subtitle {
    margin-top: 1.6rem;
    max-width: 480px;
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.75;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.4rem;
    flex-wrap: wrap;
}

.hero__badges {
    display: flex;
    gap: 0.6rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero__badge {
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--gray-400);
    border: 1px solid rgba(255, 255, 255, 0.07);
    letter-spacing: 0.03em;
}


/* ─────────────────────────────────────────────
   5. STATS BAR
   ───────────────────────────────────────────── */
.stats-bar {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter) 6rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(90, 154, 40, 0.15);
}

.stats-bar__item {
    padding: 2.5rem 2rem 2.5rem 0;
    border-right: 1px solid rgba(90, 154, 40, 0.1);
}

.stats-bar__item:first-child {
    padding-left: 0;
}

.stats-bar__item:last-child {
    border-right: none;
}

.stats-bar__number {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
}

.stats-bar__number span {
    color: var(--green-light);
}

.stats-bar__label {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--gray-400);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}


/* ─────────────────────────────────────────────
   6. LAYOUT DE SEÇÃO (genérico)
   ───────────────────────────────────────────── */
.section {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 6rem var(--gutter);
}

.section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.section__tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--green-light);
    margin-bottom: 0.8rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.section__desc {
    max-width: 360px;
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
    font-weight: 300;
}

.divider {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
}

.divider hr {
    border: none;
    border-top: 1px solid rgba(90, 154, 40, 0.1);
}


/* ─────────────────────────────────────────────
   7. CARDS DE SERVIÇOS
   ───────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(90, 154, 40, 0.1);
    border: 1px solid rgba(90, 154, 40, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-card {
    background: var(--gray-800);
    padding: 2.8rem 2.4rem;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
}

/* Linha inferior animada no hover */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--green-mid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    background: rgba(90, 154, 40, 0.05);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(90, 154, 40, 0.1);
    border: 1px solid rgba(90, 154, 40, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
}

.service-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--green-light);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card__number {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--green-mid);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card__desc {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 1.8rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tech-tag {
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.28rem 0.75rem;
    border-radius: var(--radius-sm);
    background: rgba(90, 154, 40, 0.1);
    color: var(--green-light);
    border: 1px solid rgba(90, 154, 40, 0.2);
    letter-spacing: 0.02em;
    font-family: var(--font-mono);
    transition: background 0.2s;
}

.tech-tag:hover {
    background: rgba(90, 154, 40, 0.2);
}


/* ─────────────────────────────────────────────
   8. SEÇÃO EXPERTISE
   ───────────────────────────────────────────── */
.expertise-section {
    border-top: 1px solid rgba(90, 154, 40, 0.1);
    border-bottom: 1px solid rgba(90, 154, 40, 0.1);
    background: var(--gray-800);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.expertise-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.expertise-section__left .section__tag {
    margin-bottom: 0.6rem;
}

.expertise-section__left .section__title {
    margin-bottom: 1.2rem;
}

.expertise-section__intro {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
    font-weight: 300;
    margin-top: 0.8rem;
    max-width: 400px;
}

.expertise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.expertise-list__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.expertise-list__bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    margin-top: 7px;
    flex-shrink: 0;
}

.expertise-list__text {
    font-size: 0.9rem;
    color: var(--gray-200);
    line-height: 1.6;
}

.expertise-list__text strong {
    color: var(--white);
    font-weight: 500;
}

/* Grid de métricas */
.expertise-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(90, 154, 40, 0.12);
    border: 1px solid rgba(90, 154, 40, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.metric-card {
    background: var(--gray-800);
    padding: 1.8rem;
}

.metric-card__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.metric-card__value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
}

.metric-card__value span {
    color: var(--green-light);
}

.metric-card__value--sm {
    font-size: 1.1rem;
}


/* ─────────────────────────────────────────────
   9. PROCESSO
   ───────────────────────────────────────────── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

/* Linha conectora decorativa */
.process-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 4%;
    right: 4%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(90, 154, 40, 0.3), transparent);
}

.process-step {
    text-align: center;
}

.process-step__dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gray-800);
    border: 1px solid rgba(90, 154, 40, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green-light);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    transition: border-color 0.2s, background 0.2s;
}

.process-step__dot:hover {
    border-color: var(--green-light);
    background: rgba(90, 154, 40, 0.08);
}

.process-step__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.process-step__text {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.65;
    font-weight: 300;
}


/* ─────────────────────────────────────────────
   10. CTA
   ───────────────────────────────────────────── */
.cta-band {
    position: relative;
    z-index: 1;
    max-width: calc(var(--max-width) - 8rem);
    margin: 0 auto 8rem;
    border: 1px solid rgba(90, 154, 40, 0.2);
    border-radius: var(--radius-lg);
    padding: 4rem;
    background: linear-gradient(135deg, rgba(90, 154, 40, 0.06) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-band__left .section__title {
    margin-top: 0.5rem;
}

.cta-band__right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 280px;
}

.cta-band__actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-200);
}

.contact-item__icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(90, 154, 40, 0.1);
    border: 1px solid rgba(90, 154, 40, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item__icon svg {
    width: 15px;
    height: 15px;
    stroke: var(--green-light);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ─────────────────────────────────────────────
   11. RODAPÉ
   ───────────────────────────────────────────── */
.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(90, 154, 40, 0.1);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer__brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.site-footer__brand span {
    color: var(--green-light);
    font-weight: 400;
}

.site-footer__copy {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--green-light);
}


/* ─────────────────────────────────────────────
   12. UTILITÁRIOS (botões, etc.)
   ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn--primary {
    background: var(--green-mid);
    color: #fff;
    border: none;
}

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

.btn--ghost {
    background: transparent;
    color: var(--gray-200);
    border: 1px solid var(--gray-600);
}

.btn--ghost:hover {
    border-color: var(--gray-400);
    color: #fff;
}


/* ─────────────────────────────────────────────
   13. ANIMAÇÕES
   ───────────────────────────────────────────── */

/* Entrada do hero */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__eyebrow {
    animation: fadeUp 0.6s 0.0s ease both;
}

.hero__title {
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero__subtitle {
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero__actions {
    animation: fadeUp 0.6s 0.3s ease both;
}

.hero__badges {
    animation: fadeUp 0.6s 0.4s ease both;
}

/* Reveal por scroll (classe adicionada via JS) */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Ilustração SVG — nós e linhas */
@keyframes nodePulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

@keyframes nodeFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes lineDash {
    to {
        stroke-dashoffset: -32;
    }
}

@keyframes nodeGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 3px rgba(122, 190, 60, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 10px rgba(122, 190, 60, 0.7));
    }
}

.n-pulse {
    animation: nodePulse 3s ease-in-out infinite;
}

.n-float {
    animation: nodeFloat 5s ease-in-out infinite;
}

.l-dash {
    stroke-dasharray: 6 5;
    animation: lineDash 2s linear infinite;
}

.n-glow {
    animation: nodeGlow 3s ease-in-out infinite;
}


/* ─────────────────────────────────────────────
   14. RESPONSIVO
   ───────────────────────────────────────────── */
@media (max-width: 960px) {
    :root {
        --gutter: 2rem;
    }

    .site-nav {
        padding: 1rem var(--gutter);
    }

    /* Mostra hambúrguer, esconde links */
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Menu mobile expandido */
    .nav-links.is-open {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 16, 0.97);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(90, 154, 40, 0.12);
        padding: 1rem var(--gutter) 2rem;
    }

    .nav-links.is-open a {
        padding: 0.8rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(90, 154, 40, 0.08);
    }

    /* Hero: coluna única, sem ilustração */
    .hero {
        grid-template-columns: 1fr;
        padding: 8rem var(--gutter) 4rem;
    }

    .hero__right {
        display: none;
    }

    /* Stats: 2 colunas */
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding: 0 var(--gutter) 4rem;
    }

    .stats-bar__item {
        border-right: none;
        border-bottom: 1px solid rgba(90, 154, 40, 0.1);
        padding: 1.5rem 0;
    }

    .stats-bar__item:nth-child(odd) {
        border-right: 1px solid rgba(90, 154, 40, 0.1);
        padding-right: 1.5rem;
    }

    .stats-bar__item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    /* Cards de serviços: coluna única */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Expertise: coluna única */
    .expertise-section__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem var(--gutter);
    }

    /* Processo: 2 colunas */
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    /* CTA */
    .cta-band {
        flex-direction: column;
    }

    .cta-band__right {
        min-width: unset;
        width: 100%;
    }

    /* Footer empilhado */
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .expertise-metrics {
        grid-template-columns: 1fr;
    }

    .nav-logo img {
        width: 180px;
    }

    .nav-cta {
        display: none;
    }

    .nav-links.is-open {

        top: 91px;
        gap: 20px;

    }


}