:root {
  --navy: #061b24;
  --navy-2: #0b2732;
  --gold: #d5a04a;
  --gold-2: #bf8530;
  --text: #f7f7f2;
  --muted: #c9d0cf;
  --ink: #13202a;
  --paper: #f7f5ef;
  --line: rgba(213, 160, 74, 0.38);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--navy);
  color: var(--text);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px clamp(22px, 5vw, 86px);
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  padding-block: 16px;
  background: rgba(5, 23, 31, 0.92);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  gap: 7px;
  line-height: 1;
  min-width: 170px;
}

.brand-name {
  font-size: clamp(32px, 4.3vw, 54px);
  font-weight: 300;
  letter-spacing: 12px;
}

.brand-name span {
  color: var(--gold);
}

.brand small {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-cta,
.button {
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-cta,
.button.primary {
  background: var(--gold);
  color: #06131a;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(2, 18, 25, 0.22);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  background: #e0ad5c;
}

.button.centered {
  margin: 28px auto 0;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px clamp(22px, 6.5vw, 104px) 0;
}

.hero-bg,
.quote::before,
.proof::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(4, 22, 30, 0.55) 0%, rgba(4, 22, 30, 0.26) 44%, rgba(4, 22, 30, 0.05) 100%),
    url("assets/hero-servicos-clean.jpg");
  background-size: cover;
  background-position: center;
}

