:root {
  --green: #007d3c;
  --green-bright: #008f46;
  --green-dark: #004f26;
  --green-rgb: 0, 125, 60;
  --ink: #111615;
  --muted: #5f6b66;
  --line: rgba(var(--green-rgb), 0.16);
  --paper: #f3f6f1;
  --white: #ffffff;
  --gold: #d7a625;
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --shadow: 0 28px 90px rgba(0, 58, 29, 0.14);
  --deep-shadow: 0 34px 110px rgba(4, 19, 13, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 125, 60, 0.18), transparent 28rem),
    radial-gradient(circle at 84% 4%, rgba(215, 166, 37, 0.2), transparent 23rem),
    linear-gradient(135deg, #fbfcfa 0%, #edf4ef 48%, #f8faf6 100%);
  font-family: Helvetica, Arial, sans-serif;
}

body.is-gallery-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.54), transparent 42%),
    repeating-linear-gradient(135deg, rgba(0, 125, 60, 0.055) 0 1px, transparent 1px 18px);
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px);
  background-size: auto, 18px 18px;
  mix-blend-mode: screen;
  opacity: 0.5;
}

[id] {
  scroll-margin-top: 92px;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: clamp(14px, 3vw, 44px);
  right: clamp(14px, 3vw, 44px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 11px 16px 11px 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(0, 47, 24, 0.13);
  backdrop-filter: blur(22px) saturate(1.28);
}

.site-header::after {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 7px;
  content: "";
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.72), transparent 38%, rgba(0, 125, 60, 0.08));
}

.brand img {
  width: clamp(144px, 14vw, 210px);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: #25302c;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta::before,
.button::before {
  position: absolute;
  z-index: 0;
  inset: -42% auto -42% -150%;
  width: 46%;
  content: "";
  transform: skewX(-24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  opacity: 0;
  pointer-events: none;
  transition: left 420ms ease, opacity 120ms ease;
}

.header-cta > *,
.button > * {
  position: relative;
  z-index: 1;
}

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

.header-cta:hover::before,
.button:hover::before {
  left: 132%;
  opacity: 1;
}

.header-cta,
.button-primary {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 38%),
    linear-gradient(135deg, var(--green-bright), var(--green) 46%, var(--green-dark));
  box-shadow: 0 16px 36px rgba(0, 125, 60, 0.27);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 34px rgba(7, 27, 17, 0.08);
  backdrop-filter: blur(14px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 125, 60, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  min-height: min(900px, 100svh);
  padding: 138px clamp(18px, 5vw, 72px) 70px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 118px clamp(16px, 4vw, 58px) 36px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  content: "";
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.2) 42%, rgba(0, 125, 60, 0.08)),
    rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero::after {
  position: absolute;
  right: 8vw;
  bottom: 12vh;
  width: min(48vw, 680px);
  height: min(38vw, 520px);
  z-index: -2;
  content: "";
  transform: rotate(-8deg);
  background:
    linear-gradient(100deg, transparent 0 22%, rgba(255, 255, 255, 0.72) 22% 28%, transparent 28% 42%, rgba(255, 255, 255, 0.38) 42% 46%, transparent 46%),
    linear-gradient(135deg, rgba(0, 125, 60, 0.16), rgba(215, 166, 37, 0.11));
  filter: blur(1px);
}

.hero-copy,
.hero-visual,
.section-heading,
.contact-copy {
  min-width: 0;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.2vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(1.78rem, 3.65vw, 3.85rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 620px;
  color: #33413b;
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  line-height: 1.64;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  color: #22302a;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.hero-visual {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 470px;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.42) 48%, rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(0, 125, 60, 0.16), rgba(215, 166, 37, 0.11));
  box-shadow: var(--deep-shadow);
  backdrop-filter: blur(24px) saturate(1.28);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  inset: 0;
  border-radius: 8px;
  background:
    linear-gradient(122deg, rgba(255, 255, 255, 0.58), transparent 25% 66%, rgba(255, 255, 255, 0.34)),
    linear-gradient(90deg, transparent 0 70%, rgba(0, 125, 60, 0.16) 70% 70.5%, transparent 70.5%);
}

.hero-visual::after {
  top: 30px;
  right: 30px;
  width: 98px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  box-shadow: 0 0 26px rgba(0, 125, 60, 0.35);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  margin: 0 auto;
  padding: clamp(10px, 2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 26px 80px rgba(0, 65, 33, 0.14);
  filter: drop-shadow(0 20px 30px rgba(0, 56, 28, 0.16));
}

.spec-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.spec-strip span {
  min-width: 0;
  padding: 15px 10px;
  overflow: hidden;
  color: #25312c;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.section {
  position: relative;
  padding: clamp(68px, 8vw, 124px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 92px);
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: clamp(48px, 7vw, 84px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(0, 125, 60, 0.2)),
    linear-gradient(135deg, #101615, #17221d 48%, #004f2b);
  box-shadow: var(--deep-shadow);
}

.intro-band p {
  max-width: 920px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.22rem, 2.2vw, 2rem);
  line-height: 1.36;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.84;
  text-shadow: 0 18px 50px rgba(215, 166, 37, 0.2);
}

.stat span {
  display: block;
  max-width: 210px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(32px, 5vw, 62px);
}

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

.service-card,
.project-card,
.process-list {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 58px rgba(0, 47, 24, 0.09);
  backdrop-filter: blur(18px) saturate(1.22);
}

.service-card {
  position: relative;
  min-height: 252px;
  padding: 30px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.66), transparent 34%),
    linear-gradient(180deg, transparent 0 68%, rgba(0, 125, 60, 0.08));
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 125, 60, 0.25);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(180deg, transparent 0 58%, rgba(0, 125, 60, 0.13));
}

.service-card h3,
.service-card p,
.service-index {
  position: relative;
  z-index: 1;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.service-index {
  display: block;
  margin-bottom: 58px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
}

.service-card-accent {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, var(--green-bright), var(--green) 48%, var(--green-dark));
  box-shadow: 0 26px 70px rgba(0, 125, 60, 0.24);
}

.service-card-accent .service-index,
.service-card-accent p {
  color: rgba(255, 255, 255, 0.82);
}

.portfolio-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(245, 249, 246, 0.74)),
    radial-gradient(circle at 80% 16%, rgba(0, 125, 60, 0.13), transparent 26rem);
}

.portfolio-heading {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: clamp(18px, 2.8vw, 28px);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.portfolio-tools {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.portfolio-downloads {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.portfolio-downloads a {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.18);
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.portfolio-downloads a:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--green-rgb), 0.36);
  background: rgba(255, 255, 255, 0.9);
}

.filter-button {
  position: relative;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 28px rgba(7, 27, 17, 0.06);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.filter-button::before {
  position: absolute;
  inset: -45% auto -45% -72%;
  width: 44%;
  content: "";
  transform: skewX(-24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transition: left 420ms ease;
}

.filter-button:hover {
  transform: translateY(-2px);
  color: var(--green-dark);
  border-color: rgba(var(--green-rgb), 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 18px 38px rgba(7, 27, 17, 0.1);
}

.filter-button:hover::before {
  left: 126%;
}

.filter-button.is-active {
  color: var(--white);
  border-color: rgba(0, 125, 60, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 38%),
    linear-gradient(135deg, var(--green-bright), var(--green) 46%, var(--green-dark));
  box-shadow: 0 16px 36px rgba(0, 125, 60, 0.27);
}

.filter-button.is-active:hover {
  color: var(--white);
}

.portfolio-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-mosaic-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(var(--green-rgb), 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 24px 72px rgba(0, 47, 24, 0.11);
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(1.16);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.portfolio-mosaic-card:nth-child(7) {
  grid-column: 1 / -1;
}

.portfolio-mosaic-card:hover,
.portfolio-mosaic-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(var(--green-rgb), 0.42);
  box-shadow: 0 30px 88px rgba(0, 47, 24, 0.2);
  outline: none;
}

.portfolio-mosaic {
  display: grid;
  min-height: clamp(300px, 34vw, 470px);
  gap: 5px;
  padding: 5px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(232, 244, 236, 0.76)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 -1px 0 rgba(var(--green-rgb), 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.mosaic-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  background: #062016;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.48);
}

.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

.portfolio-mosaic-card:hover .mosaic-tile img,
.portfolio-mosaic-card:focus-visible .mosaic-tile img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.mosaic-more-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(2, 12, 8, 0.18), rgba(2, 12, 8, 0.66));
}

.mosaic-more-tile strong {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.42);
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.mosaic-wide {
  grid-template-columns: 1.16fr 0.92fr 0.92fr;
  grid-template-rows: repeat(3, 1fr);
}

.mosaic-wide .mosaic-tall {
  grid-row: 1 / 4;
}

.mosaic-wide .mosaic-wide-tile {
  grid-column: span 2;
}

.mosaic-stack {
  grid-template-columns: 0.92fr 0.92fr 1.1fr;
  grid-template-rows: repeat(3, 1fr);
}

.mosaic-stack .mosaic-wide-tile {
  grid-column: 1 / 3;
}

.mosaic-stack .mosaic-tall {
  grid-column: 3;
  grid-row: 1 / 3;
}

.mosaic-feature {
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(3, 1fr);
}

.mosaic-feature .mosaic-big {
  grid-row: 1 / 4;
}

.mosaic-feature.mosaic-reverse {
  grid-template-columns: 0.78fr 1.22fr;
}

.mosaic-feature.mosaic-reverse .mosaic-big {
  grid-column: 2;
  grid-row: 1 / 4;
}

.mosaic-feature.mosaic-reverse .mosaic-tile:not(.mosaic-big) {
  grid-column: 1;
}

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

.mosaic-columns .mosaic-tall {
  grid-row: 1 / 3;
}

.mosaic-split {
  grid-template-columns: 1fr 0.92fr 0.92fr;
  grid-template-rows: 0.92fr 1.08fr;
}

.mosaic-split .mosaic-wide-tile {
  grid-column: 1 / 3;
}

.mosaic-split .mosaic-tall {
  grid-column: 3;
  grid-row: 1 / 3;
}

.mosaic-quad {
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
}

.mosaic-quad .mosaic-wide-tile {
  grid-row: 1 / 3;
}

.portfolio-mosaic.mosaic-wide .mosaic-tile:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 4;
}

.portfolio-mosaic.mosaic-wide .mosaic-tile:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.portfolio-mosaic.mosaic-wide .mosaic-tile:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.portfolio-mosaic.mosaic-wide .mosaic-tile:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.portfolio-mosaic.mosaic-wide .mosaic-tile:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.portfolio-mosaic.mosaic-wide .mosaic-tile:nth-child(6) {
  grid-column: 2 / 4;
  grid-row: 3;
}

.portfolio-mosaic.mosaic-stack .mosaic-tile:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1;
}

.portfolio-mosaic.mosaic-stack .mosaic-tile:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.portfolio-mosaic.mosaic-stack .mosaic-tile:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / 3;
}

.portfolio-mosaic.mosaic-stack .mosaic-tile:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.portfolio-mosaic.mosaic-stack .mosaic-tile:nth-child(5) {
  grid-column: 1;
  grid-row: 3;
}

.portfolio-mosaic.mosaic-stack .mosaic-tile:nth-child(6) {
  grid-column: 2 / 4;
  grid-row: 3;
}

.portfolio-mosaic.mosaic-feature .mosaic-tile:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 4;
}

.portfolio-mosaic.mosaic-feature .mosaic-tile:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.portfolio-mosaic.mosaic-feature .mosaic-tile:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.portfolio-mosaic.mosaic-feature .mosaic-tile:nth-child(4) {
  grid-column: 2;
  grid-row: 3;
}

.portfolio-mosaic.mosaic-feature.mosaic-reverse .mosaic-tile:nth-child(1) {
  grid-column: 2;
  grid-row: 1 / 4;
}

.portfolio-mosaic.mosaic-feature.mosaic-reverse .mosaic-tile:nth-child(2) {
  grid-column: 1;
  grid-row: 1;
}

.portfolio-mosaic.mosaic-feature.mosaic-reverse .mosaic-tile:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.portfolio-mosaic.mosaic-feature.mosaic-reverse .mosaic-tile:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}

.portfolio-mosaic.mosaic-columns .mosaic-tile:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.portfolio-mosaic.mosaic-columns .mosaic-tile:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.portfolio-mosaic.mosaic-columns .mosaic-tile:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.portfolio-mosaic.mosaic-columns .mosaic-tile:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.portfolio-mosaic.mosaic-columns .mosaic-tile:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.portfolio-mosaic.mosaic-split {
  grid-template-rows: 0.9fr 0.9fr 0.7fr;
}

.portfolio-mosaic.mosaic-split .mosaic-tile:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1;
}

.portfolio-mosaic.mosaic-split .mosaic-tile:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.portfolio-mosaic.mosaic-split .mosaic-tile:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.portfolio-mosaic.mosaic-split .mosaic-tile:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / 3;
}

.portfolio-mosaic.mosaic-split .mosaic-tile:nth-child(5) {
  grid-column: 1 / 4;
  grid-row: 3;
}

.portfolio-mosaic.mosaic-quad .mosaic-tile:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.portfolio-mosaic.mosaic-quad .mosaic-tile:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.portfolio-mosaic.mosaic-quad .mosaic-tile:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.portfolio-mosaic.mosaic-quad .mosaic-tile:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
}

.portfolio-mosaic-content {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px 24px 24px;
}

.portfolio-mosaic-content p {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portfolio-mosaic-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.9vw, 1.58rem);
  line-height: 1.12;
}

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

.project-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.project-card:hover .project-visual::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.58), transparent 28% 58%, rgba(255, 255, 255, 0.28)),
    linear-gradient(180deg, transparent 58%, rgba(5, 18, 12, 0.2));
}

.project-card:hover .project-photo::after {
  background:
    linear-gradient(180deg, transparent 44%, rgba(5, 18, 12, 0.42)),
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 38% 70%, rgba(255, 255, 255, 0.12));
}

.project-card:hover .project-visual span {
  transform: scale(1.04);
}

.project-card:hover .project-photo img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.service-card.is-hidden,
.project-card.is-hidden,
.portfolio-mosaic-card.is-hidden {
  display: none;
}

.partners-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 125, 60, 0.12), transparent 24rem),
    linear-gradient(180deg, #f7faf6, #eef5ef);
}

.partners-heading {
  max-width: 1040px;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.partners-heading h2 {
  max-width: 1040px;
  margin-right: 0;
  margin-left: 0;
  color: var(--ink);
  font-size: clamp(2.08rem, 4.75vw, 4.85rem);
  font-weight: 900;
  line-height: 0.96;
}

.partners-heading h2 span {
  color: var(--green);
  font-weight: 900;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.partner-card {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 22px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 58px rgba(0, 47, 24, 0.08);
  backdrop-filter: blur(18px) saturate(1.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 125, 60, 0.26);
  box-shadow: var(--shadow);
}

.partner-card span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.partner-card strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 1rem;
}

.project-visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.24 / 1;
  overflow: hidden;
  color: var(--white);
  background: #202625;
}

.project-photo {
  background: #0b1712;
}

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 260ms ease, filter 260ms ease;
}

.project-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.38), transparent 24% 60%, rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, transparent 58%, rgba(5, 18, 12, 0.18));
}

.project-photo::after {
  background:
    linear-gradient(180deg, transparent 48%, rgba(5, 18, 12, 0.36)),
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 36% 68%, rgba(255, 255, 255, 0.08));
}

.project-visual span {
  position: relative;
  z-index: 2;
  padding: 13px 20px;
  border: 2px solid currentColor;
  font-size: clamp(1.08rem, 2vw, 1.72rem);
  font-weight: 950;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease;
}

.case-visual {
  aspect-ratio: 16 / 10;
  background: #0c1712;
}

.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 220ms ease, filter 220ms ease;
}

.project-card:hover .case-visual img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.04);
}

.project-visual::before {
  position: absolute;
  content: "";
}

.visual-facade {
  background:
    linear-gradient(0deg, #222925 0 28%, transparent 28%),
    linear-gradient(90deg, #e8eeea 0 18%, #c4d0c8 18% 20%, #fbfcfa 20% 80%, #c4d0c8 80% 82%, #e8eeea 82%);
}

.visual-facade span {
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
}

.visual-window {
  background:
    linear-gradient(90deg, rgba(0, 125, 60, 0.88) 0 42%, rgba(255, 255, 255, 0.28) 42% 58%, rgba(216, 166, 41, 0.88) 58%),
    linear-gradient(135deg, #1b2823, #f4f5ef);
}

.visual-window::before {
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.66);
}

.visual-print {
  background: linear-gradient(135deg, #f7faf6, #d9e4de);
}

.visual-print::before {
  width: 68%;
  height: 72%;
  border-radius: 4px;
  background: linear-gradient(160deg, var(--green) 0 48%, var(--gold) 48% 63%, #1d2421 63%);
  box-shadow: 0 24px 60px rgba(20, 24, 23, 0.2);
}

.visual-signage {
  background:
    linear-gradient(90deg, #f7f8f5 0 16%, #d5ddd8 16% 17%, transparent 17%),
    linear-gradient(180deg, #ecf0eb, #bdc9c1);
}

.visual-signage span {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.visual-car {
  background: linear-gradient(180deg, #edf0eb 0 48%, #202625 48%);
}

.visual-car::before {
  width: 78%;
  height: 34%;
  border-radius: 60px 80px 22px 22px;
  background: linear-gradient(90deg, #49b17c, var(--green-bright) 58%, var(--gold) 58%);
  box-shadow: inset 70px 0 0 rgba(255, 255, 255, 0.2), 0 24px 55px rgba(0, 61, 31, 0.16);
}

.visual-large {
  background: #1d2421;
}

.visual-large::before {
  width: 76%;
  height: 68%;
  border: 8px solid #eff2ed;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, var(--green), #0e5a31 52%, var(--gold));
}

.visual-large span {
  border-color: transparent;
}

.project-content {
  padding: 24px;
}

.project-content p {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-content h3 {
  margin-bottom: 0;
}

.process-section {
  background:
    linear-gradient(90deg, rgba(0, 125, 60, 0.11), transparent 38%),
    rgba(255, 255, 255, 0.34);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.process-list article {
  display: grid;
  align-content: start;
  min-height: 222px;
  padding: 30px;
  border-right: 1px solid rgba(0, 125, 60, 0.13);
}

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

.process-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 1px solid rgba(var(--green-rgb), 0.18);
  border-radius: 8px;
  color: var(--green);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.52)),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 14px 34px rgba(0, 47, 24, 0.08);
}

.process-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.process-list span {
  display: block;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 1rem;
  font-weight: 950;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
}

.map-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 80px rgba(0, 47, 24, 0.13);
  backdrop-filter: blur(18px) saturate(1.12);
}

.map-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.55), transparent 38%),
    radial-gradient(circle at 16% 0%, rgba(var(--green-rgb), 0.12), transparent 18rem);
}

.map-card-header,
.map-card .location-map {
  position: relative;
  z-index: 1;
}

.map-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 2px 4px 13px;
}

.map-card-header span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.map-card-header strong {
  color: #26342e;
  font-size: 0.9rem;
}

.location-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 50% 48%, rgba(0, 125, 60, 0.3), transparent 11rem),
    linear-gradient(135deg, rgba(0, 125, 60, 0.12), rgba(215, 166, 37, 0.12));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.22);
}

.map-grid {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(90deg, rgba(0, 125, 60, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(0, 125, 60, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: rotate(-8deg) scale(1.2);
}

.map-grid::before,
.map-grid::after {
  position: absolute;
  content: "";
  background: rgba(0, 125, 60, 0.22);
}

.map-grid::before {
  top: 42%;
  left: 0;
  right: 0;
  height: 20px;
}

.map-grid::after {
  top: 0;
  bottom: 0;
  left: 56%;
  width: 18px;
}

.map-pin {
  position: absolute;
  top: 48%;
  left: 52%;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 125, 60, 0.13);
  box-shadow: 0 0 0 18px rgba(0, 125, 60, 0.07), 0 26px 70px rgba(0, 58, 29, 0.2);
}

.map-pin span {
  display: block;
  width: 34px;
  height: 34px;
  border: 6px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--green);
}

.map-label {
  position: absolute;
  right: 26px;
  bottom: 26px;
  max-width: 300px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(0, 47, 24, 0.12);
  backdrop-filter: blur(16px);
}

.map-label strong,
.map-label span {
  display: block;
}

.map-label span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.42;
}

.location-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.location-details {
  display: grid;
  grid-template-columns: 1fr 1.16fr 1.22fr;
  gap: 12px;
  width: min(100%, 980px);
  margin: 28px auto 0;
}

