@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --navy: #10234D;
  --navy-2: #0A1938;
  --green: #2B8458;
  --green-light: #52A77B;
  --paper: #F2F2F2;
  --white: #FFFFFF;
  --ink: #17223A;
  --muted: #667085;
  --line: rgba(16, 35, 77, .14);
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
  --container: 1200px;
  --header: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--green); color: var(--white); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 128px 0; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; transform: translateY(-150%); background: var(--white); color: var(--navy); padding: 8px 16px; border-radius: 4px; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--green-light); outline-offset: 4px; }

.site-header { position: fixed; z-index: 100; top: 0; width: 100%; height: var(--header); border-bottom: 1px solid transparent; transition: background .3s, box-shadow .3s, border-color .3s; }
.site-header.scrolled { background: rgba(242,242,242,.94); box-shadow: 0 8px 32px rgba(10,25,56,.08); backdrop-filter: blur(16px); border-color: #D6DBE4; }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { width: 136px; height: 64px; overflow: hidden; display: flex; align-items: center; background: #fff; padding: 2px 8px; border-radius: 2px; }
.brand img { width: 112px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 24px; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 600; }
.site-header.scrolled .main-nav { color: var(--navy); }
.main-nav > a:not(.nav-cta) { position: relative; padding: 8px 0; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--green); transition: width .25s; }
.main-nav > a:hover::after, .main-nav > a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: inline-flex; align-items: center; gap: 16px; border: 1px solid rgba(255,255,255,.35); padding: 12px 16px; }
.site-header.scrolled .nav-cta { border-color: var(--navy); }
.nav-cta { transition: color .3s ease, background-color .3s ease, border-color .3s ease, transform .3s ease; }
.nav-cta:hover { color: var(--white); background-color: var(--green); border-color: var(--green); transform: translateY(-2px); }
.site-header.scrolled .nav-cta:hover { color: var(--white); border-color: var(--green); }
.nav-cta span { color: var(--green-light); transition: color .3s ease, transform .3s ease; }
.nav-cta:hover span { color: var(--white); transform: translate(2px, -2px); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 12px; }

