:root {
  --white: #fdfdfd;
  --ink: #171414;
  --display: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 0.75, 0.25, 1);
  --radius: 26px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--muted);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

button {
  color: inherit;
  font: inherit;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
.impact-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.012em;
  color: var(--ink);
}
h1 {
  font-size: clamp(4.8rem, 8.5vw, 9.2rem);
}
h2 {
  font-size: clamp(3.6rem, 6.4vw, 7rem);
}
h3 {
  color: var(--ink);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
}
.button {
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease);
}
.button:hover {
  transform: translateY(-3px);
  background: #922313;
}
.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(89, 83, 83, 0.25);
}
.button--outline:hover {
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: 0.35s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(241, 231, 231, 0.9);
  backdrop-filter: blur(18px);
  border-color: rgba(89, 83, 83, 0.1);
}

.brand {
  width: 174px;
  display: inline-flex;
  align-items: center;
  mix-blend-mode: multiply;
}
.brand img {
  display: block;
  width: 100%;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(89, 83, 83, 0.22);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 120px 24px 40px;
  background: var(--paper);
  align-content: start;
  gap: 18px;
}
.mobile-menu.open {
  display: grid;
}
.mobile-menu a:not(.button) {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(89, 83, 83, 0.15);
  padding-bottom: 15px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 154px 0 84px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -180px;
  top: -230px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--rose), rgba(167, 43, 24, 0.78));
  z-index: -2;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(50px, 8vw, 125px);
  align-items: center;
}
.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
}
.hero-intro {
  max-width: 630px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.services-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  perspective: 1400px;
  isolation: isolate;
}

.service-core {
  position: relative;
  z-index: 1;
  width: min(470px, 88%);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms var(--ease);
}

.service-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms var(--ease);
}

.service-ring--outer {
  inset: 0;
  z-index: 0;
  border: 1px solid rgba(89, 83, 83, 0.26);
  box-shadow:
    inset 0 0 0 18px rgba(221, 178, 178, 0.05),
    0 30px 70px rgba(89, 83, 83, 0.09);
}

.service-ring--outer::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 42px;
  right: 36px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow:
    0 0 0 10px rgba(167, 43, 24, 0.08),
    0 12px 28px rgba(167, 43, 24, 0.28);
}

.service-ring--inner {
  inset: 11%;
  z-index: 1;
  border: 1px solid rgba(167, 43, 24, 0.42);
}

.service-ring--inner::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 26px;
  bottom: 72px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 7px rgba(221, 178, 178, 0.12);
}

.service-panel {
  position: absolute;
  z-index: 2;
  inset: 18% 12% 13% 17%;
  overflow: hidden;
  border-radius: 44% 56% 42% 58% / 52% 43% 57% 48%;
  background:
    radial-gradient(
      circle at var(--glow-x, 50%) var(--glow-y, 50%),
      rgba(221, 178, 178, 0.28),
      transparent 31%
    ),
    linear-gradient(rgba(241, 231, 231, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 231, 231, 0.055) 1px, transparent 1px),
    var(--ink);
  background-size:
    auto,
    34px 34px,
    34px 34px,
    auto;
  box-shadow:
    0 38px 80px rgba(89, 83, 83, 0.22),
    inset 0 0 45px rgba(241, 231, 231, 0.025);
  transform: translate3d(0, 0, 45px) rotate(-7deg);
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 220ms var(--ease),
    border-radius 350ms var(--ease);
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(241, 231, 231, 0.2);
  border-radius: inherit;
}

.service-sphere {
  position: absolute;
  z-index: 3;
  width: 32%;
  aspect-ratio: 1;
  right: 2%;
  bottom: 8%;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    #c84329 0%,
    var(--brand) 58%,
    #7e2015 100%
  );
  box-shadow:
    0 30px 58px rgba(167, 43, 24, 0.3),
    inset -18px -20px 38px rgba(73, 15, 10, 0.2),
    inset 12px 12px 24px rgba(255, 255, 255, 0.1);
  transform: translate3d(0, 0, 105px);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms var(--ease);
}

.service-sphere::after {
  content: "";
  position: absolute;
  width: 22%;
  aspect-ratio: 1;
  top: 20%;
  left: 22%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(3px);
}

