:root {
  --blue: #1a73a8;
  --blue-dark: #145a86;
  --ink: #16324a;
  --soft: #eef6fb;
  --muted: #5b7384;
  --line: #d5e4ee;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "DM Sans", system-ui, sans-serif; background: #fff; color: var(--ink); line-height: 1.55; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
iframe { border: 0; }
.wrap { width: min(1140px, calc(100% - 32px)); margin-inline: auto; }
section[id], .endereco { scroll-margin-top: 90px; }

.topbar { background: var(--blue); color: #fff; }
.topbar .wrap { display: flex; justify-content: flex-end; align-items: center; min-height: 38px; }
.top-soc { display: flex; gap: 8px; }
.top-soc a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
}
.top-soc svg { width: 14px; height: 14px; fill: currentColor; }

header { background: #fff; position: sticky; top: 0; z-index: 30; box-shadow: 0 1px 0 var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--blue); }
.logo span {
  width: 38px;
  height: 38px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.menu { display: flex; gap: 26px; list-style: none; font-size: 14px; font-weight: 600; color: var(--muted); }
.menu a:hover, .menu a.is-on { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--blue-dark); }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: #fff; }
.btn-light { background: #fff; color: var(--blue); }
.btn-light:hover { background: var(--soft); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.center-cta { text-align: center; margin-top: 36px; }

.hero {
  position: relative;
  min-height: min(78vh, 680px);
  overflow: hidden;
  display: grid;
  align-items: center;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 50, 74, .72) 0%, rgba(22, 50, 74, .28) 52%, transparent 78%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
  color: #fff;
  max-width: none;
  padding: 72px 0;
}
.hero-copy .kicker { color: #d7eaf6; }
.hero-copy h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  max-width: 12ch;
  margin: 8px 0 14px;
}
.hero-copy p { max-width: 38ch; color: #e8f1f6; margin-bottom: 24px; }

.sobre { padding: 72px 0 56px; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.split img { width: 100%; height: 320px; object-fit: cover; border-radius: 6px; }
.kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.split h2 { font-size: clamp(26px, 3.2vw, 36px); line-height: 1.15; margin-bottom: 12px; }
.split p { color: var(--muted); max-width: 46ch; }

.callout {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.callout .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45);
}
.callout .wrap { position: relative; z-index: 1; padding: 72px 0; }
.callout h2 {
  color: #fff;
  font-size: clamp(26px, 3.6vw, 40px);
  max-width: 16ch;
  margin-bottom: 16px;
}
.highlight {
  background: var(--blue);
  color: #fff;
  max-width: 34ch;
  padding: 18px 22px;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 22px;
}

.servicos { padding: 72px 0 64px; text-align: center; }
.servicos h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 8px; }
.servicos .sub { color: var(--muted); margin-bottom: 36px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}
.svc-card { border: 1px solid var(--line); background: #fff; overflow: hidden; border-radius: 8px; }
.svc-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.svc-card h3 {
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 10px;
}

.band {
  background: linear-gradient(180deg, var(--blue) 0%, #145a86 42%, var(--ink) 100%);
  color: #fff;
  padding: 72px 0 64px;
}
.band h2 { color: #fff; text-align: center; font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 36px; }
.combos {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 20px;
  margin-bottom: 28px;
}
.combo-left { display: grid; gap: 18px; }
.combo-card, .price-card, .kit-card {
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(16, 37, 54, .12);
}
.combo-card img { width: 100%; height: 150px; object-fit: cover; }
.combo-card .pad, .price-card, .kit-card { padding: 20px 22px; }
.combo-card h3 { color: var(--blue); font-size: 20px; margin-bottom: 8px; }
.combo-card p, .price-card p, .kit-card p { color: var(--muted); font-size: 14px; }
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.price-card { text-align: center; padding: 22px 14px; }
.price-card .kg { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.price-card .val { font-size: 32px; font-weight: 800; color: var(--blue); margin: 8px 0; }
.price-stack { display: grid; gap: 14px; }
.price-stack .btn { width: 100%; }
.kit-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.kit-card .val { font-size: 28px; font-weight: 800; color: var(--blue); margin: 6px 0 10px; }

.endereco { padding-top: 24px; }
.endereco h2 { margin-bottom: 28px; }
.loc-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.loc-list { display: grid; gap: 22px; }
.loc-list h3 { font-size: 18px; margin-bottom: 6px; }
.loc-list p { color: #d7e6ef; font-size: 14px; }
.mapa { width: 100%; height: 340px; border-radius: 6px; background: #fff; }

.site-foot { background: #102536; color: #c5d6e2; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: 32px;
  padding: 48px 0 36px;
}
.site-foot .logo { margin-bottom: 12px; color: #fff; }
.site-foot .logo span { border-color: #fff; }
.foot-brand p { font-size: 14px; max-width: 36ch; margin-bottom: 14px; }
.site-foot h3 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-foot ul { list-style: none; display: grid; gap: 8px; font-size: 14px; }
.site-foot ul a:hover { color: #fff; }
.soc { display: flex; gap: 10px; }
.soc a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
}
.soc svg { width: 14px; height: 14px; fill: currentColor; }
.foot-copy {
  background: #0b1b28;
  color: #8aa0b0;
  font-size: 12px;
  text-align: center;
  padding: 14px 16px;
}

.float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  z-index: 40;
}

@media (max-width: 900px) {
  .menu { display: none; }
  .split, .svc-grid, .combos, .price-row, .kit-card, .loc-grid, .foot-grid { grid-template-columns: 1fr; }
  .split img { height: 240px; }
  .hero { min-height: 420px; }
  .hero::after { background: linear-gradient(180deg, rgba(22, 50, 74, .55) 0%, rgba(22, 50, 74, .72) 100%); }
  .kit-card .btn { justify-self: start; }
}