.location-details a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 30px rgba(0, 47, 24, 0.07);
  color: #23302b;
  font-size: clamp(0.76rem, 0.82vw, 0.84rem);
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.location-details a:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--green-rgb), 0.32);
  color: var(--green-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 16px 38px rgba(0, 47, 24, 0.1);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.location-actions .button {
  min-width: 210px;
  min-height: 54px;
}

.location-actions .button-primary {
  color: var(--white);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(18px, 5vw, 72px);
  padding: clamp(58px, 8vw, 104px);
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.1), transparent 28%, rgba(215, 166, 37, 0.12)),
    linear-gradient(135deg, #004323, #006436 54%, #07391f);
  box-shadow: var(--deep-shadow);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 32%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 22px);
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy {
  max-width: 820px;
}

.contact-copy .eyebrow {
  color: var(--gold);
}

.contact-copy p:last-child {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.62;
}

.contact-section .button-primary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.9);
}

.contact-section .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(24px) saturate(1.1);
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(2, 42, 23, 0.42);
  font: inherit;
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 56px;
  padding: 0 16px;
}

.contact-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 50px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 18px center / 18px 18px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(2, 42, 23, 0.42);
  font-weight: 850;
}

.contact-form select:invalid {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(2, 42, 23, 0.56);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background-color: rgba(2, 42, 23, 0.5);
}

.contact-form option {
  color: var(--ink);
}

.contact-form .button {
  width: 100%;
  min-height: 66px;
  margin-top: 12px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(135deg, var(--green-bright), var(--green) 48%, var(--green-dark));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 44px rgba(0, 33, 17, 0.24);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  font-weight: 950;
  letter-spacing: 0;
  clip-path: inset(0 round 10px);
}

.contact-form .button::before {
  display: none;
}

.contact-form .button:hover {
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 24px 58px rgba(0, 33, 17, 0.3);
}

.floating-whatsapp {
  position: fixed;
  z-index: 18;
  right: 18px;
  bottom: 18px;
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.34), transparent 22px),
    linear-gradient(180deg, var(--green) 0%, #006831 58%, var(--green-dark) 100%);
  box-shadow:
    0 18px 48px rgba(0, 125, 60, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -16px 22px rgba(0, 86, 27, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 24px 60px rgba(0, 125, 60, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -16px 22px rgba(0, 86, 27, 0.12);
}

.floating-whatsapp svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-bubble {
  stroke-width: 4.8;
}

.whatsapp-phone {
  fill: currentColor;
  stroke: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-credit {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.footer-credit a {
  color: var(--green-dark);
  font-weight: 950;
  transition: color 180ms ease;
}

.footer-credit a:hover {
  color: var(--green);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 34px rgba(0, 47, 24, 0.08);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(14px);
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: var(--white);
  background: linear-gradient(135deg, var(--green-bright), var(--green-dark));
  box-shadow: 0 18px 44px rgba(0, 125, 60, 0.22);
}

.footer-social svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

/* Direção visual limpa: vidro sobre mídia, sem excesso de textura. */
body {
  background: #eef4ef;
}

body::before,
body::after {
  display: none;
}

.site-header {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 60px rgba(0, 31, 16, 0.12);
}

.hero {
  isolation: isolate;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  min-height: min(920px, 100svh);
  margin: 0;
  padding: 138px clamp(18px, 5vw, 72px) 72px;
  color: var(--white);
  background: #07120d;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(2, 18, 10, 0.92), rgba(2, 18, 10, 0.5) 45%, rgba(2, 18, 10, 0.78)),
    radial-gradient(circle at 78% 24%, rgba(0, 125, 60, 0.34), transparent 28rem),
    #101816;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.12) 54%, rgba(0, 0, 0, 0.54)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.72));
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.14), transparent 20% 72%, rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 28% 72%, rgba(0, 125, 60, 0.24), transparent 22rem);
  mix-blend-mode: screen;
  opacity: 0.58;
}

.work-backdrop {
  position: absolute;
  inset: 94px clamp(16px, 4vw, 64px) 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  grid-template-rows: 1fr 0.82fr;
  gap: 18px;
  opacity: 0.38;
  filter: saturate(0.9);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media.has-video .work-backdrop {
  display: none;
}

.work-shot {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(0, 125, 60, 0.24), rgba(4, 12, 9, 0.62)),
    #21302a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13), 0 30px 80px rgba(0, 0, 0, 0.28);
}

.work-shot::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0 18%, transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 92px);
}

.work-shot::after {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(0, 125, 60, 0.72), rgba(215, 166, 37, 0.36));
  filter: blur(0.2px);
}

.work-shot span {
  display: none;
}

.work-shot-large {
  grid-row: 1 / 3;
}

.work-shot-tall::after {
  inset: 8% 18%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(0, 125, 60, 0.65));
}

.work-shot-wide {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 35%),
    linear-gradient(90deg, #18241f, #005f35 52%, #1d241f);
}

.hero-copy {
  max-width: 720px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(1.08);
}

.hero-logo {
  width: clamp(150px, 16vw, 230px);
  margin-bottom: 34px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.hero .eyebrow {
  color: #7fc59b;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hero-text {
  color: rgba(255, 255, 255, 0.84);
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
  align-self: stretch;
  min-height: 0;
  padding: clamp(22px, 3vw, 34px);
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.hero-visual-label {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-visual img {
  background: rgba(255, 255, 255, 0.82);
}

.spec-strip span {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
}

.section {
  background: transparent;
}

.portfolio-section,
.process-section {
  background: #eef4ef;
}

.intro-band {
  margin-top: 46px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.08), transparent 26%, rgba(0, 125, 60, 0.22)),
    linear-gradient(135deg, #101615, #12221b 46%, #004725);
  box-shadow: 0 34px 110px rgba(4, 19, 13, 0.22);
}

.intro-band p {
  color: rgba(255, 255, 255, 0.88);
}

.service-card,
.project-card,
.process-list {
  background: rgba(255, 255, 255, 0.72);
}

/* Primeira tela refinada no estilo referência: capa limpa com mídia ao fundo. */
.site-header {
  top: 0;
  left: 0;
  right: 0;
  min-height: 104px;
  padding: 24px clamp(22px, 7vw, 110px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header::after {
  display: none;
}

.brand img {
  width: clamp(170px, 14vw, 240px);
  filter: brightness(1.16) saturate(1.12) drop-shadow(0 10px 26px rgba(0, 0, 0, 0.38));
}

.brand {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(0.82);
}

.site-nav {
  gap: clamp(24px, 4vw, 58px);
  color: rgba(223, 231, 243, 0.62);
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  font-weight: 700;
}

.site-nav a:hover {
  color: rgba(255, 255, 255, 0.94);
}

.site-nav a::after {
  bottom: 0;
  background: var(--green);
}

.header-cta {
  min-height: 62px;
  padding: 0 34px;
  border-radius: 999px;
  color: #fff;
  background: #40577f;
  box-shadow: 0 18px 46px rgba(18, 32, 61, 0.28);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100svh;
  padding: 132px clamp(20px, 6vw, 110px) 42px;
  text-align: left;
  background: #070908;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(5, 8, 10, 0.62), rgba(5, 8, 10, 0.2) 48%, rgba(5, 8, 10, 0.5)),
    linear-gradient(180deg, rgba(5, 8, 10, 0.12), rgba(5, 8, 10, 0.48)),
    url("trabalhos/hero-fallback-inpress.svg?v=20260615-neutral-2") center / cover no-repeat,
    #121816;
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.46));
}

.hero-media::after {
  opacity: 0.24;
}

.work-backdrop {
  display: none;
}

.work-shot {
  display: none;
}

.hero-copy {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: min(100%, 840px);
  max-width: 840px;
  margin-left: clamp(0px, 14vw, 260px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.65rem, 4.05vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 22px 68px rgba(0, 0, 0, 0.44);
}

.hero h1 span {
  color: #fff;
  font-weight: 950;
}

.hero-text {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  line-height: 1.45;
  text-align: left;
}

.hero-text strong {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-weight: 500;
}

.hero-actions {
  justify-content: flex-start;
  gap: 18px;
  margin-top: 42px;
}

.hero-actions .button {
  min-height: 68px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 1.08rem;
}

.hero-actions svg {
  width: 25px;
  height: 25px;
  margin-right: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 50px rgba(0, 90, 45, 0.28);
}

.hero-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 54px rgba(0, 0, 0, 0.2);
}

.hero-highlights {
  display: none;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 24px;
  width: min(100%, 780px);
  margin-top: 72px;
}

.hero-highlights article {
  display: grid;
  place-items: center;
  min-height: 136px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px) saturate(1.08);
}

.highlight-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 125, 60, 0.36);
  border-radius: 50%;
  color: var(--green);
  background: rgba(0, 125, 60, 0.16);
}

.highlight-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

@media (max-width: 980px) {
  .site-header {
    min-height: 74px;
    padding: 14px 18px;
  }

  .site-header.is-open .site-nav {
    top: 76px;
    left: 18px;
    right: 18px;
    background: rgba(10, 18, 14, 0.92);
  }

  .hero {
    padding-top: 108px;
    justify-content: center;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-top: 44px;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 145px;
  }

  .hero {
    padding: 106px 20px 34px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 15vw, 4.35rem);
    text-align: center;
  }

  .hero-copy {
    align-items: center;
    margin-left: 0;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text {
    margin-top: 24px;
    font-size: 1.08rem;
  }

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

  .hero-actions .button {
    width: 100%;
    min-height: 58px;
  }

  .hero-highlights {
    display: none;
  }
}


@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .site-header.is-open .site-nav a {
    padding: 18px;
    border-bottom: 1px solid rgba(0, 125, 60, 0.12);
  }

  .site-header.is-open .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .intro-band,
  .contact-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .portfolio-heading {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    justify-content: center;
  }

  .portfolio-tools {
    justify-items: center;
  }

  .portfolio-downloads {
    justify-content: flex-start;
  }

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

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

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

  .process-list article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 125, 60, 0.13);
  }

  .location-map {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 64px;
    padding: 10px;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    padding-top: 106px;
  }

  .hero::before {
    inset: 88px 10px 22px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }

  .hero-visual {
    min-height: 300px;
    padding: 20px;
  }

  .hero-visual img {
    width: 100%;
  }

  .intro-band,
  .contact-section {
    margin-left: 10px;
    margin-right: 10px;
    padding: 34px 22px;
  }

  .location-section {
    gap: 24px;
  }

  .location-map {
    min-height: 320px;
  }

  .map-label {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 62px;
    height: 62px;
    border-radius: 16px;
  }

  .floating-whatsapp svg {
    width: 43px;
    height: 43px;
  }

  .spec-strip,
  .service-grid,
  .project-grid,
  .partner-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .spec-strip span {
    white-space: normal;
  }

  .service-card {
    min-height: auto;
  }

  .service-index {
    margin-bottom: 38px;
  }

  .process-list article,
  .process-list article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 125, 60, 0.13);
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .site-header.is-open .site-nav {
    top: 76px;
    left: 18px;
    right: 18px;
    background: rgba(10, 18, 14, 0.94);
  }

  .site-header.is-open .site-nav a {
    color: rgba(255, 255, 255, 0.86);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .hero {
    display: flex;
    min-height: 100svh;
    padding-top: 108px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    padding: 106px 20px 34px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 15vw, 4.35rem);
  }
}

/* Ajuste final de identidade: vidro branco e verde institucional da Inpress. */
.site-header {
  top: clamp(12px, 2vw, 24px);
  left: clamp(14px, 5vw, 82px);
  right: clamp(14px, 5vw, 82px);
  grid-template-columns: auto 1fr;
  min-height: 82px;
  padding: 12px clamp(18px, 2.6vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48) 45%, rgba(255, 255, 255, 0.66)),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 70px rgba(3, 17, 12, 0.16);
  backdrop-filter: blur(24px) saturate(0.94);
}

.site-header::after {
  display: block;
  inset: 1px;
  border-radius: 7px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.58), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.brand {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand img {
  width: clamp(164px, 12vw, 218px);
  filter: none;
}

.site-nav {
  justify-content: flex-end;
  gap: clamp(22px, 3.5vw, 52px);
  color: rgba(12, 30, 23, 0.72);
}

.site-nav a:hover {
  color: var(--green-dark);
}

.site-nav a::after {
  background: var(--green);
}

.header-cta {
  display: none;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(4, 18, 12, 0.58), rgba(4, 18, 12, 0.14) 50%, rgba(4, 18, 12, 0.44)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(2, 10, 7, 0.42)),
    url("trabalhos/hero-fallback-inpress.svg?v=20260615-neutral-2") center / cover no-repeat,
    #121816;
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.06) 48%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.42));
}

.hero h1 span {
  color: var(--green);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 48px rgba(0, 0, 0, 0.44);
}

.hero-text strong {
  color: rgba(255, 255, 255, 0.94);
}

.hero-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 50px rgba(0, 90, 45, 0.34);
}

.hero-primary:hover {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  box-shadow: 0 22px 60px rgba(0, 90, 45, 0.4);
}

.hero-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(0.92);
}

.hero-secondary:hover {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.3);
}

.highlight-icon {
  border-color: rgba(0, 125, 60, 0.36);
  color: var(--green);
  background: rgba(0, 125, 60, 0.14);
}

@media (max-width: 980px) {
  .site-header {
    left: 16px;
    right: 16px;
    grid-template-columns: auto auto;
    min-height: 72px;
    padding: 11px 14px;
  }

  .menu-button span {
    background: var(--green-dark);
  }

  .site-header.is-open .site-nav {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
  }

  .site-header.is-open .site-nav a {
    color: #193128;
    border-bottom-color: rgba(0, 125, 60, 0.14);
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    min-height: 66px;
    padding: 10px 12px;
  }

  .menu-button {
    display: block;
    flex: 0 0 44px;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    justify-content: center;
    padding: 112px 20px 40px;
  }

  .hero-copy {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    align-items: center;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.15rem, 10.8vw, 3.1rem);
    line-height: 0.98;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero h1 span {
    color: #fff;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.48;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    justify-content: center;
    width: 100%;
    padding: 0 20px;
  }

  .hero-actions svg {
    flex: 0 0 auto;
  }
}

/* Primeira tela: uma unica pele de vidro sobre o video. */
.site-header {
  top: clamp(18px, 3vw, 34px);
  left: clamp(18px, 6vw, 96px);
  right: clamp(18px, 6vw, 96px);
  grid-template-columns: auto 1fr;
  min-height: 56px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header::after {
  display: none;
}

.brand img {
  width: clamp(158px, 12vw, 216px);
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.36));
}

.site-nav {
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a::after {
  background: var(--green);
}

.hero {
  isolation: isolate;
  background: #06110d;
}

.hero::before {
  position: absolute;
  inset: clamp(18px, 3vw, 42px);
  z-index: -1;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  content: "";
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.045) 44%, rgba(255, 255, 255, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 125, 60, 0.035)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 34px 110px rgba(0, 0, 0, 0.24);
  pointer-events: none;
  backdrop-filter: blur(10px) saturate(0.92);
}

.hero::after {
  display: none;
}

.hero-video {
  filter: saturate(0.92) contrast(1.05);
}

.hero-media::after {
  opacity: 1;
  mix-blend-mode: normal;
  background:
    linear-gradient(90deg, rgba(1, 8, 5, 0.5), rgba(1, 8, 5, 0.16) 48%, rgba(1, 8, 5, 0.5)),
    linear-gradient(180deg, rgba(1, 8, 5, 0.2), rgba(1, 8, 5, 0.72));
}

@media (max-width: 980px) {
  .site-header {
    left: 18px;
    right: 18px;
    grid-template-columns: auto auto;
    min-height: 52px;
  }

  .menu-button {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
  }

  .menu-button span {
    background: #fff;
  }

  .site-header.is-open .site-nav {
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(9, 21, 16, 0.76);
    backdrop-filter: blur(18px) saturate(0.9);
  }

  .site-header.is-open .site-nav a {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    width: auto;
    padding: 0;
  }

  .brand img {
    width: 138px;
  }

  .hero {
    display: grid;
    place-items: center;
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    padding: 118px 18px 38px;
  }

  .hero-copy {
    width: min(100%, 274px);
    max-width: 274px;
    margin: 0 auto;
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(1.66rem, 8vw, 2.02rem);
    line-height: 1.04;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .hero-text {
    font-size: 0.94rem;
  }

  .hero-actions {
    width: min(100%, 274px);
    max-width: 274px;
  }

  .hero-actions .button {
    min-width: 0;
    white-space: normal;
  }

  .hero::before {
    inset: 10px;
    backdrop-filter: blur(8px) saturate(0.9);
  }
}

/* Pelicula de vidro lisa: sem quadro, sem borda, cobrindo a primeira tela inteira. */
.hero::before {
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035) 42%, rgba(255, 255, 255, 0.08)),
    linear-gradient(90deg, rgba(2, 10, 7, 0.46), rgba(2, 10, 7, 0.1) 48%, rgba(2, 10, 7, 0.44)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(1, 8, 5, 0.52));
  box-shadow: none;
  backdrop-filter: blur(8px) saturate(0.88);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(1, 8, 5, 0.4), rgba(1, 8, 5, 0.08) 48%, rgba(1, 8, 5, 0.4)),
    linear-gradient(180deg, rgba(1, 8, 5, 0.08), rgba(1, 8, 5, 0.66));
}

@media (max-width: 640px) {
  .hero::before {
    inset: 0;
    border-radius: 0;
    backdrop-filter: blur(7px) saturate(0.88);
  }
}

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

.site-nav a:hover {
  color: var(--green);
}

.site-header {
  transition:
    top 220ms ease,
    left 220ms ease,
    right 220ms ease,
    min-height 220ms ease,
    padding 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  top: 0;
  left: 0;
  right: 0;
  min-height: 78px;
  padding: 9px clamp(28px, 5vw, 78px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 243, 0.86)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 44px rgba(0, 34, 18, 0.12);
  backdrop-filter: blur(18px) saturate(0.96);
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.site-header.is-scrolled .site-nav {
  color: var(--green);
  text-shadow: none;
}

.site-header.is-scrolled .site-nav a:hover {
  color: var(--green-dark);
}

.site-header.is-scrolled .menu-button {
  border-color: rgba(0, 125, 60, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .menu-button span {
  background: var(--green-dark);
}

@media (max-width: 980px) {
  .site-header.is-scrolled {
    min-height: 70px;
    padding: 10px 18px;
  }

  .site-header.is-scrolled.is-open .site-nav {
    background: rgba(255, 255, 255, 0.92);
  }

  .site-header.is-scrolled.is-open .site-nav a {
    color: var(--green);
    border-bottom-color: rgba(0, 125, 60, 0.14);
  }
}

@media (max-width: 640px) {
  .site-header.is-scrolled {
    top: 0;
    left: 0;
    right: 0;
    min-height: 66px;
    padding: 9px 14px;
  }
}

/* Secao institucional Inpress. */
.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: clamp(26px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 125, 60, 0.2), transparent 30%),
    linear-gradient(135deg, #07110d, #0b1712 48%, #07110d);
}

.about-visual {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 520px;
  padding: clamp(26px, 4vw, 44px);
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 36% 26%, rgba(0, 125, 60, 0.38), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%),
    #102119;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.about-visual::before,
.about-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.about-visual::before {
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 78px);
  opacity: 0.42;
}

.about-visual::after {
  right: -18%;
  bottom: -12%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(0, 125, 60, 0.24);
  filter: blur(10px);
}

.about-visual img,
.about-visual strong,
.about-visual span {
  position: relative;
  z-index: 1;
}

.about-visual img {
  width: min(100%, 300px);
  margin-bottom: auto;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.about-visual strong {
  color: var(--green-bright);
  font-size: clamp(4rem, 8vw, 8.2rem);
  line-height: 0.82;
}

.about-visual span {
  max-width: 340px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-content {
  align-self: center;
}

.about-content .eyebrow {
  color: var(--green-bright);
}

.about-content h2 {
  color: #fff;
}

.about-content > p {
  max-width: 960px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.35vw, 1.24rem);
  line-height: 1.72;
}

.about-content > p strong {
  color: #fff;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.about-list article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.about-list span {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 950;
}

.about-list span::before {
  margin-right: 10px;
  color: var(--green-bright);
  content: "✓";
}

.about-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

@media (max-width: 980px) {
  .about-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .about-list {
    grid-template-columns: 1fr;
  }

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

/* Refinamento: hero autoral, parceiros em card unico e WhatsApp redondo. */
.hero {
  justify-content: center;
  padding: 132px clamp(20px, 6vw, 110px) 56px;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 340px);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  width: min(100%, 1120px);
  max-width: 1120px;
  margin: 0;
}

.hero-message {
  min-width: 0;
}

.hero-message .hero-text {
  max-width: 660px;
}

.hero-actions {
  display: grid;
  justify-self: end;
  width: min(100%, 340px);
  max-width: 340px;
  gap: 14px;
  margin-top: 0;
}

.hero-actions .button {
  justify-content: flex-start;
  width: 100%;
  min-height: 64px;
  padding: 0 24px;
  text-align: left;
}

.hero-specialist {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(0, 125, 60, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(0.92);
}

.hero-specialist:hover {
  border-color: rgba(0, 125, 60, 0.8);
  background: rgba(0, 125, 60, 0.3);
}

.partners-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  padding: clamp(22px, 3.4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 50% 0%, rgba(var(--green-rgb), 0.13), transparent 30rem),
    rgba(var(--green-rgb), 0.08);
  box-shadow: 0 26px 78px rgba(0, 47, 24, 0.11);
  backdrop-filter: blur(18px) saturate(1.12);
}

.clients-logo-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 16px);
  padding: clamp(18px, 2.2vw, 34px);
}

