/* ─── VARIABLES ───────────────────────────────────────────── */
:root {
    --navy: #162255;
    --navy-dark: #0d1435;
    --navy-mid: #1c2d6b;
    --orange: #F5A100;
    --orange-lt: #F7B820;
    --orange-dk: #d98e00;
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #f0f2f7;
    --gray-200: #e2e6ee;
    --gray-500: #8892a4;
    --gray-700: #4a5568;
    --text: #1a202c;
    --r: 8px;
    --sh: 0 4px 20px rgba(22, 34, 85, .10);
    --sh-lg: 0 12px 48px rgba(22, 34, 85, .16);
    --ease: .25s ease;
}

/* ─── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6
}

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

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}

/* ─── PAGE ROUTING ────────────────────────────────────────── */
.page {
    display: none
}

.page.active {
    display: block
}

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

section {
    padding: 84px 0
}

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────── */
.kicker {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .6rem
}

.h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.22;
    margin-bottom: 1rem
}

.h2 span {
    color: var(--orange)
}

.body-text {
    font-size: .97rem;
    color: var(--gray-700);
    line-height: 1.85
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .82rem 1.9rem;
    font-size: .9rem;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--ease);
    border: 2px solid transparent;
    letter-spacing: .01em;
    cursor: pointer
}

.btn-orange {
    background: var(--orange);
    color: var(--navy)
}

.btn-orange:hover {
    background: var(--orange-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 161, 0, .38)
}

.btn-wht {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .55)
}

.btn-wht:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--white)
}

.btn-navy {
    background: var(--navy);
    color: var(--white)
}

.btn-navy:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--sh)
}

.btn-navy-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy)
}

.btn-navy-outline:hover {
    background: var(--navy);
    color: var(--white)
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.sr {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease
}

.sr.on {
    opacity: 1;
    transform: none
}

.sr-d1 {
    transition-delay: .1s
}

.sr-d2 {
    transition-delay: .2s
}

.sr-d3 {
    transition-delay: .3s
}

.sr-d4 {
    transition-delay: .4s
}

/* ══════════════════════════════════════════════════════════
       NAV
    ══════════════════════════════════════════════════════════ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 990;
    transition: background .3s, box-shadow .3s
}

#nav.scrolled {
    background: rgba(22, 34, 85, .97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, .28)
}

.nav-inner {
    display: flex;
    align-items: center;
    height: 78px;
    gap: 1rem
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0
}

/* Logo oficial — placa branca arredondada p/ contraste sobre fundo navy */
.nav-logo img {
    height: 42px;
    width: auto;
    display: block;
    background: #fff;
    padding: 6px 11px;
    border-radius: 7px;
    box-sizing: content-box
}

.drawer-logo img {
    height: 34px;
    width: auto;
    display: block;
    background: #fff;
    padding: 5px 9px;
    border-radius: 6px;
    box-sizing: content-box
}

.ft-logo-wrap {
    margin-bottom: 1rem
}

.ft-logo-img {
    height: 44px;
    width: auto;
    display: block;
    background: #fff;
    padding: 7px 12px;
    border-radius: 7px;
    box-sizing: content-box
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .15rem;
    margin-left: auto
}

.nav-link {
    padding: .48rem .72rem;
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    border-radius: 4px;
    transition: color var(--ease);
    cursor: pointer;
    position: relative;
    white-space: nowrap
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: .72rem;
    right: .72rem;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform var(--ease);
    border-radius: 2px
}

.nav-link:hover {
    color: var(--white)
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1)
}

.nav-link.active {
    color: var(--white)
}

.nav-cta-wrap {
    margin-left: 1rem
}

/* ══════════════════════════════════════════════════════════
       HOME – HERO
    ══════════════════════════════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/portfolio/hero-trincheira.jpg');
    background-size: cover;
    background-position: center 55%;
    will-change: transform
}

.hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, rgba(13, 20, 53, .93) 0%, rgba(13, 20, 53, .82) 52%, rgba(13, 20, 53, .52) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 130px 0 100px;
    max-width: 700px
}

.hero-container{
    width: 100%;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245, 161, 0, .14);
    border: 1px solid rgba(245, 161, 0, .38);
    color: #f8c040;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .42rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem
}

.hero-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
    animation: blink 2s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

.hero-title {
    font-size: clamp(2rem, 4.2vw, 3.3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 1.25rem
}

.hero-title .accent {
    color: var(--orange)
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.82;
    margin-bottom: 2.25rem;
    max-width: 560px
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    color: rgba(255, 255, 255, .4);
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    animation: bob 2.2s ease-in-out infinite
}

.hero-scroll svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, .4);
    fill: none;
    stroke-width: 2
}

@keyframes bob {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(6px)
    }
}

/* ══════════════════════════════════════════════════════════
       HOME – SERVIÇOS (Dobra 02)
    ══════════════════════════════════════════════════════════ */
