:root {
    --bg: #090b0a;
    --bg-elevated: #0e110f;
    --bg-soft-dark: #121512;
    --paper: #f3f4f0;
    --paper-soft: #e8ebe5;
    --ink: #111411;
    --text: #f4f6f3;
    --muted: #9ca59d;
    --muted-dark: #667068;
    --green: #b9ff2c;
    --line: rgba(255,255,255,.11);
    --line-dark: rgba(17,20,17,.14);
    --container: 1180px;
    --header-h: 78px;
    --ease: cubic-bezier(.22,.8,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--green); color: var(--ink); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
section { position: relative; scroll-margin-top: var(--header-h); }
.section-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(180deg, rgba(185,255,44,.018), transparent 18%);
    transition: opacity .9s ease;
}
.section-reveal.section-visible::after { opacity: 1; }
.skip-link { position: fixed; left: 16px; top: -64px; z-index: 9999; padding: 11px 15px; background: var(--green); color: var(--ink); transition: top .2s; }
.skip-link:focus { top: 16px; }

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
/* Divisor sutil entre o header transparente e o Hero. Ele aparece apenas no topo. */
.site-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.12);
    transform: none;
    opacity: 1;
    pointer-events: none;
    transition: opacity .28s ease;
}
.site-header.scrolled::after,
body.menu-open .site-header::after { opacity: 0; }
.site-header.scrolled,
body.menu-open .site-header {
    background: rgba(9,11,10,.88);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; gap: 34px; }
.brand { position: relative; z-index: 1012; display: inline-flex; align-items: center; gap: 0; min-width: max-content; }
.brand-name,
.footer-logo {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -.075em;
    text-transform: lowercase;
    white-space: nowrap;
    transform-origin: left center;
}
.brand-name { margin-right: 38px; font-size: 28px; line-height: .92; letter-spacing: -.08em; }
.brand-image { display:block; width:auto; max-width:190px; height:34px; margin-right:38px; object-fit:contain; object-position:left center; }
.brand-divider { width: 1px; height: 18px; margin-right: 13px; background: rgba(255,255,255,.18); }
.brand-role { color: #7e8880; font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-link {
    position: relative;
    padding: 11px 0;
    color: #a4ada6;
    font-size: 12px;
    transition: color .2s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 1px;
    background: var(--green);
    transition: width .25s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: #fff; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.header-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0 10px 18px;
    border-left: 1px solid var(--line);
    font: 600 12px/1 'Manrope';
}
.header-contact span { color: var(--green); transition: transform .25s var(--ease); }
.header-contact:hover span { transform: translate(3px,-3px); }

/* O menu por ícone existe somente no mobile. Sem círculo, box ou fundo. */
.menu-toggle {
    display: none;
    position: relative;
    z-index: 1013;
    width: 34px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    appearance: none;
    cursor: pointer;
}
.menu-toggle span {
    position: absolute;
    right: 0;
    width: 25px;
    height: 1.5px;
    background: #fff;
    transform-origin: center;
    transition: top .32s var(--ease), transform .32s var(--ease), opacity .2s ease, width .25s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 7px; }
.menu-toggle span:nth-child(2) { top: 14px; width: 18px; }
.menu-toggle span:nth-child(3) { top: 21px; }
.menu-toggle:hover span:nth-child(2) { width: 25px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 14px; transform: rotate(-45deg); }

.menu-backdrop { display: none; }

.mobile-menu-contact { display: none; }