.client-logo-card {
  display: grid;
  place-items: center;
  min-height: clamp(86px, 7vw, 112px);
  padding: clamp(14px, 1.4vw, 18px);
  border: 1px solid rgba(var(--green-rgb), 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28)),
    rgba(var(--green-rgb), 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 12px 28px rgba(0, 47, 24, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.client-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--green-rgb), 0.3);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38)),
    rgba(var(--green-rgb), 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 18px 40px rgba(0, 47, 24, 0.12);
}

.client-logo-card img {
  display: block;
  max-width: min(90%, 142px);
  max-height: 54px;
  object-fit: contain;
}

.partner-logo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px 14px;
  border: 1px solid rgba(0, 125, 60, 0.14);
  border-radius: 8px;
  color: var(--green);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.45vw, 1.42rem);
  font-weight: 950;
  line-height: 1.04;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.partner-logo img {
  display: block;
  max-width: min(82%, 154px);
  max-height: 54px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(25%) sepia(91%) saturate(1187%) hue-rotate(132deg) brightness(90%) contrast(101%);
}

.partner-logo::after {
  display: none;
  content: attr(data-name);
}

.partner-logo.is-fallback::after {
  display: block;
}

.partner-logo:hover {
  transform: translateY(-3px);
  color: var(--green-dark);
  border-color: rgba(0, 125, 60, 0.34);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(0, 47, 24, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.partner-logo:hover img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(67%) saturate(1570%) hue-rotate(132deg) brightness(93%) contrast(102%);
}

.floating-whatsapp {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.32), transparent 20px),
    linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow:
    0 18px 48px rgba(0, 125, 60, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -14px 22px rgba(0, 35, 18, 0.18);
}

.floating-whatsapp:hover {
  box-shadow:
    0 24px 60px rgba(0, 125, 60, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -14px 22px rgba(0, 35, 18, 0.16);
}

.floating-whatsapp svg {
  width: 44px;
  height: 44px;
}

@media (max-width: 980px) {
  .hero-copy {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 760px;
    gap: 28px;
  }

  .hero-message,
  .hero h1,
  .hero-text {
    text-align: center;
  }

  .hero-actions {
    justify-self: center;
    width: min(100%, 380px);
    max-width: 380px;
  }

  .hero-actions .button {
    justify-content: center;
    text-align: center;
  }

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

@media (max-width: 640px) {
  .hero {
    padding: 118px 18px 38px;
  }

  .hero-copy {
    width: min(100%, 288px);
    max-width: 288px;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(1.42rem, 7.1vw, 1.74rem);
    line-height: 1.08;
  }

  .hero-actions {
    width: 100%;
    max-width: 288px;
  }

  .hero-actions .button {
    min-height: 58px;
    padding: 0 16px;
    white-space: normal;
  }

  .partners-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .partner-logo {
    min-height: 86px;
  }

  .floating-whatsapp {
    width: 60px;
    height: 60px;
  }

  .floating-whatsapp svg {
    width: 39px;
    height: 39px;
  }
}

/* Ajustes finais solicitados: identidade, mapa real e fundo provisório. */
.site-header:not(.is-scrolled) .brand img {
  filter: brightness(0) invert(1) drop-shadow(0 12px 30px rgba(0, 0, 0, 0.46));
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.site-header:not(.is-scrolled) .site-nav a:hover {
  color: var(--green);
}

.hero h1 span {
  color: var(--green);
}

.hero-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 50px rgba(var(--green-rgb), 0.34);
}

.hero-primary:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 22px 60px rgba(var(--green-rgb), 0.42);
}

.hero-specialist {
  background: rgba(var(--green-rgb), 0.2);
}

.hero-specialist:hover {
  border-color: rgba(var(--green-rgb), 0.82);
  background: rgba(var(--green-rgb), 0.32);
}

.about-visual {
  align-content: end;
  justify-items: center;
  min-height: 620px;
  padding: clamp(30px, 5vw, 56px);
  background:
    linear-gradient(180deg, rgba(5, 18, 12, 0.08), rgba(5, 18, 12, 0.54)),
    linear-gradient(90deg, rgba(5, 18, 12, 0.28), rgba(5, 18, 12, 0.04) 42%, rgba(5, 18, 12, 0.48)),
    url("assets/about-print-worker.png") center / cover no-repeat;
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.28);
}

.about-visual::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 20%),
    radial-gradient(circle at 54% 32%, rgba(var(--green-rgb), 0.16), transparent 22rem);
  opacity: 0.9;
}

.about-visual::after {
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 128px 128px;
  filter: none;
  opacity: 0.48;
}

.about-visual img {
  display: none;
}

.about-visual strong,
.about-visual span {
  display: none;
}

.location-map.google-map {
  display: block;
  min-height: 410px;
  padding: 0;
  border-color: rgba(0, 125, 60, 0.12);
  background: #eaf2ec;
  box-shadow: none;
  backdrop-filter: none;
}

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

.location-map.google-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 410px;
  border: 0;
  filter: saturate(0.9) contrast(0.98);
}

.floating-whatsapp {
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.34), transparent 20px),
    linear-gradient(145deg, var(--green) 0%, #006831 62%, var(--green-dark) 100%);
  box-shadow:
    0 18px 48px rgba(var(--green-rgb), 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -14px 22px rgba(0, 35, 18, 0.18);
}

.floating-whatsapp:hover {
  box-shadow:
    0 24px 60px rgba(var(--green-rgb), 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -14px 22px rgba(0, 35, 18, 0.16);
}

.floating-whatsapp svg {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0;
  transform: translate(1px, 1px);
}

@media (max-width: 980px) {
  .site-header:not(.is-scrolled).is-open .brand img {
    filter: brightness(0) invert(1) drop-shadow(0 12px 30px rgba(0, 0, 0, 0.46));
  }

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

@media (max-width: 640px) {
  .about-visual {
    min-height: 340px;
    background-size: auto, auto, 92px 92px, 92px 92px, auto;
  }

  .location-map.google-map,
  .location-map.google-map iframe {
    min-height: 320px;
  }

  .map-card {
    padding: 10px;
  }

  .map-card-header {
    display: grid;
    justify-content: start;
    padding-bottom: 10px;
  }

  .floating-whatsapp svg {
    width: 36px;
    height: 36px;
  }
}

/* Hero: manter o video e puxar a leitura para comunicacao visual. */
.hero-media {
  background:
    linear-gradient(90deg, rgba(3, 14, 9, 0.68), rgba(3, 14, 9, 0.2) 48%, rgba(3, 14, 9, 0.54)),
    linear-gradient(180deg, rgba(3, 14, 9, 0.05), rgba(3, 14, 9, 0.62)),
    #07120d;
}

.hero-video {
  z-index: 0;
  opacity: 0.86;
  object-position: center;
  filter: blur(3px) saturate(0.9) contrast(1.06) brightness(0.74);
  transform: scale(1.02);
}

.hero-media::before {
  z-index: 1;
  background:
    url("trabalhos/hero-fallback-inpress.svg?v=20260615-neutral-2") right clamp(16px, 7vw, 120px) center / min(52vw, 740px) auto no-repeat;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.hero-media::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(1, 8, 5, 0.58), rgba(1, 8, 5, 0.12) 50%, rgba(1, 8, 5, 0.56)),
    radial-gradient(circle at 69% 46%, rgba(var(--green-rgb), 0.22), transparent 24rem),
    linear-gradient(180deg, rgba(1, 8, 5, 0.06), rgba(1, 8, 5, 0.68));
  opacity: 1;
  mix-blend-mode: normal;
}

@media (max-width: 720px) {
  .hero-media::before {
    background-position: center 36%;
    background-size: min(88vw, 520px) auto;
    opacity: 0.14;
  }
}

/* Ajuste final da localizacao em desktop/tablet largo. */
@media (min-width: 981px) {
  .location-section {
    grid-template-columns: minmax(390px, 0.95fr) minmax(0, 1.05fr) !important;
    gap: clamp(24px, 3vw, 64px) !important;
  }

  .map-card {
    width: min(100%, 720px) !important;
    justify-self: center !important;
  }

  .map-card .location-map.google-map,
  .map-card .location-map.google-map iframe {
    width: 100% !important;
    min-height: 0 !important;
    height: clamp(250px, 20vw, 380px) !important;
    aspect-ratio: auto !important;
  }

  .location-copy {
    max-width: min(100%, 1120px) !important;
  }

  .location-copy h2,
  .location-copy h2 span,
  .location-copy h2 span:first-child,
  .location-copy h2 span:last-child {
    max-width: 100% !important;
    font-size: clamp(1.65rem, 2.05vw, 2.75rem) !important;
    line-height: 1.03 !important;
    white-space: nowrap !important;
  }

  .location-address {
    width: min(100%, 930px) !important;
    max-width: min(100%, 930px) !important;
    margin-top: 18px !important;
    font-size: clamp(0.86rem, 0.92vw, 1.02rem) !important;
    line-height: 1.26 !important;
  }

  .location-note {
    width: min(100%, 760px) !important;
    max-width: min(100%, 760px) !important;
    margin-top: 8px !important;
    font-size: clamp(0.84rem, 0.88vw, 0.98rem) !important;
    line-height: 1.3 !important;
  }

  .location-details {
    width: min(100%, 780px) !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.08fr) !important;
    gap: 8px !important;
    margin-top: 22px !important;
  }

  .location-details a {
    min-height: 42px !important;
    padding-inline: 10px !important;
    border-color: rgba(var(--green-rgb), 0.1) !important;
    font-size: clamp(0.68rem, 0.72vw, 0.8rem) !important;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease !important;
  }

  .location-details a:hover,
  .location-details a:focus-visible {
    transform: translateY(-2px) !important;
    border-color: rgba(var(--green-rgb), 0.72) !important;
    color: #fff !important;
    background:
      linear-gradient(145deg, rgba(var(--green-rgb), 1), rgba(0, 91, 44, 0.96)) !important;
    box-shadow:
      0 16px 38px rgba(0, 103, 50, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
    outline: none;
  }

  .location-actions {
    margin-top: 20px !important;
  }

  .location-actions .button {
    min-width: 190px !important;
    min-height: 50px !important;
  }
}

@media (min-width: 1200px) {
  .location-section {
    grid-template-columns: minmax(560px, 0.96fr) minmax(760px, 1.04fr) !important;
  }
}

/* Ajuste final mobile da localizacao: endereco e botoes uniformes. */
@media (max-width: 980px) {
  .location-address,
  .location-note {
    width: min(100%, 760px) !important;
    max-width: min(100%, 760px) !important;
    font-size: clamp(0.92rem, 1.8vw, 1rem) !important;
    line-height: 1.3 !important;
  }

  .location-details,
  .location-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    width: min(100%, 640px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .location-details {
    margin-top: 22px !important;
  }

  .location-details a,
  .location-actions .button {
    flex: 0 1 190px !important;
    width: 190px !important;
    min-width: 190px !important;
    max-width: 100% !important;
    min-height: 50px !important;
    padding-inline: 14px !important;
    font-size: clamp(0.78rem, 1.65vw, 0.92rem) !important;
    line-height: 1.12 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 520px) {
  .location-address,
  .location-note {
    font-size: clamp(0.92rem, 3.6vw, 1rem) !important;
  }

  .location-details,
  .location-actions {
    width: 100% !important;
  }

  .location-details a,
  .location-actions .button {
    flex-basis: min(100%, 260px) !important;
    width: min(100%, 260px) !important;
    min-width: 0 !important;
  }
}

/* Localizacao desktop: contatos com a mesma escala dos botoes de acao. */
@media (min-width: 981px) {
  .location-details {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    width: min(100%, 640px) !important;
  }

  .location-details a,
  .location-actions .button {
    flex: 0 1 190px !important;
    width: 190px !important;
    min-width: 190px !important;
    min-height: 50px !important;
    padding-inline: 14px !important;
    font-size: clamp(0.78rem, 0.82vw, 0.92rem) !important;
    line-height: 1.12 !important;
    white-space: nowrap !important;
  }
}

/* Localizacao mobile/tablet: textos e botoes com escala uniforme. */
@media (max-width: 980px) {
  .location-address,
  .location-note {
    width: min(100%, 760px) !important;
    max-width: min(100%, 760px) !important;
    font-size: clamp(0.92rem, 1.8vw, 1rem) !important;
    line-height: 1.3 !important;
  }

  .location-details,
  .location-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    width: min(100%, 640px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .location-details {
    margin-top: 22px !important;
  }

  .location-details a,
  .location-actions .button {
    flex: 0 1 190px !important;
    width: 190px !important;
    min-width: 190px !important;
    max-width: 100% !important;
    min-height: 50px !important;
    padding-inline: 14px !important;
    font-size: clamp(0.78rem, 1.65vw, 0.92rem) !important;
    line-height: 1.12 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 520px) {
  .location-address,
  .location-note {
    font-size: clamp(0.92rem, 3.6vw, 1rem) !important;
  }

  .location-details,
  .location-actions {
    width: 100% !important;
  }

  .location-details a,
  .location-actions .button {
    flex-basis: min(100%, 260px) !important;
    width: min(100%, 260px) !important;
    min-width: 0 !important;
  }
}

/* Localizacao em viewport lateral/tablet: volta para layout empilhado. */
@media (min-width: 760px) and (max-width: 980px) {
  .location-section {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .map-card {
    width: min(100%, 760px) !important;
    justify-self: center !important;
  }

  .map-card .location-map.google-map,
  .map-card .location-map.google-map iframe {
    width: 100% !important;
    min-height: 0 !important;
    height: clamp(300px, 52vw, 420px) !important;
  }

  .location-copy {
    width: min(100%, 760px) !important;
    max-width: min(100%, 760px) !important;
    justify-self: center !important;
  }

  .location-copy h2,
  .location-copy h2 span,
  .location-copy h2 span:first-child,
  .location-copy h2 span:last-child {
    max-width: 100% !important;
    font-size: clamp(2rem, 5vw, 3rem) !important;
    line-height: 1.04 !important;
    white-space: normal !important;
  }

  .location-address {
    width: min(100%, 760px) !important;
    max-width: min(100%, 760px) !important;
    font-size: clamp(0.78rem, 1.3vw, 0.94rem) !important;
    line-height: 1.28 !important;
    white-space: nowrap !important;
  }

  .location-note {
    width: min(100%, 680px) !important;
    max-width: min(100%, 680px) !important;
    font-size: clamp(0.9rem, 1.8vw, 1rem) !important;
  }

  .location-details {
    width: min(100%, 760px) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .location-details a {
    min-height: 42px !important;
    font-size: clamp(0.72rem, 1.25vw, 0.84rem) !important;
  }
}

/* Localizacao desktop: proporcoes mais compactas e mapa horizontal. */
@media (min-width: 981px) {
  .location-section {
    grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1.12fr) !important;
    gap: clamp(24px, 3.4vw, 72px) !important;
  }

  .map-card {
    width: min(100%, 600px);
    justify-self: center;
  }

  .map-card .location-map.google-map,
  .map-card .location-map.google-map iframe {
    width: 100% !important;
    min-height: 0 !important;
    height: clamp(220px, 18vw, 340px) !important;
    aspect-ratio: auto;
  }

  .location-copy {
    max-width: min(100%, 1120px) !important;
  }

  .location-copy h2 {
    max-width: 100% !important;
    font-size: clamp(1.65rem, 2.05vw, 2.75rem) !important;
    line-height: 1.03 !important;
  }

  .location-copy h2 span,
  .location-copy h2 span:first-child,
  .location-copy h2 span:last-child {
    font-size: 1em !important;
    white-space: nowrap !important;
  }

  .location-address {
    width: min(100%, 930px) !important;
    max-width: min(100%, 930px) !important;
    margin-top: 18px !important;
    font-size: clamp(0.86rem, 0.92vw, 1.02rem) !important;
    line-height: 1.26 !important;
  }

  .location-note {
    width: min(100%, 760px) !important;
    max-width: min(100%, 760px) !important;
    margin-top: 8px !important;
    font-size: clamp(0.84rem, 0.88vw, 0.98rem) !important;
    line-height: 1.3 !important;
  }

  .location-details {
    width: min(100%, 780px) !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.08fr) !important;
    gap: 8px !important;
    margin-top: 22px !important;
  }

  .location-details a {
    min-height: 40px !important;
    padding-inline: 10px !important;
    border-color: rgba(var(--green-rgb), 0.1) !important;
    font-size: clamp(0.68rem, 0.72vw, 0.8rem) !important;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease !important;
  }

  .location-details a:hover,
  .location-details a:focus-visible {
    transform: translateY(-2px) !important;
    border-color: rgba(var(--green-rgb), 0.72) !important;
    color: #fff !important;
    background:
      linear-gradient(145deg, rgba(var(--green-rgb), 1), rgba(0, 91, 44, 0.96)) !important;
    box-shadow:
      0 16px 38px rgba(0, 103, 50, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
    outline: none;
  }

  .location-actions {
    margin-top: 20px !important;
  }

  .location-actions .button {
    min-width: 190px !important;
    min-height: 50px !important;
  }
}

@media (min-width: 1200px) {
  .location-section {
    grid-template-columns: minmax(420px, 0.82fr) minmax(760px, 1.18fr) !important;
  }
}

/* WhatsApp fixo: cor da logomarca e marca centralizada no circulo. */
.floating-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0;
  color: #fff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 23%, rgba(255, 255, 255, 0.3), transparent 20px),
    linear-gradient(145deg, #007d3c 0%, #006831 60%, #004f26 100%);
  box-shadow:
    0 18px 48px rgba(var(--green-rgb), 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -14px 22px rgba(0, 35, 18, 0.18);
}

.floating-whatsapp svg {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  margin: 0;
  transform: none;
  fill: currentColor;
  stroke: none;
}

@media (max-width: 640px) {
  .floating-whatsapp {
    width: 62px;
    height: 62px;
  }

  .floating-whatsapp svg {
    width: 36px;
    height: 36px;
  }
}

/* Localizacao limpa: apenas o ponto da Inpress, sem marcadores externos. */
.location-map.inpress-map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(var(--green-rgb), 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 48% 45%, rgba(var(--green-rgb), 0.1), transparent 13rem),
    linear-gradient(135deg, #f7faf7, #e8f0ea);
  box-shadow: none;
  backdrop-filter: none;
}

.location-map.inpress-map::before,
.location-map.inpress-map::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.location-map.inpress-map::before {
  inset: 0;
  background:
    linear-gradient(18deg, transparent 0 47%, rgba(130, 151, 143, 0.18) 47% 51%, transparent 51%),
    linear-gradient(98deg, transparent 0 52%, rgba(130, 151, 143, 0.14) 52% 55%, transparent 55%);
}

.location-map.inpress-map::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), transparent 44%);
}

.map-road {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 999px;
  background: rgba(151, 169, 161, 0.2);
}

.map-road-main {
  left: -8%;
  right: -8%;
  bottom: 26%;
  height: 34px;
  transform: rotate(-13deg);
}

.map-road-cross {
  top: -10%;
  bottom: -8%;
  left: 54%;
  width: 26px;
  transform: rotate(7deg);
}

.map-road-soft {
  left: 8%;
  right: 18%;
  top: 28%;
  height: 16px;
  transform: rotate(-5deg);
  opacity: 0.58;
}

.single-map-pin {
  position: absolute;
  z-index: 3;
  top: 46%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -76%) rotate(45deg);
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  box-shadow:
    0 0 0 16px rgba(var(--green-rgb), 0.12),
    0 22px 48px rgba(0, 47, 24, 0.22);
}

.single-map-label {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  width: min(76%, 350px);
  padding: 18px 20px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(0, 47, 24, 0.12);
  backdrop-filter: blur(16px);
}

.single-map-label strong,
.single-map-label span {
  display: block;
}

.single-map-label strong {
  color: var(--ink);
}

.single-map-label span {
  margin-top: 5px;
  color: var(--muted);
}

/* Formulario mais limpo, sem riscas diagonais no verde. */
.contact-section::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.14), transparent 20rem),
    radial-gradient(circle at 82% 72%, rgba(0, 0, 0, 0.12), transparent 24rem);
}

/* Rodape: icones sociais melhores e longe do WhatsApp flutuante. */
.footer-social {
  gap: 12px;
  padding-right: 92px;
}

.footer-social a {
  width: 54px;
  height: 54px;
  color: var(--green-dark);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.78);
}