#home-services {
    background: var(--gray-50)
}

.srv-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3rem
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.srv-grid.srv-grid-4 {
    grid-template-columns: repeat(2, 1fr)
}

@media(max-width:768px) {
    .srv-grid.srv-grid-4 {
        grid-template-columns: 1fr
    }
}

.srv-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 2rem 1.75rem;
    box-shadow: var(--sh);
    border-top: 3px solid transparent;
    transition: var(--ease)
}

.srv-card:hover {
    border-top-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: var(--sh-lg)
}

.srv-icon {
    width: 52px;
    height: 52px;
    background: rgba(245, 161, 0, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--ease)
}

.srv-card:hover .srv-icon {
    background: var(--navy)
}

.srv-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--ease)
}

.srv-card:hover .srv-icon svg {
    stroke: var(--orange)
}

.srv-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.srv-card p {
    font-size: .88rem;
    color: var(--gray-700);
    line-height: 1.75
}

/* ══════════════════════════════════════════════════════════
       HOME – SOBRE NÓS (Dobra 03)
    ══════════════════════════════════════════════════════════ */
#home-about {
    background: var(--white)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.about-img-wrap {
    position: relative;
    flex-shrink: 0
}

.about-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--sh-lg)
}

.about-year-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--orange);
    color: var(--navy);
    padding: 1.4rem 1.6rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(245, 161, 0, .4);
    text-align: center
}

.about-year-badge strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1
}

.about-year-badge span {
    font-size: .65rem;
    font-weight: 700;
    opacity: .75;
    text-transform: uppercase;
    letter-spacing: .1em
}

.about-text p {
    margin-bottom: 1.15rem
}

/* ══════════════════════════════════════════════════════════
       HOME – NOSSO PROPÓSITO (Dobra 04)
    ══════════════════════════════════════════════════════════ */
#home-purpose {
    background: var(--navy);
    position: relative;
    overflow: hidden
}

#home-purpose::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245, 161, 0, .07) 0%, transparent 70%);
    pointer-events: none
}

.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1
}

#home-purpose .h2 {
    color: var(--white)
}

#home-purpose .body-text {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 1.75rem
}

.purpose-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-bottom: 2rem
}

.purpose-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    color: rgba(255, 255, 255, .85);
    font-size: .95rem;
    font-weight: 500
}

.purpose-check {
    width: 22px;
    height: 22px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.purpose-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 3
}

.cert-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.cert-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 1.25rem;
    transition: var(--ease)
}

.cert-card:hover {
    background: rgba(255, 255, 255, .1)
}

.cert-norm {
    font-size: .98rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: .15rem
}

.cert-area {
    font-size: .78rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .4rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.cert-desc {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6
}

/* ══════════════════════════════════════════════════════════
       HOME – PORTFÓLIO (Dobra 05)
    ══════════════════════════════════════════════════════════ */
#home-portfolio {
    background: var(--gray-50)
}

.port-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.5rem
}

.proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.proj-card {
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sh);
    transition: var(--ease)
}

.proj-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg)
}

.proj-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform .55s ease
}

.proj-card:hover .proj-img {
    transform: scale(1.04)
}

.proj-body {
    padding: 1.5rem
}

.proj-cat {
    display: inline-block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--orange);
    padding: .25rem .75rem;
    border-radius: 3px;
    margin-bottom: .75rem
}

.proj-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .55rem
}

.proj-card p {
    font-size: .84rem;
    color: var(--gray-700);
    line-height: 1.72;
    margin-bottom: .9rem
}

.proj-meta {
    border-top: 1px solid var(--gray-200);
    padding-top: .75rem;
    display: flex;
    flex-direction: column;
    gap: .22rem
}

.proj-meta span {
    font-size: .77rem;
    color: var(--gray-500)
}

.proj-meta span strong {
    color: var(--navy);
    font-weight: 600
}

/* ══════════════════════════════════════════════════════════
       HOME – FALE CONOSCO CTA (Dobra 06)
    ══════════════════════════════════════════════════════════ */
#home-cta {
    position: relative;
    padding: 90px 0;
    overflow: hidden
}

