

:root {
  --blue: #1f3073;
  --blue-deep: #101d50;
  --blue-dark: #081239;
  --orange: #f5821f;
  --orange-light: #ff9b3f;
  --paper: #f4f5f8;
  --white: #ffffff;
  --ink: #111936;
  --muted: #66708d;
  --line: rgba(31, 48, 115, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1320px, calc(100% - 96px)); margin: 0 auto; }
.section { padding: 120px 0; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 50%;
  width: min(1380px, calc(100% - 28px));
  height: 84px;
  transform: translateX(-50%);
  padding: 10px 20px 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(8,18,57,.88);
  box-shadow: 0 16px 48px rgba(3,8,30,.18);
  backdrop-filter: blur(16px);
}
.brand { position: relative; z-index: 2; width: 158px; }
.brand img { width: 100%; height: 62px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; gap: 25px; font-size: 14px; font-weight: 700; }
.nav > a { position: relative; padding: 12px 0; }
.nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .25s ease;
}
.nav > a:hover::after { width: 100%; }
.nav-store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
}
.nav-store span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 5px;
  font-size: 10px;
}
.nav-cta {
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(255,255,255,.06);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 8px;
  transition: .25s ease;
}
.nav-cta:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 42% 30%, rgba(41,68,155,.6), transparent 36%),
    linear-gradient(135deg, var(--blue-dark), var(--blue) 62%, #162a6c);
}
.hero-grid {
  min-height: 900px;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.hero-copy {
  align-self: center;
  padding-top: 92px;
  padding-right: 58px;
  animation: heroCopy .7s cubic-bezier(.2,.8,.2,1) both;
}
.eyebrow, .section-kicker {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}
.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(58px, 5.8vw, 88px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 800;
}
.hero h1 span { display: block; color: var(--white); }
.hero-lead {
  max-width: 570px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.8);
  font-size: 20px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 18px; margin-top: 38px; }
.button {
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-weight: 800;
  transition: transform .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--orange); box-shadow: 0 16px 38px rgba(245,130,31,.24); }
.button-primary:hover { background: var(--orange-light); box-shadow: 0 20px 48px rgba(245,130,31,.35); }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.54); background: rgba(255,255,255,.02); }
.button-ghost:hover { background: var(--white); color: var(--blue); }
.button-light { background: var(--white); color: var(--blue); }
.hero-visual {
  min-width: 0;
  position: relative;
  clip-path: polygon(24% 15%, 100% 15%, 100% 100%, 8% 100%, 0 72%, 17% 47%, 6% 47%);
  animation: heroVisual .9s .1s cubic-bezier(.2,.8,.2,1) both;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,30,81,.34), transparent 38%);
  pointer-events: none;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; animation: cinematic 14s ease-in-out infinite alternate; }
.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  width: 190px;
  padding: 18px 20px;
  border-left: 5px solid var(--orange);
  background: rgba(8,18,57,.84);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 4px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .16em;
}
.hero-stamp strong { color: var(--orange); font-size: 15px; }
.signal-line { position: absolute; z-index: 3; pointer-events: none; }
.signal-a {
  left: 0; bottom: -46px; width: 340px; height: 180px;
  background: var(--orange);
  clip-path: polygon(0 78%, 36% 78%, 48% 45%, 100% 45%, 100% 49%, 51% 49%, 42% 100%, 0 100%);
}
.signal-b {
  left: 43%; top: 44%; width: 130px; height: 220px;
  border-left: 4px solid var(--white); transform: rotate(32deg); opacity: .9;
}