.footer-social a:hover {
  color: #fff;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
}

.footer-social svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  stroke: none;
}

@media (max-width: 760px) {
  .site-footer {
    padding-bottom: 104px;
  }

  .footer-social {
    padding-right: 0;
  }

  .location-map.inpress-map {
    min-height: 340px;
  }

  .single-map-label {
    width: calc(100% - 28px);
  }
}

/* Logos sociais oficiais no rodape. */
.footer-social {
  align-items: center;
  gap: 12px;
}

.footer-social .social-link {
  width: 54px;
  height: 54px;
  border: 0;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 47, 24, 0.12);
}

.footer-social .social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 47, 24, 0.18);
}

.footer-social .social-instagram {
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 18%, #fa7e1e 34%, transparent 45%),
    radial-gradient(circle at 18% 20%, #ff304f 0 25%, transparent 44%),
    linear-gradient(135deg, #833ab4 0%, #c13584 46%, #e1306c 100%);
}

.footer-social .social-linkedin {
  background: #0a66c2;
}

.footer-social .social-facebook {
  border-radius: 50%;
  background: #1877f2;
}

.footer-social .social-youtube {
  width: 70px;
  border-radius: 14px;
  background: #ff0000;
}

.footer-social .social-link svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
  stroke: none;
}

.footer-social .social-youtube svg {
  width: 42px;
  height: 30px;
}

@media (max-width: 640px) {
  .footer-social {
    justify-content: flex-start;
    gap: 10px;
  }

  .footer-social .social-link {
    width: 50px;
    height: 50px;
  }

  .footer-social .social-youtube {
    width: 64px;
  }
}

/* Rodape: marcas sociais no formato enviado pelo cliente. */
.footer-social {
  gap: 18px;
}

.footer-social .social-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 0;
  box-shadow: 0 15px 34px rgba(0, 47, 24, 0.12);
  backdrop-filter: none;
}

.footer-social .social-link:hover {
  transform: translateY(-4px);
}

.footer-social .social-instagram,
.footer-social .social-linkedin {
  border-radius: 10px;
}

.footer-social .social-instagram {
  background:
    radial-gradient(circle at 18% 96%, #ffd76b 0 21%, transparent 34%),
    radial-gradient(circle at 15% 18%, #ff304f 0 24%, transparent 42%),
    linear-gradient(135deg, #833ab4 0%, #c13584 44%, #e1306c 100%);
}

.footer-social .social-instagram .social-mark {
  position: relative;
  width: 32px;
  height: 32px;
  border: 4px solid #fff;
  border-radius: 10px;
}

.footer-social .social-instagram .social-mark::before,
.footer-social .social-instagram .social-mark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: #fff;
}

.footer-social .social-instagram .social-mark::before {
  inset: 7px;
  background: transparent;
  border: 4px solid #fff;
}

.footer-social .social-instagram .social-mark::after {
  top: 5px;
  right: 5px;
  width: 5px;
  height: 5px;
}

.footer-social .social-linkedin {
  background: #0a66c2;
}

.footer-social .social-linkedin .social-mark,
.footer-social .social-facebook .social-mark {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.footer-social .social-linkedin .social-mark {
  font-size: 34px;
}

.footer-social .social-facebook {
  border-radius: 50%;
  background: #1877f2;
}

.footer-social .social-facebook .social-mark {
  transform: translateY(5px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 54px;
}

.footer-social .social-youtube {
  width: 84px;
  border-radius: 18px;
  background: #ff0000;
}

.footer-social .social-youtube .social-mark {
  position: relative;
  width: 50px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
}

.footer-social .social-youtube .social-mark::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  content: "";
  transform: translate(-50%, -50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #ff0000;
}

@media (max-width: 640px) {
  .footer-social {
    gap: 12px;
  }

  .footer-social .social-link {
    width: 54px;
    height: 54px;
  }

  .footer-social .social-instagram .social-mark {
    width: 27px;
    height: 27px;
    border-width: 3px;
  }

  .footer-social .social-instagram .social-mark::before {
    inset: 6px;
    border-width: 3px;
  }

  .footer-social .social-instagram .social-mark::after {
    width: 4px;
    height: 4px;
  }

  .footer-social .social-linkedin .social-mark {
    font-size: 29px;
  }

  .footer-social .social-facebook .social-mark {
    font-size: 46px;
  }

  .footer-social .social-youtube {
    width: 70px;
  }

  .footer-social .social-youtube .social-mark {
    width: 42px;
    height: 29px;
  }
}

/* Manter as quatro logos sociais na mesma linha do rodape. */
.site-footer {
  align-items: center;
}

.footer-brand {
  min-width: 0;
  max-width: 620px;
}

.footer-social {
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

@media (max-width: 760px) {
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-right {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 12px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-credit {
    text-align: left;
    white-space: normal;
  }
}

/* Usar as logos sociais como imagem, sem redesenhar nem colocar fundo extra. */
.footer-social {
  gap: 22px;
}

.footer-social .social-link,
.footer-social .social-link:hover,
.footer-social .social-instagram,
.footer-social .social-linkedin,
.footer-social .social-facebook,
.footer-social .social-youtube {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
}

.footer-social .social-youtube,
.footer-social .social-youtube:hover {
  width: 84px;
}

.footer-social .social-link:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 14px 22px rgba(0, 47, 24, 0.14));
}

.footer-social .social-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 640px) {
  .footer-social {
    gap: 14px;
  }

  .footer-social .social-link,
  .footer-social .social-link:hover,
  .footer-social .social-instagram,
  .footer-social .social-linkedin,
  .footer-social .social-facebook,
  .footer-social .social-youtube {
    width: 52px;
    height: 52px;
  }

  .footer-social .social-youtube,
  .footer-social .social-youtube:hover {
    width: 68px;
  }
}

/* Tamanho final das logos sociais no rodape. */
.footer-social {
  gap: 12px;
}

.footer-social .social-link,
.footer-social .social-link:hover,
.footer-social .social-instagram,
.footer-social .social-linkedin,
.footer-social .social-facebook,
.footer-social .social-youtube {
  width: 34px;
  height: 34px;
}

.footer-social .social-youtube,
.footer-social .social-youtube:hover {
  width: 46px;
}

.footer-social .social-link:hover {
  filter: drop-shadow(0 8px 14px rgba(0, 47, 24, 0.14));
}

@media (max-width: 640px) {
  .footer-social {
    gap: 10px;
  }

  .footer-social .social-link,
  .footer-social .social-link:hover,
  .footer-social .social-instagram,
  .footer-social .social-linkedin,
  .footer-social .social-facebook,
  .footer-social .social-youtube {
    width: 30px;
    height: 30px;
  }

  .footer-social .social-youtube,
  .footer-social .social-youtube:hover {
    width: 40px;
  }
}

/* Tipografia final alinhada a Helvetica da marca. */
body,
button,
input,
select,
textarea {
  font-family: "Helvetica Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
.site-nav,
.button,
.eyebrow {
  font-family: "Helvetica Pro Bold", "Helvetica Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.site-nav {
  font-size: clamp(1rem, 1.16vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav a {
  padding: 12px 0;
}

/* Servicos com fotos e galeria. */
.service-grid {
  gap: 22px;
}

.service-media-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: auto;
  padding: 18px;
  cursor: pointer;
}

.service-media-card::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), transparent 36%),
    radial-gradient(circle at 78% 100%, rgba(var(--green-rgb), 0.12), transparent 18rem);
}

.service-media-card:hover {
  transform: translateY(-6px);
}

.service-photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #0b1712;
}

.service-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 48%, rgba(3, 12, 8, 0.52)),
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 36% 62%, rgba(255, 255, 255, 0.1));
}

.service-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 260ms ease, filter 260ms ease;
}

.service-media-card:hover .service-photo img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.04);
}

.service-photo span {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 18, 13, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.service-media-card h3 {
  margin: 0;
  font-size: clamp(1.24rem, 1.7vw, 1.58rem);
}

.service-media-card p {
  font-size: 1rem;
}

.gallery-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  place-items: center;
  padding: clamp(14px, 3vw, 36px);
  background: rgba(2, 9, 6, 0.74);
  backdrop-filter: blur(18px);
}

.gallery-modal.is-open {
  display: grid;
}

.gallery-modal[hidden] {
  display: none !important;
}

.gallery-modal[aria-hidden="true"] {
  display: none !important;
}

.gallery-dialog {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(1120px, 100%);
}

.gallery-frame {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    #08130e;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
}

.gallery-frame img {
  display: block;
  width: 100%;
  max-height: min(76vh, 720px);
  object-fit: contain;
  background: #09120e;
  opacity: 1;
  transition: opacity 180ms ease;
}

.gallery-frame img.is-loading {
  opacity: 0.28;
}

.gallery-frame figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 4px;
  width: min(440px, calc(100% - 32px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(5, 18, 12, 0.68);
  backdrop-filter: blur(16px);
}

.gallery-modal.is-clean-gallery .gallery-frame figcaption {
  display: none;
}

.gallery-modal.is-clean-gallery .gallery-frame img {
  max-height: min(84vh, 820px);
}

.gallery-frame figcaption span,
.gallery-frame figcaption small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-frame figcaption strong {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.gallery-close,
.gallery-arrow {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.gallery-close:hover,
.gallery-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--green-rgb), 0.5);
  background: rgba(var(--green-rgb), 0.36);
}

.gallery-close {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -12px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}

.gallery-arrow {
  width: 52px;
  height: 72px;
  border-radius: 8px;
  font-size: 2.4rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .gallery-dialog {
    grid-template-columns: 1fr;
  }

  .gallery-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 44px;
    height: 62px;
    transform: translateY(-50%);
  }

  .gallery-arrow:hover {
    transform: translateY(calc(-50% - 2px));
  }

  .gallery-prev {
    left: 8px;
  }

  .gallery-next {
    right: 8px;
  }
}

@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-frame figcaption {
    position: static;
    width: auto;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }
}

/* Grade de clientes ajustada para nao sobrar linha quebrada em notebook. */
@media (max-width: 1600px) {
  .clients-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .clients-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .clients-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo-card {
    min-height: 82px;
  }
}

@media (max-width: 420px) {
  .clients-logo-grid {
    grid-template-columns: 1fr;
  }
}

/* Ajustes de mobile apos revisao em celular. */
.client-logo-card-bb img {
  width: min(96%, 164px);
  max-width: min(96%, 172px);
  max-height: none;
}

@media (max-width: 760px) {
  .site-footer {
    gap: 14px;
    padding-top: 34px;
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }

  .footer-brand img {
    width: 174px;
  }

  .footer-right {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .about-visual {
    min-height: 315px;
    background-position: center;
    background-size: auto, auto, cover;
  }

  .map-card .location-map.google-map,
  .map-card .location-map.google-map iframe {
    height: clamp(320px, 78vw, 380px);
    min-height: 0;
  }

  .client-logo-card-bb img {
    width: min(96%, 152px);
    max-width: min(96%, 158px);
    max-height: none;
  }
}

/* Revisao de navegacao, clientes e catalogo. */
.inled-anchor {
  position: relative;
  top: -96px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section-heading,
.portfolio-heading,
.client-carousel-heading {
  justify-items: center;
  text-align: center;
}

.section-heading h2,
.portfolio-heading h2,
.client-carousel-heading h2,
.about-content h2,
.location-copy h2,
.contact-copy h2 {
  margin-right: auto;
  margin-left: auto;
}

.portfolio-heading {
  grid-template-columns: 1fr;
}

.portfolio-tools {
  justify-items: center;
  width: 100%;
}

.filter-bar,
.location-actions {
  justify-content: center;
}

.about-content .eyebrow,
.about-content h2,
.location-copy .eyebrow,
.location-copy h2,
.contact-copy .eyebrow,
.contact-copy h2 {
  text-align: center;
}

.client-carousel-section {
  position: relative;
  z-index: 2;
  padding: clamp(42px, 5vw, 78px) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(231, 241, 235, 0.92), rgba(239, 246, 242, 0.84)),
    radial-gradient(circle at 50% 0%, rgba(var(--green-rgb), 0.12), transparent 34rem);
}

.client-carousel-heading {
  display: grid;
  gap: 8px;
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto clamp(24px, 4vw, 42px);
}

.client-carousel-heading h2 {
  max-width: 980px;
  font-size: clamp(1.72rem, 3.5vw, 3.85rem);
}

.client-carousel-heading h2 span {
  color: var(--green);
}

.client-carousel {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: 0;
  transform: translateX(-50%);
  overflow: hidden;
  border: 1px solid rgba(var(--green-rgb), 0.12);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(239, 246, 242, 0.98), transparent 6%, transparent 94%, rgba(239, 246, 242, 0.98)),
    rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 42px rgba(0, 47, 24, 0.06);
}

.client-carousel::before,
.client-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(18px, 3vw, 54px);
  pointer-events: none;
  content: "";
}

.client-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(239, 246, 242, 1), transparent);
}

.client-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(239, 246, 242, 1), transparent);
}

.client-carousel-track {
  display: flex;
  width: max-content;
  gap: clamp(12px, 0.9vw, 18px);
  padding: 22px 0;
  animation: clientCarousel 58s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.client-carousel-track.is-ready {
  animation-play-state: running;
}

.client-carousel:hover .client-carousel-track {
  animation-play-state: paused;
}

.client-carousel .client-logo-card {
  flex: 0 0 clamp(210px, 12.6vw, 248px);
  min-height: clamp(118px, 7.2vw, 142px);
}

.client-carousel .client-logo-card-samsung img,
.client-carousel .client-logo-card-sicoob img,
.client-carousel .client-logo-card-super-adega img,
.client-carousel .client-logo-card-dia-a-dia img,
.client-carousel .client-logo-card-estapar img,
.client-carousel .client-logo-card-aguas img {
  max-width: min(94%, 168px);
  max-height: 68px;
}

@keyframes clientCarousel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-carousel-track {
    animation: none;
  }
}

.service-grid {
  counter-reset: serviceItem;
}

.service-media-card {
  counter-increment: serviceItem;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  min-height: 430px;
  padding: 0;
  border-color: rgba(4, 34, 22, 0.22);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #10251c, #07120d);
  box-shadow: 0 24px 72px rgba(0, 47, 24, 0.18);
}

.service-media-card::before {
  display: none;
  content: none;
}

.service-media-card::after {
  display: none;
  content: none;
}

.service-media-card:hover {
  border-color: rgba(var(--green-rgb), 0.42);
  box-shadow: 0 30px 88px rgba(0, 47, 24, 0.24);
}

.service-photo {
  border-radius: 0;
  aspect-ratio: 4 / 3;
}

.service-photo::after {
  display: none;
  content: none;
}

.service-photo span {
  display: none;
}

.service-media-card h3,
.service-media-card p {
  position: relative;
  z-index: 2;
}

.service-media-card h3 {
  padding: 24px 24px 0;
  color: #fff;
}

.service-media-card p {
  padding: 12px 24px 28px;
  color: rgba(255, 255, 255, 0.76);
}

.service-media-card h3::after {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.floating-instagram {
  position: fixed;
  right: 18px;
  bottom: 104px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  transition: transform 180ms ease, filter 180ms ease;
}

.floating-instagram:hover {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 16px 28px rgba(0, 47, 24, 0.18));
}

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

@media (max-width: 980px) {
  .site-nav {
    gap: clamp(12px, 3vw, 24px);
  }

  .client-carousel-section {
    padding-top: 38px;
  }
}

@media (max-width: 640px) {
  .client-carousel-heading h2 {
    font-size: clamp(1.72rem, 7.4vw, 2.55rem);
  }

  .client-carousel .client-logo-card {
    flex-basis: 154px;
    min-height: 88px;
  }

  .service-media-card {
    min-height: auto;
  }

  .floating-instagram {
    right: 15px;
    bottom: 86px;
    width: 50px;
    height: 50px;
  }
}

/* Ajustes finais: sociais flutuantes, portfolio e contato. */
.footer-social {
  display: none !important;
}

.footer-right {
  gap: 0;
}

.contact-copy .eyebrow {
  color: #fff !important;
}

.floating-whatsapp {
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
}

.floating-instagram {
  right: 25px;
  bottom: 84px;
  width: 40px;
  height: 40px;
}

.project-grid {
  counter-reset: projectItem;
}

.project-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 430px;
  overflow: hidden;
  counter-increment: projectItem;
  color: #fff;
  border: 1px solid rgba(4, 34, 22, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #10251c, #07120d);
  box-shadow: 0 24px 72px rgba(0, 47, 24, 0.18);
  backdrop-filter: blur(18px) saturate(1.12);
}

.project-card::before {
  display: none;
  content: none;
}

.project-card::after {
  display: none;
  content: none;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--green-rgb), 0.42);
  box-shadow: 0 30px 88px rgba(0, 47, 24, 0.24);
}

.project-visual,
.project-photo {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0;
  background: #07120d;
}

.project-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-visual::before {
  display: none;
}

.project-visual::after,
.project-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 9, 6, 0.08), rgba(2, 9, 6, 0.72)),
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 36% 62%, rgba(var(--green-rgb), 0.16));
}

.project-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  padding: 24px;
  color: #fff;
}

.project-content p {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 18, 12, 0.56);
  font-size: 0.74rem;
  font-weight: 800;
}

.project-content h3 {
  color: #fff;
}

.project-content h3::after {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.project-card:hover .project-photo img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.04);
}

@media (max-width: 640px) {
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }

  .floating-whatsapp svg {
    width: 29px;
    height: 29px;
  }

  .floating-instagram {
    right: 21px;
    bottom: 76px;
    width: 40px;
    height: 40px;
  }

  .project-card {
    min-height: auto;
  }
}

/* Refinos mobile e identidade visual finais. */
.service-media-card,
.project-card {
  border-color: rgba(var(--green-rgb), 0.72) !important;
}

.service-media-card:hover,
.project-card:hover {
  border-color: var(--green) !important;
}

.floating-whatsapp,
.floating-instagram {
  right: 18px;
  width: 46px;
  height: 46px;
}

.floating-whatsapp {
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
}

.floating-instagram {
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
}

.hero-actions .button {
  border-radius: 999px;
}

@media (max-width: 980px) {
  .site-header .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid !important;
    justify-content: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transform-origin: top;
    background: rgba(7, 19, 14, 0.92);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(22px) saturate(1.12);
    transition:
      max-height 260ms ease,
      opacity 180ms ease,
      transform 260ms ease,
      visibility 0s linear 260ms;
  }

  .site-header.is-open .site-nav {
    max-height: 330px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      max-height 300ms ease,
      opacity 180ms ease,
      transform 300ms ease,
      visibility 0s;
  }

  .site-header.is-scrolled.is-open .site-nav {
    background: rgba(255, 255, 255, 0.94);
  }

  .site-header .site-nav a,
  .site-header.is-open .site-nav a {
    min-height: 46px;
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
    line-height: 1.2;
  }

  .site-header.is-scrolled .site-nav a,
  .site-header.is-scrolled.is-open .site-nav a {
    color: var(--green);
    border-bottom-color: rgba(var(--green-rgb), 0.14);
  }

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

  .site-header .site-nav a::after {
    display: none;
  }

  .menu-button span {
    transition: transform 200ms ease, opacity 160ms ease, background 180ms ease;
  }

  .site-header.is-open .menu-button span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.is-open .menu-button span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .hero-copy {
    width: min(100%, 356px);
    max-width: 356px;
  }

  .hero-message {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.15rem);
    line-height: 0.96;
  }

  .hero-actions {
    width: min(100%, 334px);
    max-width: 334px;
  }

  .hero-actions .button {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 8px;
    justify-items: start;
    min-height: 60px;
    padding: 0 22px;
    text-align: left;
  }

  .hero-actions svg {
    justify-self: center;
    width: 23px;
    height: 23px;
    margin-right: 0;
  }

  .floating-whatsapp,
  .floating-instagram {
    right: 18px;
    width: 42px;
    height: 42px;
  }

  .floating-whatsapp {
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .floating-instagram {
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }

  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .site-footer {
    padding-right: 78px;
  }

  .footer-credit {
    max-width: calc(100vw - 118px);
    line-height: 1.35;
  }
}