.home-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/portfolio/br343-trincheira-2.jpg');
    background-size: cover;
    background-position: center
}

.home-cta-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 20, 53, .93) 0%, rgba(22, 34, 85, .88) 100%)
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto
}

.cta-content .kicker {
    justify-content: center;
    display: block;
    text-align: center
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: .85rem
}

.cta-content p {
    color: rgba(255, 255, 255, .72);
    font-size: 1rem;
    margin-bottom: 2.25rem
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

/* ══════════════════════════════════════════════════════════
       PAGE HERO (inner pages)
    ══════════════════════════════════════════════════════════ */
.page-hero {
    position: relative;
    padding: 120px 0 60px;
    background: var(--navy);
    overflow: hidden
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .1
}

.page-hero .container {
    position: relative;
    z-index: 1
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: .75rem
}

.breadcrumb .bc-link {
    cursor: pointer;
    transition: color var(--ease)
}

.breadcrumb .bc-link:hover {
    color: var(--orange)
}

.breadcrumb .bc-sep {
    opacity: .35
}

.breadcrumb .bc-cur {
    color: var(--orange);
    font-weight: 600
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2
}

.page-hero p.sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
    margin-top: .6rem;
    max-width: 540px
}

/* ══════════════════════════════════════════════════════════
       SOBRE NÓS PAGE
    ══════════════════════════════════════════════════════════ */
.sobre-quem {
    background: var(--white)
}

.sobre-quem-lead {
    max-width: 780px;
    margin-bottom: 3rem
}

.sobre-quem-lead h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem
}

.vvc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem
}

.vvc-card {
    padding: 1.75rem;
    background: var(--gray-50);
    border-radius: var(--r);
    border-left: 3px solid var(--orange)
}

.vvc-card h3 {
    font-size: .78rem;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .7rem
}

.vvc-card p {
    font-size: .88rem;
    color: var(--gray-700);
    line-height: 1.75
}

.sobre-texto {
    background: var(--gray-50)
}

.sobre-txt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.sobre-img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--sh-lg)
}

.certs-section {
    background: var(--white)
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem
}

.cert-full {
    background: var(--gray-50);
    border-radius: var(--r);
    padding: 1.75rem;
    border-top: 3px solid var(--orange);
    transition: var(--ease)
}

.cert-full:hover {
    box-shadow: var(--sh);
    transform: translateY(-3px)
}

.cert-full .cn {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: .2rem
}

.cert-full .ca {
    font-size: .78rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .7rem
}

.cert-full p {
    font-size: .84rem;
    color: var(--gray-700);
    line-height: 1.68
}

/* ══════════════════════════════════════════════════════════
       SERVIÇOS PAGE
    ══════════════════════════════════════════════════════════ */
.servicos-section {
    background: var(--gray-50)
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem
}

.svc-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 2rem;
    box-shadow: var(--sh);
    border-top: 3px solid var(--orange);
    transition: var(--ease)
}

.svc-card:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-3px)
}

.svc-card h3 {
    font-size: .88rem;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .75rem
}

.svc-card p {
    font-size: .875rem;
    color: var(--gray-700);
    line-height: 1.75
}

.svc-diverse {
    grid-column: span 3;
    background: var(--navy);
    border-top-color: var(--orange)
}

.svc-diverse h3 {
    color: var(--orange)
}

.svc-diverse p {
    color: rgba(255, 255, 255, .7)
}

.svc-diverse ul {
    margin-top: .6rem;
    padding-left: 1.1rem;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.svc-diverse ul li {
    font-size: .875rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6
}

.svc-diverse-items {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.svc-diverse-item {
    background: rgba(255, 255, 255, .05);
    border-left: 3px solid var(--orange);
    padding: 1rem 1.1rem;
    border-radius: 6px
}

.svc-diverse-item h4 {
    font-size: .84rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: .45rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.svc-diverse-item p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.6
}

@media(max-width:1024px) {
    .svc-diverse-items {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .svc-diverse-items {
        grid-template-columns: 1fr
    }
}

/* ══════════════════════════════════════════════════════════
       INTEGRIDADE PAGE
    ══════════════════════════════════════════════════════════ */
.integ-section {
    background: var(--white)
}

.integ-intro {
    max-width: 780px;
    margin-bottom: 3rem
}

.integ-intro h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem
}

.integ-intro p {
    font-size: .95rem;
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: .9rem
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem
}

.pillar {
    padding: 1.75rem;
    background: var(--gray-50);
    border-radius: var(--r);
    border-left: 3px solid var(--orange)
}

.pillar h3 {
    font-size: .95rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .7rem
}

.pillar p {
    font-size: .86rem;
    color: var(--gray-700);
    line-height: 1.72
}

/* Pillar com documento anexo (Código de Ética) */
.pillar-doc {
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.pillar-thumb {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: var(--ease)
}

.pillar-thumb:hover {
    border-color: var(--orange);
    box-shadow: var(--sh);
    transform: translateY(-2px)
}

.pillar-thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .55s ease
}

.pillar-thumb:hover img {
    transform: scale(1.03)
}

.pillar-cta {
    align-self: flex-start;
    margin-top: .25rem
}

.canal-box {
    background: var(--navy);
    border-radius: 14px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center
}

.canal-box h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .75rem
}

.canal-box p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8
}