.service-monogram {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  place-items: center;
  padding-right: 5%;
  color: var(--paper);
  font-family: var(--institutional);
  font-size: clamp(3rem, 5.8vw, 5.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 12px 28px rgba(18, 18, 18, 0.2);
  pointer-events: none;
  transform: translate3d(0, -3%, 145px) rotate(-9deg);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms var(--ease);
}

.orbit-card {
  position: absolute;
  z-index: 5;
  min-width: 170px;
  padding: 17px 19px;
  border: 1px solid rgba(89, 83, 83, 0.13);
  border-radius: 16px;
  background: rgba(253, 253, 253, 0.84);
  backdrop-filter: blur(15px);
  box-shadow: 0 22px 50px rgba(89, 83, 83, 0.13);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.orbit-card strong {
  display: block;
  margin-top: 5px;
  color: var(--brand);
  font-size: 0.91rem;
  letter-spacing: 0;
  text-transform: none;
}

.orbit-card--1 {
  top: 7%;
  left: -1%;
}

.orbit-card--2 {
  right: -4%;
  top: 40%;
}

.orbit-card--3 {
  left: 4%;
  bottom: 4%;
}

.services-visual:hover .service-panel {
  border-radius: 54% 46% 58% 42% / 45% 57% 43% 55%;
}

@keyframes serviceLayerFloat {
  from {
    transform: translate3d(18px, -12px, 28px) rotate(9deg);
  }

  to {
    transform: translate3d(7px, 4px, 38px) rotate(5deg);
  }
}

@keyframes serviceAccentFloat {
  from {
    transform: translate3d(0, 0, 55px);
  }

  to {
    transform: translate3d(-10px, -13px, 70px);
  }
}
.scroll-cue {
  position: absolute;
  right: 24px;
  bottom: 34px;
  writing-mode: vertical-rl;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  background: var(--brand);
  color: var(--white);
}
.marquee-track {
  width: max-content;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 14px 0;
  animation: marquee 24s linear infinite;
}
.marquee-item {
  display: flex;
  gap: 30px;
  align-items: center;
  white-space: nowrap;
}
.marquee-item span {
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
}

.intro {
  padding: 145px 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}
.intro h2 {
  position: sticky;
  top: 130px;
  max-width: 520px;
}
.intro-copy {
  font-size: clamp(1.15rem, 1.8vw, 1.52rem);
  color: var(--ink);
}
.intro-copy p + p {
  margin-top: 26px;
}
.intro-list {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(89, 83, 83, 0.18);
}
.intro-list div {
  padding: 22px 16px 0 0;
}
.intro-list strong {
  display: block;
  color: var(--brand);
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 400;
}
.intro-list span {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chapter {
  padding: 145px 0;
  position: relative;
  overflow: hidden;
}
.chapter--position {
  background: var(--paper);
}
.chapter--demand {
  background: var(--ink);
  color: rgba(241, 231, 231, 0.72);
}
.chapter--convert {
  background: linear-gradient(
    135deg,
    var(--secondary),
    #8d3933 62%,
    var(--brand) 130%
  );
  color: rgba(253, 253, 253, 0.76);
}
.chapter--demand h2,
.chapter--demand h3,
.chapter--convert h2,
.chapter--convert h3 {
  color: var(--white);
}
.chapter--demand .eyebrow,
.chapter--convert .eyebrow {
  color: var(--rose);
}
.chapter-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 9vw, 130px);
  align-items: start;
}
.chapter-head {
  position: sticky;
  top: 125px;
}
.chapter-number {
  display: block;
  margin-bottom: 18px;
  font-family: var(--display);
  color: var(--brand);
  font-size: 3rem;
  line-height: 1;
}
.chapter--demand .chapter-number,
.chapter--convert .chapter-number {
  color: var(--rose);
}
.chapter-head p {
  max-width: 440px;
  font-size: 1.05rem;
}
.service-cards {
  display: grid;
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 245px;
  padding: 34px;
  border: 1px solid rgba(89, 83, 83, 0.16);
  border-radius: var(--radius);
  background: rgba(253, 253, 253, 0.52);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    background 0.4s var(--ease);
}
.chapter--demand .service-card {
  border-color: rgba(241, 231, 231, 0.16);
  background: rgba(241, 231, 231, 0.055);
}
.chapter--convert .service-card {
  border-color: rgba(253, 253, 253, 0.2);
  background: rgba(253, 253, 253, 0.08);
  backdrop-filter: blur(12px);
}
.service-card:hover {
  transform: translateY(-7px);
  background: var(--white);
}
.chapter--demand .service-card:hover {
  background: rgba(241, 231, 231, 0.11);
}
.chapter--convert .service-card:hover {
  background: rgba(253, 253, 253, 0.14);
}
.service-card-index {
  display: block;
  margin-bottom: 54px;
  color: var(--brand);
  font-family: var(--display);
  font-size: 1.45rem;
}
.chapter--demand .service-card-index,
.chapter--convert .service-card-index {
  color: var(--rose);
}
.service-card h3 {
  max-width: 600px;
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}
.service-card p {
  max-width: 680px;
  margin-bottom: 0;
}
.service-card-arrow {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  transition: transform 0.3s var(--ease);
}
.service-card:hover .service-card-arrow {
  transform: rotate(45deg);
}
.card-orbit {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -75px;
  bottom: -90px;
  border: 1px solid rgba(167, 43, 24, 0.2);
  border-radius: 50%;
}
.chapter--demand .card-orbit,
.chapter--convert .card-orbit {
  border-color: rgba(221, 178, 178, 0.24);
}

.connection {
  padding: 145px 0;
  background: var(--white);
}
.connection-head {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.connection-head p {
  max-width: 510px;
  justify-self: end;
}
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(89, 83, 83, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}
.journey-step {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid rgba(89, 83, 83, 0.16);
  background: var(--paper);
  cursor: pointer;
  transition: 0.4s var(--ease);
}
.journey-step:last-child {
  border-right: 0;
}
.journey-step.active,
.journey-step:hover {
  background: var(--ink);
  color: var(--paper);
}
.journey-step b {
  font-family: var(--display);
  color: var(--brand);
  font-size: 1.45rem;
  font-weight: 400;
}
.journey-step h3 {
  margin-top: 100px;
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  color: inherit;
}
.journey-detail {
  min-height: 130px;
  margin-top: 22px;
  padding: 25px 30px;
  border-radius: 20px;
  background: var(--rose);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  align-items: center;
}
.journey-detail strong {
  font-family: var(--display);
  color: var(--brand);
  font-size: 2.1rem;
  font-weight: 400;
  text-transform: uppercase;
}
.journey-detail p {
  margin: 0;
  color: var(--ink);
}

.start {
  padding: 145px 0;
  background: var(--paper);
}
.start-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 130px);
}
.start h2 {
  position: sticky;
  top: 125px;
}
.start-steps {
  border-top: 1px solid rgba(89, 83, 83, 0.2);
}
.start-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(89, 83, 83, 0.2);
}
.start-step b {
  font-family: var(--display);
  color: var(--brand);
  font-size: 2rem;
  font-weight: 400;
}
.start-step h3 {
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 400;
  text-transform: uppercase;
}
.start-step p {
  margin: 0;
}