.hero { height: 100vh; min-height: 100vh; position: relative; display: flex; align-items: center; color: var(--white); background: var(--navy-2); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 74% 42%, rgba(43,132,88,.28), transparent 30%), linear-gradient(100deg, var(--navy-2) 0%, var(--navy) 55%, #163361 100%); }
.hero-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, #000, transparent 80%); }
.hero-layout { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: 96px; align-items: center; padding-top: 64px; }
.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 12px; color: var(--green-light); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; }
.eyebrow span { width: 32px; height: 2px; background: currentColor; }
.eyebrow-dark { color: var(--green); }
h1, h2, h3 { margin: 0; font-family: var(--display); line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 780px; font-size: clamp(46px, 5.2vw, 60px); font-weight: 600; }
h1 em { color: var(--green-light); font-style: normal; }
.hero-lead { max-width: 664px; margin: 32px 0 40px; color: rgba(255,255,255,.72); font-size: 19px; line-height: 1.65; }
.button { min-height: 56px; display: inline-flex; justify-content: center; align-items: center; gap: 24px; border: 0; padding: 16px 24px; font-weight: 700; font-size: 14px; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button-icon { display: block; flex: 0 0 auto; }
.button-icon-whatsapp { color: currentColor; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: var(--white); box-shadow: 0 12px 32px rgba(43,132,88,.2); }
.button-primary:hover { background: #246f4b; box-shadow: 0 16px 40px rgba(43,132,88,.3); }

.hero-building { width: min(100%, 500px); justify-self: end; position: relative; }
.building-visual { position: relative; z-index: 0; isolation: isolate; padding: 16px 16px 0; }
.building-visual::before { content: ""; position: absolute; z-index: -2; inset: 14% 6% 10%; background: radial-gradient(circle, rgba(82,167,123,.2), transparent 68%); filter: blur(24px); }
.building-visual::after { content: ""; position: absolute; z-index: -1; inset: 0 0 40px; background-color: var(--green-light); background-image: repeating-linear-gradient(135deg, transparent 0 27px, rgba(255,255,255,.14) 27px 28px); box-shadow: 0 28px 56px rgba(3,10,25,.2); }
.building-visual img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 32px 40px rgba(3,10,25,.26)); }
.tower-base { width: calc(100% + 32px); height: 72px; margin: -32px -16px 0; position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--green); box-shadow: 0 20px 40px rgba(3,10,25,.24); }
.tower-base b { font: 800 22px var(--display); letter-spacing: -.04em; }
.tower-base small { font-size: 7px; letter-spacing: .1em; }
.scroll-cue { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.52); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.scroll-cue i { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; position: relative; }
.scroll-cue i::after { content: ""; position: absolute; width: 5px; height: 5px; border-right: 1px solid #fff; border-bottom: 1px solid #fff; transform: rotate(45deg); top: 10px; left: 12px; animation: scroll 1.6s infinite; }
@keyframes scroll { 50% { transform: translateY(5px) rotate(45deg); } }

.section-heading { max-width: 720px; }
.section-heading h2, .ecosystem-intro h2, .results h2, .contact h2 { color: var(--navy); font-size: clamp(38px, 4.2vw, 56px); }

/* A cena visível tem 100vh; os 500vh da seção criam a distância de scroll para os cinco passos. */
.journey { --journey-progress: 0%; position: relative; height: 500vh; background: var(--navy-2); }
.journey-scene { position: sticky; top: 0; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; color: var(--white); background: var(--navy-2); }
.journey-canvas { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; display: block; transform: translateZ(0); backface-visibility: hidden; pointer-events: none; }
.journey-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(5,14,32,.9) 0%, rgba(5,14,32,.52) 45%, rgba(5,14,32,.26) 72%, rgba(5,14,32,.58) 100%), linear-gradient(0deg, rgba(5,14,32,.86) 0%, transparent 55%, rgba(5,14,32,.45) 100%); }
.journey-ui { position: relative; z-index: 3; height: 100%; padding-top: max(104px, calc(var(--header) + 24px)); padding-bottom: 48px; display: grid; grid-template-rows: auto 1fr auto; }
.journey-header { display: flex; justify-content: space-between; gap: 48px; align-items: flex-start; }
.journey-header .eyebrow { margin-bottom: 16px; }
.journey-header h2 { max-width: 600px; color: white; font-size: 48px; text-wrap: balance; }
.journey-status { flex: 0 0 auto; padding-left: 24px; border-left: 1px solid rgba(255,255,255,.28); text-align: right; text-transform: uppercase; letter-spacing: .12em; }
.journey-status span { display: block; color: rgba(255,255,255,.58); font-size: 10px; }
.journey-status strong { display: block; margin-top: 8px; color: white; font: 600 13px var(--display); }
.journey-status b { color: var(--green-light); font-size: 24px; }
.journey-steps { position: relative; align-self: end; width: min(760px, 100%); height: 264px; }
.journey-step { position: absolute; inset: auto 0 0; opacity: 0; visibility: hidden; transform: translateY(24px); transition: opacity .45s ease, transform .45s ease, visibility .45s; }
.journey-step.is-active { opacity: 1; visibility: visible; transform: none; }
.journey-step > p { margin: 0 0 16px; display: flex; align-items: center; gap: 16px; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; }
.journey-step > p b { display: grid; place-items: center; width: 40px; height: 40px; background: var(--green); color: white; font: 600 13px var(--display); }
.journey-step > p span { color: rgba(255,255,255,.6); }
.journey-step h3 { max-width: 720px; color: white; font-size: 48px; text-wrap: balance; }
.journey-step > div { max-width: 680px; margin-top: 16px; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.55; }
.journey-progress { position: relative; height: 18px; margin-top: 24px; border: 1px solid rgba(255,255,255,.38); display: grid; grid-template-columns: repeat(5, 1fr); }
.journey-progress > span { position: absolute; inset: 0 auto 0 0; z-index: -1; width: var(--journey-progress); background: var(--green); transition: width .16s linear; }
.journey-progress i { border-right: 1px solid rgba(255,255,255,.35); }
.journey-progress i:last-child { border: 0; }