/* ══════════════════════════════════════════════════════════
       FALE CONOSCO PAGE
    ══════════════════════════════════════════════════════════ */
.contato-section {
    background: var(--gray-50)
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 5rem;
    align-items: start
}

.contato-info-title {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .75rem
}

.contato-info p {
    font-size: .95rem;
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 2.25rem
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

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

.ci-icon {
    width: 46px;
    height: 46px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ci-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ci-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray-500);
    margin-bottom: .2rem
}

.ci-val {
    font-size: .92rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.55
}

.ci-val a {
    transition: color var(--ease)
}

.ci-val a:hover {
    color: var(--orange)
}

.ci-badge {
    display: inline-block;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: #25d366;
    padding: .12rem .45rem;
    border-radius: 3px;
    margin-left: .35rem;
    vertical-align: middle
}

.form-box {
    background: var(--white);
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow: var(--sh-lg)
}

.form-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .35rem
}

.form-box .form-sub {
    font-size: .87rem;
    color: var(--gray-500);
    margin-bottom: 1.75rem
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.fg {
    margin-bottom: 1rem
}

.fg label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .38rem
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: .78rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 6px;
    font-family: inherit;
    font-size: .9rem;
    color: var(--text);
    outline: none;
    transition: border-color var(--ease);
    background: var(--white)
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--navy)
}

.fg textarea {
    min-height: 120px;
    resize: vertical
}

.form-btn {
    width: 100%;
    justify-content: center;
    font-size: .95rem;
    margin-top: .25rem
}

/* Aviso LGPD + checkbox de consentimento em todos os formulários */
.lgpd-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--orange);
    border-radius: 6px;
    padding: .85rem 1rem;
    margin-bottom: 1rem
}

.lgpd-check {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    cursor: pointer;
    font-size: .8rem;
    color: var(--gray-700);
    line-height: 1.55
}

.lgpd-check input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--orange);
    width: 16px;
    height: 16px;
    cursor: pointer
}

.lgpd-check strong {
    color: var(--navy);
    font-weight: 700
}

.lgpd-check a {
    color: var(--orange);
    text-decoration: underline
}

.lgpd-check a:hover {
    color: var(--orange-dk)
}

/* ══════════════════════════════════════════════════════════
       CANAL DE DENÚNCIAS (Integridade)
    ══════════════════════════════════════════════════════════ */
.canal-intro {
    margin-bottom: 2.5rem
}

.canal-intro p {
    margin-top: 1rem
}

.denuncia-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3.5rem;
    align-items: start
}

.denuncia-info h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.1rem
}

.denuncia-list {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.denuncia-list li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    color: var(--gray-700);
    font-size: .9rem;
    line-height: 1.6
}

.denuncia-list .dcheck {
    width: 22px;
    height: 22px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.denuncia-list .dcheck svg {
    width: 12px;
    height: 12px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.denuncia-tipo {
    display: flex;
    gap: .75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap
}

.dtipo-opt {
    flex: 1;
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .7rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 6px;
    cursor: pointer;
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--ease);
    background: var(--white)
}

.dtipo-opt:hover {
    border-color: var(--navy)
}

.dtipo-opt input[type="radio"] {
    accent-color: var(--orange);
    cursor: pointer
}

.dtipo-opt:has(input[type="radio"]:checked) {
    border-color: var(--orange);
    background: rgba(245, 161, 0, .06)
}

.denuncia-sigilo {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    margin-top: 1rem;
    font-size: .78rem;
    color: var(--gray-500);
    line-height: 1.5
}

.denuncia-sigilo svg {
    width: 16px;
    height: 16px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px
}

@media(max-width:1024px) {
    .denuncia-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }
}

