:root {
  --blue: #0838dc;
  --blue-dark: #061f8f;
  --red: #df172d;
  --ink: #121722;
  --ink-soft: #4f5665;
  --line: #e5e8ee;
  --surface: #f5f7fb;
  --white: #ffffff;
  --green: #25d366;
  --container: 1180px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
  scroll-margin-top: var(--header-height);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(18, 23, 34, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--container), calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 195px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.primary-nav > a:not(.nav-whatsapp) {
  position: relative;
  color: #303745;
  font-size: 0.94rem;
  font-weight: 700;
}

.primary-nav > a:not(.nav-whatsapp)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-whatsapp {
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nav-whatsapp:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.menu-button,
.mobile-only {
  display: none;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(420px, 0.92fr);
  gap: 18px;
  background: var(--white);
  scroll-margin-top: var(--header-height);
}

.hero-main {
  position: relative;
  min-height: 675px;
  overflow: hidden;
  background: #17203a;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-image-trigger {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: zoom-in;
}

.hero-image-trigger svg {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(4, 10, 25, 0.36);
  backdrop-filter: blur(8px);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.hero-image-trigger:hover svg,
.hero-image-trigger:focus-visible svg {
  background: var(--blue);
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 13, 35, 0.86) 0%, rgba(5, 13, 35, 0.5) 60%, rgba(5, 13, 35, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 13, 35, 0.56), transparent 55%);
}

.hero-content {
  position: absolute;
  inset: auto auto 10% 8%;
  z-index: 2;
  width: min(720px, 84%);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--red);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.9);
}