.partners { padding: 64px 0; background: #E7E9EC; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partners-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.partners h2 { max-width: 416px; color: var(--navy); font-size: 20px; letter-spacing: -.02em; line-height: 1.35; }
.partner-logos { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.partner-logos > div { min-height: 72px; display: flex; justify-content: center; align-items: center; border-left: 1px solid rgba(16,35,77,.16); color: rgba(16,35,77,.5); }
.ibis-logo { flex-direction: column; line-height: .8; text-transform: uppercase; }
.ibis-logo strong { color: var(--navy); font: 800 28px var(--display); letter-spacing: -.06em; }
.ibis-logo span { color: var(--green); font-size: 9px; letter-spacing: .18em; }
.ibis-logo small { margin-top: 7px; font-size: 7px; letter-spacing: .12em; }
.partner-placeholder { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-align: center; }

.ecosystem { position: relative; overflow: hidden; }
.ecosystem-layout { display: grid; grid-template-columns: 1.05fr .7fr 1fr; gap: 64px; align-items: center; }
.ecosystem-intro > p:last-child { max-width: 520px; margin: 32px 0 0; color: var(--muted); font-size: 18px; }
.orbit { width: 264px; aspect-ratio: 1; position: relative; display: grid; place-items: center; justify-self: center; }
.orbit-line { position: absolute; inset: 12px; border: 1px solid rgba(43,132,88,.32); border-radius: 50%; }
.orbit-line::before { content: ""; position: absolute; inset: 32px; border: 1px dashed rgba(16,35,77,.2); border-radius: 50%; }
.orbit-core { width: 104px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: white; font: 700 24px var(--display); box-shadow: 0 16px 40px rgba(16,35,77,.18); }
.orbit-dot { position: absolute; width: 16px; height: 16px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 8px rgba(43,132,88,.1); }
.dot-a { top: 12px; left: 50%; }.dot-b { right: 18px; bottom: 52px; }.dot-c { left: 8px; bottom: 72px; }
.brand-stack article { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.brand-stack article:first-child { border-top: 1px solid var(--line); }
.brand-stack article > span { color: var(--green); font: 600 12px var(--display); }
.brand-stack h3 { color: var(--navy); font-size: 24px; }
.brand-stack p { margin: 10px 0 0; color: var(--muted); line-height: 1.6; }

.results { background: var(--navy-2); color: white; position: relative; overflow: hidden; }
.results::after { content: ""; position: absolute; width: 640px; aspect-ratio: 1; border: 1px solid rgba(82,167,123,.18); border-radius: 50%; right: -240px; top: -240px; box-shadow: 0 0 0 80px rgba(82,167,123,.03), 0 0 0 160px rgba(82,167,123,.02); }
.results-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; gap: 104px; align-items: end; }
.results h2 { color: white; }
.results-copy > p:last-child { max-width: 560px; margin: 32px 0 0; color: rgba(255,255,255,.6); font-size: 18px; }
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.metrics article { padding: 40px 32px; }
.metrics article + article { border-left: 1px solid rgba(255,255,255,.16); }
.metrics strong { display: block; color: var(--green-light); font: 600 clamp(64px, 7vw, 96px)/1 var(--display); letter-spacing: -.07em; }
.metrics .counter { font-variant-numeric: tabular-nums; }
.metrics sup { font-size: .34em; vertical-align: super; }
.metrics p { max-width: 176px; margin: 24px 0 0; color: rgba(255,255,255,.68); }

.testimonial-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 112px; align-items: start; }
.testimonial .section-heading h2 { font-size: clamp(38px, 4.2vw, 56px); text-wrap: balance; }
.quote { margin: 0; padding: 48px; background: white; border-top: 4px solid var(--green); box-shadow: 0 24px 72px rgba(16,35,77,.08); }
.quote blockquote { margin: 0; color: var(--navy); font: 500 clamp(24px, 2.6vw, 34px)/1.45 var(--display); letter-spacing: -.025em; }
.quote figcaption { margin-top: 40px; display: flex; align-items: center; gap: 16px; }
.quote figcaption > span { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--navy)); }
.quote figcaption strong, .quote figcaption small { display: block; }
.quote figcaption strong { color: var(--navy); font-size: 14px; }.quote figcaption small { color: var(--muted); font-size: 12px; }