/* ══════════════════════════════════════════════════════════
       CORPO TÉCNICO (Sobre Nós)
    ══════════════════════════════════════════════════════════ */
.corpo-tecnico-section {
    background: var(--gray-50)
}

.corpo-tecnico-intro {
    max-width: 780px;
    margin-bottom: 2.5rem
}

.corpo-tecnico-intro p {
    margin-top: 1rem
}

.ct-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.ct-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 1.85rem 1.6rem;
    box-shadow: var(--sh);
    border-top: 3px solid var(--orange);
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.ct-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-lg)
}

.ct-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(245, 161, 0, .1);
    padding: .3rem .65rem;
    border-radius: 3px
}

.ct-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3
}

.ct-card p {
    font-size: .86rem;
    color: var(--gray-700);
    line-height: 1.7
}

.ct-team {
    margin-top: 2.5rem
}

.ct-team img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: var(--sh-lg)
}

.ct-team figcaption {
    margin-top: .9rem;
    font-size: .86rem;
    color: var(--gray-500);
    text-align: center;
    font-style: italic
}

/* Cert thumb image (miniatura no card) */
.cert-thumb-img {
    display: block;
    margin: -.5rem -.5rem 1rem;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--ease)
}

.cert-thumb-img:hover {
    box-shadow: var(--sh);
    border-color: var(--orange);
    transform: translateY(-2px)
}

.cert-thumb-img img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .55s ease
}

.cert-thumb-img:hover img {
    transform: scale(1.03)
}

/* Cert thumbnail link (Sobre Nós) */
.cert-thumb {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: transparent;
    color: var(--navy);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .45rem .8rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--ease)
}

.cert-thumb:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy)
}

.cert-thumb svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

/* Cert modal */
.cert-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    align-items: center;
    justify-content: center;
    padding: 2rem
}

.cert-modal.open {
    display: flex
}

.cert-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 20, 53, .85);
    backdrop-filter: blur(4px)
}

.cert-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 14px;
    max-width: 760px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: var(--sh-lg);
    z-index: 1
}

.cert-modal-close {
    position: absolute;
    top: .85rem;
    right: .85rem;
    width: 36px;
    height: 36px;
    background: rgba(22, 34, 85, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--ease);
    z-index: 2
}

.cert-modal-close:hover {
    background: var(--navy);
    color: var(--white)
}

.cert-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    color: var(--navy)
}

.cert-modal-close:hover svg {
    color: var(--white)
}

.cert-modal-body {
    padding: 1.5rem
}

#certModalImage {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: var(--sh);
    margin-bottom: 1.25rem;
    background: var(--gray-50)
}

.cert-modal-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 .5rem .5rem
}

.cert-modal-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0
}

.cert-modal-sub {
    font-size: .9rem;
    color: var(--gray-700);
    margin-top: .15rem
}

.cert-modal-btn {
    font-size: .85rem
}

/* Modal de documento multi-página (Código de Ética) */
.cert-modal-doc .cert-modal-content {
    max-width: 820px
}

.cert-modal-info-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.25rem
}

.cert-modal-note {
    margin-top: .5rem;
    font-size: .78rem;
    color: var(--gray-500);
    font-style: italic
}

.cert-modal-pages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 70vh;
    overflow-y: auto;
    padding: .25rem;
    background: var(--gray-100);
    border-radius: 8px
}

.cert-modal-pages img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
    background: var(--white);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none
}

/* Texto integral do Código de Ética */
.codigo-etica-text {
    max-height: 65vh;
    overflow-y: auto;
    padding: 1.25rem 1.4rem;
    background: var(--gray-50);
    border-radius: 8px;
    user-select: none;
    -webkit-user-select: none;
    font-size: .88rem;
    line-height: 1.7;
    color: var(--gray-700)
}

.codigo-etica-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin: 1.4rem 0 .5rem;
    padding-bottom: .35rem;
    border-bottom: 1px solid var(--gray-200)
}

.codigo-etica-text h4:first-child {
    margin-top: 0
}

.codigo-etica-text h5 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--navy);
    margin: 1.1rem 0 .45rem
}

.codigo-etica-text p {
    margin: .55rem 0
}

.codigo-etica-text ol {
    margin: .5rem 0 .75rem 1.4rem;
    padding: 0
}

.codigo-etica-text ol li {
    margin-bottom: .5rem;
    padding-left: .3rem
}