/* Shared */
.section-dark { background: var(--bg); color: var(--text); }
.section-light { background: var(--paper); color: var(--ink); }
.section-soft { background: var(--paper-soft); color: var(--ink); }
.section-label {
    margin: 0 0 22px;
    color: #9da79f;
    font: 600 10px/1 'Manrope';
    text-transform: uppercase;
    letter-spacing: .16em;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    margin-right: 10px;
    vertical-align: middle;
    background: var(--green);
}
.section-label span { color: #5d665f; }
.section-label-dark { color: #616a63; }
.section-label-dark::before { background: var(--ink); }
h1,h2,h3 { margin: 0; font-family: 'Manrope', sans-serif; letter-spacing: -.055em; }
h2 { font-size: clamp(42px, 5.3vw, 76px); line-height: .98; }
p { text-wrap: pretty; }
.btn {
    min-height: 50px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    font: 700 12px/1 'Manrope';
    transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--ink); }
.btn-primary:hover { background: #c8ff55; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark span { color: var(--green); }
.btn-dark:hover { background: #1b201c; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font: 600 12px/1 'Manrope'; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateY(3px); }
.text-link-light { color: #b6beb8; }

/* Ícones vetoriais dos links: evita renderização como emoji em celulares. */
.link-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    color: inherit;
}
.link-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Hero */
.hero {
    min-height: 100svh;
    padding: calc(var(--header-h) + 64px) 0 0;
    background: var(--bg);
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .09;
    background-image:
        radial-gradient(circle at 78% 24%, rgba(185,255,44,.09), transparent 24%),
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: auto, 96px 96px, 96px 96px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 94%);
}
.hero-layout {
    position: relative;
    z-index: 2;
    min-height: calc(100svh - var(--header-h) - 64px);
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 74px;
    align-items: center;
}
.hero-copy {
    position: relative;
    z-index: 4;
    align-self: center;
    padding: 10px 0 74px;
}
.hero h1 { max-width: 760px; font-size: clamp(58px, 6.6vw, 98px); line-height: .92; }
.hero h1 span { color: #a9b2ab; font-weight: 500; }
.hero-text { max-width: 610px; margin: 30px 0 34px; color: #929c94; font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-media {
    position: absolute;
    z-index: 2;
    right: -18px;
    bottom: 0;
    width: min(53%, 650px);
    height: min(92%, 810px);
    min-height: 590px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}
.portrait-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    transition: transform .55s var(--ease);
}
.hero-media.has-image:hover .portrait-image { transform: translateY(-5px) scale(1.005); }
.hero-bottom-line { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); z-index: 3; }
.hero-bottom-line span { display: block; height: 1px; background: var(--line); }

/* Intro */
.intro { padding: 132px 0 116px; }
.intro-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 110px; align-items: start; }
.intro-copy { padding-top: 42px; max-width: 600px; }
.intro-copy p { margin: 0; color: #5e665f; font-size: 15px; line-height: 1.8; }
.intro-copy .intro-lead { margin-bottom: 24px; color: var(--ink); font: 600 clamp(22px,2.25vw,30px)/1.45 'Manrope'; letter-spacing: -.03em; }
.principle { margin-top: 112px; padding-top: 28px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 30px; align-items: baseline; font: 500 clamp(18px,2vw,26px)/1.3 'Manrope'; letter-spacing: -.03em; }
.principle span { color: #717970; }
.principle strong { font-weight: 700; }


/* Negócios */
.businesses {
    padding: 112px 0 126px;
    overflow: visible;
}
.businesses-head {
    display: grid;
    grid-template-columns: 1fr minmax(280px, .72fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 58px;
}
.businesses-head h2 { max-width: 720px; font-size: clamp(42px,5vw,72px); }
.businesses-head > p { max-width: 520px; margin: 0 0 8px; color: #626b64; font-size: 14px; line-height: 1.8; }
.business-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(32px, 4.2vw, 72px);
    align-items: center;
    overflow: visible;
}
.business-logo-item {
    position: relative;
    min-width: 0;
    min-height: 150px;
    padding: 18px 8px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    outline: 0;
    overflow: visible;
    isolation: isolate;
}
.business-logo-image {
    display: block;
    width: auto;
    max-width: min(100%, 285px);
    height: auto;
    max-height: 92px;
    object-fit: contain;
    opacity: .62;
    filter: grayscale(1) contrast(1.08);
    transform: translateY(0) scale(1);
    transform-origin: center;
    transition: opacity .32s ease, filter .32s ease, transform .38s var(--ease);
}
.business-logo-item::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185,255,44,.18) 0%, rgba(185,255,44,0) 72%);
    opacity: 0;
    transform: translate(-50%,-44%) scale(.72);
    transition: opacity .35s ease, transform .4s var(--ease);
    pointer-events: none;
}
.business-tooltip {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: calc(100% - 8px);
    width: max-content;
    max-width: min(280px, 82vw);
    padding: 10px 12px 11px;
    display: grid;
    gap: 4px;
    color: #fff;
    background: #0e110f;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 7px);
    transition: opacity .22s ease, transform .28s var(--ease), visibility 0s linear .28s;
}
.business-tooltip::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -5px;
    width: 9px;
    height: 9px;
    background: #0e110f;
    border-left: 1px solid rgba(255,255,255,.1);
    border-top: 1px solid rgba(255,255,255,.1);
    transform: translateX(-50%) rotate(45deg);
}
.business-tooltip strong {
    color: var(--green);
    font: 700 10px/1.2 'Manrope', sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.business-tooltip small {
    color: #c3cac4;
    font-size: 11px;
    line-height: 1.45;
    white-space: normal;
}
.business-logo-item:hover .business-logo-image,
.business-logo-item:focus-visible .business-logo-image {
    opacity: 1;
    filter: grayscale(0) contrast(1);
    transform: translateY(-4px) scale(1.055);
}
.business-logo-item:hover::after,
.business-logo-item:focus-visible::after {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1.12);
}
.business-logo-item:hover .business-tooltip,
.business-logo-item:focus-visible .business-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    transition-delay: .08s, .08s, 0s;
}