.hero::after,
.services::before,
.process::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    radial-gradient(ellipse at 20% 15%, transparent 0 26%, rgba(213, 160, 74, 0.28) 26.2% 26.6%, transparent 26.8%),
    radial-gradient(ellipse at 14% 70%, transparent 0 32%, rgba(213, 160, 74, 0.2) 32.2% 32.6%, transparent 32.8%),
    linear-gradient(135deg, transparent 49%, rgba(213, 160, 74, 0.12) 49.3% 49.8%, transparent 50%);
  background-size: 580px 420px, 720px 520px, 180px 180px;
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding-bottom: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(46px, 6.5vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span,
h2 span {
  color: var(--gold);
}

.hero-copy {
  max-width: 520px;
  color: white;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
  color: white;
  font-weight: 700;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-list li::before {
  width: 15px;
  height: 15px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  content: "✓";
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-inline: calc(clamp(22px, 6.5vw, 104px) * -1);
  padding: 26px clamp(22px, 6.5vw, 104px);
  background: rgba(5, 25, 34, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-strip article {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip strong {
  max-width: 155px;
  line-height: 1.25;
}

.icon,
.line-icon,
.footer-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.icon::before,
.icon::after,
.line-icon::before,
.line-icon::after,
.footer-icon::before,
.footer-icon::after {
  position: absolute;
  content: "";
}

.target {
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.target::before {
  inset: 19px -10px auto;
  height: 2px;
  background: var(--gold);
}

.target::after {
  inset: -10px auto auto 19px;
  width: 2px;
  height: 62px;
  background: var(--gold);
}

.tripod::before {
  left: 8px;
  right: 8px;
  top: 6px;
  height: 14px;
  border: 2px solid var(--gold);
  border-radius: 5px;
}

.tripod::after {
  left: 6px;
  top: 22px;
  width: 30px;
  height: 20px;
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: perspective(30px) rotateX(25deg);
}

.doc::before,
.paper::before {
  inset: 4px 9px 3px;
  border: 2px solid currentColor;
}

.doc::after,
.paper::after {
  left: 16px;
  top: 16px;
  width: 14px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor;
}

.clock {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.clock::before {
  left: 19px;
  top: 8px;
  width: 2px;
  height: 13px;
  background: currentColor;
}

.clock::after {
  left: 19px;
  top: 20px;
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: rotate(-35deg);
  transform-origin: left center;
}

.shield::before {
  inset: 4px 8px;
  border: 2px solid currentColor;
  clip-path: polygon(50% 0, 100% 18%, 90% 74%, 50% 100%, 10% 74%, 0 18%);
}

.shield::after {
  left: 17px;
  top: 15px;
  width: 8px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(40deg);
}

section {
  position: relative;
}

.section-dark,
.proof {
  background: var(--navy);
  color: var(--text);
}

.services {
  padding: 82px clamp(22px, 6vw, 86px);
  overflow: hidden;
}

.section-head {
  position: relative;
  z-index: 1;
  max-width: 510px;
  margin-bottom: 44px;
}

.section-head h2,
.proof h2,
.quote h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
}

.section-head p:not(.eyebrow),
.quote p,
.service-card p {
  color: var(--muted);
  line-height: 1.55;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.services-board {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.services-board img {
  width: 100%;
  height: auto;
}

.service-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.service-actions button {
  min-height: 48px;
  border: 1px solid rgba(213, 160, 74, 0.5);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-actions button:hover,
.service-actions button:focus-visible {
  background: var(--gold);
  color: #06131a;
  transform: translateY(-2px);
}

.services .service-grid {
  display: none;
}

.services-page {
  padding-top: 140px;
}

.services-page .section-head {
  max-width: 780px;
}

.services-page .services-board {
  margin-bottom: 18px;
}


.service-detail-page {
  min-height: 100vh;
  padding: 140px clamp(22px, 6vw, 86px) 70px;
  background: var(--navy);
  color: var(--text);
  overflow: hidden;
}

.service-detail-page::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    radial-gradient(ellipse at 18% 10%, transparent 0 26%, rgba(213, 160, 74, 0.24) 26.2% 26.6%, transparent 26.8%),
    radial-gradient(ellipse at 80% 76%, transparent 0 30%, rgba(213, 160, 74, 0.16) 30.2% 30.6%, transparent 30.8%);
  background-size: 680px 460px, 780px 540px;
  content: "";
}

.service-detail-page .section-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.service-detail-page h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
}

.detail-reference {
  position: relative;
  z-index: 1;
  margin: 34px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(213, 160, 74, 0.38);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.detail-reference img {
  width: 100%;
  height: auto;
}

.detail-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.city-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  min-height: 100vh;
  padding: 140px clamp(22px, 6vw, 86px) 70px;
  background: var(--navy);
  color: var(--text);
  overflow: hidden;
}

.city-page::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    radial-gradient(ellipse at 18% 8%, transparent 0 25%, rgba(213, 160, 74, 0.24) 25.2% 25.6%, transparent 25.8%),
    radial-gradient(ellipse at 80% 78%, transparent 0 30%, rgba(213, 160, 74, 0.16) 30.2% 30.6%, transparent 30.8%);
  background-size: 620px 420px, 760px 540px;
  content: "";
}

.city-copy,
.city-reference {
  position: relative;
  z-index: 1;
}

.city-copy {
  position: sticky;
  top: 112px;
}

.city-copy h1 {
  max-width: 9ch;
  margin-bottom: 18px;
  font-size: clamp(52px, 7vw, 90px);
}

.city-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.city-reference {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(213, 160, 74, 0.38);
  border-radius: 4px;
  background: #061b24;
  box-shadow: var(--shadow);
}

.city-reference img {
  width: 100%;
  height: auto;
}

.service-card {
  min-height: 224px;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: #f8f8f5;
  color: #101820;
  border-radius: 4px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-card.horizontal {
  grid-template-columns: 1fr 1fr;
}

.service-card div {
  padding: 26px;
}

.service-card h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.08;
}

.service-card p {
  color: #2b363d;
  font-size: 15px;
}

.service-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
}

.service-card:nth-child(1) img {
  object-position: 24% 16%;
}

.service-card:nth-child(2) img {
  object-position: 78% 16%;
}

.service-card:nth-child(3) img {
  object-position: 24% 50%;
}

.service-card:nth-child(4) img {
  object-position: 78% 50%;
}

.service-card:nth-child(5) img {
  object-position: 24% 84%;
}

.service-card:nth-child(6) img {
  object-position: 78% 84%;
}

.service-card.horizontal img {
  height: 100%;
  min-height: 224px;
}

.line-icon::before {
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.line-icon::after {
  left: 12px;
  top: 12px;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor, 0 16px 0 currentColor;
}

.compass::before,
.drone::before,
.cube::before,
.map::before {
  border-radius: 50%;
}

.compass::after {
  left: 17px;
  top: 7px;
  width: 8px;
  height: 28px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 46%, 55% 45%, 50% 100%, 0 54%, 45% 55%);
  box-shadow: none;
}

.drone::before {
  inset: 17px 7px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 10px;
}

.drone::after {
  inset: 6px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.cube::before {
  inset: 8px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.cube::after {
  left: 20px;
  top: 9px;
  width: 2px;
  height: 25px;
  background: currentColor;
  box-shadow: none;
}

.map::before {
  inset: 4px;
  border-radius: 2px;
  clip-path: polygon(0 8%, 33% 0, 66% 8%, 100% 0, 100% 92%, 66% 100%, 33% 92%, 0 100%);
}

.map::after {
  left: 13px;
  top: 8px;
  width: 2px;
  height: 28px;
  background: currentColor;
  box-shadow: 14px 0 0 currentColor;
}

.process {
  padding: 76px clamp(22px, 6vw, 86px);
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.section-head.light p:not(.eyebrow) {
  color: #4e5a62;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.process-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-grid article:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: calc(-50% + 40px);
  width: calc(100% - 80px);
  border-top: 1px dashed rgba(19, 32, 42, 0.45);
  content: "";
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-2);
  background: var(--paper);
  font-weight: 700;
  z-index: 1;
}

.process-grid h3 {
  margin: 20px 0 10px;
}

.process-grid p {
  color: #3d464d;
  line-height: 1.5;
}

.process-icon {
  width: 82px;
  height: 82px;
  color: var(--ink);
  position: relative;
}

.process-icon::before,
.process-icon::after {
  position: absolute;
  content: "";
}

.chat::before {
  inset: 14px 4px 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.chat::after {
  right: 7px;
  bottom: 19px;
  width: 52px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--paper);
}

.station::before {
  left: 28px;
  top: 4px;
  width: 26px;
  height: 42px;
  border: 2px solid currentColor;
}

.station::after {
  left: 10px;
  bottom: 2px;
  width: 60px;
  height: 36px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: perspective(50px) rotateX(32deg);
}

.screen::before {
  inset: 12px 4px 24px;
  border: 2px solid currentColor;
}

.screen::after {
  left: 26px;
  bottom: 12px;
  width: 30px;
  height: 16px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.file::before {
  inset: 2px 18px 6px;
  border: 2px solid currentColor;
}

.file::after {
  right: 11px;
  bottom: 5px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--paper);
}

.proof {
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: 76px clamp(22px, 6vw, 86px);
  overflow: hidden;
}

.proof::before {
  opacity: 0.34;
  background-image:
    linear-gradient(90deg, rgba(4, 22, 30, 0.97), rgba(4, 22, 30, 0.8)),
    url("assets/site2.jpg");
  background-position: center;
}

.testimonial,
.stats {
  position: relative;
  z-index: 1;
}

.testimonial {
  max-width: 610px;
}

blockquote {
  position: relative;
  margin: 28px 0 16px;
  padding-left: 54px;
  color: white;
  line-height: 1.65;
}

blockquote::before {
  position: absolute;
  left: 0;
  top: -24px;
  color: white;
  content: "“";
  font-size: 86px;
  line-height: 1;
}

cite {
  color: white;
  font-style: normal;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 50px;
  padding: 28px;
  background: rgba(20, 50, 62, 0.9);
  border-radius: 4px;
}

.stats article {
  display: grid;
  gap: 8px;
  text-align: center;
}

.stats strong {
  color: var(--gold);
  font-size: clamp(30px, 4vw, 44px);
}

.stats span {
  line-height: 1.25;
}

.quote {
  min-height: 760px;
  display: grid;
  align-items: center;
  justify-content: start;
  padding: 82px clamp(22px, 6vw, 86px);
  overflow: hidden;
}

.quote::before {
  content: "";
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(4, 22, 30, 0.98) 0%, rgba(4, 22, 30, 0.92) 32%, rgba(4, 22, 30, 0.48) 58%, rgba(4, 22, 30, 0.08) 100%),
    url("assets/orcamento.jpg");
  background-size: cover;
  background-position: center right;
}

.quote-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  background: var(--gold);
  color: #081820;
  border-radius: 2px;
  letter-spacing: 1.5px;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.quote-form label {
  display: grid;
}

.quote-form span {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
}

.quote-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.96);
  color: #12212a;
  font: inherit;
  min-height: 48px;
  padding: 0 16px;
  outline: none;
}

textarea {
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(213, 160, 74, 0.25);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: white;
  font-weight: 700;
}

.quote-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
  color: white;
}

.quote-benefits span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  text-align: center;
  font-weight: 700;
  line-height: 1.25;
}

.quote-benefits span::before {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.quote-benefits span:last-child {
  border-right: 0;
}

.faq-section {
  padding: 76px clamp(22px, 6vw, 86px);
  background: #071e29;
  color: white;
}

.faq-head {
  max-width: 820px;
  margin-bottom: 26px;
}

.faq-head h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
}

.faq-group {
  margin-bottom: 24px;
}

.faq-group h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: clamp(20px, 2.2vw, 28px);
}

.faq-item {
  margin: 0 0 10px;
  border: 1px solid rgba(213, 160, 74, 0.35);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 18px 54px 18px 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

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

.faq-item summary::after {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(-135deg);
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: #d4dbe0;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 30px clamp(22px, 6vw, 86px);
  background: #071c25;
  color: white;
}

.site-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.site-footer a:last-child {
  border-right: 0;
}

.footer-icon {
  width: 30px;
  height: 30px;
  pointer-events: none;
}

.pin::before {
  inset: 3px 7px 8px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin::after {
  left: 12px;
  top: 10px;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.phone::before {
  inset: 3px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.phone::after {
  left: 9px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  border-radius: 2px;
  transform: rotate(-35deg);
}

.globe {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.globe::before {
  left: 3px;
  right: 3px;
  top: 13px;
  height: 2px;
  background: currentColor;
}

.globe::after {
  left: 12px;
  top: 2px;
  width: 2px;
  height: 22px;
  background: currentColor;
}

.mail::before {
  inset: 6px 2px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.mail::after {
  left: 4px;
  right: 4px;
  top: 10px;
  height: 14px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #05210f;
  font-weight: 800;
  box-shadow: var(--shadow);
}

@media (max-width: 1040px) {
  .site-header {
    padding-block: 20px;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(5, 23, 31, 0.75);
    border-radius: 3px;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 26px;
    background: rgba(5, 23, 31, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .feature-strip,
  .service-grid,
  .process-grid,
  .stats,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip article {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .feature-strip article:last-child {
    grid-column: 1 / -1;
  }

  .process-grid article::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 32px;
    letter-spacing: 7px;
  }

  .brand small {
    font-size: 11px;
    letter-spacing: 7px;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(4, 22, 30, 0.98), rgba(4, 22, 30, 0.76) 48%, rgba(4, 22, 30, 0.96)),
      url("assets/hero-servicos-clean.jpg");
    background-position: 64% center;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .feature-strip,
  .service-grid,
  .service-actions,
  .process-grid,
  .stats,
  .site-footer,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    margin-inline: -22px;
    padding-inline: 22px;
  }

  .service-card,
  .service-card.horizontal {
    grid-template-columns: 1fr;
  }

  .service-card.horizontal img {
    min-height: 160px;
  }

  .quote::before {
    background-image:
      linear-gradient(180deg, rgba(4, 22, 30, 0.94), rgba(4, 22, 30, 0.82)),
      url("assets/orcamento.jpg");
    background-position: 72% center;
  }

  .site-footer a {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .site-footer a:last-child {
    border-bottom: 0;
  }

  .floating-whatsapp {
    display: inline-flex;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header,
  .site-header.scrolled {
    min-height: 76px;
    padding: 12px 16px;
    background: rgba(5, 23, 31, 0.96);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
  }

  .brand-name {
    font-size: 28px;
    letter-spacing: 6px;
    white-space: nowrap;
  }

  .brand small {
    font-size: 10px;
    letter-spacing: 6px;
    white-space: nowrap;
  }

  .nav-toggle {
    flex: 0 0 46px;
    touch-action: manipulation;
  }

  .main-nav {
    padding: 94px 22px 28px;
    align-content: start;
    justify-items: stretch;
    gap: 10px;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 15px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .nav-cta {
    margin-top: 12px;
    justify-content: center;
    width: 100%;
    border-color: transparent;
    background: var(--gold);
    color: #06131a;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 76px 16px 0;
    background: var(--navy);
  }

  .hero::after {
    display: none;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    height: min(74vw, 390px);
    min-height: 280px;
    margin: 0 -16px;
    background-image:
      linear-gradient(180deg, rgba(4, 22, 30, 0.05), rgba(4, 22, 30, 0.36)),
      url("assets/hero-servicos-clean.jpg");
    background-size: cover;
    background-position: 63% center;
  }

  .hero-content {
    max-width: none;
    padding: 28px 0 30px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 3px;
  }

  h1 {
    max-width: 12ch;
    margin-bottom: 16px;
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 34rem;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-list {
    gap: 11px;
    margin: 20px 0 24px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .button,
  .nav-cta {
    min-height: 52px;
    width: 100%;
    padding: 0 18px;
    text-align: center;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 -16px;
    padding: 8px 16px;
  }

  .feature-strip article,
  .feature-strip article:last-child {
    grid-column: auto;
    min-height: 66px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .feature-strip article:last-child {
    border-bottom: 0;
  }

  .feature-strip strong {
    max-width: none;
    font-size: 14px;
  }

  .icon {
    width: 34px;
    height: 34px;
  }

  .services,
  .process,
  .proof,
  .quote {
    padding: 54px 16px;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .section-head h2,
  .proof h2,
  .quote h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.08;
  }

  .service-grid,
  .process-grid,
  .stats,
  .site-footer,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.horizontal {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-card div {
    padding: 22px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card img,
  .service-card.horizontal img {
    height: 178px;
    min-height: 0;
    object-position: 68% center;
  }

  .services-board {
    margin-inline: -16px;
    border-radius: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .services-board img {
    max-width: none;
    min-width: 820px;
  }

  .service-actions {
    gap: 8px;
    margin-top: 12px;
  }

  .service-actions button {
    min-height: 50px;
    padding: 0 14px;
    font-size: 12px;
  }

  .process-grid {
    gap: 18px;
  }

  .process-grid article {
    justify-items: start;
    text-align: left;
    padding: 18px 0 18px 64px;
    border-bottom: 1px solid rgba(19, 32, 42, 0.12);
  }

  .process-grid span {
    position: absolute;
    left: 0;
    top: 20px;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .process-icon {
    width: 58px;
    height: 58px;
  }

  .process-grid h3 {
    margin-top: 8px;
  }

  .proof {
    min-height: 0;
  }

  blockquote {
    margin-top: 24px;
    padding-left: 34px;
  }

  blockquote::before {
    top: -16px;
    font-size: 56px;
  }

  .stats {
    margin-top: 30px;
    padding: 18px;
  }

  .quote {
    min-height: 0;
    background: var(--navy);
  }

  .quote::before {
    opacity: 0.5;
    background-image:
      linear-gradient(180deg, rgba(4, 22, 30, 0.96), rgba(4, 22, 30, 0.78) 45%, rgba(4, 22, 30, 0.96)),
      url("assets/orcamento.jpg");
    background-position: 70% center;
  }

  .quote-panel {
    width: 100%;
  }

  .quote-benefits {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
  }

  .quote-benefits span {
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
  }

  input,
  select,
  textarea {
    min-height: 52px;
    font-size: 16px;
  }

  .site-footer {
    gap: 0;
    padding: 18px 16px 86px;
  }

  .site-footer a {
    justify-content: flex-start;
    min-height: 58px;
    padding: 10px 0;
  }

  .service-detail-page {
    padding: 104px 16px 54px;
  }

  .service-detail-page h1 {
    max-width: 11ch;
    font-size: clamp(38px, 11vw, 52px);
  }

  .detail-reference {
    margin-inline: -16px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .detail-reference img {
    max-width: none;
    min-width: 820px;
  }

  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .city-page {
    display: block;
    min-height: 0;
    padding: 104px 16px 54px;
  }

  .city-copy {
    position: relative;
    top: auto;
    margin-bottom: 24px;
  }

  .city-copy h1 {
    max-width: 10ch;
    font-size: clamp(38px, 11vw, 52px);
  }

  .city-reference {
    margin-inline: -16px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .floating-whatsapp {
    display: inline-flex;
    right: 14px;
    bottom: 14px;
    min-height: 50px;
  }
}

@media (max-width: 390px) {
  .brand-name {
    font-size: 24px;
    letter-spacing: 5px;
  }

  .brand small {
    letter-spacing: 5px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-bg {
    min-height: 248px;
  }
}