.trust-bar { background: var(--orange); color: var(--white); }
.trust-grid { min-height: 82px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid p { margin: 0; padding: 8px 24px; font-size: 13px; font-weight: 800; border-right: 1px solid rgba(255,255,255,.32); }
.trust-grid p:first-child { padding-left: 0; }
.trust-grid p:last-child { border-right: 0; }
.trust-grid span { margin-right: 12px; color: rgba(255,255,255,.58); }

.positioning { background: var(--paper); }
.positioning-grid { display: grid; grid-template-columns: 1.05fr .8fr; gap: 12%; align-items: end; }
.positioning h2, .section-heading h2, .projects h2, .process h2, .about h2, .faq h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.positioning h2 em { color: var(--orange); font-style: normal; }
.positioning-copy { padding-left: 34px; border-left: 1px solid var(--line); color: var(--muted); font-size: 17px; line-height: 1.75; }
.positioning-copy p { margin: 0 0 18px; }

.solutions { background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.2fr .55fr; gap: 12%; align-items: end; margin-bottom: 60px; }
.section-heading > p, .projects-intro > p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0; }
.solution-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.solution-card {
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .35s ease, box-shadow .35s ease;
}
.solution-card:hover { transform: translateY(-8px); box-shadow: 0 24px 70px rgba(31,48,115,.13); }
.card-image { height: 260px; overflow: hidden; position: relative; background: var(--paper); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.solution-card:hover .card-image img { transform: scale(1.045); }
.card-image > span {
  position: absolute; left: 18px; top: 18px; padding: 8px 12px;
  background: var(--orange); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.card-body { padding: 28px; }
.card-number { margin: 0 0 24px; color: var(--orange); font-size: 12px; font-weight: 900; }
.card-body h3, .solution-card-cta h3 { margin: 0; font-size: 25px; letter-spacing: -.025em; }
.card-body > p:not(.card-number) { min-height: 76px; margin: 14px 0 24px; color: var(--muted); line-height: 1.6; }
.card-body button, .card-actions a, .project-panel button, .text-link, footer button {
  padding: 0 0 6px; border: 0; border-bottom: 2px solid var(--orange); background: transparent;
  color: var(--blue); font-size: 13px; font-weight: 900; display: inline-flex; gap: 20px; align-items: center;
}
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}
.card-actions a {
  border-bottom-color: var(--line);
  color: var(--muted);
}
.card-actions a:hover { color: var(--orange); border-bottom-color: var(--orange); }
.solution-card-cta {
  position: relative;
  padding: 46px 36px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(rgba(16,29,80,.72), rgba(16,29,80,.96)),
    url("/images/hero-instalacao.png") center/cover;
}
.solution-card-cta::before {
  content: ""; position: absolute; width: 130px; height: 80px; top: 0; right: 0; background: var(--orange);
  clip-path: polygon(40% 0,100% 0,100% 100%,0 100%);
}
.solution-card-cta h3 { margin-bottom: 28px; font-size: 31px; }
.solution-card-cta .section-kicker { margin-bottom: 16px; }

.projects { color: var(--white); background: var(--blue); overflow: hidden; }
.projects-intro { display: grid; grid-template-columns: 1.2fr .55fr; gap: 12%; align-items: end; margin-bottom: 58px; }
.projects-intro > p { color: rgba(255,255,255,.66); }
.project-showcase { display: grid; grid-template-columns: 1.42fr .8fr; min-height: 620px; background: var(--blue-deep); }
.project-showcase > img { width: 100%; height: 100%; object-fit: cover; clip-path: polygon(0 0,100% 0,87% 100%,0 100%); }
.project-panel { padding: 80px 56px 60px 34px; display: flex; flex-direction: column; justify-content: center; }
.project-panel > p { color: var(--orange); text-transform: uppercase; letter-spacing: .15em; font-size: 11px; font-weight: 900; }
.project-panel h3 { margin: 10px 0 28px; font-size: 36px; line-height: 1.12; letter-spacing: -.035em; }
.project-panel ul { margin: 0 0 36px; padding: 0; list-style: none; color: rgba(255,255,255,.7); line-height: 1.7; }
.project-panel li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.project-panel button { align-self: flex-start; color: var(--white); }

.process { color: var(--white); background: var(--blue-dark); position: relative; overflow: hidden; }
.process::after {
  content: ""; position: absolute; width: 420px; height: 220px; right: -80px; bottom: -80px;
  border: 34px solid var(--orange); transform: skewX(-34deg); opacity: .18;
}
.section-heading-light > p { color: rgba(255,255,255,.62); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); }
.process-card { min-height: 300px; padding: 40px 28px 20px; border-right: 1px solid rgba(255,255,255,.16); }
.process-card:last-child { border-right: 0; }
.process-card > span { color: var(--orange); font-size: 12px; font-weight: 900; }
.process-card h3 { margin: 90px 0 14px; font-size: 24px; }
.process-card p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.65; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .95fr 1fr; gap: 9%; align-items: center; }
.about-visual { min-height: 650px; position: relative; }
.about-visual::before {
  content: ""; position: absolute; z-index: 1; left: -24px; bottom: -24px; width: 52%; height: 20px; background: var(--orange);
}
.about-visual img { width: 100%; height: 650px; object-fit: cover; clip-path: polygon(0 0,100% 0,100% 87%,87% 100%,0 100%); }
.about-label {
  position: absolute; z-index: 2; right: -36px; bottom: 42px; max-width: 245px; padding: 22px 26px;
  background: var(--blue); color: var(--white); font-size: 15px; font-weight: 800; line-height: 1.4;
}
.about-copy > p:not(.section-kicker) { margin: 28px 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 32px 0 38px; }
.about-points p { margin: 0; padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.about-points span { color: var(--orange); margin-right: 10px; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .62fr 1fr; gap: 10%; }
.faq-intro > p:not(.section-kicker) { color: var(--muted); line-height: 1.7; max-width: 390px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item > button {
  width: 100%; padding: 24px 0; border: 0; background: transparent; color: var(--ink);
  display: flex; justify-content: space-between; gap: 28px; text-align: left; font-weight: 800; font-size: 17px;
}
.faq-item i { font-style: normal; color: var(--orange); font-size: 24px; line-height: .8; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: var(--muted); line-height: 1.7; }
.faq-item.is-active .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-active .faq-answer p { padding: 0 40px 24px 0; }

.final-cta { padding: 100px 0; color: var(--white); background: var(--blue); position: relative; overflow: hidden; }
.final-cta::after {
  content: ""; position: absolute; right: -100px; top: -80px; width: 430px; height: 330px; background: var(--orange);
  clip-path: polygon(48% 0,100% 0,100% 100%,0 100%);
}
.final-cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .55fr; gap: 12%; align-items: end; }
.final-cta-grid > div:last-child { padding-right: 36px; }
.final-cta-grid > div:last-child p { margin: 0 0 28px; color: rgba(255,255,255,.74); line-height: 1.7; }

footer { padding: 72px 0 24px; color: var(--white); background: #060d2a; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .55fr .7fr .65fr; gap: 7%; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-grid img { width: 170px; height: 88px; object-fit: contain; object-position: left; }
.footer-grid p { max-width: 340px; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.7; }
.footer-grid strong { margin-bottom: 10px; font-size: 13px; color: var(--orange); text-transform: uppercase; letter-spacing: .12em; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.66); font-size: 14px; }
.footer-grid a:hover { color: var(--white); }
.footer-grid button { color: var(--white); }
.footer-bottom { margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); display: flex; justify-content: space-between; color: rgba(255,255,255,.36); font-size: 12px; }