/* Ajuste fino: hero mobile centralizado e menu mais compacto. */
@keyframes mobileNavDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header .site-nav {
    top: calc(100% + 8px);
    max-height: 0;
    transform: translateY(-12px) scaleY(0.92);
    filter: blur(2px);
    transition:
      max-height 240ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 160ms ease,
      transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 180ms ease,
      visibility 0s linear 240ms;
  }

  .site-header.is-open .site-nav {
    max-height: 252px;
    transform: translateY(0) scaleY(1);
    filter: blur(0);
    transition:
      max-height 280ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 160ms ease,
      transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 180ms ease,
      visibility 0s;
  }

  .site-header .site-nav a,
  .site-header.is-open .site-nav a {
    min-height: 40px;
    padding: 9px 16px;
    font-size: 0.92rem;
    line-height: 1.12;
  }

  .site-header.is-open .site-nav a {
    animation: mobileNavDrop 220ms ease both;
  }

  .site-header.is-open .site-nav a:nth-child(2) {
    animation-delay: 22ms;
  }

  .site-header.is-open .site-nav a:nth-child(3) {
    animation-delay: 44ms;
  }

  .site-header.is-open .site-nav a:nth-child(4) {
    animation-delay: 66ms;
  }

  .site-header.is-open .site-nav a:nth-child(5) {
    animation-delay: 88ms;
  }

  .site-header.is-open .site-nav a:nth-child(6) {
    animation-delay: 110ms;
  }
}

@media (max-width: 640px) {
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    padding: 98px 18px 74px;
  }

  .hero-copy {
    width: min(100%, 372px);
    max-width: 372px;
    margin: 0 auto;
    gap: 26px;
    justify-items: center;
    transform: translateY(1vh);
  }

  .hero-message {
    display: grid;
    justify-items: center;
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.55rem);
    line-height: 0.92;
    text-align: center;
  }

  .hero-text {
    max-width: 360px;
    margin-top: 0;
    text-align: center;
  }

  .hero-actions {
    width: min(100%, 342px);
    max-width: 342px;
  }
}

/* Processo interativo: destaque, progresso e resposta ao toque. */
.process-list {
  --process-progress: 25%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(var(--green-rgb), 0.22);
  background:
    radial-gradient(circle at var(--process-progress) 0%, rgba(var(--green-rgb), 0.22), transparent 19rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.64);
}

.process-list::before,
.process-list::after {
  position: absolute;
  z-index: 3;
  left: 0;
  pointer-events: none;
  content: "";
}

.process-list::before {
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(var(--green-rgb), 0.13);
}

.process-list::after {
  bottom: 0;
  width: var(--process-progress);
  height: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--green-dark), var(--green-bright), #69c98f);
  box-shadow:
    0 0 22px rgba(var(--green-rgb), 0.46),
    0 0 42px rgba(var(--green-rgb), 0.22);
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1), height 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-list article {
  position: relative;
  z-index: 1;
  cursor: pointer;
  outline: 0;
  transition:
    transform 220ms ease,
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.process-list article::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  content: "";
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.3), transparent 10rem),
    linear-gradient(135deg, rgba(var(--green-rgb), 0.97), rgba(0, 79, 38, 0.95));
  transition: opacity 220ms ease;
}

.process-list article::after {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(var(--green-rgb), 0.13);
  content: attr(data-process-number);
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
  transition: color 220ms ease, transform 220ms ease;
}

.process-list article:hover,
.process-list article:focus-visible,
.process-list article.is-active {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0, 47, 24, 0.18);
}

.process-list article:hover::before,
.process-list article:focus-visible::before,
.process-list article.is-active::before {
  opacity: 1;
}

.process-list article:hover::after,
.process-list article:focus-visible::after,
.process-list article.is-active::after {
  color: rgba(255, 255, 255, 0.13);
  transform: translateY(-4px);
}

.process-list article:hover .process-icon,
.process-list article:focus-visible .process-icon,
.process-list article.is-active .process-icon {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 36px rgba(0, 34, 16, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.process-list article.is-active .process-icon svg {
  animation: processIconPop 760ms ease both;
}

.process-list article:hover span,
.process-list article:focus-visible span,
.process-list article.is-active span,
.process-list article:hover p,
.process-list article:focus-visible p,
.process-list article.is-active p {
  color: #fff;
}

.process-list article.is-active span {
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

@keyframes processIconPop {
  0% {
    transform: scale(0.86) rotate(-5deg);
  }

  55% {
    transform: scale(1.12) rotate(2deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

@media (max-width: 980px) {
  .process-list::after {
    width: var(--process-progress);
  }
}

@media (max-width: 640px) {
  .process-list {
    --process-progress: 25%;
  }

  .process-list::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 1px;
    height: auto;
  }

  .process-list::after {
    top: 0;
    bottom: auto;
    width: 4px;
    height: var(--process-progress);
    border-radius: 0 0 999px 999px;
    transition: height 520ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .process-list article {
    min-height: 190px;
    padding: 24px;
  }

  .process-list article:hover,
  .process-list article:focus-visible,
  .process-list article.is-active {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-list::after,
  .process-list article,
  .process-list article::before,
  .process-list article::after,
  .process-list article.is-active .process-icon svg {
    animation: none;
    transition: none;
  }
}

/* Indicadores com contadores animados. */
.impact-section {
  padding-top: clamp(56px, 8vw, 104px);
}

.impact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4.5vw, 56px);
  border: 1px solid rgba(var(--green-rgb), 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 0%, rgba(var(--green-rgb), 0.12), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 90px rgba(0, 47, 24, 0.12);
  backdrop-filter: blur(20px) saturate(1.18);
}

.impact-panel::before {
  display: none;
  content: none;
}

.impact-heading,
.impact-grid,
.impact-result,
.impact-source {
  position: relative;
  z-index: 1;
}

.impact-heading {
  display: block;
  max-width: 920px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.impact-heading h2 {
  margin: 0 auto 12px;
  color: var(--ink);
  font-size: clamp(1.82rem, 3.5vw, 3.95rem);
  line-height: 1;
}

.impact-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.48;
}

.impact-icon {
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(135deg, var(--green-bright), var(--green-dark));
}

.impact-icon svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.impact-card {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 285px;
  padding: 28px 22px 30px;
  text-align: center;
  border: 1px solid rgba(var(--green-rgb), 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.impact-section.is-visible .impact-card {
  opacity: 1;
  transform: translateY(0);
}

.impact-section.is-visible .impact-card:nth-child(2) {
  transition-delay: 80ms;
}

.impact-section.is-visible .impact-card:nth-child(3) {
  transition-delay: 160ms;
}

.impact-section.is-visible .impact-card:nth-child(4) {
  transition-delay: 240ms;
}

.impact-section.is-visible .impact-card:nth-child(5) {
  transition-delay: 320ms;
}

.impact-card:hover {
  z-index: 2;
  background: rgba(var(--green-rgb), 0.06);
  border-color: rgba(var(--green-rgb), 0.24);
  box-shadow: 0 22px 56px rgba(0, 47, 24, 0.12);
}

.impact-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(var(--green-rgb), 0.22);
}

.impact-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: clamp(2.9rem, 4.8vw, 5.2rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
}

.impact-card h3 {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.impact-card p {
  max-width: 210px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.impact-result {
  margin-top: 34px;
  padding: 22px 28px;
  border: 1px solid rgba(var(--green-rgb), 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--green-rgb), 0.09), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.72);
  text-align: center;
}

.impact-result p {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1rem, 1.55vw, 1.32rem);
  line-height: 1.42;
}

.impact-result span {
  display: block;
  color: var(--green);
  font-weight: 900;
}

.impact-source {
  margin: 18px 0 0;
  color: rgba(17, 22, 21, 0.56);
  font-size: 0.82rem;
  text-align: right;
}

@media (max-width: 1100px) {
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-card:nth-child(2n) {
    border-right: 1px solid rgba(var(--green-rgb), 0.13);
  }

  .impact-card:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(var(--green-rgb), 0.13);
  }

  .impact-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .impact-section {
    padding-top: 58px;
  }

  .impact-panel {
    padding: 26px 18px;
  }

  .impact-heading {
    text-align: center;
  }

  .impact-heading h2 {
    font-size: clamp(1.9rem, 8.2vw, 2.75rem);
  }

  .impact-heading p {
    font-size: 1rem;
  }

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

  .impact-card,
  .impact-card:nth-child(2n),
  .impact-card:last-child {
    grid-column: auto;
    min-height: auto;
    padding: 28px 18px;
    border: 1px solid rgba(var(--green-rgb), 0.13);
  }

  .impact-card strong {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .impact-result {
    padding: 22px 18px;
    text-align: center;
  }

  .impact-source {
    text-align: center;
  }
}

/* Ajustes solicitados: subtitulos, WhatsApp limpo e hero mobile centralizado. */
.location-copy,
.contact-copy {
  text-align: center;
}

.location-copy p:not(.eyebrow),
.contact-copy p:last-child {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.location-address,
.location-note {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.location-address {
  max-width: 980px;
  font-size: 0.98rem !important;
  line-height: 1.45 !important;
}

.location-note {
  margin-top: 6px !important;
}

.location-details,
.location-actions {
  justify-content: center;
}

.floating-whatsapp {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.34), transparent 19px),
    linear-gradient(145deg, var(--green) 0%, #006831 62%, var(--green-dark) 100%) !important;
  background-clip: padding-box;
  box-shadow:
    0 16px 42px rgba(var(--green-rgb), 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -12px 20px rgba(0, 35, 18, 0.18);
}

.floating-whatsapp svg {
  display: block;
  margin: 0;
}

@media (max-width: 640px) {
  .hero-copy,
  .hero-message,
  .hero-actions {
    justify-items: center;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero-actions .button {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    justify-content: stretch;
    justify-items: center;
    column-gap: 0;
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    text-align: center;
  }

  .hero-actions svg {
    grid-column: 1;
    justify-self: center;
  }

  .hero-actions .button {
    font-size: clamp(1.08rem, 4.7vw, 1.22rem);
  }
}

/* Menu mobile compacto em painel de atalhos. */
@keyframes mobileMenuPanelIn {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0 round 8px);
    transform: translateY(-10px) scale(0.96);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 8px);
    transform: translateY(0) scale(1);
  }
}

@keyframes mobileMenuLinkIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header .site-nav {
    left: auto;
    right: 0;
    width: min(360px, calc(100vw - 36px));
    max-height: 0;
    padding: 0 10px;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: hidden;
    border-color: transparent;
    border-radius: 8px;
    opacity: 0;
    clip-path: inset(0 0 100% 0 round 8px);
    transform: translateY(-10px) scale(0.96);
    transform-origin: top right;
    background:
      radial-gradient(circle at 80% 8%, rgba(var(--green-rgb), 0.2), transparent 10rem),
      rgba(7, 19, 14, 0.92);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(22px) saturate(1.12);
  }

  .site-header.is-open .site-nav {
    max-height: 182px;
    padding: 10px;
    border-color: rgba(255, 255, 255, 0.28);
    opacity: 1;
    clip-path: inset(0 0 0 0 round 8px);
    transform: translateY(0) scale(1);
    animation: mobileMenuPanelIn 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .site-header.is-scrolled.is-open .site-nav {
    border-color: rgba(var(--green-rgb), 0.16);
    background:
      radial-gradient(circle at 80% 8%, rgba(var(--green-rgb), 0.13), transparent 10rem),
      rgba(255, 255, 255, 0.94);
  }

  .site-header .site-nav a,
  .site-header.is-open .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    line-height: 1.1;
    text-align: center;
    transition:
      transform 180ms ease,
      border-color 180ms ease,
      background 180ms ease,
      color 180ms ease;
  }

  .site-header.is-open .site-nav a {
    animation: mobileMenuLinkIn 220ms ease both;
  }

  .site-header .site-nav a:hover,
  .site-header .site-nav a:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(var(--green-rgb), 0.72);
    background: rgba(var(--green-rgb), 0.28);
    color: #fff;
  }

  .site-header.is-scrolled .site-nav a,
  .site-header.is-scrolled.is-open .site-nav a {
    border-color: rgba(var(--green-rgb), 0.13);
    background: rgba(var(--green-rgb), 0.045);
    color: var(--green-dark);
  }

  .site-header.is-scrolled .site-nav a:hover,
  .site-header.is-scrolled .site-nav a:focus-visible {
    border-color: rgba(var(--green-rgb), 0.42);
    background: rgba(var(--green-rgb), 0.12);
    color: var(--green);
  }
}

@media (max-width: 420px) {
  .site-header .site-nav {
    width: calc(100vw - 36px);
  }
}

@media (max-width: 760px) {
  .portfolio-mosaic-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-mosaic-card:nth-child(7) {
    grid-column: auto;
  }

  .portfolio-mosaic-card {
    min-height: auto;
  }

  .portfolio-mosaic {
    min-height: 300px;
  }

  .portfolio-mosaic-content {
    padding: 18px 18px 20px;
  }
}

@media (max-width: 480px) {
  .portfolio-mosaic {
    min-height: 258px;
    gap: 4px;
    padding: 4px;
  }

  .mosaic-tile {
    border-radius: 5px;
  }

  .mosaic-more-tile strong {
    right: 10px;
    bottom: 10px;
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
  }
}

/* Acabamento uniforme para os cards com fotos. */
.service-media-card,
.portfolio-mosaic-card {
  min-height: 0;
  overflow: hidden;
  border-color: rgba(var(--green-rgb), 0.72) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #10251c, #06110c);
}

.service-media-card {
  grid-template-rows: auto auto auto;
}

.portfolio-mosaic-card {
  grid-template-rows: auto minmax(154px, auto);
}

.service-media-card:hover,
.portfolio-mosaic-card:hover,
.portfolio-mosaic-card:focus-visible {
  border-color: rgba(var(--green-rgb), 0.95) !important;
}

.service-photo,
.portfolio-mosaic {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.portfolio-mosaic {
  gap: 2px;
  padding: 2px;
  background: var(--green);
  box-shadow:
    inset 0 0 0 1px rgba(var(--green-rgb), 0.92),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.portfolio-mosaic-card {
  border: 1px solid var(--green) !important;
  box-shadow:
    0 22px 62px rgba(0, 47, 24, 0.16),
    inset 0 0 0 1px rgba(var(--green-rgb), 0.28);
}

.portfolio-mosaic-card:hover,
.portfolio-mosaic-card:focus-visible {
  box-shadow:
    0 30px 88px rgba(0, 47, 24, 0.24),
    0 0 0 1px rgba(var(--green-rgb), 0.34);
}

.portfolio-mosaic .mosaic-tile {
  border: 1px solid rgba(var(--green-rgb), 0.78);
  box-shadow: none;
}

.service-photo span,
.mosaic-more-tile strong,
.mosaic-more-tile::after {
  display: none !important;
  content: none;
}

.portfolio-mosaic-card:nth-child(7) {
  grid-column: auto;
}

.service-media-card h3,
.portfolio-mosaic-content h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 1.75vw, 1.54rem);
  line-height: 1.1;
}

.service-media-card h3 {
  padding: 24px 26px 0;
}

.service-media-card p {
  margin: 0;
  padding: 12px 26px 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.92rem, 1.08vw, 1rem);
  line-height: 1.55;
}

.portfolio-mosaic-content {
  min-height: 154px;
  align-content: start;
  gap: 0;
  padding: 24px 26px 28px;
  background: linear-gradient(180deg, #07170f, #020a07);
}

.service-media-card h3::after,
.portfolio-mosaic-content h3::after {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.portfolio-description {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: clamp(0.92rem, 1.08vw, 1rem) !important;
  font-weight: 700 !important;
  line-height: 1.55;
  text-transform: none !important;
}

/* Mosaico do portfólio sem legendas visuais. */
.portfolio-mosaic-card {
  grid-template-rows: auto;
}

.portfolio-mosaic-content {
  display: none;
}

@media (max-width: 760px) {
  .service-media-card,
  .portfolio-mosaic-card {
    grid-template-rows: auto auto;
  }

  .service-media-card h3,
  .portfolio-mosaic-content {
    padding-right: 22px;
    padding-left: 22px;
  }

  .service-media-card p {
    padding-right: 22px;
    padding-left: 22px;
  }
}

.portfolio-mosaic-card {
  grid-template-rows: auto !important;
}

.portfolio-mosaic-content {
  display: none !important;
}

/* Ajuste final do mosaico: mesma escala e acabamento dos cards do catalogo. */
.portfolio-mosaic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-mosaic-card {
  border: 1px solid rgba(var(--green-rgb), 0.72) !important;
}

.portfolio-mosaic {
  gap: 1px;
  padding: 0;
  background: rgba(var(--green-rgb), 0.72);
  box-shadow: none;
}

.portfolio-mosaic .mosaic-tile {
  border: 0;
  border-radius: 0;
}

@media (max-width: 980px) {
  .portfolio-mosaic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .portfolio-mosaic-grid {
    grid-template-columns: 1fr;
  }
}

/* Separacao das fotos do mosaico com acabamento de spray branco. */
.portfolio-mosaic-card {
  padding: 2px;
  border: 0 !important;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.54) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 66%, rgba(var(--green-rgb), 0.42) 0 2px, transparent 5px),
    linear-gradient(135deg, rgba(var(--green-rgb), 0.95), rgba(0, 79, 38, 0.88) 44%, rgba(238, 248, 242, 0.74) 55%, rgba(var(--green-rgb), 0.82));
  background-size: 18px 18px, 28px 28px, auto;
}

.portfolio-mosaic {
  gap: 6px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 16% 26%, rgba(255, 255, 255, 0.96) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 48%, rgba(255, 255, 255, 0.74) 0 1px, transparent 3px),
    radial-gradient(circle at 82% 72%, rgba(var(--green-rgb), 0.16) 0 1px, transparent 4px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 243, 0.95) 42%, rgba(255, 255, 255, 0.92) 62%, rgba(221, 241, 229, 0.9));
  background-size: 12px 12px, 20px 20px, 28px 28px, auto;
}

.portfolio-mosaic .mosaic-tile {
  border-radius: 2px;
}

@media (max-width: 640px) {
  .portfolio-mosaic {
    gap: 5px;
  }
}

/* Portfolio Inled. */
.inled-section {
  scroll-margin-top: 116px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(var(--green-rgb), 0.26), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(135deg, #06110c, #0d1e16 46%, #062015);
}

.inled-heading {
  justify-items: center;
  text-align: center;
}

.inled-heading h2 {
  color: #fff;
}

.inled-heading p {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  line-height: 1.58;
}

.inled-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

.inled-feature,
.inled-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--green-rgb), 0.52);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 34%),
    #07130e;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.inled-feature:hover,
.inled-feature:focus-visible,
.inled-card:hover,
.inled-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.32);
  outline: none;
}

.inled-feature img,
.inled-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 320ms ease, filter 320ms ease;
}

.inled-feature > img {
  object-position: left center;
}

.inled-feature:hover img,
.inled-feature:focus-visible img,
.inled-card:hover img,
.inled-card:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.inled-feature {
  min-height: 520px;
}

.inled-feature::before {
  position: absolute;
  z-index: 1;
  top: 13%;
  right: 6%;
  width: 50%;
  height: 28%;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent),
    linear-gradient(180deg, transparent 0 44%, rgba(70, 255, 116, 0.22) 48% 52%, transparent 56% 100%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-82%);
  animation: inledLogoScan 4.8s ease-in-out infinite;
  pointer-events: none;
}

.inled-feature::after,
.inled-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 38%, rgba(2, 10, 6, 0.82)),
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 38% 72%, rgba(var(--green-rgb), 0.12));
  pointer-events: none;
}

.inled-feature div {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 34px);
  display: grid;
  gap: 10px;
  width: min(620px, calc(100% - clamp(36px, 6vw, 68px)));
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 42%),
    rgba(3, 15, 10, 0.72);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

@keyframes inledLogoScan {
  0%,
  18% {
    transform: translateX(-110%);
    opacity: 0;
  }

  32% {
    opacity: 1;
  }

  52%,
  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}

.inled-card span {
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.inled-feature h3 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  line-height: 0.98;
}

.inled-feature p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.5;
}

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

.inled-card {
  min-height: 220px;
}

.inled-card:first-child {
  grid-column: auto;
  min-height: 220px;
}

.inled-card span {
  display: none;
}

.inled-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

@media (max-width: 980px) {
  .inled-showcase {
    grid-template-columns: 1fr;
  }

  .inled-feature {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .inled-feature {
    min-height: 320px;
  }

  .inled-feature div {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 16px;
  }

  .inled-cards {
    grid-template-columns: 1fr;
  }

  .inled-card,
  .inled-card:first-child {
    min-height: 210px;
  }
}

/* Card principal da Inled em formato de letreiro/painel LED. */
.inled-feature {
  isolation: isolate;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 211, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 18% 72%, rgba(255, 145, 0, 0.14), transparent 18rem),
    linear-gradient(145deg, #020908, #07170f 52%, #020806);
}

.inled-feature::before {
  z-index: 0;
  inset: 0;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  opacity: 1;
  transform: none;
  animation: none;
  mix-blend-mode: normal;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 0 1px, transparent 1.3px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(0, 211, 255, 0.1), transparent 32%, rgba(115, 255, 0, 0.09) 66%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%, rgba(0, 0, 0, 0.36));
}