.codigo-etica-text strong {
    color: var(--navy);
    font-weight: 700
}

/* Versão "botão" da miniatura do pilar (Código de Ética) */
button.pillar-thumb {
    border: 1px solid var(--gray-200);
    padding: 0;
    width: 100%
}

.pillar-thumb img {
    user-select: none;
    -webkit-user-drag: none
}

@media(max-width:1024px) {
    .ct-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .ct-grid {
        grid-template-columns: 1fr
    }
}

/* ══════════════════════════════════════════════════════════
       PORTFÓLIO PAGE
    ══════════════════════════════════════════════════════════ */

/* Filtros */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 2.5rem
}

.pf-btn {
    padding: .55rem 1.15rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--ease)
}

.pf-btn:hover {
    border-color: var(--navy)
}

.pf-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy)
}

/* Grade */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sh);
    transition: var(--ease);
    display: flex;
    flex-direction: column
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg)
}

.pc-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .55s ease
}

.portfolio-card:hover .pc-img {
    transform: scale(1.04)
}

.pc-body {
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    flex: 1
}

.pc-cat {
    align-self: flex-start;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--orange);
    padding: .25rem .65rem;
    border-radius: 3px
}

.portfolio-card[data-tipo="supervisao"] .pc-cat { background: #2c7fb8 }
.portfolio-card[data-tipo="projeto"] .pc-cat    { background: var(--orange) }
.portfolio-card[data-tipo="gerenciamento"] .pc-cat { background: #6b46c1 }
.portfolio-card[data-tipo="ambiental"] .pc-cat  { background: #16a34a }

.portfolio-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3
}

.portfolio-card p {
    font-size: .85rem;
    color: var(--gray-700);
    line-height: 1.7
}

.pc-meta {
    margin-top: auto;
    padding-top: .85rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: .22rem
}

.pc-meta span {
    font-size: .76rem;
    color: var(--gray-500)
}

.pc-meta strong {
    color: var(--navy);
    font-weight: 600
}

.pc-credit {
    font-size: .7rem !important;
    color: var(--gray-500) !important;
    font-style: italic;
    margin-top: .35rem
}

.pc-credit a {
    color: var(--gray-500);
    text-decoration: underline;
    text-decoration-color: rgba(0,0,0,.15)
}

.pc-credit a:hover {
    color: var(--orange)
}

/* Estado vazio */
.portfolio-empty {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-500);
    font-size: .92rem;
    background: var(--white);
    border-radius: var(--r);
    border: 1.5px dashed var(--gray-200)
}

/* Outros contratos */
.outros-contratos {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200)
}

.outros-header {
    max-width: 720px;
    margin-bottom: 2rem
}

.outros-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin: .35rem 0 .55rem
}

.outros-header p {
    font-size: .9rem;
    color: var(--gray-700);
    line-height: 1.7
}

.outros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.outros-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 1.3rem 1.4rem;
    border-left: 3px solid var(--orange);
    box-shadow: var(--sh);
    display: flex;
    flex-direction: column;
    gap: .45rem;
    transition: var(--ease)
}

.outros-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-lg)
}

.oc-cat {
    align-self: flex-start;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gray-100);
    padding: .2rem .55rem;
    border-radius: 3px
}

.outros-card h4 {
    font-size: .95rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3
}

.outros-card p {
    font-size: .82rem;
    color: var(--gray-700);
    line-height: 1.65
}

@media(max-width:1024px) {
    .portfolio-grid,
    .outros-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .portfolio-grid,
    .outros-grid {
        grid-template-columns: 1fr
    }
}

/* ══════════════════════════════════════════════════════════
       PROJETOS PAGE (Portfólio expandido — cards detalhados, legado)
    ══════════════════════════════════════════════════════════ */
.projetos-section {
    background: var(--gray-50);
    padding-top: 60px
}

.projetos-intro {
    max-width: 780px;
    margin-bottom: 3rem
}

.projetos-intro h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem
}

.projetos-intro p {
    font-size: .95rem;
    color: var(--gray-700);
    line-height: 1.85
}

.project-detail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--sh);
    margin-bottom: 3rem;
    transition: var(--ease)
}

.project-detail:hover {
    box-shadow: var(--sh-lg)
}

.project-detail.reverse {
    grid-template-columns: 1fr 1.1fr
}

.project-detail.reverse .pd-img-wrap {
    order: 2
}

.project-detail.reverse .pd-content {
    order: 1
}

.pd-img-wrap {
    position: relative;
    height: 100%;
    min-height: 420px
}