.faq {
  padding: 145px 0;
  background: var(--ink);
  color: rgba(241, 231, 231, 0.7);
}
.faq h2 {
  color: var(--white);
  margin-bottom: 65px;
}
.faq-item {
  border-top: 1px solid rgba(241, 231, 231, 0.17);
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(241, 231, 231, 0.17);
}
.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  text-transform: uppercase;
}
.faq-question span:last-child {
  color: var(--rose);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-answer p {
  max-width: 780px;
  padding: 0 0 28px;
  margin: 0;
}

.cta {
  padding: 130px 0;
  background: linear-gradient(
    135deg,
    var(--rose),
    var(--paper) 55%,
    var(--white)
  );
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.cta h2 {
  margin-bottom: 0;
}
.cta-side p {
  max-width: 520px;
  color: var(--ink);
}
.cta-side .button {
  margin-top: 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 0.7fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(241, 231, 231, 0.14);
}
.footer-logo-card {
  display: inline-flex;
  width: 218px;
  padding: 13px 17px;
  margin-bottom: 24px;
  border-radius: 12px;
}
.footer-logo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.footer h4 {
  margin: 0 0 20px;
  color: var(--rose);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(89, 83, 83, 0.23);
  transition: transform 0.3s var(--ease);
}
.whatsapp:hover {
  transform: translateY(-4px) rotate(-4deg);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
[data-delay="1"] {
  transition-delay: 0.1s;
}
[data-delay="2"] {
  transition-delay: 0.2s;
}
[data-delay="3"] {
  transition-delay: 0.3s;
}

@keyframes slowRotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 32px, 760px);
  }
  .nav {
    grid-template-columns: 1fr auto;
  }
  .brand {
    width: 158px;
  }
  .nav-links,
  .nav-action {
    display: none;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }
  .hero {
    padding-top: 130px;
  }
  .hero-grid,
  .intro-grid,
  .chapter-grid,
  .connection-head,
  .start-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .services-visual {
    min-height: 520px;
  }
  .intro h2,
  .chapter-head,
  .start h2 {
    position: static;
  }
  .intro-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .journey {
    grid-template-columns: 1fr 1fr;
  }
  .journey-step:nth-child(2) {
    border-right: 0;
  }
  .journey-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(89, 83, 83, 0.16);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 620px) {
  :root {
    --container: calc(100vw - 24px);
    --radius: 20px;
  }
  h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }
  h2 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }
  .hero {
    min-height: auto;
    padding: 120px 0 82px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .services-visual {
    min-height: 430px;
  }
  .service-core {
    width: 82%;
  }
  .service-panel {
    inset: 19% 9% 15% 14%;
  }

  .service-sphere {
    width: 29%;
    right: 0;
    bottom: 11%;
  }

  .service-monogram {
    padding-right: 3%;
    font-size: clamp(2.5rem, 13vw, 3.9rem);
  }

  .orbit-card {
    min-width: 140px;
    padding: 13px 14px;
    font-size: 0.59rem;
  }

  .orbit-card strong {
    font-size: 0.76rem;
  }

  .orbit-card--1 {
    top: 3%;
    left: 0;
  }

  .orbit-card--2 {
    right: 0;
    top: 42%;
  }

  .orbit-card--3 {
    left: 1%;
    bottom: 1%;
  }
  .service-core::after {
    width: 31%;
    right: -3%;
    bottom: 10%;
  }

  .service-monogram {
    padding-right: 5%;
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .orbit-card {
    min-width: 145px;
    padding: 14px 15px;
    font-size: 0.6rem;
  }

  .orbit-card strong {
    font-size: 0.78rem;
  }

  .orbit-card--1 {
    top: 4%;
    left: 0;
  }

  .orbit-card--2 {
    right: 0;
    top: 42%;
  }

  .orbit-card--3 {
    left: 2%;
    bottom: 2%;
  }
  .orbit-card {
    min-width: 145px;
    padding: 14px;
    font-size: 0.59rem;
  }
  .orbit-card--1 {
    left: -2%;
  }
  .orbit-card--2 {
    right: -2%;
  }
  .orbit-card--3 {
    left: 0;
  }
  .intro,
  .chapter,
  .connection,
  .start,
  .faq,
  .cta {
    padding: 100px 0;
  }
  .intro-list {
    grid-template-columns: 1fr;
  }
  .intro-list div {
    padding: 20px 0;
    border-bottom: 1px solid rgba(89, 83, 83, 0.12);
  }
  .service-card {
    min-height: 225px;
    padding: 26px;
  }
  .service-card-index {
    margin-bottom: 38px;
  }
  .journey {
    grid-template-columns: 1fr;
  }
  .journey-step {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(89, 83, 83, 0.16);
  }
  .journey-step h3 {
    margin-top: 60px;
  }
  .journey-detail {
    grid-template-columns: 1fr;
  }
  .start-step {
    grid-template-columns: 50px 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

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

.service-monogram {
  padding-inline: 24px;
  font-size: clamp(1.65rem, 3.15vw, 2.85rem);
  line-height: 1;
  letter-spacing: 0.045em;
  white-space: nowrap;
  transform: rotate(-14deg);
}

@media (max-width: 980px) {
  .service-monogram {
    font-size: clamp(1.7rem, 5.1vw, 2.65rem);
  }
}

@media (max-width: 620px) {
  .service-monogram {
    padding-inline: 18px;
    font-size: clamp(1.45rem, 8.2vw, 2.25rem);
    letter-spacing: 0.035em;
  }
}

.whatsapp {
  background: #25d366;
  color: #ffffff;
}

.whatsapp:hover {
  background: #1fbe5d;
}

.service-monogram {
  font-family: var(--institutional);
  font-size: clamp(1.9rem, 3.5vw, 3.35rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

/* Etapa 1: estabilização do hero em tablets e celulares */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(36px, 7vw, 56px);
    align-items: start;
  }

  .hero-grid > *,
  .services-visual {
    min-width: 0;
    max-width: 100%;
  }

  .services-visual {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
    line-height: 0.92;
  }

  .hero {
    overflow: hidden;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero h1,
  .hero-intro {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }
}