.whatsapp-float {
  position: fixed; z-index: 45; right: 22px; bottom: 22px; min-height: 48px; padding: 0 10px 0 18px;
  display: flex; align-items: center; gap: 14px; border-radius: 99px; color: var(--white); background: #18a957;
  box-shadow: 0 12px 32px rgba(0,0,0,.2); font-size: 13px; font-weight: 800; transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float i { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.18); font-style: normal; }

.modal-backdrop {
  position: fixed; z-index: 100; inset: 0; padding: 24px; display: grid; place-items: center;
  background: rgba(3,8,30,.78); backdrop-filter: blur(10px); animation: fadeIn .2s ease both;
}
.modal {
  width: min(630px, 100%); max-height: calc(100vh - 48px); overflow: auto; position: relative; padding: 46px;
  color: var(--ink); background: var(--white); box-shadow: 0 40px 120px rgba(0,0,0,.34); animation: modalIn .3s ease both;
}
.modal::before { content: ""; position: absolute; left: 0; top: 0; width: 120px; height: 8px; background: var(--orange); }
.modal-close { position: absolute; right: 18px; top: 14px; border: 0; background: none; color: var(--blue); font-size: 34px; font-weight: 300; }
.modal h2 { margin: 0; max-width: 480px; color: var(--blue); font-size: 42px; line-height: 1; letter-spacing: -.04em; }
.modal > p:not(.section-kicker) { color: var(--muted); line-height: 1.6; }
.modal form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.modal label { display: grid; gap: 7px; color: var(--blue); font-size: 12px; font-weight: 800; }
.modal label:nth-child(4), .modal form > button { grid-column: 1 / -1; }
.modal input, .modal select, .modal textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 5px; padding: 14px; outline: none; background: #fafbfc; color: var(--ink);
}
.modal textarea { resize: vertical; }
.modal input:focus, .modal select:focus, .modal textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,130,31,.12); }
.modal button:disabled { cursor: wait; opacity: .72; transform: none; }