.pd-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.pd-content {
    padding: 3rem 2.5rem
}

.pd-cat {
    display: inline-block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--orange);
    padding: .3rem .8rem;
    border-radius: 3px;
    margin-bottom: 1rem
}

.pd-content h2 {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.25
}

.pd-content p {
    font-size: .92rem;
    color: var(--gray-700);
    line-height: 1.82;
    margin-bottom: 1rem
}

.pd-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200)
}

.pd-spec {
    display: flex;
    flex-direction: column;
    gap: .15rem
}

.pd-spec-label {
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray-500)
}

.pd-spec-value {
    font-size: .88rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.4
}

/* ══════════════════════════════════════════════════════════
       TRABALHE CONOSCO PAGE
    ══════════════════════════════════════════════════════════ */
.trabalhe-section {
    background: var(--white)
}

.trabalhe-intro {
    max-width: 780px;
    margin-bottom: 3rem
}

.trabalhe-intro h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem
}

.trabalhe-intro p {
    font-size: .95rem;
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: .9rem
}

.cultura-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem
}

.cultura-card {
    padding: 1.75rem;
    background: var(--gray-50);
    border-radius: var(--r);
    border-left: 3px solid var(--orange);
    transition: var(--ease)
}

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

.cultura-card .cultura-icon {
    width: 46px;
    height: 46px;
    background: rgba(245, 161, 0, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem
}

.cultura-card .cultura-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cultura-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .55rem
}

.cultura-card p {
    font-size: .87rem;
    color: var(--gray-700);
    line-height: 1.7
}

.trabalhe-form-section {
    background: var(--gray-50)
}

.trabalhe-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 5rem;
    align-items: start
}

.trabalhe-info h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .75rem
}

.trabalhe-info > p {
    font-size: .95rem;
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 2rem
}

.trabalhe-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem
}

.trabalhe-list-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    color: var(--navy);
    font-size: .92rem;
    font-weight: 500
}

.trabalhe-list-item .tcheck {
    width: 22px;
    height: 22px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.trabalhe-list-item .tcheck svg {
    width: 12px;
    height: 12px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

/* Upload customizado */
.fg-file {
    margin-bottom: 1rem
}

.cv-upload-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 1.8px dashed var(--gray-200);
    border-radius: 8px;
    background: var(--gray-50);
    cursor: pointer;
    transition: border-color var(--ease), background var(--ease)
}

.cv-upload-area:hover {
    border-color: var(--orange);
    background: rgba(245, 161, 0, .04)
}

.cv-upload-area input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1
}

.cv-upload-icon {
    width: 42px;
    height: 42px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cv-upload-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cv-upload-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0
}

.cv-upload-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy)
}

.cv-upload-hint {
    font-size: .76rem;
    color: var(--gray-500);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.cv-upload-hint.has-file {
    color: var(--orange);
    font-weight: 600
}

@media(max-width:1024px) {
    .project-detail,
    .project-detail.reverse {
        grid-template-columns: 1fr;
        gap: 0
    }

    .project-detail.reverse .pd-img-wrap {
        order: 0
    }

    .project-detail.reverse .pd-content {
        order: 0
    }

    .pd-img-wrap {
        min-height: 280px;
        max-height: 360px
    }

    .pd-content {
        padding: 2rem 1.75rem
    }

    .trabalhe-form-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .cultura-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .cultura-grid {
        grid-template-columns: 1fr
    }

    .pd-specs {
        grid-template-columns: 1fr
    }
}

/* ══════════════════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════════════════ */
#footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .6);
    padding: 64px 0 28px
}

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 2rem
}

.ft-brand p {
    font-size: .88rem;
    line-height: 1.82;
    margin: 1.2rem 0
}

.ft-social {
    display: flex;
    gap: .65rem
}

.ft-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ease)
}

.ft-social a:hover {
    background: var(--orange)
}

.ft-social svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, .85);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--ease)
}

.ft-social a:hover svg {
    stroke: var(--navy)
}

/* Instagram: ponto do "flash" precisa ser fill, não stroke */
.ft-social-ig svg circle[fill="currentColor"] {
    fill: rgba(255, 255, 255, .85);
    stroke: none
}

.ft-social-ig:hover svg circle[fill="currentColor"] {
    fill: var(--navy)
}

/* Badge WhatsApp no rodapé */
.ft-wa {
    display: inline-block;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-style: normal;
    color: #fff;
    background: #25d366;
    padding: .12rem .4rem;
    border-radius: 3px;
    margin-left: .25rem;
    vertical-align: middle
}

