@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #101512;
  --ink-soft: #303833;
  --muted: #68706b;
  --line: #d7ddd7;
  --surface: #ffffff;
  --surface-soft: #f2f5f1;
  --surface-teal: #e5efec;
  --navy: #073760;
  --navy-deep: #081a28;
  --teal: #167b75;
  --teal-dark: #0d5d58;
  --green: #b7df45;
  --green-strong: #9eca25;
  --coral: #c65b49;
  --dark: #0d1416;
  --dark-raised: #152024;
  --white: #ffffff;
  --container: 1200px;
  --header-height: 70px;
  --radius: 8px;
  --shadow: 0 18px 60px rgba(8, 25, 24, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
strong {
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  margin-bottom: 22px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.4;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
}

::selection {
  color: var(--dark);
  background: var(--green);
}

:focus-visible {
  outline: 3px solid var(--green-strong);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--dark);
  background: var(--green);
  font-weight: 700;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.container.narrow {
  max-width: 860px;
  text-align: center;
}

.section {
  position: relative;
  padding-block: 112px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--green);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: none;
}

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

.button-primary {
  color: var(--dark);
  background: var(--green);
  border-color: var(--green);
}

.button-primary:hover {
  background: #c5ed53;
  border-color: #c5ed53;
}

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

.button-dark:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.button-outline-light {
  color: var(--white);
  background: rgba(13, 20, 22, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.button-outline-light:hover {
  color: var(--dark);
  background: var(--white);
  border-color: var(--white);
}

.button-quiet {
  color: var(--ink);
  background: var(--surface-soft);
  border-color: var(--line);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 700;
  text-underline-offset: 5px;
}

.text-link svg {
  width: 18px;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 21, 18, 0.1);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  width: min(calc(100% - 40px), 1400px);
  min-height: var(--header-height);
  margin-inline: auto;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  width: 182px;
  align-items: center;
}

.brand-link img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 28px);
}

.desktop-nav a {
  position: relative;
  padding-block: 22px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--green-strong);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--dark);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta svg {
  width: 16px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - var(--header-height)));
  color: var(--white);
  background: var(--dark);
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 13, 16, 0.96) 0%, rgba(5, 13, 16, 0.87) 34%, rgba(5, 13, 16, 0.24) 72%, rgba(5, 13, 16, 0.08) 100%);
}