.inled-feature::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(2, 9, 6, 0.72)),
    radial-gradient(circle at 52% 45%, rgba(0, 211, 255, 0.16), transparent 18rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0.1), transparent 34% 72%, rgba(var(--green-rgb), 0.13));
}

.inled-feature .inled-led-stage {
  position: absolute;
  z-index: 2;
  inset: clamp(18px, 3.4vw, 44px) clamp(18px, 4vw, 58px) clamp(154px, 16vw, 218px);
  display: grid;
  place-items: center;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.inled-feature .inled-led-sign {
  position: relative;
  display: grid;
  width: min(78%, 700px);
  max-width: calc(100% - 20px);
  aspect-ratio: 685 / 300;
  place-items: center;
  overflow: hidden;
  padding: clamp(16px, 2.5vw, 34px);
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 42%, rgba(255, 119, 0, 0.16), transparent 15rem),
    radial-gradient(circle at 70% 44%, rgba(0, 211, 255, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(2, 14, 10, 0.55), rgba(4, 24, 18, 0.38));
  box-shadow:
    0 0 46px rgba(0, 214, 104, 0.18),
    0 24px 70px rgba(0, 0, 0, 0.2);
}

.inled-feature .inled-led-sign::before,
.inled-feature .inled-led-sign::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.inled-feature .inled-led-sign::before {
  z-index: 1;
  opacity: 0.74;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.25px) 0 0 / 14px 14px,
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: inledPanelBreath 3.8s ease-in-out infinite;
}

.inled-feature .inled-led-sign::after {
  z-index: 3;
  background:
    linear-gradient(100deg, transparent 0 36%, rgba(255, 255, 255, 0.22) 47%, transparent 58% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 5px);
  transform: translateX(-120%);
  animation: inledLogoScan 4.8s ease-in-out infinite;
}

.inled-feature .inled-led-logo {
  position: relative;
  z-index: 2;
  width: min(92%, 620px);
  height: auto;
  object-fit: contain;
  transform: none;
  filter:
    drop-shadow(0 0 12px rgba(119, 255, 0, 0.42))
    drop-shadow(0 0 24px rgba(0, 191, 255, 0.28));
  animation: inledLogoFlicker 4.2s steps(1, end) infinite;
}

.inled-feature:hover .inled-led-logo,
.inled-feature:focus-visible .inled-led-logo {
  transform: none;
  filter:
    drop-shadow(0 0 16px rgba(119, 255, 0, 0.55))
    drop-shadow(0 0 32px rgba(0, 191, 255, 0.36));
}

.inled-feature .inled-feature-copy {
  position: absolute;
  z-index: 4;
  right: auto;
  bottom: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 34px);
  display: grid;
  gap: 10px;
  width: min(620px, calc(100% - clamp(36px, 6vw, 68px)));
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), transparent 42%),
    rgba(3, 15, 10, 0.76);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

@keyframes inledPanelBreath {
  0%,
  100% {
    opacity: 0.58;
  }

  50% {
    opacity: 0.9;
  }
}

@keyframes inledLogoFlicker {
  0%,
  7%,
  9%,
  72%,
  76%,
  100% {
    opacity: 1;
  }

  8%,
  74% {
    opacity: 0.72;
  }
}

@media (max-width: 640px) {
  .inled-feature .inled-led-stage {
    inset: 16px 12px 152px;
  }

  .inled-feature .inled-led-sign {
    width: min(92%, 520px);
    padding: 14px;
  }

  .inled-feature .inled-feature-copy {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 16px;
  }
}

/* Ajuste fino de respiros entre secoes. */
.section {
  padding-top: clamp(46px, 5.8vw, 86px);
  padding-bottom: clamp(46px, 5.8vw, 86px);
}

.section-heading {
  margin-bottom: clamp(24px, 3.4vw, 42px);
}

.client-carousel-section {
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(34px, 4vw, 58px);
}

.impact-section {
  padding-top: clamp(42px, 5vw, 72px);
}

#servicos {
  padding-top: clamp(38px, 4.6vw, 64px);
}

#servicos .section-heading {
  gap: clamp(12px, 1.5vw, 18px);
  margin-bottom: clamp(24px, 3vw, 38px);
}

#servicos .filter-bar {
  margin-top: 0;
}

.portfolio-section {
  padding-top: clamp(42px, 5vw, 78px);
}

@media (max-width: 760px) {
  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  #servicos,
  .portfolio-section,
  .impact-section {
    padding-top: 38px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .location-details {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
  }

  .location-details a,
  .location-actions .button {
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 901px) {
  #servicos {
    padding-top: clamp(22px, 2.6vw, 40px);
  }

  .portfolio-section {
    padding-top: clamp(24px, 2.8vw, 44px);
  }

  .process-section {
    padding-top: clamp(24px, 3vw, 46px);
  }

  .location-copy h2 {
    max-width: 1180px;
    font-size: clamp(2rem, 2.45vw, 2.75rem);
    line-height: 1.06;
  }

  .location-address {
    font-size: 0.92rem !important;
  }
}

.location-copy h2 span {
  display: block;
}

@media (min-width: 641px) {
  .location-copy h2 {
    max-width: 1180px;
    font-size: clamp(1.85rem, 2.45vw, 2.75rem);
    line-height: 1.06;
  }

  .location-copy h2 span {
    white-space: nowrap;
  }
}

/* Ajuste fino da localizacao em notebooks: mais respiro para texto e CEP inteiro. */
@media (min-width: 901px) {
  .location-section {
    grid-template-columns: minmax(390px, 0.86fr) minmax(620px, 1.14fr);
    gap: clamp(26px, 4vw, 68px);
  }

  .location-copy {
    width: 100%;
    max-width: 880px;
    justify-self: center;
  }

  .location-copy h2 {
    max-width: 860px;
    font-size: clamp(1.95rem, 2.25vw, 2.55rem);
  }

  .location-address {
    width: max-content;
    max-width: 100% !important;
    white-space: nowrap;
    font-size: clamp(0.78rem, 0.78vw, 0.9rem) !important;
    line-height: 1.34 !important;
  }

  .location-note {
    font-size: clamp(0.86rem, 0.86vw, 0.98rem) !important;
  }

  .location-details {
    width: min(100%, 860px);
  }

  .location-details a {
    padding-inline: 12px;
    font-size: clamp(0.72rem, 0.74vw, 0.82rem);
  }

  .location-actions {
    width: min(100%, 620px);
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 901px) and (max-width: 1320px) {
  .location-section {
    grid-template-columns: minmax(340px, 0.8fr) minmax(620px, 1.2fr);
    gap: clamp(18px, 2.4vw, 38px);
  }

  .map-card {
    padding: 10px;
  }

  .location-map {
    min-height: 390px;
  }

  .location-copy h2 {
    font-size: clamp(1.65rem, 2.05vw, 2.2rem);
  }

  .location-address {
    font-size: clamp(0.68rem, 0.7vw, 0.78rem) !important;
  }

  .location-details a {
    font-size: clamp(0.66rem, 0.7vw, 0.76rem);
    padding-inline: 8px;
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .location-section {
    grid-template-columns: 1fr;
  }

  .location-copy {
    max-width: 900px;
  }
}

/* Inled: video do cliente como fundo principal, sem letreiro sobreposto. */
.inled-feature {
  isolation: isolate;
  aspect-ratio: 16 / 9;
  width: min(100%, 1180px);
  margin: 0 auto;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  min-height: 0;
  cursor: default;
}

.inled-feature::before {
  position: absolute;
  right: -1%;
  bottom: -1%;
  z-index: 2;
  display: block;
  width: clamp(78px, 8.6vw, 138px);
  aspect-ratio: 1;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(circle at 58% 54%, rgba(4, 13, 9, 0.98), rgba(4, 13, 9, 0.86) 34%, rgba(4, 13, 9, 0) 72%);
  filter: blur(3px);
  pointer-events: none;
}

.inled-feature::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 8, 5, 0.02), rgba(2, 8, 5, 0.12));
}

.inled-feature-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.035);
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 211, 255, 0.12), transparent 24rem),
    #020806;
  filter: saturate(1.04) contrast(1.03);
  pointer-events: none;
}

.inled-feature:hover .inled-feature-video,
.inled-feature:focus-visible .inled-feature-video {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.03);
}