.ft-col h4 {
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--white);
    margin-bottom: 1.2rem
}

.ft-links {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.ft-links span,
.ft-links a {
    font-size: .87rem;
    transition: color var(--ease);
    cursor: pointer
}

.ft-links span:hover,
.ft-links a:hover {
    color: var(--orange)
}

.ft-contact-list {
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.ft-ci {
    display: flex;
    align-items: flex-start;
    gap: .55rem
}

.ft-ci svg {
    width: 15px;
    height: 15px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
    margin-top: 2px
}

.ft-ci span {
    font-size: .84rem;
    line-height: 1.55
}

.ft-ci a {
    transition: color var(--ease)
}

.ft-ci a:hover {
    color: var(--orange)
}

.ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: .78rem;
    flex-wrap: wrap
}

/* ══════════════════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════════════════ */
@media(max-width:1100px) {
    .nav-cta-wrap {
        display: none
    }

    .nav-link {
        padding: .48rem .55rem;
        font-size: .82rem
    }
}

@media(max-width:1024px) {

    .srv-grid,
    .proj-grid,
    .servicos-grid,
    .vvc-grid,
    .certs-grid {
        grid-template-columns: 1fr 1fr
    }

    .svc-diverse {
        grid-column: span 2
    }

    .about-grid,
    .purpose-grid,
    .sobre-txt-grid,
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .about-img-wrap {
        display: none
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }

    .pillar-grid {
        grid-template-columns: 1fr 1fr
    }

    .canal-box {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }
}

@media(max-width:768px) {
    section {
        padding: 60px 0
    }

    .nav-links,
    .nav-cta-wrap {
        display: none
    }

    .srv-grid,
    .proj-grid,
    .vvc-grid,
    .certs-grid,
    .servicos-grid,
    .pillar-grid {
        grid-template-columns: 1fr
    }

    .svc-diverse {
        grid-column: span 1
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .ft-grid {
        grid-template-columns: 1fr
    }

    .cert-cards {
        grid-template-columns: 1fr
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-actions .btn {
        justify-content: center
    }

    .srv-header {
        flex-direction: column;
        align-items: flex-start
    }

    .port-header {
        flex-direction: column;
        align-items: flex-start
    }
}

/* ══════════════════════════════════════════════════════════
       MOBILE MENU
    ══════════════════════════════════════════════════════════ */
/* Hamburger button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    cursor: pointer;
    border-radius: 6px;
    transition: background var(--ease);
    flex-shrink: 0;
}

.nav-hamburger:hover {
    background: rgba(255, 255, 255, .1)
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .35s ease, opacity .35s ease, width .35s ease;
    transform-origin: center;
}

/* Animated X state */
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 20, 53, .55);
    backdrop-filter: blur(3px);
    z-index: 980;
    opacity: 0;
    transition: opacity .3s ease;
}

.mobile-overlay.active {
    opacity: 1
}

/* Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--navy);
    z-index: 985;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .35);
}

.mobile-drawer.open {
    transform: translateX(0)
}

/* Drawer header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    flex-shrink: 0;
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: .7rem
}

.drawer-wordmark {
    font-size: .95rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: .07em
}

.drawer-tagline {
    font-size: .52rem;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .12em;
    text-transform: uppercase
}

.drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border-radius: 6px;
    cursor: pointer;
    transition: background var(--ease);
    flex-shrink: 0;
}

.drawer-close:hover {
    background: rgba(255, 255, 255, .18)
}

.drawer-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round
}

/* Drawer nav links */
.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 0;
    flex: 1;
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.5rem;
    font-size: .97rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    cursor: pointer;
    transition: color var(--ease), background var(--ease), padding-left var(--ease);
    border-left: 3px solid transparent;
}

.drawer-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .06);
    padding-left: 1.85rem;
    border-left-color: var(--orange);
}

.drawer-link.active {
    color: var(--white);
    border-left-color: var(--orange);
    background: rgba(245, 161, 0, .08);
}

.drawer-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transition: opacity var(--ease);
    flex-shrink: 0;
}

.drawer-link:hover svg,
.drawer-link.active svg {
    opacity: 1
}

/* Drawer CTA */
.drawer-cta {
    padding: 1.25rem 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    flex-shrink: 0;
}

.drawer-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: .95rem
}

@media(max-width:768px) {
    .nav-hamburger {
        display: flex
    }
}