.contact { background: var(--navy); color: white; }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 96px; align-items: start; }
.contact h2 { color: white; font-size: clamp(38px, 4.2vw, 56px); text-wrap: balance; }
.contact-copy > p:nth-of-type(2) { margin: 32px 0; color: rgba(255,255,255,.65); font-size: 18px; }
.contact-note { margin-top: 56px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-note strong, .contact-note span { display: block; }.contact-note strong { font: 600 15px var(--display); }.contact-note span { margin-top: 8px; color: rgba(255,255,255,.55); font-size: 13px; }
.contact-form { padding: 48px; background: var(--paper); color: var(--navy); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
.form-grid label { display: block; }
.form-grid label > span { display: block; margin-bottom: 8px; color: #4E5C77; font-size: 12px; font-weight: 700; }
.form-grid .full { grid-column: 1 / -1; }
input, textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(16,35,77,.25); border-radius: 0; background: transparent; color: var(--navy); padding: 8px 0 12px; outline: 0; transition: border-color .2s; }
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: var(--green); box-shadow: 0 2px 0 var(--green); }
input.invalid, textarea.invalid { border-color: #B42318; }
.form-footer { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.consent { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); font-size: 12px; }
.consent input { width: 16px; height: 16px; accent-color: var(--green); }
.contact-form .button { align-self: flex-start; }
.form-status { min-height: 24px; margin: 16px 0 0; color: var(--green); font-size: 13px; font-weight: 600; }

.footer { background: #08142E; color: rgba(255,255,255,.6); }
.footer-top { padding: 72px 0 64px; display: grid; grid-template-columns: 1.2fr .8fr 1.25fr .9fr; gap: 64px; }
.footer-brand img { width: 120px; background: white; padding: 4px 8px; }
.footer-brand p { max-width: 220px; margin: 24px 0 0; }
.footer h2 { margin: 0 0 24px; color: white; font: 700 12px var(--body); text-transform: uppercase; letter-spacing: .14em; }
.footer a { display: block; margin: 0 0 10px; font-size: 14px; transition: color .2s; }.footer a:hover { color: white; }
.footer address { margin: 0 0 24px; font-style: normal; font-size: 13px; line-height: 1.7; }.footer address strong { display: block; color: white; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.has-gsap .reveal { transition: none; }
.split-word { display: inline-block; overflow: clip; vertical-align: bottom; padding-bottom: .08em; margin-bottom: -.08em; }
.split-word-inner { display: inline-block; will-change: transform, opacity; }

@media (max-width: 1024px) {
  .section { padding: 104px 0; }
  .hero-layout { gap: 48px; }
  .ecosystem-layout { grid-template-columns: 1fr 1fr; }.orbit { display: none; }
  .results-grid, .contact-grid { gap: 64px; }
  .testimonial-grid { gap: 56px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --header: 72px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 80px 0; }
  .brand { width: 120px; height: 56px; }.brand img { width: 104px; }
  .menu-toggle { display: grid; gap: 7px; }.menu-toggle span { display: block; width: 24px; height: 2px; background: white; transition: transform .25s; }.site-header.scrolled .menu-toggle span { background: var(--navy); }
  .menu-toggle.active span:first-child { transform: translateY(4.5px) rotate(45deg); }.menu-toggle.active span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .main-nav { position: fixed; top: var(--header); left: 0; right: 0; display: none; align-items: stretch; gap: 0; padding: 24px 16px; background: var(--paper); color: var(--navy); box-shadow: 0 20px 40px rgba(10,25,56,.16); }
  .main-nav.open { display: flex; flex-direction: column; }.main-nav a { padding: 16px; border-bottom: 1px solid var(--line); }.main-nav .nav-cta { margin-top: 16px; border: 0; background: var(--green); color: white; justify-content: space-between; }
  .hero { height: 100vh; min-height: 100vh; padding: 104px 0 32px; }
  .hero-layout { grid-template-columns: 1fr; gap: 0; padding-top: 0; }
  h1 { font-size: clamp(40px, 12vw, 56px); }
  .hero-lead { font-size: 17px; margin: 24px 0 32px; }
  .hero-building { display: none; }.scroll-cue { display: none; }
  .journey { height: 500vh; }
  .journey-scene { min-height: 560px; }
  .journey-ui { padding-top: 96px; padding-bottom: 32px; }
  .journey-header { display: block; }
  .journey-header h2 { max-width: 88%; font-size: clamp(26px, 8vw, 36px); }
  .journey-header .eyebrow { margin-bottom: 12px; }
  .journey-status { position: absolute; top: 96px; right: 0; padding-left: 12px; }
  .journey-status > span { display: none; }
  .journey-status strong { margin-top: 0; }
  .journey-steps { width: 100%; height: 304px; }
  .journey-step h3 { max-width: 100%; font-size: clamp(30px, 9vw, 42px); }
  .journey-step > div { max-width: 100%; font-size: 14px; line-height: 1.5; }
  .journey-progress { margin-top: 16px; }
  .partners-row, .results-grid, .testimonial-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .partner-logos { grid-template-columns: 1fr; }.partner-logos > div { border-left: 0; border-top: 1px solid var(--line); }
  .ecosystem-layout { grid-template-columns: 1fr; }.brand-stack { margin-top: 16px; }
  .metrics strong { font-size: 64px; }.metrics article { padding: 32px 16px; }
  .quote { padding: 32px 24px; }.quote blockquote { font-size: 23px; }
  .contact-form { padding: 32px 24px; }.form-grid { grid-template-columns: 1fr; gap: 24px; }.form-grid .full { grid-column: auto; }.contact-note { margin-top: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }.footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 420px) {
  .hero .button, .contact-form .button { width: 100%; gap: 12px; }
  .hero .eyebrow { margin-bottom: 16px; }
  .hero-lead { font-size: 15px; line-height: 1.5; }
  .journey-ui { padding-top: 88px; }
  .journey-status { top: 88px; }
  .journey-header h2 { max-width: 82%; font-size: 25px; }
  .journey-steps { height: 320px; }
  .journey-step h3 { font-size: 29px; }
  .metrics { grid-template-columns: 1fr; }.metrics article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
}

@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; }
}