.hero-content {
  display: flex;
  min-height: min(760px, calc(100svh - var(--header-height)));
  padding-block: 82px 70px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

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

.trust-line {
  display: flex;
  margin: 30px 0 0;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.trust-line span {
  position: relative;
  padding-left: 16px;
}

.trust-line span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.brand-rail {
  padding-block: 24px 30px;
  color: var(--white);
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-rail-heading p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.brand-marquee {
  width: 100%;
  overflow: hidden;
}

.brand-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.brand-marquee:hover .brand-track,
.brand-marquee:focus-within .brand-track {
  animation-play-state: paused;
}

.brand-set {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
}

.brand-set img {
  width: 148px;
  height: 54px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.66;
}

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

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10%;
}

.about-copy {
  color: var(--ink-soft);
  font-size: 18px;
}

.values-line {
  margin: 28px 0 0;
  padding-left: 20px;
  color: var(--ink);
  border-left: 3px solid var(--green-strong);
  font-weight: 600;
}

.stats-grid {
  display: grid;
  margin-top: 72px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-height: 144px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong,
.stat span {
  display: block;
}

.stat .stat-heading {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  gap: 12px;
}

.stat-heading svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--green);
  stroke-width: 1.8;
}

.stat-heading strong {
  margin-bottom: 0;
}

.stat:last-child .stat-heading strong {
  font-size: 20px;
  white-space: nowrap;
}

.stat strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 600;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.no-break {
  white-space: nowrap;
}

.services-heading {
  padding-block: 106px 80px;
  background: var(--surface-teal);
}

.services-heading p:last-child {
  color: var(--ink-soft);
}

.service-band {
  display: grid;
  min-height: 680px;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.service-reverse .service-media {
  order: 2;
}

.service-media {
  min-width: 0;
  min-height: 540px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-band:hover .service-media img {
  transform: scale(1.025);
}

.service-content {
  display: flex;
  max-width: 720px;
  padding: clamp(64px, 7vw, 110px);
  justify-content: center;
  flex-direction: column;
}

.service-content h3 {
  max-width: 540px;
  margin-bottom: 22px;
  font-size: clamp(34px, 3.3vw, 48px);
  font-weight: 500;
}

.service-content > p:not(.eyebrow) {
  max-width: 580px;
  color: inherit;
  opacity: 0.78;
}

.service-number {
  margin-bottom: 44px;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.56;
}

.service-list {
  display: grid;
  max-width: 600px;
  margin: 24px 0 36px;
  padding: 0;
  list-style: none;
  grid-template-columns: 1fr 1fr;
}

.service-list li {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 14px;
  padding: 16px 18px 16px 0;
  border-top: 1px solid currentColor;
}

.service-list li:nth-child(odd) {
  margin-right: 18px;
}

.service-list svg {
  width: 24px;
  height: 24px;
  flex: none;
  color: var(--green-strong);
}

.service-list span {
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.84;
}

.service-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  opacity: 1;
}

.service-content .button {
  align-self: flex-start;
}

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

.service-blue {
  color: var(--white);
  background: var(--navy);
}

.service-light {
  color: var(--ink);
  background: var(--surface);
}

.service-dark .service-list li,
.service-blue .service-list li {
  border-color: rgba(255, 255, 255, 0.2);
}

.service-light .service-list li {
  border-color: var(--line);
}

.comparison {
  background: var(--surface-soft);
}

.comparison-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.comparison-column {
  padding: clamp(34px, 5vw, 70px);
}

.comparison-muted {
  color: var(--ink-soft);
  background: var(--surface);
}

.comparison-positive {
  color: var(--white);
  background: var(--teal-dark);
}

.comparison-label {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison-label svg {
  width: 22px;
}

.comparison-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-column li {
  padding: 16px 0;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
}

.comparison-muted li {
  border-color: var(--line);
}

.comparison-positive li {
  border-color: rgba(255, 255, 255, 0.22);
}

.differentials {
  background: var(--surface);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature {
  min-height: 260px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature svg {
  width: 34px;
  height: 34px;
  margin-bottom: 40px;
  color: var(--teal);
}

.feature h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.process {
  color: var(--white);
  background: var(--navy-deep);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10%;
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  align-self: start;
}

.process-intro > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  min-height: 190px;
  padding: 34px 0;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-steps li > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--dark);
  background: var(--green);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}

.process-steps h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.process-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.models {
  background: var(--surface-teal);
}

.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.model-card {
  display: flex;
  min-height: 470px;
  padding: clamp(38px, 5vw, 64px);
  align-items: flex-start;
  flex-direction: column;
  border-radius: var(--radius);
}

.model-card > svg {
  width: 42px;
  height: 42px;
  margin-bottom: auto;
}

.model-card h3 {
  max-width: 430px;
  margin-bottom: 16px;
  font-size: 32px;
}

.model-card > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 28px;
  opacity: 0.78;
}

.model-subscription {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.model-subscription > svg {
  color: var(--teal);
}

.model-acquisition {
  color: var(--white);
  background: var(--dark);
}

.model-acquisition > svg {
  color: var(--green);
}

.models-help {
  margin-top: 30px;
  text-align: center;
}

.models-help a {
  color: var(--teal-dark);
  font-weight: 700;
}

.testimonials {
  overflow: hidden;
  background: var(--surface);
}

.testimonial-heading {
  display: flex;
  margin-bottom: 54px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

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

.testimonial-heading h2 {
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  gap: 8px;
}

.testimonial-controls button,
.icon-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-controls button:hover,
.icon-button:hover {
  background: var(--surface-soft);
}

.testimonial-controls svg,
.icon-button svg {
  width: 20px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 420ms ease;
}

.testimonial-card {
  display: flex;
  min-width: calc((100% - 40px) / 3);
  min-height: 410px;
  padding: 34px;
  flex-direction: column;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.testimonial-card > svg {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  color: var(--teal);
}

.stars {
  margin-bottom: 20px;
  color: #b17a19;
  font-size: 16px;
}

.testimonial-card blockquote {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-card > p {
  margin: auto 0 0;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  font-size: 15px;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 12px;
}

.testimonial-action {
  margin-top: 36px;
}

.support-section {
  position: relative;
  min-height: 680px;
  color: var(--white);
  background: var(--dark);
  isolation: isolate;
  overflow: hidden;
}

.support-section > img,
.support-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.support-section > img {
  object-fit: cover;
}

.support-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 17, 20, 0.98) 0%, rgba(8, 17, 20, 0.88) 40%, rgba(8, 17, 20, 0.22) 76%, rgba(8, 17, 20, 0.08) 100%);
}

.support-content {
  display: flex;
  min-height: 680px;
  padding-block: 88px;
  justify-content: center;
  flex-direction: column;
}

.support-content h2,
.support-content > p:not(.eyebrow),
.support-points {
  max-width: 610px;
}

.support-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.77);
  font-size: 18px;
}

.support-points {
  display: grid;
  margin: 22px 0 34px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.support-points span {
  display: flex;
  min-height: 120px;
  padding: 20px 12px;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.support-points span:last-child {
  border-right: 0;
}

.support-points svg {
  width: 25px;
  color: var(--green);
}

.support-points strong {
  font-size: 13px;
  line-height: 1.4;
}

.support-content .button {
  align-self: flex-start;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 10%;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  align-self: start;
}

.faq-intro > p:last-child {
  color: var(--muted);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 78px;
  padding: 22px 0;
  align-items: center;
  grid-template-columns: 1fr 30px;
  gap: 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary svg {
  width: 20px;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  margin-bottom: 24px;
  padding-right: 44px;
  color: var(--muted);
  font-size: 15px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8%;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-copy .button {
  margin-top: 12px;
}

.contact-form {
  padding: clamp(28px, 5vw, 52px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
}

.form-heading span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 10px 0 32px;
  font-size: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid label:not(.form-consent):not(.honeypot) {
  display: flex;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  flex-direction: column;
  gap: 7px;
}

.form-grid label > span {
  color: var(--coral);
}

.form-grid small {
  color: var(--muted);
  font-weight: 400;
}

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

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid #cbd3cd;
  border-radius: 4px;
}

input,
select {
  min-height: 50px;
  padding: 10px 13px;
}

textarea {
  min-height: 128px;
  padding: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  outline: 2px solid rgba(22, 123, 117, 0.18);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: var(--coral);
  outline: 2px solid rgba(190, 71, 52, 0.12);
}

.form-consent {
  display: grid;
  align-items: start;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-consent input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.form-consent a {
  color: var(--teal-dark);
  font-weight: 700;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
}

.form-submit.is-loading svg {
  animation: spin 800ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-security {
  display: flex;
  margin: 14px 0 0;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}

.form-security svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--teal);
}

.form-status {
  margin-top: 18px;
  padding: 14px;
  color: var(--ink);
  background: var(--surface-teal);
  border-left: 3px solid var(--teal);
  font-size: 13px;
}

.form-status.is-error {
  background: #f7e9e6;
  border-color: var(--coral);
}

.site-footer {
  padding-block: 72px 26px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  padding-bottom: 58px;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand img {
  width: 210px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 260px;
  font-size: 14px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid button {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  color: rgba(255, 255, 255, 0.64);
  background: transparent;
  border: 0;
  font-size: 12px;
  line-height: 1.55;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.social-links svg {
  width: 17px;
  height: 17px;
  color: #fff;
  stroke: #fff;
  opacity: 1;
}

.social-links .brand-social-icon {
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links .brand-social-icon path,
.social-links .brand-social-icon rect:not(:first-child) {
  fill: #fff;
  stroke: none;
}

.social-links .brand-social-icon .social-dot {
  fill: #fff;
  stroke: none;
}

.social-links a:nth-child(3) .brand-social-icon rect {
  fill: #fff;
  stroke: none;
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  justify-content: space-between;
  gap: 30px;
}

.footer-bottom p,
.principles {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
}

.principles {
  margin-top: 20px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  z-index: 800;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #147d49;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(6, 34, 25, 0.3);
  transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-float:hover {
  background: #10673c;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
}

.cookie-banner {
  position: fixed;
  z-index: 2000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  max-width: 1120px;
  margin-inline: auto;
  padding: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner > div:first-child {
  max-width: 620px;
}

.cookie-banner strong {
  font-size: 15px;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 11px;
}

.privacy-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.privacy-dialog::backdrop {
  background: rgba(4, 13, 15, 0.74);
  backdrop-filter: blur(4px);
}

.privacy-panel {
  padding: 28px;
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.dialog-heading h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.privacy-panel > p {
  color: var(--muted);
  font-size: 14px;
}

.preference-row {
  display: grid;
  min-height: 76px;
  padding: 16px 0;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.preference-row strong,
.preference-row small {
  display: block;
}

.preference-row strong {
  font-size: 14px;
}

.preference-row small {
  color: var(--muted);
  font-size: 11px;
}

.preference-row input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--teal);
}

.dialog-actions {
  display: flex;
  margin-top: 24px;
  justify-content: flex-end;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 170px 1fr auto;
  }

  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .service-content {
    padding: 58px 46px;
  }

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

  .service-list li:nth-child(odd) {
    margin-right: 0;
  }

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

@media (max-width: 860px) {
  body.home-page.mobile-home-locked {
    width: 100%;
    height: 100svh;
    overflow: hidden;
    overscroll-behavior: none;
  }

  :root {
    --header-height: 66px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.16;
  }

  h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .section {
    padding-block: 84px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand-link {
    width: 168px;
  }

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

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    min-height: calc(100svh - var(--header-height));
    padding: 30px 24px;
    flex-direction: column;
    gap: 26px;
    background: var(--white);
    overflow-y: auto;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: flex;
    min-height: 58px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 19px;
    font-weight: 600;
    text-decoration: none;
  }

  .hero,
  .hero-content {
    min-height: calc(100svh - var(--header-height));
  }

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

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 13, 16, 0.96) 0%, rgba(5, 13, 16, 0.83) 58%, rgba(5, 13, 16, 0.36) 100%);
  }

  .about-grid,
  .process-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

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

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .service-reverse .service-media {
    order: 0;
  }

  .service-media {
    min-height: 480px;
  }

  .service-content {
    max-width: none;
    padding: 70px 42px;
  }

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

  .service-list li:nth-child(odd) {
    margin-right: 18px;
  }

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

  .process-intro,
  .faq-intro,
  .contact-copy {
    position: static;
  }

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

  .model-card {
    min-height: 410px;
  }

  .testimonial-card {
    min-width: calc((100% - 20px) / 2);
  }

  .support-section,
  .support-content {
    min-height: 660px;
  }

  .support-section > img {
    object-position: 64% center;
  }

  .support-shade {
    background: linear-gradient(90deg, rgba(8, 17, 20, 0.97) 0%, rgba(8, 17, 20, 0.88) 60%, rgba(8, 17, 20, 0.34) 100%);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 30px;
  }

  .section {
    padding-block: 72px;
  }

  .hero-content {
    padding-block: 58px 48px;
    justify-content: flex-end;
  }

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

  .hero-shade {
    background: linear-gradient(0deg, rgba(5, 13, 16, 0.98) 0%, rgba(5, 13, 16, 0.86) 54%, rgba(5, 13, 16, 0.32) 100%);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .trust-line {
    gap: 7px;
    flex-direction: column;
  }

  .brand-set {
    gap: 34px;
    padding-right: 34px;
  }

  .brand-set img {
    width: 118px;
    height: 44px;
  }

  .about-grid {
    gap: 24px;
  }

  .stats-grid {
    margin-top: 48px;
  }

  .stat {
    min-height: 132px;
    padding: 24px 18px;
  }

  .stat strong {
    font-size: 20px;
  }

  .services-heading {
    padding-block: 76px 58px;
  }

  .service-media {
    min-height: 390px;
  }

  .service-content {
    padding: 58px 24px;
  }

  .service-content h3 {
    font-size: 36px;
  }

  .service-number {
    margin-bottom: 30px;
  }

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

  .service-list li:nth-child(odd) {
    margin-right: 0;
  }

  .service-content .button {
    width: 100%;
  }

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

  .comparison-column {
    padding: 34px 24px;
  }

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

  .feature {
    min-height: 230px;
    padding: 30px 26px;
  }

  .process-steps li {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .process-steps li > span {
    width: 44px;
    height: 44px;
  }

  .model-card {
    min-height: 440px;
    padding: 34px 26px;
  }

  .model-card h3 {
    font-size: 28px;
  }

  .model-card .button {
    width: 100%;
  }

  .testimonial-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-card {
    min-width: 100%;
    min-height: 390px;
    padding: 28px;
  }

  .support-section,
  .support-content {
    min-height: 720px;
  }

  .support-section > img {
    object-position: 70% center;
  }

  .support-shade {
    background: linear-gradient(0deg, rgba(8, 17, 20, 0.98) 0%, rgba(8, 17, 20, 0.9) 62%, rgba(8, 17, 20, 0.38) 100%);
  }

  .support-content {
    padding-block: 68px 48px;
    justify-content: flex-end;
  }

  .support-points {
    grid-template-columns: 1fr;
  }

  .support-points span {
    min-height: 74px;
    padding: 13px 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .support-points span:last-child {
    border-bottom: 0;
  }

  .support-content .button {
    width: 100%;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .contact-form {
    padding: 28px 20px;
  }

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

  .form-full {
    grid-column: auto;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

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

  .dialog-actions {
    flex-direction: column-reverse;
  }

  .dialog-actions .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 28px;
  }

  .brand-link {
    width: 148px;
  }

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

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .brand-track {
    transform: none;
  }

  .brand-set[aria-hidden="true"] {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Extensões aprovadas para a versão oficial de agosto de 2026. */
.mobile-home,
.mobile-dock {
  display: none;
}

.service-line {
  color: var(--ink);
  background: #e8f4ef;
}

.service-line .service-media {
  padding: clamp(28px, 5vw, 76px);
  background: #d5e9e1;
}

.service-line .service-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-line .service-list li {
  border-color: rgba(13, 93, 88, 0.22);
}

.social-links a {
  color: #ffffff;
}

.whatsapp-launcher {
  position: fixed;
  z-index: 1700;
  right: 20px;
  bottom: 20px;
}

.whatsapp-launcher .whatsapp-float {
  position: static;
  border: 1px solid rgba(255, 255, 255, 0.82);
  cursor: pointer;
  animation: whatsappAttention 4.8s ease-in-out infinite;
}

.whatsapp-launcher .whatsapp-float::before,
.whatsapp-launcher .whatsapp-float::after {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation: whatsappRing 4.8s ease-out infinite;
}

.whatsapp-launcher .whatsapp-float::after {
  animation-delay: .45s;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

@keyframes whatsappAttention {
  0%, 72%, 100% { transform: translateY(0) scale(1); }
  78% { transform: translateY(-4px) scale(1.04); }
  84% { transform: translateY(0) scale(1); }
  90% { transform: translateY(-2px) scale(1.02); }
}

@keyframes whatsappRing {
  0%, 72% { opacity: 0; transform: scale(.9); }
  80% { opacity: .7; }
  94%, 100% { opacity: 0; transform: scale(1.42); }
}

.support-section > img {
  object-position: center 42%;
}

.button-whatsapp {
  border-color: var(--green);
}

.button-whatsapp img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(89%) sepia(55%) saturate(658%) hue-rotate(27deg) brightness(99%) contrast(90%);
}

.button-whatsapp:hover img {
  filter: brightness(0) saturate(100%);
}

.whatsapp-popover {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(360px, calc(100vw - 32px));
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(5, 27, 25, 0.28);
}

.whatsapp-popover[hidden] {
  display: none;
}

.whatsapp-popover > div,
.whatsapp-popover label {
  display: flex;
  flex-direction: column;
}

.whatsapp-popover > div {
  margin-bottom: 16px;
}

.whatsapp-popover > div span,
.whatsapp-popover label {
  color: var(--muted);
  font-size: 13px;
}

.whatsapp-popover textarea {
  width: 100%;
  margin: 7px 0 14px;
  padding: 12px;
  resize: vertical;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.whatsapp-popover .button {
  width: 100%;
}

.site-map-dialog,
.qr-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--white);
  background: var(--dark);
  border: 0;
}

.site-map-dialog::backdrop,
.qr-dialog::backdrop {
  background: rgba(3, 12, 13, 0.78);
}

.site-map-panel {
  min-height: 100%;
  padding: max(22px, env(safe-area-inset-top)) 24px calc(90px + env(safe-area-inset-bottom));
}

.site-map-heading {
  display: flex;
  margin-bottom: 42px;
  align-items: center;
  justify-content: space-between;
}

.site-map-heading img {
  width: 170px;
  height: auto;
}

.site-map-heading button,
.qr-panel > button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  place-items: center;
  cursor: pointer;
}

.site-map-panel > h2 {
  max-width: 680px;
  font-size: 42px;
}

.site-map-grid {
  display: grid;
  max-width: 1000px;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.site-map-grid section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-map-grid h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 14px;
  text-transform: uppercase;
}

.site-map-grid a {
  font-size: 15px;
  text-decoration: none;
}

.site-map-grid a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-map-label {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-map-icon-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.site-map-icon-grid > a {
  display: flex;
  min-height: 126px;
  margin: 0;
  padding: 18px 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  background: rgba(6, 23, 25, .64);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.site-map-icon-grid > a:hover {
  color: var(--green);
  background: rgba(13, 93, 88, .25);
  border-color: rgba(183, 223, 69, .5);
  text-decoration: none;
}

.site-map-icon-grid svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.qr-panel {
  position: relative;
  display: flex;
  width: min(100% - 32px, 500px);
  min-height: 100%;
  margin-inline: auto;
  padding: 42px 22px 90px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.qr-panel > button {
  position: absolute;
  top: 20px;
  right: 0;
}

.qr-panel p {
  margin-bottom: 8px;
  color: var(--green);
  font-weight: 700;
}

.qr-panel h2 {
  font-size: 30px;
}

.qr-panel img {
  width: min(72vw, 320px);
  height: auto;
  aspect-ratio: 1;
  margin: 10px 0 18px;
  padding: 14px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
}

.footer-brand > img {
  width: 210px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.share-status {
  position: fixed;
  z-index: 2200;
  right: 16px;
  bottom: 86px;
  left: 16px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  text-align: center;
}

@media (max-width: 860px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .site-map-panel {
    padding-inline: 18px;
  }

  .site-map-heading {
    margin-bottom: 20px;
  }

  .site-map-panel > h2 {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .site-map-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .site-map-icon-grid > a {
    min-height: 105px;
    padding: 13px 8px;
    font-size: 11px;
  }

  .site-header,
  .hero,
  .brand-rail {
    display: none;
  }

  .mobile-home {
    position: relative;
    isolation: isolate;
    display: flex;
    height: calc(100svh - 70px - env(safe-area-inset-bottom));
    min-height: 498px;
    padding: max(14px, env(safe-area-inset-top)) 18px 14px;
    color: var(--white);
    background: var(--dark);
    flex-direction: column;
    overflow: hidden;
  }

  .mobile-home-media,
  .mobile-home-shade,
  .mobile-home-scene {
    position: absolute;
    inset: 0;
  }

  .mobile-home-media {
    z-index: -3;
    background: #071012;
    overflow: hidden;
  }

  .mobile-home-scene {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    opacity: 0;
    filter: saturate(0.9) contrast(1.06);
    transform: scale(1.09);
    transition: opacity 900ms ease, transform 6.2s ease;
  }

  .mobile-home-scene.is-active {
    opacity: 1;
    transform: scale(1.025);
  }

  .mobile-home-scene-popmob {
    object-position: 66% center;
  }

  .mobile-home-scene-code {
    object-position: 69% center;
  }

  .mobile-home-scene-wordpress {
    object-position: 64% center;
  }

  .mobile-home-scene-hosting {
    object-position: 68% center;
  }

  .mobile-home-shade {
    z-index: -2;
    background:
      linear-gradient(180deg, rgba(4, 12, 14, 0.72) 0%, rgba(4, 12, 14, 0.28) 25%, rgba(4, 12, 14, 0.52) 49%, rgba(4, 12, 14, 0.93) 76%, rgba(4, 12, 14, 0.98) 100%),
      linear-gradient(90deg, rgba(4, 12, 14, 0.50), rgba(4, 12, 14, 0.10) 68%, rgba(4, 12, 14, 0.36));
  }

  .mobile-home::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    opacity: 0.32;
    pointer-events: none;
  }

  .mobile-home-topbar {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-home-topbar img {
    width: 154px;
    height: auto;
  }

  .mobile-sitemap-open {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--white);
    background: rgba(7, 17, 19, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    place-items: center;
  }

  .mobile-home-reel {
    display: flex;
    min-height: 26px;
    margin-top: 9px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .mobile-home-reel > span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-home-reel-controls {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .mobile-home-reel-controls button {
    position: relative;
    width: 27px;
    height: 24px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 4px;
  }

  .mobile-home-reel-controls button::before,
  .mobile-home-reel-controls button::after {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 3px;
    border-radius: 2px;
    content: "";
    transform: translateY(-50%);
  }

  .mobile-home-reel-controls button::before {
    background: rgba(255, 255, 255, 0.30);
  }

  .mobile-home-reel-controls button::after {
    background: var(--green);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
  }

  .mobile-home-reel-controls button.is-active::after {
    animation: mobile-home-progress 5.6s linear forwards;
  }

  @keyframes mobile-home-progress {
    to { transform: translateY(-50%) scaleX(1); }
  }

  .mobile-home-intro {
    margin: 14px 0 0;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.54);
  }

  .mobile-home-intro .mobile-home-eyebrow {
    margin-bottom: 8px;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-home-intro .mobile-home-title {
    max-width: 400px;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 31px;
    font-weight: 700;
    line-height: 1.09;
  }

  .mobile-home-intro span {
    display: block;
    max-width: 355px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    line-height: 1.42;
  }

  .mobile-home-spacer {
    min-height: 8px;
    flex: 1 1 auto;
  }

  .mobile-home-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-home-grid a,
  .mobile-home-grid button {
    display: flex;
    min-width: 0;
    min-height: 84px;
    padding: 11px 6px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--white);
    background: rgba(10, 24, 27, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(13px) saturate(1.15);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-home-grid a:nth-child(2),
  .mobile-home-grid a:nth-child(3),
  .mobile-home-grid a:nth-child(4) {
    background: rgba(17, 76, 71, 0.78);
    border-color: rgba(183, 223, 69, 0.32);
  }

  .mobile-home-grid svg {
    width: 23px;
    height: 23px;
    color: var(--green);
  }

  .mobile-home-grid strong {
    max-width: 100%;
    font-size: 10px;
    line-height: 1.2;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  .mobile-home-grid strong span {
    display: block;
  }

  .mobile-home-cta {
    display: flex;
    min-height: 48px;
    margin-top: 11px;
    padding: 11px 16px;
    align-items: center;
    justify-content: space-between;
    color: var(--dark);
    background: var(--green);
    border-radius: 6px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-home-cta svg {
    width: 18px;
  }

  .mobile-home-proof {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.72);
  }

  .mobile-dock {
    position: fixed;
    z-index: 1600;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: calc(70px + env(safe-area-inset-bottom));
    padding: 5px 8px max(5px, env(safe-area-inset-bottom));
    grid-template-columns: repeat(4, 1fr);
    color: rgba(255, 255, 255, .88);
    background: rgba(5, 14, 16, .98);
    border-top: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, .24);
  }

  .mobile-dock a,
  .mobile-dock button {
    display: flex;
    min-width: 0;
    padding: 5px 2px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    color: inherit;
    background: transparent;
    border: 0;
    font-size: 11px;
    text-decoration: none;
  }

  .mobile-dock svg {
    width: 23px;
    height: 23px;
  }

  .mobile-dock [aria-current="page"] {
    color: var(--green);
    font-weight: 700;
  }

  .whatsapp-launcher {
    display: none;
  }

  .cookie-banner {
    bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .site-map-panel > h2 {
    font-size: 31px;
  }

  .site-map-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
}

@media (max-width: 430px) {
  .mobile-home-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mobile-home-grid a,
  .mobile-home-grid button {
    min-height: 80px;
  }
}

@media (max-width: 360px) {
  .mobile-home {
    padding-inline: 12px;
  }

  .mobile-home-intro {
    margin-top: 8px;
  }

  .mobile-home-intro .mobile-home-title {
    font-size: 27px;
  }

  .mobile-home-grid {
    gap: 5px;
  }

  .mobile-home-grid a {
    min-height: 72px;
    padding-inline: 3px;
  }

  .mobile-home-grid strong {
    font-size: 9px;
  }
}

@media (max-width: 860px) and (max-height: 650px) {
  .mobile-home {
    padding-top: max(9px, env(safe-area-inset-top));
    padding-bottom: 9px;
  }

  .mobile-home-topbar {
    min-height: 40px;
  }

  .mobile-home-topbar img {
    width: 142px;
  }

  .mobile-sitemap-open {
    width: 38px;
    height: 38px;
  }

  .mobile-home-reel {
    min-height: 20px;
    margin-top: 4px;
  }

  .mobile-home-intro .mobile-home-eyebrow {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .mobile-home-intro .mobile-home-title {
    margin-bottom: 7px;
    font-size: 27px;
  }

  .mobile-home-intro span {
    font-size: 12px;
    line-height: 1.35;
  }

  .mobile-home-grid a,
  .mobile-home-grid button {
    min-height: 66px;
    padding-block: 7px;
    gap: 5px;
  }

  .mobile-home-grid svg {
    width: 20px;
    height: 20px;
  }

  .mobile-home-cta {
    min-height: 44px;
    margin-top: 8px;
  }

  .mobile-home-proof {
    margin-top: 6px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-home-scene {
    transition: none;
  }

  .mobile-home-reel-controls button.is-active::after {
    animation: none;
    transform: translateY(-50%) scaleX(1);
  }
}

@media (min-width: 361px) and (max-width: 390px) {
  .mobile-home-grid strong {
    font-size: 9px;
  }
}

/* ========================================================================== */
/* Home desktop — direção visual editorial v1.1 (13/08/2026)                 */
/* Foco: ousadia, criatividade, showcase e apresentação de soluções.          */
/* ========================================================================== */

@media (min-width: 861px) {
  .home-page .site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    min-height: 0;
    padding-top: clamp(14px, 1.55vw, 24px);
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .home-page .header-inner {
    width: min(94vw, 1760px);
    min-height: 72px;
    padding: 0 clamp(18px, 1.8vw, 30px);
    gap: clamp(16px, 2vw, 34px);
    background: linear-gradient(135deg, rgba(7, 17, 20, 0.78), rgba(9, 24, 29, 0.58));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px) saturate(1.15);
  }

  .home-page .brand-link {
    width: 176px;
  }

  .home-page .desktop-nav a {
    padding-block: 24px;
    color: rgba(245, 250, 249, 0.82);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
  }

  .home-page .desktop-nav a:hover,
  .home-page .desktop-nav a:focus-visible {
    color: var(--white);
  }

  .home-page .desktop-nav a::after {
    bottom: 16px;
    background: var(--green);
  }

  .home-page .header-cta {
    color: var(--dark);
    background: var(--green);
    box-shadow: 0 12px 28px rgba(183, 223, 69, 0.24);
  }

  .home-page .header-cta:hover,
  .home-page .header-cta:focus-visible {
    background: #d2f15c;
  }

  .hero-editorial {
    min-height: min(820px, 100svh);
  }

  .hero-editorial .hero-image {
    object-position: 54% center;
    transform: scale(1.015);
  }

  .hero-editorial .hero-shade {
    background:
      radial-gradient(circle at 78% 50%, rgba(183, 223, 69, 0.11), transparent 26%),
      linear-gradient(90deg, rgba(5, 13, 16, 0.98) 0%, rgba(5, 13, 16, 0.93) 39%, rgba(5, 13, 16, 0.70) 59%, rgba(5, 13, 16, 0.34) 100%);
  }

  .hero-gridlines {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.23;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, transparent 0%, black 44%, black 100%);
  }

  .hero-editorial .hero-content {
    display: grid;
    width: min(calc(100% - 72px), 1500px);
    min-height: min(820px, 100svh);
    padding-block: clamp(128px, 13vh, 150px) 76px;
    align-items: center;
    grid-template-columns: minmax(0, 0.96fr) minmax(500px, 0.84fr);
    gap: clamp(48px, 5vw, 82px);
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
  }

  .hero-editorial h1 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(48px, 4.08vw, 61px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.026em;
  }

  .hero-editorial .hero-lead {
    max-width: 620px;
    font-size: 18px;
  }

  .hero-stage {
    --hero-rx: 0deg;
    --hero-ry: 0deg;
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 1;
    justify-self: end;
    transform: perspective(1100px) rotateX(var(--hero-rx)) rotateY(var(--hero-ry));
    transform-style: preserve-3d;
    transition: transform 260ms ease-out;
  }

  .hero-stage::before {
    position: absolute;
    inset: 13%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 123, 117, 0.32), rgba(8, 26, 40, 0.12) 54%, transparent 72%);
    box-shadow: 0 0 100px rgba(183, 223, 69, 0.10);
    content: "";
    backdrop-filter: blur(2px);
  }

  .hero-stage-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
  }

  .hero-stage-orbit-a {
    inset: 9%;
    animation: orbit-turn 26s linear infinite;
  }

  .hero-stage-orbit-b {
    inset: 24%;
    border-style: dashed;
    border-color: rgba(183, 223, 69, 0.34);
    animation: orbit-turn 18s linear infinite reverse;
  }

  .hero-stage-orbit-a::after,
  .hero-stage-orbit-b::after {
    position: absolute;
    top: 50%;
    left: -5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 22px rgba(183, 223, 69, 0.8);
    content: "";
  }

  @keyframes orbit-turn {
    to { transform: rotate(360deg); }
  }

  .hero-stage-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    width: 178px;
    height: 178px;
    padding: 22px;
    place-content: center;
    color: var(--dark);
    background: rgba(183, 223, 69, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
    text-align: center;
    transform: translate(-50%, -50%) translateZ(38px);
  }

  .hero-stage-core span,
  .hero-stage-core small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .hero-stage-core strong {
    display: block;
    margin: 5px 0;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .hero-float {
    position: absolute;
    z-index: 4;
    display: flex;
    min-width: 148px;
    min-height: 58px;
    padding: 13px 16px;
    align-items: center;
    gap: 10px;
    color: var(--white);
    background: rgba(13, 20, 22, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    backdrop-filter: blur(14px);
    transform: translateZ(28px);
  }

  .hero-float svg {
    width: 20px;
    height: 20px;
    color: var(--green);
  }

  .hero-float-1 { top: 7%; left: 2%; }
  .hero-float-2 { top: 24%; right: -3%; }
  .hero-float-3 { bottom: 12%; left: 0%; }
  .hero-float-4 { right: 2%; bottom: 24%; }
  .hero-float-5 { top: 49%; left: -8%; }

  .hero-float-1,
  .hero-float-4 { animation: float-soft 5.6s ease-in-out infinite; }
  .hero-float-2,
  .hero-float-5 { animation: float-soft 6.8s ease-in-out infinite reverse; }
  .hero-float-3 { animation: float-soft 6.1s ease-in-out infinite 500ms; }

  @keyframes float-soft {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -8px; }
  }

  .hero-scroll-cue {
    position: absolute;
    right: 24px;
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }

  .hero-scroll-cue svg {
    width: 15px;
    height: 15px;
  }

  /* A vitrine visual entra depois das cinco frentes de serviço. */
  .desktop-showcase {
    padding-block: 126px 118px;
    color: var(--white);
    background:
      radial-gradient(circle at 13% 8%, rgba(22, 123, 117, 0.34), transparent 27%),
      radial-gradient(circle at 91% 86%, rgba(183, 223, 69, 0.11), transparent 23%),
      var(--dark);
    overflow: hidden;
  }

  .showcase-heading {
    display: grid;
    margin-bottom: 56px;
    align-items: end;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 11%;
  }

  .showcase-heading h2 {
    max-width: 730px;
    margin: 0;
    font-size: clamp(44px, 4.25vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .showcase-heading > p {
    margin: 0 0 4px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
    line-height: 1.7;
  }

  .showcase-mosaic {
    display: grid;
    min-height: 690px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 330px 330px;
    gap: 18px;
  }

  .showcase-card {
    position: relative;
    display: block;
    color: var(--white);
    background: var(--dark-raised);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
  }

  .showcase-card-featured {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
  }

  .showcase-card:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1;
  }

  .showcase-card:nth-child(3) {
    grid-column: 8 / 10;
    grid-row: 2;
  }

  .showcase-card:nth-child(4) {
    grid-column: 10 / 13;
    grid-row: 2;
  }

  .showcase-card img {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 500ms ease;
  }

  .showcase-card .showcase-contain {
    padding: 40px;
    object-fit: contain;
    background: #d5e9e1;
  }

  .showcase-scrim {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 10, 12, 0.03) 18%, rgba(4, 10, 12, 0.88) 94%);
  }

  .showcase-card::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    content: "";
    transition: border-color 260ms ease, background 260ms ease;
  }

  .showcase-card:hover::after,
  .showcase-card:focus-visible::after {
    border-color: rgba(183, 223, 69, 0.72);
    background: rgba(183, 223, 69, 0.04);
  }

  .showcase-card:hover img,
  .showcase-card:focus-visible img {
    transform: scale(1.035);
  }

  .showcase-index {
    position: absolute;
    top: 22px;
    left: 22px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--dark);
    background: var(--green);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
  }

  .showcase-copy {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: block;
  }

  .showcase-copy small,
  .showcase-copy strong,
  .showcase-copy em {
    display: block;
  }

  .showcase-copy small {
    margin-bottom: 8px;
    color: var(--green);
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .showcase-copy strong {
    max-width: 620px;
    font-size: clamp(21px, 2.2vw, 34px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .showcase-card:not(.showcase-card-featured) .showcase-copy strong {
    font-size: clamp(17px, 1.55vw, 24px);
  }

  .showcase-card:nth-child(3) .showcase-copy strong,
  .showcase-card:nth-child(4) .showcase-copy strong {
    font-size: 18px;
  }

  .showcase-copy em {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
  }

  .showcase-copy em svg {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 4px;
    vertical-align: -2px;
  }

  .showcase-note {
    display: flex;
    margin-top: 28px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
  }

  .showcase-note > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
  }

  .showcase-note > span svg {
    width: 17px;
    color: var(--green);
  }

  .showcase-note .text-link {
    flex: none;
    color: var(--green);
  }

  /* Rotas = apresentação comercial inspirada na lógica de packs, sem inventar bundles. */
  .models-editorial {
    padding-block: 126px 118px;
    background: #edf3ef;
  }

  .models-editorial-head {
    display: grid;
    margin-bottom: 58px;
    align-items: end;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10%;
  }

  .models-editorial-head h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.07;
    letter-spacing: -0.04em;
  }

  .models-editorial-head > p {
    margin: 0 0 5px;
    color: var(--ink-soft);
    font-size: 15px;
  }

  .route-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .route-card {
    position: relative;
    display: flex;
    min-height: 430px;
    padding: 26px;
    flex-direction: column;
    color: var(--ink);
    border: 1px solid rgba(13, 20, 22, 0.10);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 260ms cubic-bezier(.2,.8,.2,1), box-shadow 260ms ease;
  }

  .route-card::before {
    position: absolute;
    right: -54px;
    bottom: -72px;
    width: 210px;
    height: 210px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.10;
    content: "";
    transition: transform 420ms cubic-bezier(.2,.8,.2,1);
  }

  .route-card::after {
    position: absolute;
    right: 18px;
    bottom: 22px;
    width: 80px;
    height: 80px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.08;
    content: "";
  }

  .route-card:hover,
  .route-card:focus-visible {
    z-index: 2;
    box-shadow: 0 28px 70px rgba(8, 25, 24, 0.16);
    transform: translateY(-8px);
  }

  .route-card:hover::before,
  .route-card:focus-visible::before {
    transform: scale(1.18);
  }

  .route-lime { background: var(--green); }
  .route-mint { background: #d9eee6; }
  .route-blue { color: var(--white); background: var(--navy); }
  .route-dark { color: var(--white); background: var(--dark); }

  .route-top {
    display: flex;
    margin-bottom: 70px;
    align-items: center;
    justify-content: space-between;
  }

  .route-top b {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .route-top svg {
    width: 28px;
    height: 28px;
  }

  .route-kicker {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.70;
  }

  .route-card > strong {
    display: block;
    max-width: 255px;
    margin-bottom: 16px;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .route-description {
    max-width: 240px;
    font-size: 13px;
    opacity: 0.72;
  }

  .route-footer {
    display: flex;
    margin-top: auto;
    padding-top: 40px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .route-footer svg {
    width: 16px;
    height: 16px;
    transition: transform 200ms ease;
  }

  .route-card:hover .route-footer svg,
  .route-card:focus-visible .route-footer svg {
    transform: translate(3px, -3px);
  }

  .contract-switch {
    display: grid;
    margin-top: 18px;
    padding: 26px 28px;
    align-items: center;
    grid-template-columns: 0.72fr 1fr 1fr auto;
    gap: 28px;
    color: var(--white);
    background: var(--dark);
    border-radius: 14px;
  }

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

  .contract-switch-label span {
    margin-bottom: 3px;
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .contract-switch-label strong {
    font-size: 18px;
  }

  .contract-switch-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .contract-switch-item > svg {
    width: 26px;
    color: var(--green);
  }

  .contract-switch-item strong,
  .contract-switch-item span {
    display: block;
  }

  .contract-switch-item strong {
    margin-bottom: 3px;
    font-size: 13px;
  }

  .contract-switch-item span {
    color: rgba(255, 255, 255, 0.59);
    font-size: 11px;
    line-height: 1.45;
  }

  .contract-switch .button {
    white-space: nowrap;
  }

  /* Pequenos refinamentos editoriais nos blocos já aprovados. */
  .home-page .service-band {
    position: relative;
  }

  .home-page .service-band::after {
    position: absolute;
    top: 0;
    right: 50%;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    content: "";
    pointer-events: none;
  }

  .home-page .service-light::after,
  .home-page .service-line::after {
    background: rgba(13, 20, 22, 0.08);
  }

  .home-page .service-band:hover .service-number {
    color: var(--green);
    opacity: 1;
  }

  .home-page .service-number {
    transition: color 200ms ease, opacity 200ms ease;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .hero-editorial .hero-content {
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, .9fr);
    gap: 28px;
  }

  .hero-stage {
    width: 430px;
  }

  .hero-float {
    min-width: 132px;
  }

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

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

  .route-top {
    margin-bottom: 46px;
  }

  .contract-switch {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contract-switch .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 860px) {
  /* A alteração solicitada é desktop-first. No mobile, preservamos a experiência aprovada. */
  .hero-stage,
  .hero-gridlines,
  .hero-scroll-cue,
  .desktop-showcase {
    display: none !important;
  }

  .hero-copy {
    display: contents;
  }

  .models-editorial-head {
    display: block;
    margin-bottom: 34px;
  }

  .models-editorial-head h2 {
    font-size: 32px;
    line-height: 1.22;
  }

  .models-editorial-head > p {
    margin-top: 16px;
    color: var(--ink-soft);
  }

  .route-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .route-card {
    display: flex;
    min-height: 250px;
    padding: 24px;
    flex-direction: column;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 10px;
    text-decoration: none;
  }

  .route-lime { background: var(--green); }
  .route-mint { background: #d9eee6; }
  .route-blue { color: var(--white); background: var(--navy); }
  .route-dark { color: var(--white); background: var(--dark); }

  .route-top {
    display: flex;
    margin-bottom: 28px;
    align-items: center;
    justify-content: space-between;
  }

  .route-top svg { width: 25px; }
  .route-kicker { margin-bottom: 8px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
  .route-card > strong { display: block; max-width: 310px; margin-bottom: 10px; font-size: 23px; line-height: 1.15; }
  .route-description { font-size: 13px; opacity: .75; }
  .route-footer { display: flex; margin-top: auto; padding-top: 24px; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 800; text-transform: uppercase; }
  .route-footer svg { width: 16px; }

  .contract-switch {
    display: grid;
    margin-top: 12px;
    padding: 24px;
    gap: 20px;
    color: var(--white);
    background: var(--dark);
    border-radius: 10px;
  }

  .contract-switch-label span,
  .contract-switch-label strong,
  .contract-switch-item strong,
  .contract-switch-item span { display: block; }
  .contract-switch-label span { color: var(--green); font-size: 10px; font-weight: 800; text-transform: uppercase; }
  .contract-switch-item { display: grid; grid-template-columns: 30px 1fr; gap: 10px; }
  .contract-switch-item > svg { width: 23px; color: var(--green); }
  .contract-switch-item span { color: rgba(255,255,255,.62); font-size: 12px; }
  .contract-switch .button { justify-self: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage-orbit,
  .hero-float {
    animation: none !important;
  }

  .hero-stage,
  .showcase-card img,
  .route-card,
  .route-card::before {
    transition: none !important;
  }
}

/* Isolamento da evolução visual: a versão v1.1 é desktop-first. */
.models-mobile-original {
  display: none;
}

@media (min-width: 861px) {
  .home-page .service-band::after {
    position: absolute;
    top: 0;
    right: 50%;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    content: "";
    pointer-events: none;
  }

  .home-page .service-light::after,
  .home-page .service-line::after {
    background: rgba(13, 20, 22, 0.08);
  }
}

@media (max-width: 860px) {
  .models-editorial {
    display: none !important;
  }

  .models-mobile-original {
    display: block;
  }
}

/* Final mobile home composition v1.4 */
.site-map-group + .site-map-group {
  margin-top: 34px;
}

.site-map-footer-brand {
  display: block;
  width: min(250px, 70%);
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.site-map-footer-brand img {
  width: 100%;
  height: auto;
}

@media (max-width: 860px) {
  .mobile-home-reel {
    display: none;
  }

  .mobile-home-topbar { order: 1; }
  .mobile-home-spacer { min-height: 18px; order: 2; }
  .mobile-home-intro {
    max-width: 410px;
    margin: 0 0 16px;
    order: 3;
  }
  .mobile-home-grid { order: 4; }

  .mobile-home-intro .mobile-home-title {
    margin-bottom: 9px;
    font-size: 29px;
    line-height: 1.08;
  }

  .mobile-home-intro span {
    max-width: 340px;
    font-size: 13px;
    line-height: 1.4;
  }

  .mobile-home-shade {
    background:
      linear-gradient(180deg, rgba(4, 12, 14, .58) 0%, rgba(4, 12, 14, .12) 33%, rgba(4, 12, 14, .34) 52%, rgba(4, 12, 14, .94) 78%, rgba(4, 12, 14, .99) 100%),
      linear-gradient(90deg, rgba(4, 12, 14, .42), rgba(4, 12, 14, .06) 70%, rgba(4, 12, 14, .28));
  }

  .mobile-home-grid a { min-height: 82px; }
  .mobile-dock a:last-child,
  .mobile-dock a:last-child svg { color: var(--green); }

  .site-map-panel {
    background:
      linear-gradient(180deg, rgba(3, 12, 14, .82), rgba(3, 12, 14, .97) 38%, #071012 100%),
      url("../images/home/sites-codigo.webp") center top / cover no-repeat;
  }

  .site-map-heading {
    position: sticky;
    z-index: 2;
    top: 0;
    margin-inline: -18px;
    padding: max(14px, env(safe-area-inset-top)) 18px 13px;
    background: rgba(5, 15, 17, .88);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(14px);
  }

  .site-map-label {
    margin-bottom: 14px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 14px;
    text-align: center;
  }

  .site-map-icon-grid { gap: 8px; }
  .site-map-icon-grid > a {
    min-height: 108px;
    padding: 14px 9px;
    gap: 10px;
    background: rgba(7, 20, 23, .78);
    border-color: rgba(255, 255, 255, .22);
    border-radius: 8px;
    font-size: 14px;
    backdrop-filter: blur(10px);
  }
  .site-map-icon-grid svg { width: 32px; height: 32px; }
}

@media (max-width: 430px) {
  .mobile-home { padding-inline: 14px; }
  .mobile-home-intro { margin-bottom: 12px; }
  .mobile-home-grid { gap: 6px; }
  .mobile-home-grid a {
    min-height: 76px;
    padding: 8px 4px;
    gap: 6px;
  }
  .mobile-home-grid svg { width: 21px; height: 21px; }
}

@media (max-width: 360px), (max-width: 860px) and (max-height: 650px) {
  .mobile-home-spacer { min-height: 8px; }
  .mobile-home-intro { margin-bottom: 9px; }
  .mobile-home-intro .mobile-home-eyebrow { margin-bottom: 5px; font-size: 10px; }
  .mobile-home-intro .mobile-home-title { margin-bottom: 6px; font-size: 25px; }
  .mobile-home-intro span { font-size: 11px; line-height: 1.32; }
  .mobile-home-grid a { min-height: 66px; }
}

/* Mobile Home and Site Maps alignment with the PopMob navigation language. */
@media (max-width: 860px) {
  .mobile-home-intro .mobile-home-title {
    font-size: 28px;
    line-height: 1.08;
    white-space: nowrap;
  }

  .mobile-home-grid a,
  .mobile-home-grid button {
    min-height: 78px;
    padding: 8px 4px;
    gap: 6px;
    font: inherit;
  }

  .mobile-home-grid svg {
    width: 23px;
    height: 23px;
  }

  .mobile-home-grid strong {
    font-size: 12px;
    line-height: 1.15;
  }

  .site-map-heading {
    min-height: 58px;
    margin-bottom: 26px;
    justify-content: flex-end;
    border-bottom: 0;
  }

  .site-map-heading button {
    width: 48px;
    height: 48px;
  }

  .site-map-contact {
    scroll-margin-top: 76px;
  }
}

@media (max-width: 360px), (max-width: 860px) and (max-height: 650px) {
  .mobile-home-intro .mobile-home-title {
    font-size: 25px;
  }

  .mobile-home-grid a,
  .mobile-home-grid button {
    min-height: 68px;
    gap: 4px;
  }

  .mobile-home-grid strong {
    font-size: 10.5px;
  }
}

/* Atendimento WhatsApp e refinamentos comerciais v1.5 */
@media (min-width: 861px) {
  .hero-float-6 {
    right: -5%;
    bottom: 5%;
    animation: float-soft 6.4s ease-in-out infinite 900ms;
  }

  .service-media-contain,
  .service-media-product {
    display: grid;
    padding: clamp(30px, 5vw, 72px);
    place-items: center;
  }

  .service-media-contain img,
  .service-media-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .service-media-product {
    background:
      linear-gradient(rgba(183, 223, 69, .06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(183, 223, 69, .06) 1px, transparent 1px),
      #071619;
    background-size: 52px 52px;
  }

  .service-media-product img {
    filter: drop-shadow(0 26px 38px rgba(0, 0, 0, .34));
  }

  .service-whatsapp {
    color: var(--white);
    background: #0c4e4a;
  }

  .service-whatsapp .service-list li {
    border-color: rgba(255, 255, 255, .2);
  }

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

  .showcase-mosaic {
    min-height: 690px;
  }

  .showcase-card-featured {
    grid-column: 1 / 7;
  }

  .showcase-card:nth-child(2) {
    grid-column: 7 / 10;
    grid-row: 1;
  }

  .showcase-card:nth-child(3) {
    grid-column: 10 / 13;
    grid-row: 1;
  }

  .showcase-card:nth-child(4) {
    grid-column: 7 / 10;
    grid-row: 2;
  }

  .showcase-card:nth-child(5) {
    grid-column: 10 / 13;
    grid-row: 2;
  }

  .showcase-card:nth-child(n+2) .showcase-copy strong {
    font-size: clamp(16px, 1.4vw, 21px);
  }

  .showcase-card-whatsapp img {
    object-position: center;
  }
}

.button-brand-icon {
  width: 24px;
  height: 24px;
  padding: 5px;
  background: #087b4d;
  border-radius: 50%;
}

@media (min-width: 861px) {
  .service-media-autonex {
    position: relative;
  }

  .service-media-autonex::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 17, 19, .04), rgba(4, 17, 19, .58));
    content: "";
  }

  .service-media-autonex img {
    object-position: 63% center;
  }

  .autonex-service-mark {
    position: absolute;
    z-index: 2;
    right: 8%;
    bottom: 9%;
    display: grid;
    width: 150px;
    height: 150px;
    place-content: center;
    color: #071719;
    background: var(--green);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .28);
  }

  .autonex-service-mark small,
  .autonex-service-mark strong {
    display: block;
  }

  .autonex-service-mark small {
    font-size: 8px;
    font-weight: 800;
  }

  .autonex-service-mark strong {
    margin: 3px 0 8px;
    font-size: 21px;
  }

  .autonex-service-mark svg {
    width: 20px;
    margin: auto;
  }
}

@media (max-width: 1180px) and (min-width: 861px) {
  .hero-float-6 {
    right: 1%;
    bottom: 2%;
  }

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

@media (max-width: 560px) {
  .stat:last-child .stat-heading {
    gap: 8px;
  }

  .stat:last-child .stat-heading strong {
    font-size: 16px;
  }
}

/* Unified title hierarchy across the main site. */
h1,
h2,
h3 {
  font-family: "Inter", Arial, sans-serif;
  font-optical-sizing: auto;
  letter-spacing: 0;
}

h1 {
  font-weight: 700;
  line-height: 1.08;
}

h2 {
  font-weight: 650;
  line-height: 1.15;
}

h3 {
  font-weight: 650;
  line-height: 1.25;
}

.hero-editorial h1 {
  font-weight: 700;
  letter-spacing: 0;
}

.service-content h3,
.route-card > strong {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.showcase-heading h2,
.models-editorial-head h2,
.showcase-copy strong {
  font-weight: 650;
  letter-spacing: 0;
}