.hero-content h1 {
  max-width: 720px;
  margin: 22px 0 20px;
  font-size: clamp(3.25rem, 5vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero-content p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.92rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover {
  background: #bd1024;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--blue);
}

.button-light {
  color: var(--blue);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero-tile {
  position: relative;
  min-height: 328px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #17203a;
  color: var(--white);
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}

.hero-tile img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.hero-tile:hover img {
  transform: scale(1.055);
}

.hero-tile-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(5, 10, 28, 0.82), rgba(5, 10, 28, 0.03) 72%);
}

.hero-tile-content {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
}

.hero-tile-content strong,
.hero-tile-content small {
  display: block;
}

.hero-tile-content strong {
  margin-bottom: 2px;
  font-size: 1.25rem;
}

.hero-tile-content small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.tile-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(7px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.hero-tile:hover .tile-link,
.hero-tile:focus-visible .tile-link {
  opacity: 1;
  transform: translateY(0);
}

.trust-strip {
  min-height: 122px;
  padding: 28px max(24px, calc((100% - var(--container)) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.trust-item {
  min-height: 62px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item svg {
  flex-shrink: 0;
  color: #6e8cff;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.81rem;
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
}

.recent-projects-section {
  padding: 92px 0 104px;
  overflow: hidden;
  background: #f5f7fb;
}

.recent-projects-heading {
  margin-bottom: 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.recent-projects-heading > div:first-child {
  max-width: 720px;
}

.recent-projects-heading h2 {
  margin: 15px 0 12px;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.recent-projects-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.recent-projects-controls {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-hint {
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.recent-projects-controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #cfd6e4;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.recent-projects-controls button:hover,
.recent-projects-controls button:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.recent-projects-track {
  margin-right: calc((100vw - min(100vw - 48px, var(--container))) / -2);
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.recent-projects-track::-webkit-scrollbar {
  display: none;
}

.recent-project-card {
  flex: 0 0 min(820px, 82vw);
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(25, 35, 63, 0.08);
}

.recent-project-image {
  position: relative;
  min-height: 440px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #dfe5ef;
  cursor: zoom-in;
}

.recent-project-image img {
  object-fit: cover;
  transition: transform 450ms ease;
}

.recent-project-card:hover .recent-project-image img {
  transform: scale(1.035);
}

.recent-project-body {
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.recent-project-date {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: #edf1ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.recent-project-body h3 {
  margin: 20px 0 9px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.recent-project-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
}

.recent-project-body > p {
  margin: 18px 0 25px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.65;
}

.recent-project-quote {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #107a39;
  font-size: 0.89rem;
  font-weight: 900;
}

.recent-project-quote:hover {
  color: var(--green);
}

.section-heading h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.heading-row {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 90px;
  align-items: end;
}

.heading-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 55px rgba(25, 35, 63, 0.11);
}

.service-image {
  position: relative;
  width: 100%;
  height: 270px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #dfe5ef;
  cursor: zoom-in;
  text-align: left;
}

.service-image img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.045);
}

.service-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
}

.image-expand-icon {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(5, 13, 35, 0.66);
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.service-image:hover .image-expand-icon,
.service-image:focus-visible .image-expand-icon,
.about-image:hover .image-expand-icon,
.about-image:focus-visible .image-expand-icon {
  opacity: 1;
  transform: translateY(0);
  background: var(--blue);
}

.service-content {
  padding: 28px;
}

.service-content h3 {
  margin: 0;
  font-size: 1.28rem;
}

.service-content p {
  min-height: 72px;
  margin: 12px 0 20px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.65;
}

.service-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 900;
}

.service-content a:hover {
  color: var(--red);
}

.projects-section {
  background: var(--surface);
}

.projects-heading {
  margin-bottom: 34px;
}

.filter-list {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-list button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #d9dee7;
  border-radius: 999px;
  background: var(--white);
  color: #525967;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.filter-list button:hover,
.filter-list button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.project-card {
  position: relative;
  grid-column: span 4;
  height: 340px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #dbe1ea;
  color: var(--white);
  cursor: zoom-in;
  text-align: left;
}

.project-card-0,
.project-card-5 {
  grid-column: span 5;
}

.project-card-1,
.project-card-4 {
  grid-column: span 7;
}

.project-card img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(7, 12, 28, 0.83), transparent 62%);
}

.project-content {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 23px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.project-content small,
.project-content strong {
  display: block;
}

.project-content small {
  margin-bottom: 4px;
  color: #b5c4ff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-content strong {
  font-size: 1.03rem;
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 650px;
}

.about-image {
  position: absolute;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #dfe5ee;
  cursor: zoom-in;
}

.about-image img {
  object-fit: cover;
}

.about-image-main {
  inset: 0 84px 50px 0;
}

.about-image-detail {
  right: 0;
  bottom: 0;
  width: 44%;
  height: 43%;
  border: 10px solid var(--white);
}

.about-badge {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 2;
  width: 180px;
  min-height: 116px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
}

.about-badge strong {
  font-size: 1.12rem;
}

.about-badge span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.about-content h2 {
  margin: 18px 0 24px;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.048em;
}

.about-content > p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.check-list {
  margin: 28px 0 34px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #343b49;
  font-size: 0.88rem;
  font-weight: 700;
}

.check-list svg {
  flex-shrink: 0;
  color: var(--red);
}

.process-section {
  padding: 110px 0;
  background:
    linear-gradient(rgba(8, 20, 55, 0.93), rgba(8, 20, 55, 0.96)),
    url("/images/projeto-05.webp") center / cover no-repeat;
  color: var(--white);
}

.process-heading {
  width: min(710px, 100%);
  margin-bottom: 54px;
}

.process-heading h2 {
  margin: 16px 0 18px;
  color: var(--white);
}

.process-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.process-card {
  position: relative;
  min-height: 285px;
  padding: 36px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
  transition: background 180ms ease;
}

.process-card:last-child {
  border-right: 0;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.process-card > svg {
  margin-top: 34px;
  color: #94a8ff;
}

.process-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.75rem;
  font-weight: 900;
}

.process-card h3 {
  margin: 24px 0 10px;
  font-size: 1.1rem;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.85rem;
  line-height: 1.65;
}

.faq-section {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq-heading h2 {
  margin: 18px 0 20px;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.faq-heading p {
  margin: 0 0 30px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.faq-heading .button {
  width: fit-content;
}

.faq-list {
  border-top: 1px solid #d9dee7;
}

.faq-list details {
  border-bottom: 1px solid #d9dee7;
}

.faq-list summary {
  min-height: 82px;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(90deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -5px 48px 26px 4px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.75;
}

.cta-section {
  padding: 72px 0;
  background: var(--blue);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
}

.cta-inner h2 {
  margin: 14px 0 12px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta-inner p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  background: var(--white);
}

.contact-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.contact-heading .eyebrow {
  justify-content: center;
}

.contact-heading h2 {
  margin-bottom: 16px;
}

.contact-heading p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 570px;
  border: 1px solid var(--line);
}

.map-card {
  min-height: 570px;
  background: #e9edf3;
}

.map-card iframe {
  display: block;
  border: 0;
  filter: saturate(0.8);
}

.contact-card {
  padding: 46px;
  background: var(--surface);
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-item {
  min-height: 80px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.contact-item:hover {
  border-color: #aebcf3;
  transform: translateX(4px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef1ff;
}

.contact-item small,
.contact-item strong {
  display: block;
}

.contact-item small,
.hours-title small {
  margin-bottom: 3px;
  color: #7e8695;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.contact-item > svg {
  color: #9ca3b1;
}

.hours {
  margin-top: 18px;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
}

.hours-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hours-title > svg {
  color: #8ca2ff;
}

.hours-title small,
.hours-title strong {
  display: block;
}

.hours-title strong {
  font-size: 0.92rem;
}

.hours-row {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.hours-row span {
  color: rgba(255, 255, 255, 0.65);
}

.hours-row.muted strong {
  color: #ff9aa7;
}

.site-footer {
  padding: 76px 0 28px;
  background: #090d16;
  color: var(--white);
}

.footer-grid {
  padding-bottom: 55px;
  display: grid;
  grid-template-columns: 1.15fr 0.55fr 0.9fr 0.65fr;
  gap: 56px;
}

.footer-brand img {
  width: 210px;
  height: auto;
  padding: 9px;
  background: var(--white);
}

.footer-brand p {
  max-width: 420px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-grid h3 {
  margin: 0 0 20px;
  font-size: 0.9rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.83rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.74rem;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  min-height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 35px rgba(6, 30, 18, 0.22);
  font-size: 0.84rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(6, 30, 18, 0.3);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 36px;
  display: grid;
  place-items: center;
  background: rgba(3, 6, 15, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.lightbox-content {
  width: min(1000px, 92vw);
  overflow: hidden;
  background: var(--white);
}

.lightbox-image {
  position: relative;
  height: min(76vh, 720px);
  background: #0b101a;
}

.lightbox-image img {
  object-fit: contain;
}

.lightbox-caption {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.lightbox-caption small,
.lightbox-caption strong {
  display: block;
}

.lightbox-caption small {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-caption strong {
  margin-top: 3px;
  font-size: 1rem;
}

.button-whatsapp {
  flex-shrink: 0;
  color: var(--white);
  background: var(--green);
}

.button-whatsapp:hover {
  color: var(--white);
  background: #1cae52;
}

/* Páginas de serviço com conteúdo local e estrutura SEO. */
.service-breadcrumb {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777f8e;
  font-size: 0.78rem;
}

.service-breadcrumb a:hover,
.service-breadcrumb strong { color: var(--blue); }

.service-page-hero {
  padding: 36px 0 92px;
  background: linear-gradient(135deg, #f4f6fb 0%, #fff 68%);
}

.service-page-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.service-page-copy h1 {
  margin: 20px 0 24px;
  font-size: clamp(3rem, 5.6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.service-page-copy > p {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.78;
}

.button-outline { border-color: #cfd5e0; color: var(--ink); background: var(--white); }
.button-outline:hover { border-color: var(--blue); color: var(--blue); }

.service-page-hero-image,
.service-feature button {
  position: relative;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #dfe4ed;
  cursor: zoom-in;
}

.service-page-hero-image img,
.service-feature button img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.service-page-hero-image:hover img,
.service-feature button:hover img { transform: scale(1.035); }
.service-page-hero-image .image-expand-icon,
.service-feature button .image-expand-icon { opacity: 1; transform: none; }

.service-proof-strip { padding: 32px 0; background: var(--ink); color: var(--white); }
.service-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-proof-grid > div {
  min-height: 58px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255,255,255,.14);
  font-size: 0.86rem;
  font-weight: 750;
}
.service-proof-grid > div:first-child { padding-left: 0; }
.service-proof-grid > div:last-child { padding-right: 0; border-right: 0; }
.service-proof-grid svg { flex: 0 0 auto; color: #7290ff; }

.service-section-heading { max-width: 820px; margin-bottom: 54px; }
.service-section-heading p { max-width: 690px; margin: 22px 0 0; color: var(--ink-soft); line-height: 1.72; }
.service-application-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-application-grid article {
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.service-application-grid article:hover { transform: translateY(-6px); box-shadow: 0 22px 45px rgba(18, 29, 57, .09); }
.service-application-grid article > span { color: var(--blue); font-size: .74rem; font-weight: 900; }
.service-application-grid h3 { margin: 48px 0 12px; font-size: 1.35rem; }
.service-application-grid p { margin: 0; color: var(--ink-soft); font-size: .92rem; line-height: 1.7; }

.service-feature { padding: 92px 0; background: #0c1322; color: var(--white); }
.service-feature-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
.service-feature button { width: 100%; min-height: 540px; }
.service-feature h2 { margin: 18px 0 22px; color: var(--white); font-size: clamp(2.4rem, 4.3vw, 4.4rem); line-height: 1.03; letter-spacing: -.045em; }
.service-feature p { color: rgba(255,255,255,.67); line-height: 1.75; }
.service-feature ul { margin: 28px 0 34px; padding: 0; display: grid; gap: 14px; list-style: none; }
.service-feature li { display: flex; gap: 10px; color: rgba(255,255,255,.82); font-size: .9rem; }
.service-feature li svg { flex: 0 0 auto; color: #7c99ff; }

.service-faq { background: var(--surface); }
.service-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.service-faq-grid > div:first-child h2 { margin: 18px 0; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
.service-faq-grid > div:first-child p { color: var(--ink-soft); line-height: 1.72; }

.related-services { padding: 94px 0 108px; background: var(--blue); color: var(--white); }
.related-services-heading { margin-bottom: 42px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.related-services-heading h2 { margin: 14px 0 0; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.04; }
.related-services-heading > a { display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 900; }
.related-service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.related-service-grid > a { overflow: hidden; background: var(--white); color: var(--ink); }
.related-service-grid img { width: 100%; height: 230px; display: block; object-fit: cover; transition: transform 350ms ease; }
.related-service-grid > a:hover img { transform: scale(1.04); }
.related-service-grid > a > span { padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.related-service-grid strong { font-size: .96rem; }
.related-service-grid small { display: inline-flex; align-items: center; gap: 5px; color: var(--blue); font-weight: 900; }

.footer-grid-services { grid-template-columns: 1.2fr 1fr .7fr; }
.footer-grid-services a,
.footer-grid-services span { display: inline-flex; align-items: center; gap: 6px; }
.static-lightbox-image img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 1180px) {
  .primary-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .hero-main {
    min-height: 610px;
  }

  .hero-tile {
    min-height: 296px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 5.5vw, 4.6rem);
  }

  .about-grid {
    gap: 60px;
  }

  .faq-grid {
    gap: 60px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 80px;
  }

  .container,
  .header-inner {
    width: min(100% - 32px, var(--container));
  }

  .brand img {
    width: 170px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    margin-left: auto;
    display: grid;
    place-items: center;
    border: 0;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
  }

  .primary-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    padding: 16px;
    display: none;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 45px rgba(17, 24, 39, 0.12);
  }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav > a:not(.nav-whatsapp) {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav > a::after {
    display: none;
  }

  .primary-nav .nav-whatsapp {
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-main {
    min-height: 630px;
  }

  .hero-grid {
    grid-template-rows: repeat(2, 270px);
  }

  .hero-tile {
    min-height: 270px;
  }

  .trust-strip {
    padding-inline: 24px;
  }

  .trust-item {
    padding-inline: 24px;
  }

  .recent-projects-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .recent-project-card {
    flex-basis: min(760px, 88vw);
  }

  .heading-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card,
  .project-card-0,
  .project-card-1,
  .project-card-4,
  .project-card-5 {
    grid-column: span 6;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 610px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card:nth-child(2) {
    border-right: 0;
  }

  .process-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-inner .button {
    justify-self: start;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-heading {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 440px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    padding: 10px;
    gap: 10px;
  }

  .hero-main {
    min-height: 590px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(5, 13, 35, 0.92), rgba(5, 13, 35, 0.22));
  }

  .hero-content {
    inset: auto 24px 36px;
    width: auto;
  }

  .hero-content h1 {
    margin-top: 16px;
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-grid {
    gap: 10px;
    grid-template-rows: repeat(2, 220px);
  }

  .hero-tile {
    min-height: 220px;
  }

  .hero-tile-content {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .hero-tile-content strong {
    font-size: 1rem;
  }

  .hero-tile-content small,
  .tile-link {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    min-height: 88px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .recent-projects-section {
    padding: 72px 0 80px;
  }

  .recent-projects-heading {
    margin-bottom: 28px;
  }

  .recent-projects-heading h2 {
    font-size: 2.55rem;
  }

  .recent-projects-controls {
    width: 100%;
  }

  .scroll-hint {
    margin-right: auto;
  }

  .recent-projects-track {
    margin-right: -16px;
    padding-right: 16px;
    gap: 16px;
  }

  .recent-project-card {
    flex: 0 0 86vw;
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .recent-project-image {
    min-height: 285px;
  }

  .recent-project-body {
    padding: 27px 24px 30px;
  }

  .recent-project-body h3 {
    margin-top: 17px;
  }

  .recent-project-body > p {
    margin-bottom: 20px;
  }

  .section-heading h2,
  .about-content h2 {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-content p {
    min-height: auto;
  }

  .image-expand-icon {
    opacity: 1;
    transform: none;
  }

  .filter-list {
    margin-right: -16px;
    padding-right: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-list::-webkit-scrollbar {
    display: none;
  }

  .filter-list button {
    flex: 0 0 auto;
  }

  .project-card,
  .project-card-0,
  .project-card-1,
  .project-card-4,
  .project-card-5 {
    grid-column: span 12;
    height: 315px;
  }

  .about-visual {
    min-height: 470px;
  }

  .about-image-main {
    right: 42px;
  }

  .about-image-detail {
    width: 48%;
    height: 38%;
    border-width: 7px;
  }

  .about-badge {
    top: 18px;
    right: 18px;
    width: 150px;
    min-height: 94px;
    padding: 16px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .process-section {
    padding: 78px 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card:nth-child(2) {
    min-height: 245px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .cta-section {
    padding: 62px 0;
  }

  .contact-grid {
    border: 0;
  }

  .map-card {
    min-height: 350px;
  }

  .contact-card {
    padding: 24px 16px;
  }

  .contact-item {
    grid-template-columns: 44px 1fr auto;
    padding-inline: 12px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .contact-item strong {
    font-size: 0.78rem;
  }

  .hours-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-image {
    height: 60vh;
  }

  .lightbox-caption {
    align-items: stretch;
    flex-direction: column;
  }

  .lightbox-caption .button {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .service-page-hero-grid,
  .service-feature-grid,
  .service-faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .service-page-hero-image { min-height: 520px; }
  .service-proof-grid { grid-template-columns: 1fr; }
  .service-proof-grid > div,
  .service-proof-grid > div:first-child,
  .service-proof-grid > div:last-child {
    min-height: 70px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .service-proof-grid > div:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1.1fr .8fr .8fr; }
  .footer-grid-services { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .service-breadcrumb { overflow: hidden; white-space: nowrap; }
  .service-breadcrumb strong { overflow: hidden; text-overflow: ellipsis; }
  .service-page-hero { padding-top: 20px; padding-bottom: 70px; }
  .service-page-copy h1 { font-size: 2.75rem; }
  .service-page-copy .hero-actions { align-items: stretch; flex-direction: column; }
  .service-page-copy .button { width: 100%; }
  .service-page-hero-image { min-height: 400px; }
  .service-application-grid,
  .related-service-grid { grid-template-columns: 1fr; }
  .service-feature { padding: 72px 0; }
  .service-feature button { min-height: 400px; }
  .service-feature h2 { font-size: 2.55rem; }
  .related-services-heading { align-items: flex-start; flex-direction: column; }
  .related-service-grid img { height: 250px; }
  .footer-grid,
  .footer-grid-services { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.static-fill-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.static-expand-trigger>span{position:absolute;top:22px;left:22px;width:44px;height:44px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.36);border-radius:50%;background:rgba(4,10,25,.36);font-size:1.45rem}.static-trust-icon{flex:0 0 auto;color:#6e8cff;font-size:1.5rem}.static-process-icon{display:block;margin-top:34px;color:#94a8ff;font-size:1.8rem}.service-image img,.project-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.project-card[hidden]{display:none!important}.lightbox[hidden]{display:none!important}.lightbox:not([hidden]){display:grid;place-items:center}.lightbox-content{margin:auto;max-height:calc(100vh - 72px)}.menu-button{font-size:1.4rem}.floating-whatsapp{color:#fff;background:#25d366}@media(max-width:680px){.lightbox-content{max-height:calc(100vh - 36px)}}