/* Shared accordions */
.accordion-item { position: relative; }
.accordion-trigger {
    width: 100%;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    text-align: left;
    cursor: pointer;
}
.accordion-panel { height: 0; overflow: hidden; transition: height .42s var(--ease); }
.accordion-panel-inner { opacity: 0; transform: translateY(-8px); transition: opacity .26s ease, transform .34s var(--ease); }
.accordion-item.is-open .accordion-panel-inner { opacity: 1; transform: none; }
.accordion-plus {
    position: relative;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    transition: border-color .25s ease, background .25s ease, transform .35s var(--ease);
}
.accordion-plus i { position: absolute; display: block; width: 11px; height: 1px; background: var(--green); transition: transform .35s var(--ease); }
.accordion-plus i:last-child { transform: rotate(90deg); }
.accordion-item.is-open .accordion-plus { transform: rotate(45deg); border-color: rgba(185,255,44,.48); }
.accordion-plus-dark { border-color: rgba(17,20,17,.16); }
.accordion-plus-dark i { background: var(--ink); }
.accordion-item.is-open .accordion-plus-dark { border-color: rgba(17,20,17,.42); }

/* Expertise accordion */
.expertise { padding: 126px 0 132px; background: var(--bg-elevated); }
.expertise-head { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 80px; margin-bottom: 60px; }
.expertise-head > p { margin: 0 0 7px; max-width: 480px; color: #89938b; line-height: 1.75; font-size: 14px; }
.expertise-list { border-top: 1px solid var(--line); }
.expertise-row { border-bottom: 1px solid var(--line); isolation: isolate; }
.expertise-row::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(185,255,44,.035), rgba(255,255,255,.014) 52%, transparent 82%);
    opacity: 0;
    transform: scaleX(.985);
    transform-origin: left;
    transition: opacity .28s ease, transform .38s var(--ease);
}
.expertise-row:hover::before, .expertise-row.is-open::before { opacity: 1; transform: scaleX(1); }
.expertise-trigger {
    min-height: 126px;
    display: grid;
    grid-template-columns: 54px .82fr 1.18fr 42px;
    gap: 26px;
    align-items: center;
    padding-inline: 34px;
}
.expertise-number { color: #5b655d; font: 600 10px/1 'Manrope'; letter-spacing: .12em; padding-left: 4px; }
.expertise-title { font: 600 clamp(24px,2.5vw,34px)/1 'Manrope'; letter-spacing: -.05em; transition: color .24s ease, transform .3s var(--ease); }
.expertise-summary { max-width: 520px; color: #879189; font-size: 13px; line-height: 1.7; }
.expertise-row:hover .expertise-title { color: #fff; transform: translateX(4px); }
.expertise-row:hover .accordion-plus { border-color: rgba(185,255,44,.36); }
.expertise-detail {
    display: grid;
    grid-template-columns: 54px .82fr 1.18fr 42px;
    gap: 26px;
    padding: 0 34px 34px;
}
.expertise-detail p { grid-column: 2 / 4; margin: 0; max-width: 720px; color: #bdc5bf; font-size: 14px; line-height: 1.8; }
.expertise-detail span { grid-column: 2 / 4; margin-top: 4px; color: #626d64; font: 600 9px/1.5 'Manrope'; text-transform: uppercase; letter-spacing: .09em; }

/* Process */
.process { padding: 132px 0 94px; }
.process-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 116px; }
.process-title { position: sticky; top: calc(var(--header-h) + 42px); align-self: start; }
.process-title > p:last-child { margin: 30px 0 0; max-width: 390px; color: #616960; line-height: 1.75; font-size: 14px; }
.process-steps { border-top: 1px solid var(--line-dark); min-height: 0; }
.process-card {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line-dark);
    transition: background .28s ease;
}
.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(17,20,17,.035), transparent 68%);
    opacity: 0;
    transition: opacity .28s ease;
}
.process-card:hover::before, .process-card.is-open::before { opacity: 1; }
.process-trigger {
    position: relative;
    z-index: 1;
    min-height: 134px;
    padding: 30px 30px;
    display: grid;
    grid-template-columns: 52px 1fr 38px;
    gap: 24px;
    align-items: center;
}
.process-number { color: #7c857d; font: 600 10px/1 'Manrope'; letter-spacing: .12em; padding-left: 4px; }
.process-copy { display: grid; gap: 8px; }
.process-copy strong { font: 600 clamp(24px,2.25vw,32px)/1.06 'Manrope'; letter-spacing: -.05em; transition: transform .3s var(--ease); }
.process-copy small { color: #677067; font-size: 12px; line-height: 1.55; }
.process-card:hover .process-copy strong { transform: translateX(3px); }
.process-detail { position: relative; z-index: 1; padding: 0 78px 32px 112px; }
.process-detail p { margin: 0; max-width: 650px; color: #505951; font-size: 14px; line-height: 1.8; }

/* Manifesto */
.manifesto { padding: 118px 0 126px; background: var(--bg-soft-dark); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.manifesto-inner { position: relative; z-index: 1; }
.manifesto p { margin: 0 0 12px; color: #667068; font: 500 clamp(22px,3vw,38px)/1.2 'Manrope'; letter-spacing: -.04em; }
.manifesto h2 { max-width: 1080px; min-height: 1.08em; font-size: clamp(56px,8vw,118px); color: #fff; }
.typing-line { display: block; }
.typing-text { white-space: pre-wrap; }
.typing-tail { display: inline-flex; align-items: baseline; white-space: nowrap; }
.typing-final-word { white-space: nowrap; }
.typing-dots { display: inline-flex; white-space: nowrap; color: var(--green); letter-spacing: .015em; }
.typing-dots i { opacity: 0; font-style: normal; }
.typing-line.is-typed .typing-dots i:first-child { animation: typingDotOne 1.15s steps(1,end) infinite; }
.typing-line.is-typed .typing-dots i:last-child { animation: typingDotTwo 1.15s steps(1,end) infinite; }
@keyframes typingDotOne {
    0%, 24% { opacity: 0; }
    25%, 100% { opacity: 1; }
}
@keyframes typingDotTwo {
    0%, 49% { opacity: 0; }
    50%, 100% { opacity: 1; }
}

/* Contact */
.contact { padding: 128px 0 136px; }
.contact-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 100px; align-items: end; }
.contact-side { padding-bottom: 4px; }
.contact-side > p { max-width: 530px; margin: 0 0 28px; color: #5e675f; font-size: 15px; line-height: 1.75; }

/* Footer */
.site-footer { background: #070907; color: var(--text); padding: 92px 0 26px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; padding-bottom: 62px; border-bottom: 1px solid var(--line); }
.footer-top h2 { font-size: clamp(42px,5vw,68px); }
.footer-cta { min-width: 235px; height: 54px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid var(--line); color: #d9dfda; font: 600 12px/1 'Manrope'; transition: background .25s ease, color .25s ease, border-color .25s ease; }
.footer-cta span { color: var(--green); }
.footer-cta:hover { background: var(--green); color: var(--ink); border-color: var(--green); }
.footer-cta:hover span { color: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1.5fr .65fr .65fr .95fr; gap: 54px; padding: 58px 0 62px; }
.footer-logo { display: inline-block; margin-bottom: 18px; font-size: 42px; line-height: .9; letter-spacing: -.075em; }
.footer-logo-image { display:block; width:auto; max-width:230px; max-height:62px; object-fit:contain; object-position:left center; }
.footer-brand-block p, .footer-note p { margin: 0; max-width: 310px; color: #68716a; font-size: 12px; line-height: 1.7; }
.footer-contact-card { display: grid; gap: 18px; width: 100%; max-width: 330px; }
.footer-contact-list { display: grid; gap: 13px; }
.footer-contact-item { display: grid; grid-template-columns: 30px minmax(0,1fr); gap: 10px; align-items: center; color: #a6afa8; }
.footer-contact-item > span {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
    color: #747e76;
}
.footer-contact-item svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact-item div { min-width: 0; display: grid; gap: 3px; }
.footer-contact-item small { color: #566058; font: 600 8px/1 'Manrope'; text-transform: uppercase; letter-spacing: .12em; }
.footer-contact-item a { overflow-wrap: anywhere; color: #b4bcb6; font-size: 11px; line-height: 1.35; }
.footer-contact-item:hover > span { color: var(--green); border-color: rgba(185,255,44,.24); }
.footer-contact-item:hover a { color: var(--green); transform: none; }
.social-links { display: flex; gap: 9px; margin-top: 22px; }
.social-button {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 50%;
    color: #9aa49c;
    transition: color .25s ease, border-color .25s ease, background .25s ease, transform .28s var(--ease);
}
.social-button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.social-button .whatsapp-brand-icon,
.footer-contact-item .whatsapp-brand-icon,
.whatsapp-float .whatsapp-brand-icon { fill: currentColor; stroke: none; }
.social-button:hover { color: var(--ink); background: var(--green); border-color: var(--green); transform: translateY(-3px); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-column > span { margin-bottom: 7px; color: #59625b; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.footer-column a { color: #a6afa8; font-size: 12px; transition: color .2s ease, transform .2s ease; }
.footer-column a:hover { color: var(--green); transform: translateX(3px); }
.footer-bottom { padding-top: 22px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #4f5751; font-size: 9px; }
.footer-bottom a { color: #727b74; transition: color .2s ease; }
.footer-bottom a:hover { color: var(--green); }

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 900;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--green);
    border-radius: 50%;
    background: var(--green);
    color: var(--ink);
    box-shadow: 0 14px 34px rgba(0,0,0,.28), 0 0 0 0 rgba(185,255,44,.18);
    animation: whatsappFloatBreath 2.6s ease-in-out infinite;
    transition: transform .28s var(--ease), background .25s ease, box-shadow .25s ease;
}
.whatsapp-float svg { position: relative; z-index: 2; width: 26px; height: 26px; display: block; }
.whatsapp-float .whatsapp-brand-icon { fill: currentColor; stroke: none; transform: translateZ(0); }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.035); background: #c8ff55; box-shadow: 0 18px 40px rgba(0,0,0,.32); }
.whatsapp-pulse {
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(185,255,44,.65);
    border-radius: inherit;
    animation: whatsappPulse 2.6s ease-out infinite;
}
@keyframes whatsappPulse {
    0% { opacity: .34; transform: scale(1); }
    64%, 100% { opacity: 0; transform: scale(1.42); }
}
@keyframes whatsappFloatBreath {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-2px) scale(1.025); }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }

@media (max-width: 1040px) {
    .hero-layout { gap: 48px; }
    .intro-grid { gap: 70px; }
    .process-grid { gap: 64px; }
    .contact-grid { gap: 70px; }
    .expertise-trigger { grid-template-columns: 50px .85fr 1.15fr 40px; gap: 20px; padding-inline: 28px; }
    .expertise-detail { grid-template-columns: 50px .85fr 1.15fr 40px; gap: 20px; padding-inline: 28px; }
    .process-detail { padding-left: 104px; padding-right: 68px; }
}

/* Mobile/tablet: somente aqui o menu vira o ícone de três linhas. */
@media (max-width: 900px) {
    :root { --header-h: 94px; }
    .container { width: min(86%, var(--container)); }
    .header-inner { justify-content: space-between; gap: 20px; }
    .site-header::after { left: 0; width: 100%; transform: none; }
    .brand { flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; }
    .brand-role { display: block; color: #747e76; font-size: 7.5px; line-height: 1.15; letter-spacing: .09em; white-space: nowrap; }
    .brand-divider { display: none; }
    .header-contact { display: none; }
    .brand-name { margin-right: 0; font-size: 27px; }
    .brand-image { height:32px; max-width:165px; margin-right:0; }
    .menu-toggle { display: block; flex: 0 0 auto; z-index: 1040; }

    .main-nav {
        position: fixed;
        z-index: 1030;
        top: 0;
        right: 0;
        width: min(370px, 86vw);
        height: 100dvh;
        margin: 0;
        padding: calc(var(--header-h) + 38px) 10vw 42px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(10,12,10,.985);
        border-left: 1px solid rgba(255,255,255,.09);
        box-shadow: -36px 0 90px rgba(0,0,0,.22);
        transform: translateX(104%);
        visibility: hidden;
        transition: transform .46s var(--ease), visibility 0s linear .46s;
    }
    .main-nav.open {
        transform: translateX(0);
        visibility: visible;
        transition: transform .46s var(--ease), visibility 0s;
    }
    .nav-link {
        display: block;
        padding: 19px 0;
        border-bottom: 1px solid rgba(255,255,255,.09);
        color: #c3cac4;
        font: 600 clamp(27px,7vw,36px)/1 'Manrope';
        letter-spacing: -.045em;
        transition: color .25s ease, padding-left .3s var(--ease);
    }
    .nav-link::after { left: 0; bottom: -1px; }
    .nav-link:hover,
    .nav-link.active { color: #fff; padding-left: 5px; }
    .nav-link:hover::after,
    .nav-link.active::after { width: 100%; }

    .mobile-menu-contact {
        margin-top: 30px;
        min-height: 72px;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        border: 1px solid rgba(185,255,44,.28);
        border-radius: 8px;
        background: var(--green);
        color: var(--ink);
        font: 600 clamp(27px,7vw,36px)/1 'Manrope';
        letter-spacing: -.045em;
        transition: transform .25s var(--ease), background .25s ease, border-color .25s ease;
    }
    .mobile-menu-contact .link-icon { width: 24px; height: 24px; flex-basis: 24px; color: var(--ink); }
    .mobile-menu-contact:hover { transform: translateY(-2px); background: #c8ff55; border-color: #c8ff55; }

    .menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1005;
        border: 0;
        padding: 0;
        background: rgba(0,0,0,.54);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        backdrop-filter: blur(2px);
        transition: opacity .35s ease, visibility 0s linear .35s;
    }
    body.menu-open .menu-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity .35s ease, visibility 0s;
    }
}

@media (max-width: 780px) {
    :root { --header-h: 98px; }
    .container { width: min(80%, var(--container)); }

    .hero {
        min-height: max(700px, 88svh);
        padding: calc(var(--header-h) + 44px) 0 0;
        align-items: stretch;
    }
    .hero-layout {
        position: relative;
        display: block;
        min-height: calc(max(700px, 88svh) - var(--header-h) - 44px);
    }
    .hero-copy {
        position: relative;
        z-index: 4;
        width: 100%;
        /* Conteúdo um pouco mais abaixo, sem aumentar novamente a altura total do Hero. */
        padding: 40px 0 174px;
    }
    .hero h1 {
        max-width: 100%;
        font-size: clamp(43px,12.7vw,68px);
        line-height: .95;
        text-shadow: 0 8px 34px rgba(0,0,0,.24);
    }
    .hero-text {
        position: relative;
        z-index: 4;
        max-width: 92%;
        margin: 24px 0 28px;
        color: #aab2ac;
        font-size: 14px;
        line-height: 1.72;
        text-shadow: 0 2px 18px rgba(0,0,0,.55);
    }
    .hero-actions {
        position: relative;
        z-index: 5;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
    .hero-actions .btn { width: 100%; }

    /* Foto provisória fica solta, à direita e atrás do conteúdo. */
    .hero-media {
        position: absolute;
        z-index: 1;
        right: -46vw;
        bottom: 0;
        width: min(146vw, 930px);
        min-height: 0;
        height: 103%;
        opacity: .54;
        pointer-events: none;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }
    .hero-media::before {
        content: '';
        position: absolute;
        z-index: 3;
        inset: -8% 39% -8% -20%;
        background: linear-gradient(90deg, rgba(9,11,10,.96) 0%, rgba(9,11,10,.69) 40%, rgba(9,11,10,.08) 78%, rgba(9,11,10,0) 100%);
        pointer-events: none;
    }
    .portrait-image {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: contain;
        object-position: right bottom;
        filter: saturate(.76) contrast(1.04);
        transform: none !important;
    }

    .intro, .expertise, .process, .contact { padding: 84px 0; }
    .intro-grid, .expertise-head, .process-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .intro-copy { padding-top: 0; }
    .principle { margin-top: 66px; flex-direction: column; align-items: flex-start; gap: 8px; }
    .expertise-head { margin-bottom: 40px; }
    .expertise-head > p { margin: 0; }
    .expertise-trigger { min-height: 112px; grid-template-columns: 38px 1fr 36px; gap: 13px; padding: 22px 18px; }
    .expertise-number { align-self: start; padding-top: 7px; padding-left: 2px; }
    .expertise-title { font-size: 25px; }
    .expertise-summary { grid-column: 2 / 3; margin-top: 2px; }
    .expertise-trigger .accordion-plus { grid-column: 3; grid-row: 1 / 3; align-self: center; }
    .expertise-detail { display: block; padding: 0 18px 28px 69px; }
    .expertise-detail p { margin-bottom: 13px; }
    .process-title { position: static; }
    .process-steps { min-height: 0 !important; }
    .process-trigger { min-height: 112px; grid-template-columns: 38px 1fr 34px; gap: 14px; padding: 24px 18px; }
    .process-number { padding-left: 2px; }
    .process-copy strong { font-size: 24px; }
    .process-detail { padding: 0 18px 28px 70px; }
    .manifesto { padding: 82px 0 88px; }
    .manifesto p { font-size: clamp(19px,5.4vw,28px); }
    .manifesto h2 { font-size: clamp(34px,9.1vw,58px); line-height: 1.02; }
    .contact-side { padding-bottom: 0; }
    .contact-side .btn { width: 100%; }
    .site-footer { padding-top: 70px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 44px; }
    .footer-cta { width: 100%; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 26px; padding: 44px 0; }
    .footer-brand-block, .footer-note { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
    .whatsapp-float { right: 5%; bottom: 20px; width: 58px; height: 58px; }
    .whatsapp-float svg { width: 29px; height: 29px; }
}


@media (max-width: 780px) {
    .businesses { padding: 84px 0 94px; }
    .businesses-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 34px; }
    .businesses-head > p { margin: 0; }
    .business-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 26px; row-gap: 30px; }
    .business-logo-item { min-height: 112px; padding: 12px 0 20px; }
    .business-logo-image { max-width: 88%; max-height: 70px; }
    .business-tooltip { top: calc(100% - 4px); }
}

@media (max-width: 520px) {
    .business-grid { column-gap: 18px; row-gap: 24px; }
    .business-logo-item { min-height: 102px; padding: 10px 0 18px; }
    .business-logo-image { max-width: 92%; max-height: 62px; }

    .brand-name { margin-right: 0; font-size: 26px; }
    .brand-image { height:30px; max-width:150px; }
    .brand-role { font-size: 7px; letter-spacing: .07em; }
    .footer-logo { font-size: 39px; }
    .footer-logo-image { max-width:200px; max-height:56px; }
    .container { width: 80%; }
    .main-nav {
        width: min(340px, 84vw);
        padding-left: 34px;
        padding-right: 34px;
    }
    h2 { font-size: clamp(38px,11.5vw,54px); }
    .hero { min-height: max(690px, 88svh); padding-top: calc(var(--header-h) + 48px); }
    .hero-layout { min-height: calc(max(690px, 88svh) - var(--header-h) - 48px); }
    .hero-copy { padding: 42px 0 168px; }
    .hero h1 { font-size: clamp(39px,11.8vw,56px); }
    .hero-media { right: -57vw; bottom: 0; width: 158vw; height: 106%; opacity: .52; }
    .hero-media::before { left: -7%; right: 40%; }
    .expertise-summary { font-size: 11px; line-height: 1.55; }
    .expertise-trigger { padding-inline: 14px; grid-template-columns: 34px 1fr 34px; gap: 10px; }
    .expertise-detail { padding-left: 58px; padding-right: 14px; }
    .process-steps { min-height: 0 !important; }
    .process-trigger { padding-inline: 14px; grid-template-columns: 34px 1fr 32px; gap: 10px; }
    .process-copy small { font-size: 10px; }
    .process-detail { padding-left: 58px; padding-right: 14px; }
    .manifesto h2 { font-size: clamp(29px,8.5vw,42px); }
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand-block, .footer-note { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .whatsapp-pulse { display: none; }
    .whatsapp-float { animation: none; }
    .typing-line.is-typed .typing-dots i { opacity: 1; }
}

.process-tags { display:block; margin-top:12px; color:#7b847d; font-size:11px; line-height:1.55; }

/* V28 — negócios, tooltip responsivo e proteção contra overflow horizontal */
html,
body {
    max-width:100%;
    overflow-x:clip;
}

.businesses {
    overflow-x:clip;
    overflow-y:visible;
}
.business-grid {
    min-width:0;
    max-width:100%;
}
.business-logo-item {
    max-width:100%;
}
.business-tooltip {
    box-sizing:border-box;
}
.business-empty-state {
    min-height:120px;
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px 20px;
    border:1px dashed rgba(17,20,17,.2);
    border-radius:10px;
    color:#5f685f;
    background:rgba(255,255,255,.28);
}
.business-empty-icon {
    flex:0 0 42px;
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#fff;
    color:#6b746c;
}
.business-empty-icon svg {
    width:20px;
    height:20px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.5;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.business-empty-state > div { display:grid; gap:4px; min-width:0; }
.business-empty-state strong { color:var(--ink); font:700 13px/1.35 'Manrope'; }
.business-empty-state span { font-size:11px; line-height:1.5; }

@media (max-width:780px) {
    .business-grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
        column-gap:22px;
        row-gap:24px;
    }
    .business-logo-item {
        min-height:120px;
        padding:8px 0 22px;
    }
    .business-logo-image {
        width:auto;
        max-width:100%;
        max-height:82px;
    }
    .business-tooltip {
        left:50%;
        width:min(220px,145%);
        max-width:145%;
        transform:translate(-50%,6px);
    }
    .business-logo-item:hover .business-tooltip,
    .business-logo-item:focus-visible .business-tooltip {
        transform:translate(-50%,0);
    }
}

@media (max-width:520px) {
    .business-grid {
        column-gap:16px;
        row-gap:18px;
    }
    .business-logo-item {
        min-height:116px;
        padding:6px 0 20px;
    }
    .business-logo-image {
        max-width:100%;
        max-height:78px;
    }
    .business-tooltip {
        width:min(205px,148%);
        max-width:148%;
        padding:9px 10px 10px;
    }
    .business-tooltip strong { font-size:9px; }
    .business-tooltip small { font-size:10px; line-height:1.4; }
    .business-empty-state { width:80%; min-height:0; padding:15px; }
}

/* V29 — logos de Outros negócios maiores, sem alterar outras seções */
@media (min-width: 781px) {
    .businesses .business-grid {
        width: min(calc(100% - 48px), 1320px);
        max-width: 1320px;
        gap: clamp(24px, 2.8vw, 42px);
    }
    .businesses .business-logo-item {
        min-height: 178px;
        padding: 18px 4px 34px;
    }
    .businesses .business-logo-image {
        width: 100%;
        max-width: 330px;
        height: 116px;
        max-height: 116px;
        object-fit: contain;
    }
}

@media (max-width: 780px) {
    .businesses .business-grid {
        width: 92%;
        max-width: 92%;
        margin-inline: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 14px;
        row-gap: 22px;
    }
    .businesses .business-logo-item {
        min-width: 0;
        min-height: 138px;
        padding: 8px 0 24px;
    }
    .businesses .business-logo-image {
        width: 100%;
        max-width: 100%;
        height: 96px;
        max-height: 96px;
        object-fit: contain;
    }
    .businesses .business-tooltip {
        width: min(210px, calc(100vw - 32px));
        max-width: calc(100vw - 32px);
    }
    .businesses .business-logo-item:nth-child(odd) .business-tooltip {
        left: 0;
        right: auto;
        transform: translate(0, 6px);
    }
    .businesses .business-logo-item:nth-child(even) .business-tooltip {
        left: auto;
        right: 0;
        transform: translate(0, 6px);
    }
    .businesses .business-logo-item:nth-child(odd):hover .business-tooltip,
    .businesses .business-logo-item:nth-child(odd):focus-visible .business-tooltip,
    .businesses .business-logo-item:nth-child(even):hover .business-tooltip,
    .businesses .business-logo-item:nth-child(even):focus-visible .business-tooltip {
        transform: translate(0, 0);
    }
    .businesses .business-logo-item:nth-child(odd) .business-tooltip::before {
        left: 28%;
    }
    .businesses .business-logo-item:nth-child(even) .business-tooltip::before {
        left: 72%;
    }
}

@media (max-width: 520px) {
    .businesses .business-grid {
        width: 94%;
        max-width: 94%;
        column-gap: 12px;
        row-gap: 18px;
    }
    .businesses .business-logo-item {
        min-height: 128px;
        padding: 6px 0 22px;
    }
    .businesses .business-logo-image {
        height: 90px;
        max-height: 90px;
    }
}

/* V30 — refinamento mobile da seção Outros negócios
   Desktop permanece exatamente com as dimensões da V29. */
@media (max-width: 780px) {
    .businesses {
        padding-top: 82px;
        padding-bottom: 68px;
    }
    .businesses .business-grid {
        row-gap: 12px;
    }
    .businesses .business-logo-item {
        min-height: 132px;
        padding-top: 4px;
        padding-bottom: 14px;
    }
    .businesses .business-logo-image {
        height: 108px;
        max-height: 108px;
    }
}

@media (max-width: 520px) {
    .businesses {
        padding-top: 78px;
        padding-bottom: 60px;
    }
    .businesses .business-grid {
        row-gap: 8px;
        column-gap: 10px;
    }
    .businesses .business-logo-item {
        min-height: 122px;
        padding-top: 2px;
        padding-bottom: 10px;
    }
    .businesses .business-logo-image {
        height: 104px;
        max-height: 104px;
    }
}

/* V31 — logos de Outros negócios maiores somente no mobile
   Mantém 2 por linha, reduz o gap horizontal e preserva o desktop da V30. */
@media (max-width: 780px) {
    .businesses .business-grid {
        width: 96%;
        max-width: 96%;
        column-gap: 10px;
    }
    .businesses .business-logo-item {
        min-height: 140px;
    }
    .businesses .business-logo-image {
        width: 100%;
        max-width: 100%;
        height: 120px;
        max-height: 120px;
        object-fit: contain;
    }
}

@media (max-width: 520px) {
    .businesses .business-grid {
        width: 96%;
        max-width: 96%;
        column-gap: 8px;
    }
    .businesses .business-logo-item {
        min-height: 134px;
    }
    .businesses .business-logo-image {
        height: 116px;
        max-height: 116px;
    }
}

/* V32 — refinamento final mobile de Outros negócios
   Logos maiores, menos espaço entre linhas e menos vazio no final da seção.
   Desktop permanece inalterado. */
@media (max-width: 780px) {
    .businesses {
        padding-bottom: 48px;
    }
    .businesses .business-grid {
        width: 100%;
        max-width: 100%;
        column-gap: 6px;
        row-gap: 5px;
    }
    .businesses .business-logo-item {
        min-height: 142px;
        padding-top: 1px;
        padding-bottom: 7px;
    }
    .businesses .business-logo-image {
        width: 100%;
        max-width: 100%;
        height: 132px;
        max-height: 132px;
        object-fit: contain;
    }
}

@media (max-width: 520px) {
    .businesses {
        padding-bottom: 40px;
    }
    .businesses .business-grid {
        width: 100%;
        max-width: 100%;
        column-gap: 4px;
        row-gap: 2px;
    }
    .businesses .business-logo-item {
        min-height: 136px;
        padding-top: 0;
        padding-bottom: 5px;
    }
    .businesses .business-logo-image {
        height: 128px;
        max-height: 128px;
    }
}


/* V33 — refinamento seguro de Outros negócios + Processo
   Mantém o grid dentro da mesma largura das demais seções, permite tooltip
   ultrapassar visualmente a seção sem ser cortado e remove espaços reservados. */
.businesses {
    position: relative;
    z-index: 20;
    overflow: visible;
    padding-bottom: 84px;
}
.businesses .business-grid {
    width: min(calc(100% - 48px), var(--container));
    max-width: var(--container);
    margin-inline: auto;
    overflow: visible;
}
.businesses .business-logo-item {
    z-index: 1;
    overflow: visible;
}
.businesses .business-logo-item:hover,
.businesses .business-logo-item:focus-within,
.businesses .business-logo-item:focus-visible {
    z-index: 30;
}
.businesses .business-tooltip {
    z-index: 60;
}

/* O Processo não reserva mais a altura do maior painel fechado.
   Ao abrir um item, a própria seção cresce naturalmente com a animação. */
.process-steps { min-height: 0 !important; }

@media (max-width: 900px) {
    .businesses .business-grid {
        width: min(86%, var(--container));
        max-width: var(--container);
    }
}

@media (max-width: 780px) {
    .businesses {
        padding-bottom: 34px;
        overflow: visible;
    }
    .businesses .business-grid {
        width: min(80%, var(--container));
        max-width: var(--container);
        column-gap: 6px;
        row-gap: 2px;
    }
    .businesses .business-logo-item {
        min-width: 0;
        max-width: 100%;
    }
    .businesses .business-tooltip {
        max-width: min(220px, calc(100vw - 24px));
    }
}

@media (max-width: 520px) {
    .businesses {
        padding-bottom: 28px;
    }
    .businesses .business-grid {
        width: 80%;
        max-width: 80%;
        column-gap: 4px;
        row-gap: 0;
    }
}