.solution-page { min-height: 100vh; background: var(--blue-dark); }
.solution-header { top: 12px; }
.solution-detail {
  min-height: 100vh;
  padding: 132px 0 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 24%, rgba(41,68,155,.54), transparent 34%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
}
.solution-detail-grid {
  min-height: calc(100vh - 180px);
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 6%;
}
.solution-detail-copy h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(52px, 5.3vw, 82px);
  line-height: .96;
  letter-spacing: -.055em;
}
.solution-detail-copy > p:not(.section-kicker) {
  max-width: 610px;
  margin: 28px 0;
  color: rgba(255,255,255,.74);
  font-size: 18px;
  line-height: 1.7;
}
.solution-facts {
  max-width: 620px;
  margin: 0 0 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.solution-facts > div {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.2);
}
.solution-facts dt {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.solution-facts dd {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.55;
}
.solution-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.solution-back { display: inline-flex; color: rgba(255,255,255,.66); font-size: 13px; font-weight: 800; }
.solution-back:hover { color: var(--orange); }
.portfolio-carousel {
  min-width: 0;
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background: var(--blue-deep);
  clip-path: polygon(10% 0,100% 0,100% 88%,88% 100%,0 100%,0 12%);
}
.portfolio-track {
  height: 650px;
  display: flex;
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.portfolio-slide {
  min-width: 100%;
  height: 650px;
  margin: 0;
}
.portfolio-slide img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 54%, rgba(8,18,57,.74));
}
.portfolio-caption {
  position: absolute;
  z-index: 2;
  left: 40px;
  bottom: 38px;
  display: grid;
  gap: 5px;
}
.portfolio-caption span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.portfolio-caption strong { font-size: 18px; letter-spacing: .08em; }
.portfolio-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  color: var(--white);
  background: rgba(8,18,57,.54);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: .2s ease;
}
.portfolio-arrow:hover { background: var(--orange); border-color: var(--orange); }
.portfolio-arrow.previous { left: 24px; }
.portfolio-arrow.next { right: 24px; }
.portfolio-dots {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 42px;
  display: flex;
  gap: 7px;
}
.portfolio-dots button {
  width: 18px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.42);
  transition: width .2s ease, background .2s ease;
}
.portfolio-dots button.is-active { width: 34px; background: var(--orange); }
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
.form-status {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 15px;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1.5;
}
.form-status.success { color: #0f6332; background: #e9f8ef; border: 1px solid #bce8cd; }
.form-status.error { color: #8f2e23; background: #fff0ed; border: 1px solid #f3c5bd; }
.form-status a { flex: 0 0 auto; color: inherit; font-weight: 900; text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.solution-card:nth-child(2), .process-card:nth-child(2) { transition-delay: .08s; }
.solution-card:nth-child(3), .process-card:nth-child(3) { transition-delay: .16s; }
.process-card:nth-child(4) { transition-delay: .24s; }

@keyframes heroCopy { from { opacity: 0; transform: translateY(22px); } }
@keyframes heroVisual { from { opacity: 0; transform: translateX(34px); clip-path: polygon(100% 15%,100% 15%,100% 100%,100% 100%,100% 72%,100% 47%,100% 47%); } }
@keyframes cinematic { to { transform: scale(1.035); } }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }

@media (max-width: 1080px) {
  .container { width: min(100% - 48px, 960px); }
  .site-header { padding: 10px 16px 10px 22px; }
  .nav { gap: 16px; font-size: 13px; }
  .nav > a:nth-child(3) { display: none; }
  .hero-grid { grid-template-columns: 52% 48%; }
  .hero-copy { padding-right: 20px; }
  .hero h1 { font-size: 64px; }
  .solution-card { grid-column: span 6; }
  .solution-card-cta { grid-column: span 6; }
  .project-showcase { grid-template-columns: 1.15fr .85fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card:nth-child(2) { border-right: 0; }
  .process-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .final-cta::after { opacity: .2; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 36px, 620px); }
  .section { padding: 78px 0; }
  .site-header { position: fixed; top: 8px; width: calc(100% - 16px); height: 72px; padding: 6px 10px 6px 14px; }
  .brand { width: 142px; }
  .brand img { height: 64px; }
  .menu-toggle {
    position: relative; z-index: 52; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.38); border-radius: 6px;
    display: grid; place-content: center; gap: 6px; background: rgba(255,255,255,.06);
  }
  .menu-toggle span { width: 20px; height: 2px; background: var(--white); }
  .nav {
    position: fixed; inset: -8px; padding: 110px 26px 40px; display: flex; flex-direction: column; align-items: stretch; gap: 8px;
    background: var(--blue-dark); transform: translateX(100%); transition: transform .35s ease;
  }
  .nav.is-open { transform: none; }
  .nav > a, .nav > a:nth-child(3) { display: block; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 22px; }
  .nav-cta { margin-top: 18px; min-height: 54px; }
  .hero, .hero-grid { min-height: 910px; }
  .hero-grid { width: 100%; grid-template-columns: 1fr; grid-template-rows: 58% 42%; }
  .hero-copy { z-index: 2; align-self: auto; padding: 132px 18px 46px; background: linear-gradient(160deg, var(--blue-dark), var(--blue)); }
  .eyebrow { font-size: 10px; }
  .hero h1 { max-width: 550px; font-size: clamp(47px, 14vw, 66px); }
  .hero-lead { margin-top: 22px; font-size: 17px; }
  .hero-actions { gap: 10px; margin-top: 28px; }
  .button { padding: 0 17px; gap: 12px; font-size: 13px; }
  .hero-visual { min-height: 380px; clip-path: polygon(0 8%,22% 8%,30% 0,100% 0,100% 100%,0 100%); }
  .hero-stamp { right: 16px; bottom: 16px; width: 160px; }
  .signal-a { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding: 14px 0; }
  .trust-grid p { padding: 11px 8px; border: 0; font-size: 11px; }
  .trust-grid p:first-child { padding-left: 8px; }
  .positioning-grid, .section-heading, .projects-intro, .about-grid, .faq-grid, .final-cta-grid { grid-template-columns: 1fr; gap: 34px; }
  .positioning h2, .section-heading h2, .projects h2, .process h2, .about h2, .faq h2, .final-cta h2 { font-size: 44px; }
  .positioning-copy { padding: 24px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .section-heading, .projects-intro { margin-bottom: 38px; }
  .solution-grid { gap: 16px; }
  .solution-card, .solution-card-cta { grid-column: 1 / -1; }
  .card-image { height: 250px; }
  .solution-card-cta { min-height: 360px; }
  .project-showcase { grid-template-columns: 1fr; }
  .project-showcase > img { height: 380px; clip-path: polygon(0 0,100% 0,100% 88%,86% 100%,0 100%); }
  .project-panel { padding: 38px 26px 46px; }
  .project-panel h3 { font-size: 30px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: auto; padding: 32px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .process-card h3 { margin: 38px 0 12px; }
  .about-visual { min-height: auto; }
  .about-visual img { height: 470px; }
  .about-label { right: -8px; bottom: 22px; }
  .about-points { grid-template-columns: 1fr; }
  .final-cta-grid > div:last-child { padding-right: 0; }
  .final-cta::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .modal { padding: 38px 22px 26px; }
  .modal h2 { font-size: 36px; }
  .modal form { grid-template-columns: 1fr; }
  .modal label, .modal label:nth-child(4), .modal form > button { grid-column: 1; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 52px; height: 52px; padding: 0; justify-content: center; }
  .solution-header { top: 8px; }
  .solution-nav { display: none; }
  .solution-detail { padding: 112px 0 36px; }
  .solution-detail-grid { grid-template-columns: 1fr; gap: 42px; }
  .solution-detail-copy h1 { font-size: 52px; }
  .solution-detail-copy > p:not(.section-kicker) { font-size: 17px; }
  .solution-facts { grid-template-columns: 1fr; gap: 14px; }
  .portfolio-carousel, .portfolio-track, .portfolio-slide { min-height: 420px; height: 420px; }
  .portfolio-carousel { clip-path: polygon(8% 0,100% 0,100% 88%,88% 100%,0 100%,0 10%); }
  .portfolio-arrow { width: 42px; height: 42px; }
  .portfolio-arrow.previous { left: 14px; }
  .portfolio-arrow.next { right: 14px; }
  .portfolio-caption { left: 24px; bottom: 28px; }
  .portfolio-dots { right: 24px; bottom: 31px; }
}

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

[hidden] { display: none !important; }
.form-wide { grid-column: 1 / -1; }

/* LANDING PAGE DE ORÇAMENTO */
.budget-page { min-height: 100vh; background: var(--blue-dark); }
.budget-header { justify-content: space-between; }
.budget-back { color: var(--white); font-size: 13px; font-weight: 800; }
.budget-back:hover { color: var(--orange); }
.budget-main { min-height: 100vh; }
.budget-hero {
  min-height: 100vh;
  padding: 150px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 24%, rgba(45,75,175,.58), transparent 35%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
}
.budget-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 7%; align-items: center; }
.budget-copy h1 { margin: 16px 0 24px; font-size: clamp(48px, 5.7vw, 84px); line-height: .94; letter-spacing: -.055em; }
.budget-copy h1 span { color: var(--orange); }
.budget-copy > p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.7; }
.budget-benefits { display: grid; gap: 16px; margin: 36px 0 0; padding: 0; list-style: none; }
.budget-benefits li { display: grid; grid-template-columns: 190px 1fr; gap: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.13); }
.budget-benefits strong { color: var(--white); }
.budget-benefits span { color: rgba(255,255,255,.6); line-height: 1.5; }
.budget-form-card { padding: 46px; color: var(--ink); background: var(--white); box-shadow: 0 36px 100px rgba(0,0,0,.28); }
.budget-form-card h2 { margin: 8px 0 10px; color: var(--blue); font-size: clamp(34px, 3.3vw, 48px); line-height: 1; letter-spacing: -.04em; }
.budget-form-card > p:not(.section-kicker):not(.form-setup-note) { color: var(--muted); line-height: 1.6; }
.budget-form-card form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.budget-form-card label { display: grid; gap: 7px; color: var(--blue); font-size: 12px; font-weight: 800; }
.budget-form-card input, .budget-form-card select, .budget-form-card textarea { width: 100%; border: 1px solid var(--line); border-radius: 5px; padding: 14px; outline: none; background: #fafbfc; color: var(--ink); }
.budget-form-card input:focus, .budget-form-card select:focus, .budget-form-card textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,130,31,.12); }
.budget-form-card textarea { resize: vertical; }
.budget-form-card button:disabled { cursor: not-allowed; opacity: .58; transform: none; }
.form-setup-note { margin: 14px 0 0; padding: 10px 12px; color: #7c5b12; background: #fff8df; border: 1px solid #f0df9b; font-size: 12px; line-height: 1.5; }

@media (max-width: 900px) {
  .budget-grid { grid-template-columns: 1fr; gap: 44px; }
  .budget-hero { padding-top: 128px; }
}

@media (max-width: 620px) {
  .budget-header { padding-right: 18px; }
  .budget-back { font-size: 12px; }
  .budget-form-card { padding: 34px 22px; }
  .budget-form-card form { grid-template-columns: 1fr; }
  .budget-benefits li { grid-template-columns: 1fr; gap: 5px; }
}

.store-banner-section {
  padding: 72px 0;
  background: var(--white);
}

.store-banner-link {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(31, 48, 115, .16);
  transition: transform .3s ease, box-shadow .3s ease;
}

.store-banner-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 84px rgba(31, 48, 115, .24);
}

.store-banner-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

@media (max-width: 760px) {
  .store-banner-section {
    padding: 48px 0;
  }

  .store-banner-link {
    border-radius: 10px;
  }
}

/* Faixa contínua de clientes */
.client-logos {
  overflow: hidden;
  padding: 25px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.client-logos-viewport {
  width: 100%;
  overflow: hidden;
}

.client-logos-track {
  display: flex;
  width: max-content;
  animation: client-logos-scroll 85s linear infinite;
  will-change: transform;
}

.client-logos-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 50px;
  padding-right: 50px;
}

.client-logo {
  display: grid;
  place-items: center;
  flex: 0 0 190px;
  width: 190px;
  height: 190px;
  padding: 12px 18px;
  background: var(--white);
}

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

@keyframes client-logos-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .client-logos {
    padding: 17px 0;
  }

  .client-logos-track {
    animation-duration: 68s;
  }

  .client-logos-group {
    gap: 28px;
    padding-right: 28px;
  }

  .client-logo {
    flex-basis: 145px;
    width: 145px;
    height: 76px;
    padding: 8px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logos-track {
    animation-duration: 180s !important;
    animation-iteration-count: infinite !important;
  }
}