.inled-feature:hover,
.inled-feature:focus-visible {
  transform: none;
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.inled-feature .inled-feature-copy {
  display: none;
}

.inled-feature .inled-led-stage {
  display: none;
}

@media (max-width: 980px) {
  .inled-feature {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .inled-feature {
    aspect-ratio: 16 / 9;
  }
}

/* Inled: composicao editorial com video principal e cards de apoio. */
@media (min-width: 981px) {
  .inled-showcase {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
  }

  .inled-feature {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    min-height: clamp(380px, 33vw, 560px);
    margin: 0;
  }

  .inled-cards {
    display: contents;
  }

  .inled-card {
    min-height: clamp(180px, 15.4vw, 272px);
  }

  .inled-card:nth-child(1) {
    grid-column: 8 / -1;
    grid-row: 1;
  }

  .inled-card:nth-child(2) {
    grid-column: 8 / -1;
    grid-row: 2;
  }

  .inled-card:nth-child(3) {
    grid-column: 1 / 5;
    grid-row: 3;
  }

  .inled-card:nth-child(4) {
    grid-column: 5 / 9;
    grid-row: 3;
  }

  .inled-card:nth-child(5) {
    grid-column: 9 / -1;
    grid-row: 3;
  }
}

/* Ajustes finos finais: formulario, lightbox, contato e rodape. */
.native-service-select {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-field,
.service-select-field {
  position: relative;
  display: grid;
  gap: 9px;
}

.form-field > label,
.service-select-field > label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(14, 86, 50, 0.55);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 0 1px rgba(0, 125, 60, 0.18);
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(1, 45, 24, 0.48);
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(1, 45, 24, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.custom-select-trigger svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.custom-select.is-open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-trigger:hover,
.custom-select.is-open .custom-select-trigger,
.service-select-field.is-invalid .custom-select-trigger {
  border-color: rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(1, 45, 24, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 4px rgba(255, 255, 255, 0.08);
}

.custom-select-menu {
  position: absolute;
  z-index: 12;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  max-height: min(330px, 52vh);
  padding: 8px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(218, 242, 228, 0.96);
  box-shadow:
    0 22px 68px rgba(0, 18, 9, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.16);
}

.custom-select-menu[hidden] {
  display: none;
}

.custom-select-menu button {
  display: block;
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  color: #102019;
  background: transparent;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.custom-select-menu button:hover,
.custom-select-menu button[aria-selected="true"] {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  transform: translateX(2px);
}

.gallery-modal {
  background:
    radial-gradient(circle at 50% 42%, rgba(var(--green-rgb), 0.22), transparent 34rem),
    rgba(1, 10, 6, 0.78);
  backdrop-filter: blur(22px) saturate(1.12);
}

.gallery-dialog {
  width: min(1180px, 100%);
}

.gallery-frame {
  border-color: rgba(var(--green-rgb), 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 32%),
    #030c08;
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 80px rgba(var(--green-rgb), 0.1);
}

.gallery-frame img {
  background: #030c08;
}

.gallery-frame figcaption {
  width: min(390px, calc(100% - 32px));
  border-color: rgba(var(--green-rgb), 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(3, 15, 10, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.gallery-frame figcaption small:empty,
.gallery-modal.is-single-gallery .gallery-arrow {
  display: none;
}

.gallery-modal.is-single-gallery .gallery-dialog {
  grid-template-columns: minmax(0, 1fr);
}

.gallery-close,
.gallery-arrow {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.location-details a,
.location-actions .button {
  min-height: 54px;
  font-size: clamp(0.86rem, 0.9vw, 1rem);
  line-height: 1;
}

.location-details {
  grid-template-columns: minmax(170px, 0.9fr) minmax(210px, 1.04fr) minmax(250px, 1.16fr);
}

.location-details a {
  padding-inline: 14px;
  white-space: nowrap;
}

.site-footer {
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  min-height: 118px;
}

.footer-legal {
  max-width: 680px;
  margin: 0;
  color: rgba(93, 108, 101, 0.88);
  font-size: clamp(0.78rem, 0.82vw, 0.9rem);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 1180px) {
  .location-details {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
  }
}

@media (max-width: 760px) {
  .custom-select-menu {
    max-height: 300px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: auto;
  }

  .footer-legal,
  .footer-credit {
    text-align: left;
    white-space: normal;
  }
}

/* Fine tune: lightbox real image proportions and dark glass service menu */
.custom-select-trigger {
  border-color: rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(7, 28, 18, 0.78);
}

.custom-select.is-open .custom-select-trigger {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    rgba(6, 24, 16, 0.9);
}

.custom-select-menu {
  padding: 0;
  overflow: hidden auto;
  border-color: rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 50% 0, rgba(var(--green-rgb), 0.2), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 23, 16, 0.96);
  box-shadow:
    0 26px 74px rgba(0, 12, 7, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.custom-select-menu button {
  position: relative;
  min-height: 48px;
  padding: 0 20px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0);
  font-size: 0.94rem;
  transition: color 160ms ease, background 160ms ease, padding 160ms ease;
}

.custom-select-menu button:first-child {
  border-radius: 9px 9px 0 0;
}

.custom-select-menu button:last-child {
  border-bottom: 0;
  border-radius: 0 0 9px 9px;
}

.custom-select-menu button::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 0 0 rgba(var(--green-rgb), 0);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.custom-select-menu button:hover,
.custom-select-menu button[aria-selected="true"] {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(var(--green-rgb), 0.42), rgba(var(--green-rgb), 0.1)),
    rgba(255, 255, 255, 0.035);
  transform: none;
}

.custom-select-menu button:hover::before,
.custom-select-menu button[aria-selected="true"]::before {
  background: var(--green);
  box-shadow: 0 0 18px rgba(var(--green-rgb), 0.48);
}

.gallery-dialog {
  width: auto;
  max-width: calc(100vw - clamp(28px, 6vw, 76px));
  grid-template-columns: auto minmax(0, auto) auto;
  justify-content: center;
}

.gallery-modal.is-single-gallery .gallery-dialog {
  grid-template-columns: minmax(0, auto);
}

.gallery-frame {
  width: fit-content;
  max-width: 100%;
}

.gallery-frame img {
  width: auto;
  max-width: min(100%, 1180px);
  height: auto;
  max-height: min(84vh, 820px);
  margin-inline: auto;
  object-fit: contain;
}

@media (max-width: 980px) {
  .gallery-dialog {
    max-width: calc(100vw - 28px);
    gap: 8px;
  }

  .gallery-frame img {
    max-height: 78vh;
  }
}

@media (max-width: 760px) {
  .custom-select-menu button {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.9rem;
  }
}

/* Keep every gallery safely inside the viewport, including the close button. */
.gallery-modal {
  padding: clamp(22px, 4vw, 54px);
}

.gallery-dialog {
  max-width: min(1120px, calc(100vw - clamp(64px, 9vw, 124px)));
}

.gallery-modal:not(.is-single-gallery) .gallery-dialog {
  max-width: min(1120px, calc(100vw - clamp(88px, 12vw, 170px)));
}

.gallery-frame {
  box-sizing: border-box;
}

.gallery-frame img {
  max-width: min(1120px, calc(100vw - clamp(64px, 9vw, 124px)));
}

.gallery-modal:not(.is-single-gallery) .gallery-frame img {
  max-width: min(940px, calc(100vw - clamp(160px, 18vw, 240px)));
}

.gallery-close {
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(10, 25, 18, 0.78);
}

@media (max-width: 980px) {
  .gallery-modal {
    padding: 18px;
  }

  .gallery-dialog,
  .gallery-modal:not(.is-single-gallery) .gallery-dialog {
    max-width: calc(100vw - 36px);
  }

  .gallery-frame img,
  .gallery-modal:not(.is-single-gallery) .gallery-frame img {
    max-width: calc(100vw - 36px);
  }

  .gallery-close {
    top: 10px;
    right: 10px;
  }
}

/* Capsula glass para canais sociais posicionada no fluxo da pagina. */
.floating-contact {
  position: static;
  right: auto;
  bottom: auto;
  z-index: 18;
  display: grid;
  gap: 10px;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(5, 17, 12, 0.62);
  box-shadow:
    0 24px 70px rgba(0, 20, 10, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(1.12);
}

.floating-contact .floating-instagram,
.floating-contact .floating-whatsapp {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  width: 46px;
  height: 46px;
  transform: translateZ(0);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.floating-contact .floating-instagram:hover,
.floating-contact .floating-whatsapp:hover {
  transform: scale(1.08);
  filter:
    drop-shadow(0 0 10px rgba(var(--green-rgb), 0.38))
    drop-shadow(0 14px 24px rgba(0, 55, 28, 0.28));
}

.floating-contact .floating-whatsapp:hover {
  box-shadow:
    0 18px 42px rgba(var(--green-rgb), 0.42),
    0 0 0 4px rgba(var(--green-rgb), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -12px 20px rgba(0, 35, 18, 0.18);
}

@media (max-width: 640px) {
  .floating-contact {
    right: auto;
    bottom: auto;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .floating-contact .floating-instagram,
  .floating-contact .floating-whatsapp {
    width: 42px;
    height: 42px;
  }
}

/* Ajustes finos: novos parceiros e titulo de contato. */
.client-logo-card-dasa img {
  max-width: min(94%, 168px);
  max-height: 58px;
}

.client-logo-card-subway img {
  max-width: min(94%, 164px);
  max-height: 50px;
}

@media (min-width: 1321px) {
  .location-copy {
    max-width: 980px;
  }

  .location-copy h2 {
    max-width: 980px;
    font-size: clamp(2.35rem, 2.85vw, 3.25rem);
    line-height: 1.03;
  }
}

/* Padroniza o menu de servico do contato com a linguagem do menu mobile. */
.custom-select-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: min(430px, 58vh);
  padding: 10px;
  overflow: auto;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  opacity: 1;
  background:
    radial-gradient(circle at 80% 8%, rgba(var(--green-rgb), 0.2), transparent 10rem),
    rgba(7, 19, 14, 0.94);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(1.12);
}

.custom-select.is-open .custom-select-menu {
  animation: mobileMenuPanelIn 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.custom-select-menu[hidden] {
  display: none;
}

.custom-select-menu button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.045);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.custom-select-menu button:first-child,
.custom-select-menu button:last-child {
  border-radius: 8px;
}

.custom-select-menu button::before {
  display: none;
}

.custom-select-menu button:hover,
.custom-select-menu button:focus-visible,
.custom-select-menu button[aria-selected="true"] {
  border-color: rgba(var(--green-rgb), 0.72);
  color: #fff;
  background: rgba(var(--green-rgb), 0.28);
  box-shadow: 0 12px 28px rgba(0, 40, 20, 0.18);
  transform: translateY(-1px);
}

@media (max-width: 520px) {
  .custom-select-menu {
    grid-template-columns: 1fr;
    max-height: 330px;
  }
}

/* Evita que a capsula flutuante cubra os creditos no desktop. */
@media (min-width: 761px) {
  .site-footer {
    padding-right: max(clamp(18px, 5vw, 72px), 132px);
  }

  .footer-right {
    justify-self: end;
    min-width: 0;
  }
}

/* Alinha o painel do menu mobile ao botao de abertura. */
@media (max-width: 980px) {
  .site-header .site-nav {
    right: 0 !important;
    left: auto !important;
    width: min(340px, calc(100vw - 76px));
  }
}

@media (max-width: 420px) {
  .site-header .site-nav {
    right: 0 !important;
    width: calc(100vw - 86px);
  }
}

@media (max-width: 360px) {
  .site-header .site-nav {
    right: 0 !important;
    width: calc(100vw - 82px);
  }
}

/* Parceiros: carrossel leve + galeria completa em modal. */
body.is-partners-open {
  overflow: hidden;
}

.client-carousel-more {
  display: flex;
  justify-content: center;
  width: min(1100px, calc(100% - 36px));
  margin: clamp(22px, 3vw, 34px) auto 0;
}

.client-carousel-more .button {
  min-width: 210px;
  min-height: 54px;
  padding-inline: 30px;
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: 0;
}

.partners-modal {
  position: fixed;
  z-index: 95;
  inset: 0;
  display: none;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background:
    radial-gradient(circle at 50% 16%, rgba(var(--green-rgb), 0.2), transparent 34rem),
    rgba(2, 10, 7, 0.78);
  backdrop-filter: blur(22px) saturate(1.12);
}

.partners-modal.is-open {
  display: grid;
}

.partners-modal[hidden],
.partners-modal[aria-hidden="true"] {
  display: none !important;
}

.partners-modal-panel {
  position: relative;
  width: min(1240px, 100%);
  max-height: min(86vh, 920px);
  padding: clamp(22px, 3vw, 42px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    radial-gradient(circle at 50% 0%, rgba(var(--green-rgb), 0.14), transparent 32rem),
    rgba(239, 246, 242, 0.94);
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  animation: partnersModalIn 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes partnersModalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.partners-modal-close {
  position: sticky;
  z-index: 4;
  top: 0;
  float: right;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 0 10px 16px;
  border: 1px solid rgba(var(--green-rgb), 0.22);
  border-radius: 50%;
  color: transparent;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 248, 0.82));
  box-shadow:
    0 16px 42px rgba(0, 47, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.partners-modal-close::before,
.partners-modal-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--green-dark);
  transform-origin: center;
  transition: background 180ms ease;
}

.partners-modal-close::before {
  transform: rotate(45deg);
}

.partners-modal-close::after {
  transform: rotate(-45deg);
}

.partners-modal-close:hover,
.partners-modal-close:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(var(--green-rgb), 0.86);
  background:
    linear-gradient(145deg, rgba(var(--green-rgb), 1), rgba(0, 91, 44, 0.96));
  box-shadow:
    0 18px 48px rgba(0, 103, 50, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  outline: none;
}

.partners-modal-close:hover::before,
.partners-modal-close:hover::after,
.partners-modal-close:focus-visible::before,
.partners-modal-close:focus-visible::after {
  background: #fff;
}

.partners-modal-heading {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto clamp(22px, 3vw, 36px);
  text-align: center;
}

.partners-modal-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
}

.partners-modal-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.partners-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(154px, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  clear: both;
}

.partners-modal-grid .client-logo-card {
  min-height: clamp(96px, 8vw, 126px);
  border-color: rgba(var(--green-rgb), 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36)),
    rgba(var(--green-rgb), 0.07);
}

.partners-modal-grid .client-logo-card-dark {
  border-color: rgba(var(--green-rgb), 0.34);
  background:
    radial-gradient(circle at 50% 20%, rgba(var(--green-rgb), 0.2), transparent 66%),
    linear-gradient(145deg, rgba(9, 32, 22, 0.96), rgba(1, 18, 12, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 42px rgba(0, 47, 24, 0.18);
}

.partners-modal-grid .client-logo-card img {
  max-width: min(92%, 152px);
  max-height: 62px;
}

.partners-modal-grid .client-logo-card-wide img,
.partners-modal-grid .client-logo-card-defensoria img {
  max-width: min(94%, 178px);
  max-height: 58px;
}

.partners-modal-grid .client-logo-card-xl img {
  max-width: min(96%, 214px);
  max-height: 64px;
}

.partners-modal-grid .client-logo-card-acuas img,
.partners-modal-grid .client-logo-card-mpdft img,
.partners-modal-grid .client-logo-card-santa-lucia img {
  max-width: min(86%, 112px);
  max-height: 72px;
}

.partners-modal-grid .client-logo-card-leonardo img {
  max-width: min(88%, 132px);
  max-height: 72px;
}

.partners-modal-grid .client-logo-card-samsung img,
.partners-modal-grid .client-logo-card-sicoob img,
.partners-modal-grid .client-logo-card-super-adega img,
.partners-modal-grid .client-logo-card-dia-a-dia img,
.partners-modal-grid .client-logo-card-estapar img,
.partners-modal-grid .client-logo-card-marietta img,
.partners-modal-grid .client-logo-card-maple-bear img,
.partners-modal-grid .client-logo-card-trt img,
.partners-modal-grid .client-logo-card-majo img,
.partners-modal-grid .client-logo-card-mania img,
.partners-modal-grid .client-logo-card-sobradinho img,
.partners-modal-grid .client-logo-card-aguas img {
  max-width: min(96%, 196px);
  max-height: 86px;
}

.partners-modal-grid .client-logo-card-mpm img {
  max-width: min(98%, 236px);
  max-height: 88px;
}

.partners-modal-grid .client-logo-card-maple-bear img,
.partners-modal-grid .client-logo-card-majo img,
.partners-modal-grid .client-logo-card-trt img,
.partners-modal-grid .client-logo-card-sobradinho img,
.partners-modal-grid .client-logo-card-aguas img {
  max-height: 94px;
}

@media (max-width: 720px) {
  .partners-modal {
    align-items: stretch;
    padding: 12px;
  }

  .partners-modal-panel {
    max-height: calc(100dvh - 24px);
    padding: 18px;
  }

  .partners-modal-close {
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
  }

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

  .partners-modal-grid .client-logo-card {
    min-height: 104px;
  }
}

/* Final polish pass: responsive alignment, gallery, contact form and partner logos. */
.hero-actions .button:first-child {
  white-space: nowrap;
}

.process-list article {
  text-align: center;
  align-items: center;
}

.process-list article .process-icon {
  margin-inline: 0 auto;
  align-self: flex-start;
}

.process-list article span,
.process-list article p {
  text-align: center;
}

.location-copy {
  text-align: center;
  align-items: center;
}

.location-copy h2 {
  max-width: 980px;
  margin-inline: auto;
}

.location-address,
.location-note {
  width: 100%;
  text-align: center;
  margin-inline: auto;
}

.location-details {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-details a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 18px;
  font-size: clamp(0.92rem, 0.88vw, 1rem);
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.contact-form {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 24px 70px rgba(0, 44, 22, 0.24);
}

.contact-form input,
.contact-form textarea,
.custom-select-trigger {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(0, 62, 31, 0.12);
}

.custom-select-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(3, 24, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.custom-select-menu[hidden] {
  display: none;
}

.custom-select-menu button {
  min-height: 66px;
  justify-content: center;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.custom-select-menu button::before {
  display: none;
}

.custom-select-menu button:hover,
.custom-select-menu button:focus-visible,
.custom-select-menu button[aria-selected="true"] {
  color: #fff;
  background: rgba(0, 130, 64, 0.34);
  box-shadow: inset 0 0 0 1px rgba(80, 220, 140, 0.28);
  transform: translateY(-1px);
}

.gallery-modal.is-single-gallery .gallery-arrow,
.gallery-modal.is-clean-gallery .gallery-frame figcaption {
  display: none !important;
}

.gallery-dialog {
  align-items: center;
}

.gallery-frame {
  display: inline-flex;
  overflow: hidden;
  max-width: min(92vw, 1220px);
  max-height: 86vh;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(3, 24, 16, 0.86);
  border-radius: 10px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(0, 131, 65, 0.18);
}

.gallery-frame img,
.gallery-modal:not(.is-single-gallery) .gallery-frame img {
  width: auto;
  height: auto;
  max-width: min(92vw, 1220px);
  max-height: 86vh;
  object-fit: contain;
  background: transparent;
}

.partners-modal-grid .client-logo-card,
.client-carousel .client-logo-card {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.98), rgba(247, 252, 249, 0.9) 58%, rgba(231, 244, 236, 0.82));
}

.client-logo-card-dasa img,
.partners-modal-grid .client-logo-card-dasa img {
  max-width: 76%;
  max-height: 72px;
  mix-blend-mode: multiply;
}

.client-logo-card-samsung img,
.client-logo-card-sicoob img,
.client-logo-card-super-adega img,
.client-logo-card-dia-a-dia img,
.client-logo-card-estapar img,
.client-logo-card-marietta img,
.client-logo-card-maple-bear img,
.client-logo-card-mpm img,
.client-logo-card-trt img,
.client-logo-card-majo img,
.client-logo-card-sobradinho img,
.client-logo-card-aguas img,
.client-logo-card-ccbb img {
  max-width: 86%;
  max-height: 96px;
}

.client-logo-card-iron,
.partners-modal-grid .client-logo-card-dark {
  background: #0c62ad;
}

.partners-modal-grid .client-logo-card-dark img {
  max-width: 58px;
  max-height: 58px;
  filter: none;
}

.site-footer {
  padding-right: clamp(168px, 13vw, 250px);
  gap: clamp(18px, 3vw, 44px);
}

.footer-credit {
  white-space: nowrap;
}

@media (min-width: 1100px) {
  .location-section {
    grid-template-columns: minmax(430px, 0.9fr) minmax(650px, 1.1fr);
    gap: clamp(42px, 4vw, 76px);
  }

  .location-copy h2 {
    font-size: clamp(2.65rem, 3.05vw, 3.7rem);
    line-height: 1.02;
  }

  .location-address {
    max-width: none;
    font-size: clamp(0.78rem, 0.7vw, 0.9rem);
    white-space: nowrap;
  }

  .location-note {
    font-size: clamp(1.02rem, 0.96vw, 1.16rem);
  }
}

@media (max-width: 980px) {
  .site-header .site-nav {
    left: auto !important;
    right: clamp(22px, 6vw, 34px) !important;
    width: min(78vw, 410px) !important;
    max-width: calc(100vw - 56px) !important;
    transform: translateY(-8px) scale(0.98) !important;
    transform-origin: top right;
    opacity: 0;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .site-header .site-nav.is-open {
    transform: translateY(0) scale(1) !important;
    opacity: 1;
  }

  .site-header .site-nav a {
    min-height: 64px !important;
    padding: 14px 12px !important;
  }

  .hero-actions .button:first-child {
    font-size: clamp(1rem, 4.4vw, 1.34rem);
    gap: 14px;
  }

  .location-details {
    grid-template-columns: 1fr;
  }

  .location-details a {
    min-height: 54px;
    font-size: 0.98rem;
  }

  .site-footer {
    padding-right: 24px;
  }

  .footer-credit {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .client-carousel::before,
  .client-carousel::after {
    display: none;
  }

  .client-carousel .client-logo-card {
    min-width: 154px;
    background: rgba(255, 255, 255, 0.72);
  }

  .partners-modal-grid .client-logo-card img {
    max-width: 84%;
    max-height: 78px;
  }

  .partners-modal-grid .client-logo-card-samsung img,
  .partners-modal-grid .client-logo-card-sicoob img,
  .partners-modal-grid .client-logo-card-super-adega img,
  .partners-modal-grid .client-logo-card-dia-a-dia img,
  .partners-modal-grid .client-logo-card-estapar img,
  .partners-modal-grid .client-logo-card-marietta img,
  .partners-modal-grid .client-logo-card-maple-bear img,
  .partners-modal-grid .client-logo-card-mpm img,
  .partners-modal-grid .client-logo-card-trt img,
  .partners-modal-grid .client-logo-card-majo img,
  .partners-modal-grid .client-logo-card-sobradinho img,
  .partners-modal-grid .client-logo-card-aguas img,
  .partners-modal-grid .client-logo-card-ccbb img {
    max-width: 92%;
    max-height: 90px;
  }

  .process-list article {
    text-align: center;
  }

  .custom-select-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
    border-radius: 14px;
  }

  .custom-select-menu button {
    min-height: 56px;
    padding: 10px 8px;
    font-size: 0.9rem;
  }

  .gallery-modal {
    padding: 18px;
  }

  .gallery-frame,
  .gallery-frame img,
  .gallery-modal:not(.is-single-gallery) .gallery-frame img {
    max-width: calc(100vw - 36px);
    max-height: 78vh;
  }
}

@media (max-width: 430px) {
  .site-header .site-nav {
    right: 22px !important;
    width: min(336px, calc(100vw - 54px)) !important;
  }

  .site-header .site-nav a {
    min-height: 58px !important;
    font-size: 1rem !important;
  }

  .hero-actions .button:first-child {
    padding-inline: 20px;
    font-size: clamp(0.94rem, 4.1vw, 1.08rem);
  }
}

/* Garante que as tres linhas do menu mobile nao sejam cortadas. */
@media (max-width: 980px) {
  .site-header.is-open .site-nav {
    max-height: min(240px, calc(100dvh - 96px)) !important;
    overflow-y: auto;
  }
}

/* Localizacao: evita corte do titulo em telas largas. */
@media (min-width: 1100px) {
  .location-copy h2 {
    max-width: min(100%, 1080px);
    font-size: clamp(2.75rem, 3vw, 3.45rem);
  }

  .location-copy h2 span {
    white-space: normal !important;
  }
}

@media (min-width: 1100px) and (max-width: 1700px) {
  .location-section {
    grid-template-columns: minmax(360px, 0.72fr) minmax(720px, 1.28fr);
  }

  .location-copy {
    max-width: 1040px;
  }

  .location-copy h2 {
    font-size: clamp(2.45rem, 3.12vw, 2.82rem);
  }

  .location-copy h2 span {
    white-space: nowrap !important;
  }
}

@media (min-width: 1701px) {
  .location-section {
    grid-template-columns: minmax(520px, 0.7fr) minmax(1040px, 1.3fr);
  }

  .location-copy {
    max-width: 1240px;
  }

  .location-copy h2 {
    max-width: 1240px;
    font-size: clamp(3.45rem, 3.1vw, 4rem);
    line-height: 1.02;
  }

  .location-copy h2 span {
    white-space: nowrap !important;
  }
}

@media (min-width: 760px) and (max-width: 900px) {
  .location-address {
    font-size: clamp(0.72rem, 1.28vw, 0.82rem) !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 759px) {
  .location-address {
    font-size: clamp(0.68rem, 2.2vw, 0.84rem) !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
  }

  .location-note {
    font-size: clamp(0.86rem, 3vw, 0.98rem) !important;
  }
}

@media (max-width: 480px) {
  .location-address {
    font-size: clamp(0.86rem, 3.6vw, 0.96rem) !important;
    line-height: 1.34 !important;
    white-space: normal !important;
  }
}

/* Hero mobile: centraliza icone e texto dos CTAs como um conjunto. */
@media (max-width: 980px) {
  .hero-actions .button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px !important;
    text-align: center;
  }

  .hero-actions svg {
    flex: 0 0 auto;
    margin-right: 0 !important;
  }
}

/* Menu mobile: dropdown alinhado ao botao de fechar. */
@media (max-width: 980px) {
  .site-header .site-nav {
    right: 0 !important;
    width: min(360px, calc(100vw - 54px)) !important;
  }
}

/* Localizacao desktop: titulo grande com uma frase por linha. */
@media (min-width: 1701px) {
  .location-section {
    grid-template-columns: minmax(430px, 0.58fr) minmax(1240px, 1.42fr) !important;
  }

  .location-copy {
    max-width: calc(100vw - 96px) !important;
  }

  .location-copy h2 {
    max-width: 100% !important;
    font-size: clamp(3.4rem, 3.35vw, 4.45rem) !important;
    line-height: 1.02 !important;
  }

  .location-copy h2 span {
    white-space: nowrap !important;
  }

  .location-copy h2 span:first-child {
    font-size: 1em;
  }

  .location-copy h2 span:last-child {
    font-size: clamp(4.25rem, 3.78vw, 4.45rem);
  }
}

/* Localizacao em desktop empilhado/zoom: ocupa a largura util. */
@media (min-width: 760px) and (max-width: 1080px) {
  .location-copy {
    max-width: calc(100vw - 96px) !important;
  }

  .location-copy h2 {
    max-width: 100% !important;
    font-size: clamp(2.7rem, 4.65vw, 3.35rem) !important;
    line-height: 1.02 !important;
  }

  .location-copy h2 span {
    white-space: nowrap !important;
  }

  .location-copy h2 span:last-child {
    font-size: clamp(3.05rem, 5.25vw, 3.75rem);
  }
}

/* Localizacao desktop: endereco e chamada proporcionais ao titulo. */
@media (min-width: 1100px) {
  .location-address {
    width: min(100%, 1240px) !important;
    max-width: min(100%, 1240px) !important;
    font-size: clamp(1.08rem, 1.18vw, 1.42rem) !important;
    line-height: 1.28 !important;
    white-space: nowrap !important;
    text-align: center;
  }

  .location-note {
    width: min(100%, 980px) !important;
    max-width: min(100%, 980px) !important;
    font-size: clamp(1.06rem, 1.08vw, 1.28rem) !important;
    line-height: 1.32 !important;
    text-align: center;
  }
}

/* Rodape desktop: capsula para antes do rodape e alinhamento em tres colunas. */
@media (min-width: 981px) {
  .contact-section {
    margin-bottom: clamp(18px, 2vw, 28px) !important;
  }

  .floating-contact-band {
    min-height: auto;
    padding: 0 clamp(24px, 3.5vw, 72px) clamp(10px, 1.2vw, 18px);
  }

  .floating-contact {
    position: static;
    z-index: 1;
    width: max-content;
    margin: 0;
    gap: 7px;
    padding: 7px;
  }

  .floating-top,
  .floating-contact .floating-instagram,
  .floating-contact .floating-whatsapp {
    width: 34px;
    height: 34px;
  }

  .floating-contact .floating-whatsapp svg {
    width: 20px;
    height: 20px;
  }

  .site-footer {
    grid-template-columns: minmax(220px, 1fr) minmax(0, auto) minmax(220px, 1fr) !important;
    justify-content: stretch;
    justify-items: stretch;
    min-height: 86px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    padding-right: clamp(24px, 3.5vw, 72px) !important;
    padding-left: clamp(24px, 3.5vw, 72px) !important;
  }

  .footer-brand {
    justify-self: start;
  }

  .footer-legal {
    justify-self: center;
    text-align: center;
  }

  .footer-right {
    justify-self: end;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
  }
}

/* Capsula social no fluxo da pagina, com botao de voltar ao topo. */
.floating-contact-band {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.floating-contact {
  position: static !important;
  width: max-content;
  margin: 0;
}

.floating-top {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(4, 42, 23, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 26px rgba(0, 47, 24, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-top:hover,
.floating-top:focus-visible {
  transform: translateY(-2px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)),
    var(--green);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 34px rgba(0, 82, 42, 0.28);
}

.floating-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .floating-contact-band {
    justify-content: flex-end;
    padding: 18px;
  }

  .floating-contact {
    margin: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
      rgba(5, 17, 12, 0.62);
    box-shadow:
      0 24px 70px rgba(0, 20, 10, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px) saturate(1.12);
  }
}

.floating-contact-band .floating-instagram,
.floating-contact-band .floating-whatsapp {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
}

@media (min-width: 981px) {
  .floating-contact-band {
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .floating-contact-band .floating-contact {
    position: fixed !important;
    right: clamp(4px, 1vw, 18px) !important;
    bottom: clamp(72px, 5vw, 104px) !important;
    z-index: 60;
    margin: 0 !important;
  }

  body.is-floating-contact-over-card .floating-contact-band .floating-contact {
    top: auto !important;
    bottom: clamp(112px, 7.5vw, 150px) !important;
  }
}

@media (max-width: 980px) {
  .floating-contact-band {
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .floating-contact-band .floating-contact {
    position: fixed !important;
    right: 4px !important;
    bottom: calc(32px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 60;
    margin: 0 !important;
  }
}

/* Mobile: botoes sociais livres, sem capsula no rodape. */
@media (max-width: 980px) {
  .floating-contact-band .floating-contact {
    right: 12px !important;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
    display: grid !important;
    gap: 10px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate3d(10px, 0, 0) scale(0.96) !important;
    transition: opacity 180ms ease, transform 180ms ease !important;
  }

  body.is-mobile-floating-contact-visible .floating-contact-band .floating-contact {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
  }

  .floating-top,
  .floating-contact .floating-instagram,
  .floating-contact .floating-whatsapp {
    width: 54px !important;
    height: 54px !important;
    box-shadow: 0 16px 34px rgba(0, 30, 14, 0.22) !important;
  }

  .floating-contact .floating-instagram img {
    width: 54px !important;
    height: 54px !important;
  }

  .floating-contact .floating-whatsapp svg {
    width: 32px !important;
    height: 32px !important;
  }
}

/* Mobile Safari: evita zoom automatico ao focar campos do formulario. */
@media (max-width: 980px) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .custom-select-trigger,
  .custom-select-menu button {
    font-size: 16px !important;
  }
}

/* Mobile: CTAs do hero centralizados e sociais sem interferir no rodape. */
@media (max-width: 640px) {
  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: clamp(20px, 6vw, 28px) !important;
    padding-left: clamp(20px, 6vw, 28px) !important;
    box-sizing: border-box !important;
  }

  .hero-actions {
    display: grid !important;
    justify-items: stretch !important;
    width: min(318px, calc(100vw - 72px)) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    gap: 14px !important;
  }

  .hero-actions .button {
    display: inline-flex !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 64px !important;
    padding-right: 18px !important;
    padding-left: 18px !important;
    gap: 14px !important;
    box-sizing: border-box !important;
    font-size: clamp(0.98rem, 4vw, 1.12rem) !important;
  }

  .hero-actions .button svg {
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
  }
}

@media (max-width: 980px) {
  .floating-contact-band .floating-contact {
    right: 14px !important;
    bottom: calc(86px + env(safe-area-inset-bottom, 0px)) !important;
    gap: 11px !important;
  }

  .floating-top,
  .floating-contact .floating-instagram,
  .floating-contact .floating-whatsapp {
    width: 46px !important;
    height: 46px !important;
    background-clip: padding-box !important;
    box-shadow: none !important;
    filter: drop-shadow(0 14px 24px rgba(0, 30, 14, 0.2)) !important;
  }

  .floating-contact .floating-instagram {
    overflow: hidden !important;
    border-radius: 14px !important;
    background: transparent !important;
  }

  .floating-contact .floating-instagram img {
    display: block !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    object-fit: cover !important;
  }

  .floating-contact .floating-whatsapp {
    border-radius: 50% !important;
  }

  .floating-contact .floating-whatsapp svg {
    width: 28px !important;
    height: 28px !important;
  }

  .floating-top svg {
    width: 22px !important;
    height: 22px !important;
  }

  .site-footer {
    padding-right: 94px !important;
  }
}

/* Desktop: cantos externos do menu de servicos e borda do ultimo item. */
@media (min-width: 981px) {
  .custom-select-menu {
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  .custom-select-menu button {
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 0 !important;
  }

  .custom-select-menu button:first-child {
    border-top-left-radius: 16px !important;
  }

  .custom-select-menu button:nth-child(2) {
    border-top-right-radius: 16px !important;
  }

  .custom-select-menu button:nth-last-child(2) {
    border-bottom-left-radius: 16px !important;
  }

  .custom-select-menu button:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-bottom-right-radius: 16px !important;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  }
}

/* Ajustes finos dos logos de clientes no painel "Ver mais". */
.client-logo-card-ironberg img {
  max-width: min(88%, 150px) !important;
  max-height: 118px !important;
}

.client-logo-card-dia-a-dia img {
  max-width: min(94%, 184px) !important;
  max-height: 92px !important;
}

.client-logo-card-leonardo img {
  max-width: min(92%, 176px) !important;
  max-height: 94px !important;
}

.client-logo-card-ccbb img {
  max-width: min(98%, 218px) !important;
  max-height: 118px !important;
}

.client-logo-card-farmacia img {
  max-width: min(96%, 210px) !important;
  max-height: 88px !important;
}

.client-logo-card-ahcai img {
  max-width: min(88%, 154px) !important;
  max-height: 112px !important;
}

.client-logo-card-mania img,
.client-logo-card-sobradinho img {
  max-width: min(96%, 214px) !important;
  max-height: 98px !important;
}

.client-logo-card-lione img {
  max-width: min(86%, 154px) !important;
  max-height: 116px !important;
}

.client-logo-card-aguas img {
  max-width: min(90%, 168px) !important;
  max-height: 112px !important;
}

.client-logo-card-barbacoa img {
  max-width: min(78%, 132px) !important;
  max-height: 118px !important;
}

.client-logo-card-minas img {
  max-width: min(82%, 138px) !important;
  max-height: 112px !important;
}

.client-logo-card-terral img {
  max-width: min(94%, 188px) !important;
  max-height: 88px !important;
}

.client-logo-card-acuas img,
.partners-modal-grid .client-logo-card-acuas img {
  max-width: min(92%, 158px) !important;
  max-height: 116px !important;
}

.client-logo-card-madero img,
.client-logo-card-breton img,
.client-logo-card-bluma img {
  max-width: min(94%, 184px) !important;
  max-height: 94px !important;
}

.client-logo-card-majo img,
.partners-modal-grid .client-logo-card-majo img {
  max-width: min(94%, 188px) !important;
  max-height: 94px !important;
}

.client-logo-card-pezinho img,
.partners-modal-grid .client-logo-card-pezinho img {
  max-width: min(92%, 168px) !important;
  max-height: 110px !important;
}

.client-logo-card-cinco-estrelas img {
  max-width: min(94%, 182px) !important;
  max-height: 112px !important;
}

.client-logo-card-bobs img {
  max-width: min(94%, 188px) !important;
  max-height: 102px !important;
}

.client-logo-card-koni img {
  max-width: min(92%, 176px) !important;
  max-height: 98px !important;
}

.partners-modal-grid .client-logo-card-ironberg,
.partners-modal-grid .client-logo-card-lione,
.partners-modal-grid .client-logo-card-barbacoa {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.98), rgba(247, 252, 249, 0.9) 58%, rgba(231, 244, 236, 0.82)) !important;
}

@media (max-width: 720px) {
  .partners-modal-grid .client-logo-card-farmacia img,
  .partners-modal-grid .client-logo-card-mania img,
  .partners-modal-grid .client-logo-card-sobradinho img {
    max-width: 96% !important;
  }

  .partners-modal-grid .client-logo-card-dia-a-dia img,
  .partners-modal-grid .client-logo-card-leonardo img,
  .partners-modal-grid .client-logo-card-ccbb img,
  .partners-modal-grid .client-logo-card-aguas img,
  .partners-modal-grid .client-logo-card-cinco-estrelas img,
  .partners-modal-grid .client-logo-card-bobs img,
  .partners-modal-grid .client-logo-card-koni img {
    max-width: 92% !important;
  }

  .partners-modal-grid .client-logo-card-ironberg img,
  .partners-modal-grid .client-logo-card-ahcai img,
  .partners-modal-grid .client-logo-card-lione img,
  .partners-modal-grid .client-logo-card-aguas img,
  .partners-modal-grid .client-logo-card-barbacoa img,
  .partners-modal-grid .client-logo-card-minas img {
    max-height: 104px !important;
  }
}

/* Ajuste final da localizacao em desktop/tablet largo. */
@media (min-width: 981px) {
  .location-section {
    grid-template-columns: minmax(390px, 0.95fr) minmax(0, 1.05fr) !important;
    gap: clamp(24px, 3vw, 64px) !important;
  }

  .map-card {
    width: min(100%, 720px) !important;
    justify-self: center !important;
  }

  .map-card .location-map.google-map,
  .map-card .location-map.google-map iframe {
    width: 100% !important;
    min-height: 0 !important;
    height: clamp(250px, 20vw, 380px) !important;
    aspect-ratio: auto !important;
  }

  .location-copy {
    max-width: min(100%, 1120px) !important;
  }

  .location-copy h2,
  .location-copy h2 span,
  .location-copy h2 span:first-child,
  .location-copy h2 span:last-child {
    max-width: 100% !important;
    font-size: clamp(1.65rem, 2.05vw, 2.75rem) !important;
    line-height: 1.03 !important;
    white-space: nowrap !important;
  }

  .location-address {
    width: min(100%, 930px) !important;
    max-width: min(100%, 930px) !important;
    margin-top: 18px !important;
    font-size: clamp(0.86rem, 0.92vw, 1.02rem) !important;
    line-height: 1.26 !important;
  }

  .location-note {
    width: min(100%, 760px) !important;
    max-width: min(100%, 760px) !important;
    margin-top: 8px !important;
    font-size: clamp(0.84rem, 0.88vw, 0.98rem) !important;
    line-height: 1.3 !important;
  }

  .location-details {
    width: min(100%, 780px) !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.08fr) !important;
    gap: 8px !important;
    margin-top: 22px !important;
  }

  .location-details a {
    min-height: 40px !important;
    padding-inline: 10px !important;
    border-color: rgba(var(--green-rgb), 0.1) !important;
    font-size: clamp(0.68rem, 0.72vw, 0.8rem) !important;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease !important;
  }

  .location-details a:hover,
  .location-details a:focus-visible {
    transform: translateY(-2px) !important;
    border-color: rgba(var(--green-rgb), 0.72) !important;
    color: #fff !important;
    background:
      linear-gradient(145deg, rgba(var(--green-rgb), 1), rgba(0, 91, 44, 0.96)) !important;
    box-shadow:
      0 16px 38px rgba(0, 103, 50, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
    outline: none;
  }

  .location-actions {
    margin-top: 20px !important;
  }

  .location-actions .button {
    min-width: 190px !important;
    min-height: 50px !important;
  }
}

@media (min-width: 1200px) {
  .location-section {
    grid-template-columns: minmax(560px, 0.96fr) minmax(760px, 1.04fr) !important;
  }
}

/* Ajuste final mobile da localizacao: endereco e botoes uniformes. */
@media (max-width: 980px) {
  .location-address,
  .location-note {
    width: min(100%, 760px) !important;
    max-width: min(100%, 760px) !important;
    font-size: clamp(0.92rem, 1.8vw, 1rem) !important;
    line-height: 1.3 !important;
  }

  .location-details,
  .location-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    width: min(100%, 640px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .location-details {
    margin-top: 22px !important;
  }

  .location-details a,
  .location-actions .button {
    flex: 0 1 190px !important;
    width: 190px !important;
    min-width: 190px !important;
    max-width: 100% !important;
    min-height: 50px !important;
    padding-inline: 14px !important;
    font-size: clamp(0.78rem, 1.65vw, 0.92rem) !important;
    line-height: 1.12 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 520px) {
  .location-address,
  .location-note {
    font-size: clamp(0.92rem, 3.6vw, 1rem) !important;
  }

  .location-details,
  .location-actions {
    width: 100% !important;
  }

  .location-details a,
  .location-actions .button {
    flex-basis: min(100%, 260px) !important;
    width: min(100%, 260px) !important;
    min-width: 0 !important;
  }
}

/* Localizacao desktop: contatos com a mesma escala dos botoes de acao. */
@media (min-width: 981px) {
  .location-details {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    width: min(100%, 640px) !important;
  }

  .location-details a,
  .location-actions .button {
    flex: 0 1 190px !important;
    width: 190px !important;
    min-width: 190px !important;
    min-height: 50px !important;
    padding-inline: 14px !important;
    font-size: clamp(0.78rem, 0.82vw, 0.92rem) !important;
    line-height: 1.12 !important;
    white-space: nowrap !important;
  }
}

/* Localizacao desktop: mais respiro nos botoes longos de contato. */
@media (min-width: 981px) {
  .location-details {
    width: min(100%, 690px) !important;
  }

  .location-details a:nth-child(2) {
    flex-basis: 210px !important;
    width: 210px !important;
    min-width: 210px !important;
  }

  .location-details a:nth-child(3) {
    flex-basis: 230px !important;
    width: 230px !important;
    min-width: 230px !important;
  }
}

/* Localizacao desktop: mapa mais largo e ancorado à esquerda. */
@media (min-width: 981px) {
  .location-section {
    grid-template-columns: minmax(460px, 1fr) minmax(0, 1fr) !important;
    gap: clamp(20px, 2.4vw, 48px) !important;
  }

  .map-card {
    width: min(100%, 820px) !important;
    justify-self: start !important;
  }

  .map-card .location-map.google-map,
  .map-card .location-map.google-map iframe {
    height: clamp(270px, 22vw, 410px) !important;
  }
}

@media (min-width: 1400px) {
  .location-section {
    grid-template-columns: minmax(700px, 1.04fr) minmax(680px, 0.96fr) !important;
  }
}

/* Mobile final: garante CTAs centralizados e sociais sem sobrepor texto. */
@media (max-width: 640px) {
  .hero-actions {
    display: grid !important;
    justify-content: center !important;
    justify-items: stretch !important;
    inline-size: min(318px, calc(100vw - 72px)) !important;
    width: min(318px, calc(100vw - 72px)) !important;
    margin-inline: auto !important;
  }

  .hero-actions > .button {
    justify-self: stretch !important;
    inline-size: min(318px, calc(100vw - 72px)) !important;
    width: min(318px, calc(100vw - 72px)) !important;
    min-inline-size: min(318px, calc(100vw - 72px)) !important;
    max-inline-size: min(318px, calc(100vw - 72px)) !important;
  }
}

@media (max-width: 980px) {
  .floating-contact-band .floating-contact {
    right: 14px !important;
    bottom: calc(58px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .floating-top,
  .floating-contact .floating-instagram,
  .floating-contact .floating-whatsapp {
    width: 46px !important;
    height: 46px !important;
    box-shadow: none !important;
    filter: drop-shadow(0 14px 24px rgba(0, 30, 14, 0.2)) !important;
  }

  .floating-contact .floating-instagram,
  .floating-contact .floating-instagram img {
    border-radius: 14px !important;
    background: transparent !important;
  }

  .site-footer {
    padding-right: 94px !important;
  }
}

/* Mobile stability: evita fades/masks do carrossel virarem faixa branca no Safari. */
@media (max-width: 720px) {
  .client-carousel {
    overflow: hidden !important;
    background: rgba(239, 246, 242, 0.72) !important;
    border-color: rgba(var(--green-rgb), 0.1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56) !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .client-carousel::before,
  .client-carousel::after {
    display: none !important;
    content: none !important;
    background: none !important;
  }

  .client-carousel-track {
    gap: 12px !important;
    padding: 18px max(18px, env(safe-area-inset-left, 0px)) 18px max(18px, env(safe-area-inset-left, 0px)) !important;
    transform: translateZ(0);
    will-change: transform;
  }

  .client-carousel .client-logo-card {
    flex-basis: 154px !important;
    min-width: 154px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    box-shadow: 0 14px 28px rgba(0, 47, 24, 0.05) !important;
  }
}

/* Ajuste final mobile: carrossel estavel e sociais no rodape. */
.footer-legal span {
  display: block;
}

@media (max-width: 720px) {
  .client-carousel {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .client-carousel::-webkit-scrollbar {
    display: none;
  }

  .client-carousel-track,
  .client-carousel-track.is-ready {
    animation: none !important;
    animation-play-state: paused !important;
    transform: none !important;
    will-change: auto !important;
  }

  .client-carousel .client-logo-card[aria-hidden="true"] {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .site-footer {
    grid-template-columns: minmax(0, 1fr) !important;
    padding-right: clamp(24px, 6vw, 28px) !important;
    padding-bottom: calc(30px + env(safe-area-inset-bottom, 0px)) !important;
    gap: 14px !important;
  }

  .footer-legal {
    width: 100% !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .footer-right {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center !important;
    width: 100% !important;
    gap: 14px !important;
    text-align: left !important;
  }

  .footer-credit {
    grid-column: 1;
    grid-row: 1;
    text-align: left !important;
    white-space: normal !important;
  }

  .footer-right .floating-contact-band {
    grid-column: 2;
    grid-row: 1;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .footer-right .floating-contact-band .floating-contact {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    display: grid !important;
    gap: 8px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    filter: none !important;
  }

  .footer-right .floating-top,
  .footer-right .floating-contact .floating-instagram,
  .footer-right .floating-contact .floating-whatsapp,
  .footer-right .floating-contact .floating-instagram img {
    width: 42px !important;
    height: 42px !important;
  }

  .footer-right .floating-contact .floating-whatsapp svg {
    width: 26px !important;
    height: 26px !important;
  }
}

/* Correcao final: mobile com carrossel automatico, sociais flutuantes e rodape compacto. */
@keyframes clientCarouselMeasured {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--client-carousel-translate, -50%), 0, 0);
  }
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(3, 14, 9, 0.72), rgba(3, 14, 9, 0.26) 52%, rgba(3, 14, 9, 0.58)),
    url("trabalhos/hero-poster.jpg?v=20260615-hero-poster-1") center / cover no-repeat,
    url("trabalhos/hero-fallback-inpress.svg?v=20260615-neutral-2") center / cover no-repeat,
    #07120d;
}

.hero-video {
  opacity: 0 !important;
  background:
    linear-gradient(90deg, rgba(3, 14, 9, 0.72), rgba(3, 14, 9, 0.26) 52%, rgba(3, 14, 9, 0.58)),
    url("trabalhos/hero-poster.jpg?v=20260615-hero-poster-1") center / cover no-repeat,
    url("trabalhos/hero-fallback-inpress.svg?v=20260615-neutral-2") center / cover no-repeat,
    #07120d;
  transition: opacity 120ms ease;
}

.hero-media.has-video .hero-video {
  opacity: 0.9 !important;
}

@media (max-width: 640px) {
  .hero-media,
  .hero-video {
    background:
      linear-gradient(90deg, rgba(3, 14, 9, 0.72), rgba(3, 14, 9, 0.26) 52%, rgba(3, 14, 9, 0.58)),
      url("trabalhos/hero-poster-mobile.jpg?v=20260615-hero-poster-1") center / cover no-repeat,
      url("trabalhos/hero-fallback-inpress.svg?v=20260615-neutral-2") center / cover no-repeat,
      #07120d;
  }
}

@media (max-width: 720px) {
  .client-carousel {
    overflow: hidden !important;
  }

  .client-carousel-track,
  .client-carousel-track.is-ready {
    animation: none !important;
    animation-play-state: paused !important;
    transform: translate3d(0, 0, 0);
    will-change: transform !important;
  }

  .client-carousel .client-logo-card[aria-hidden="true"] {
    display: grid !important;
  }
}

@media (max-width: 980px) {
  .site-footer {
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    justify-items: start !important;
    min-height: auto !important;
    padding: 36px clamp(24px, 6vw, 28px) calc(34px + env(safe-area-inset-bottom, 0px)) !important;
    gap: 14px !important;
  }

  .footer-brand img {
    width: min(260px, 74vw) !important;
  }

  .footer-legal {
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .footer-right {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
  }

  .footer-credit {
    text-align: left !important;
    white-space: normal !important;
  }

  .floating-contact-band {
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .floating-contact-band .floating-contact {
    position: fixed !important;
    right: 14px !important;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 60 !important;
    display: grid !important;
    gap: 11px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate3d(10px, 0, 0) scale(0.96) !important;
    transition: opacity 180ms ease, transform 180ms ease !important;
  }

  body.is-mobile-floating-contact-visible .floating-contact-band .floating-contact {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
  }

  .floating-top,
  .floating-contact .floating-instagram,
  .floating-contact .floating-whatsapp,
  .floating-contact .floating-instagram img {
    width: 46px !important;
    height: 46px !important;
  }

  .floating-contact .floating-whatsapp svg {
    width: 28px !important;
    height: 28px !important;
  }
}

/* Desktop: centraliza o conteudo do botao Nossos Cases no hero. */
@media (min-width: 981px) {
  .hero-actions .hero-secondary {
    justify-content: center !important;
    text-align: center !important;
  }
}

/* Galeria: controles padronizados na viewport, sem variar pelo tamanho da foto. */
.gallery-modal.is-open {
  place-items: center !important;
  padding: clamp(54px, 6vw, 82px) clamp(86px, 9vw, 138px) !important;
}

.gallery-dialog,
.gallery-modal:not(.is-single-gallery) .gallery-dialog,
.gallery-modal.is-single-gallery .gallery-dialog {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  width: min(100%, 1120px) !important;
  max-width: min(1120px, calc(100vw - clamp(172px, 18vw, 276px))) !important;
  justify-items: center !important;
  align-items: center !important;
}

.gallery-frame {
  display: flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  max-height: calc(100vh - clamp(108px, 12vw, 164px)) !important;
  margin: 0 auto !important;
}

.gallery-frame img,
.gallery-modal:not(.is-single-gallery) .gallery-frame img {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: calc(100vh - clamp(108px, 12vw, 164px)) !important;
  object-fit: contain !important;
}

.gallery-close {
  position: fixed !important;
  top: max(20px, env(safe-area-inset-top, 0px) + 16px) !important;
  right: max(20px, env(safe-area-inset-right, 0px) + 16px) !important;
  z-index: 4 !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  font-size: 1.75rem !important;
  line-height: 1 !important;
}

.gallery-arrow {
  position: fixed !important;
  top: 50% !important;
  z-index: 4 !important;
  width: 54px !important;
  height: 72px !important;
  transform: translateY(-50%) !important;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  transform: translateY(calc(-50% - 2px)) !important;
}

.gallery-prev {
  left: max(28px, env(safe-area-inset-left, 0px) + 20px) !important;
}

.gallery-next {
  right: max(28px, env(safe-area-inset-right, 0px) + 20px) !important;
}

@media (max-width: 760px) {
  .gallery-modal.is-open {
    padding: 58px 54px 42px !important;
  }

  .gallery-dialog,
  .gallery-modal:not(.is-single-gallery) .gallery-dialog,
  .gallery-modal.is-single-gallery .gallery-dialog {
    max-width: calc(100vw - 108px) !important;
  }

  .gallery-frame,
  .gallery-frame img,
  .gallery-modal:not(.is-single-gallery) .gallery-frame img {
    max-height: calc(100vh - 116px) !important;
  }

  .gallery-close {
    top: max(14px, env(safe-area-inset-top, 0px) + 10px) !important;
    right: max(14px, env(safe-area-inset-right, 0px) + 10px) !important;
    width: 42px !important;
    height: 42px !important;
  }

  .gallery-arrow {
    width: 42px !important;
    height: 62px !important;
  }

  .gallery-prev {
    left: max(10px, env(safe-area-inset-left, 0px) + 8px) !important;
  }

  .gallery-next {
    right: max(10px, env(safe-area-inset-right, 0px) + 8px) !important;
  }
}
