:root {
  --black: #070707;
  --black-2: #0d0d0e;
  --black-3: #141416;
  --paper: #f0eee9;
  --paper-2: #faf9f6;
  --white: #ffffff;
  --red: #df1028;
  --red-bright: #f51d38;
  --grey: #aaa8a5;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(7, 7, 7, 0.16);
  --shell: min(1280px, calc(100vw - 96px));
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.is-loading {
  overflow: hidden;
}

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

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

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

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

::selection {
  background: var(--red);
  color: var(--white);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.intro {
  display: none;
}

.js .intro {
  position: fixed;
  z-index: 1500;
  inset: 0;
  display: grid;
  place-items: center;
  background: #090909;
  transition: opacity 650ms cubic-bezier(0.76, 0, 0.24, 1), visibility 650ms;
}

.js .intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__inner {
  width: min(520px, calc(100vw - 64px));
  text-align: center;
}

.intro__inner img {
  width: 100%;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  animation: intro-logo 850ms 150ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.intro__rule {
  position: relative;
  height: 1px;
  margin: 20px auto 17px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.intro__rule i {
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateX(-100%);
  animation: intro-rule 1.25s 350ms cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

.intro__inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: intro-copy 500ms 600ms ease forwards;
}

.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red-bright);
  box-shadow: 0 0 14px rgba(245, 29, 56, 0.7);
  transform: scaleX(0);
  transform-origin: left;
}

.pointer-aura {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 16, 40, 0.12), transparent 67%);
  transform: translate3d(calc(var(--pointer-x, -500px) - 50%), calc(var(--pointer-y, -500px) - 50%), 0);
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
  mix-blend-mode: screen;
}

.pointer-aura.is-visible {
  opacity: 1;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 260ms ease, backdrop-filter 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.86);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
}

.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.logo {
  display: block;
  width: 225px;
  height: 56px;
  overflow: hidden;
}

.logo img {
  width: 225px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(223, 16, 40, 0.08));
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
  font-size: 0.84rem;
  font-weight: 600;
}

.nav > a:not(.nav__cta) {
  position: relative;
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.64);
  transition: color 180ms ease;
}

.nav > a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav > a:not(.nav__cta):hover,
.nav > a:not(.nav__cta):focus-visible {
  color: var(--white);
}

.nav > a:not(.nav__cta):hover::after,
.nav > a:not(.nav__cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 46px;
  padding: 0 18px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(223, 16, 40, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero__media,
.hero__wash,
.hero__grid,
.hero__beam {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -4;
  inset: -7%;
  background: url("./hero-cidade.webp") center center / cover no-repeat;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.05);
  will-change: transform;
}

.hero__wash {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.98) 0%, rgba(4, 4, 4, 0.92) 36%, rgba(4, 4, 4, 0.46) 67%, rgba(4, 4, 4, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 4, 4, 0.28), rgba(4, 4, 4, 0.04) 52%, rgba(4, 4, 4, 0.84));
}

.hero__grid,
.leadership__grid {
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.hero__beam {
  z-index: -1;
  left: 43%;
  width: 1px;
  background: linear-gradient(transparent 5%, rgba(223, 16, 40, 0.75) 48%, transparent 92%);
  box-shadow: 0 0 28px rgba(223, 16, 40, 0.25);
  transform: skewX(-12deg);
  opacity: 0.6;
}

.hero__side {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 17px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(-90deg);
}

.hero__side i {
  width: 58px;
  height: 1px;
  background: var(--red);
}

.hero__inner {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 305px;
  align-items: center;
  gap: 64px;
  padding-top: 100px;
  padding-bottom: 126px;
}

.hero__copy {
  max-width: 1000px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 27px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 39px;
  height: 2px;
  background: currentColor;
}

.kicker--light {
  color: rgba(255, 255, 255, 0.56);
}

.kicker--light::before {
  background: var(--red);
}

.hero__kicker {
  color: rgba(255, 255, 255, 0.67);
  opacity: 0;
}

.is-ready .hero__kicker {
  animation: reveal-up 700ms 80ms ease forwards;
}

.hero h1 {
  margin: 0;
  font-size: clamp(5rem, 9.4vw, 10.4rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}

.is-ready .hero-line:first-child {
  animation: hero-line 900ms 150ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.is-ready .hero-line:nth-child(2) {
  animation: hero-line 900ms 260ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 em,
.brands__intro h2 em,
.brand-story__copy h3 em,
.operating__sticky h2 em,
.leadership__heading h2 em,
.contact h2 em {
  color: var(--red);
  font-family: var(--serif);
  font-weight: 400;
}

.hero__foot {
  display: flex;
  align-items: center;
  gap: 44px;
  max-width: 760px;
  margin-top: 43px;
  opacity: 0;
}

.is-ready .hero__foot {
  animation: reveal-up 750ms 430ms ease forwards;
}

.hero__foot > p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.08rem;
  line-height: 1.7;
}

.round-link {
  flex: 0 0 auto;
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.35;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.round-link:hover,
.round-link:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.round-link i {
  font-style: normal;
  font-size: 1rem;
}

.hero__signal {
  align-self: end;
  margin-bottom: 92px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 7, 7, 0.56);
  backdrop-filter: blur(16px);
  opacity: 0;
}

.is-ready .hero__signal {
  animation: reveal-up 800ms 540ms ease forwards;
}

.signal-head {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 6px rgba(223, 16, 40, 0.14);
  animation: signal-pulse 1.8s ease-in-out infinite;
}

.hero__signal > p {
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.55;
}

.signal-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.signal-flow i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.12));
}

.kinetic {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding: 13px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 7, 7, 0.6);
  backdrop-filter: blur(10px);
}

.kinetic__track,
.brand-marquee > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 25px;
  animation: ticker 34s linear infinite;
}

.kinetic span {
  color: rgba(255, 255, 255, 0.43);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.kinetic i,
.brand-marquee i {
  color: var(--red);
  font-style: normal;
  font-size: 0.7rem;
}

.manifesto {
  position: relative;
  overflow: hidden;
  padding: 150px 0 135px;
  background: var(--paper);
  color: var(--black);
}

.manifesto::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  background: var(--line-dark);
}

.manifesto__top {
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr);
  gap: 62px;
}

.section-code {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 16px;
  padding-top: 8px;
  border-right: 1px solid var(--line-dark);
  color: var(--black);
}

.section-code span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.section-code i {
  width: 2px;
  height: 49px;
  background: var(--red);
}

.section-code p {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section-code--light {
  border-color: var(--line);
  color: var(--white);
}

.manifesto__statement h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 0.91;
}

.manifesto__accent {
  margin: 18px 0 0;
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-style: italic;
  line-height: 1;
}

.manifesto__body {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: clamp(70px, 11vw, 165px);
  margin-top: 105px;
  padding-left: 177px;
}

.manifesto__lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.8vw, 2.8rem);
  line-height: 1.28;
}

.manifesto__copy {
  max-width: 500px;
  color: #56524f;
  font-size: 1.04rem;
  line-height: 1.8;
}

.manifesto__copy p {
  margin: 0 0 24px;
}

.orbit-wrap {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 70px;
  margin-top: 125px;
  padding: 85px;
  background: var(--black);
  color: var(--white);
}

.micro-label {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.orbit-copy h3 {
  margin: 24px 0 25px;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.orbit-copy p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
}

.orbit {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  justify-self: end;
}

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

.orbit__ring::before,
.orbit__ring::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(223, 16, 40, 0.9);
}

.orbit__ring--outer {
  inset: 4%;
  animation: spin 26s linear infinite;
}

.orbit__ring--outer::before {
  top: 9%;
  left: 17%;
}

.orbit__ring--outer::after {
  right: 4%;
  bottom: 27%;
}

.orbit__ring--inner {
  inset: 24%;
  animation: spin-reverse 18s linear infinite;
}

.orbit__ring--inner::before {
  top: -4px;
  left: 50%;
}

.orbit__ring--inner::after {
  right: 11%;
  bottom: 12%;
}

.orbit__core {
  position: absolute;
  z-index: 2;
  inset: 36%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0b0b0c;
  box-shadow: 0 0 70px rgba(223, 16, 40, 0.13);
  transform: rotate(45deg);
}

.orbit__core img {
  position: absolute;
  width: 76%;
  opacity: 0.46;
  transform: rotate(-45deg);
}

.orbit__core span {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
}

.orbit__node {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 7, 7, 0.9);
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.orbit__node--one { top: 6%; left: 10%; }
.orbit__node--two { top: 16%; right: 2%; }
.orbit__node--three { right: 0; bottom: 16%; }
.orbit__node--four { left: 8%; bottom: 10%; }
.orbit__node--five { left: -2%; top: 46%; }

.brand-marquee {
  overflow: hidden;
  padding: 20px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--red);
}

.brand-marquee > div {
  gap: 31px;
  animation-duration: 39s;
}

.brand-marquee span {
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.brand-marquee i {
  color: var(--black);
}

.brands {
  position: relative;
  background: var(--black);
}

.brands__intro {
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr) 280px;
  align-items: end;
  gap: 62px;
  padding-top: 145px;
  padding-bottom: 115px;
}

.brands__intro h2 {
  margin: 0;
  font-size: clamp(3.8rem, 6.6vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 0.89;
}

.brands__note {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.7;
}

.chapter-indicator {
  position: sticky;
  z-index: 20;
  top: calc(50vh - 42px);
  left: calc(100% - 62px);
  width: 42px;
  height: 84px;
  display: grid;
  place-items: center;
  margin-bottom: -84px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 0.61rem;
  pointer-events: none;
}

.chapter-indicator i {
  width: 1px;
  height: 25px;
  background: linear-gradient(var(--red), rgba(255, 255, 255, 0.16));
}

.chapter-indicator span:first-child {
  color: var(--red);
}

.brand-story {
  --accent: var(--red);
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  padding: 125px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 17% 50%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 33%),
    var(--black);
}

.brand-story::before {
  content: attr(data-brand-story);
  position: absolute;
  right: -0.04em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.025);
  font-size: 42rem;
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 1;
  pointer-events: none;
}

.brand-story--founder { --accent: #df1028; }
.brand-story--click { --accent: #138dff; }
.brand-story--rpj { --accent: #ef112e; }
.brand-story--valorize { --accent: #e21732; }
.brand-story--joice { --accent: #d5aa58; }

.brand-story__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.83fr) minmax(420px, 1.17fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.brand-story__inner--reverse {
  grid-template-columns: minmax(420px, 1.17fr) minmax(360px, 0.83fr);
}

.brand-story__inner--reverse .brand-story__media {
  grid-column: 2;
  grid-row: 1;
}

.brand-story__inner--reverse .brand-story__copy {
  grid-column: 1;
  grid-row: 1;
}

.brand-story__media {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.poster {
  height: min(72vh, 720px);
  min-height: 570px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050506;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.45);
  clip-path: inset(8% 8% 8% 8%);
  opacity: 0.55;
  transition: clip-path 950ms cubic-bezier(0.16, 1, 0.3, 1), opacity 800ms ease;
}

.brand-story.is-active .poster {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.06);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-story.is-active .poster img {
  transform: scale(1);
}

.poster--square {
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
}

.poster--square img {
  object-fit: cover;
}

.founder-logo {
  background: #fff;
}

.founder-logo img {
  object-fit: contain;
}

.founder-logo::after {
  background: linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.86));
}

.poster__glow {
  position: absolute;
  z-index: -1;
  inset: 20%;
  background: var(--accent);
  filter: blur(90px);
  opacity: 0.24;
}

.poster__caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-story__copy {
  max-width: 650px;
}

.brand-index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 37px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-index::after {
  content: "";
  width: 65px;
  height: 1px;
  background: currentColor;
}

.brand-story__copy h3 {
  margin: 0;
  font-size: clamp(4rem, 7.2vw, 8.2rem);
  font-weight: 500;
  letter-spacing: -0.078em;
  line-height: 0.82;
}

.brand-story__copy h3 sup {
  position: relative;
  top: -0.3em;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.14em;
  letter-spacing: 0.04em;
}

.brand-story__copy h3 em {
  display: block;
  color: var(--accent);
  font-size: 0.72em;
  line-height: 1;
}

.brand-tagline {
  max-width: 610px;
  margin: 39px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2.35rem);
  line-height: 1.25;
}

.brand-description {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 1rem;
  line-height: 1.78;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.brand-tags li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.brand-tags li:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.valorize-visual {
  height: min(70vh, 670px);
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    radial-gradient(circle at center, rgba(223, 16, 40, 0.22), transparent 42%),
    #080809;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.42);
}

.valorize-visual::before,
.valorize-visual::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: spin 19s linear infinite;
}

.valorize-visual::after {
  inset: 28%;
  border-color: rgba(223, 16, 40, 0.4);
  animation-direction: reverse;
  animation-duration: 13s;
}

.valorize-visual__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(223, 16, 40, 0.56);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: visual-pulse 2.8s ease-out infinite;
}

.valorize-visual__words {
  position: absolute;
  top: 50%;
  left: -22%;
  width: 145%;
  display: grid;
  gap: 18px;
  transform: translateY(-50%) rotate(-11deg);
}

.valorize-visual__words span {
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.72;
  white-space: nowrap;
}

.valorize-visual > strong {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(7rem, 12vw, 13rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  transform: translate(-50%, -54%);
  text-shadow: 0 0 55px rgba(223, 16, 40, 0.35);
}

.valorize-visual > small {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.valorize-visual__network i {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 15px var(--red);
}

.valorize-visual__network i:nth-child(1) { top: 15%; left: 24%; }
.valorize-visual__network i:nth-child(2) { top: 27%; right: 17%; }
.valorize-visual__network i:nth-child(3) { right: 13%; bottom: 24%; }
.valorize-visual__network i:nth-child(4) { bottom: 17%; left: 21%; }
.valorize-visual__network i:nth-child(5) { top: 50%; left: 50%; }

.operating {
  padding: 150px 0;
  background: var(--paper-2);
  color: var(--black);
}

.operating__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 110px;
}

.operating__sticky {
  position: sticky;
  top: 125px;
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 38px;
}

.operating__sticky .section-code {
  grid-row: 1 / span 3;
}

.operating__sticky .kicker {
  grid-column: 2;
}

.operating__sticky h2 {
  grid-column: 2;
  margin: 0;
  font-size: clamp(3.8rem, 6vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.83;
}

.operating__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.operating__steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 30px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line-dark);
}

.operating__steps li > span {
  padding-top: 7px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.operating__steps h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.operating__steps p {
  max-width: 520px;
  margin: 13px 0 0;
  color: #625e59;
  font-size: 0.98rem;
  line-height: 1.7;
}

.leadership {
  position: relative;
  overflow: hidden;
  padding: 150px 0 130px;
  background: #0a0a0b;
  isolation: isolate;
}

.leadership__grid {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  mask-image: linear-gradient(90deg, transparent, black 45%, transparent);
}

.leadership__heading {
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr) 320px;
  align-items: end;
  gap: 62px;
}

.leadership__heading h2 {
  margin: 0;
  font-size: clamp(3.7rem, 6.3vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 0.9;
}

.leadership__intro {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.92rem;
  line-height: 1.72;
}

.leaders {
  margin-top: 100px;
  border-top: 1px solid var(--line);
}

.leader {
  position: relative;
  min-height: 148px;
  display: grid;
  grid-template-columns: 65px minmax(310px, 1fr) 320px;
  align-items: center;
  gap: 34px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: padding 250ms ease, background 250ms ease;
}

.leader:hover {
  padding-inline: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.leader__index {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.leader h3 {
  margin: 0 0 6px;
  font-size: clamp(1.65rem, 3vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.leader div p,
.leader__focus {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.leader > i {
  position: absolute;
  right: 25px;
  top: 50%;
  color: var(--red);
  font-family: var(--serif);
  font-size: 8rem;
  font-style: italic;
  line-height: 1;
  opacity: 0;
  transform: translateY(-35%) translateX(40px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.leader:hover > i {
  opacity: 0.18;
  transform: translateY(-50%) translateX(0);
}

.contact {
  position: relative;
  min-height: 820px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.contact__image,
.contact__shade {
  position: absolute;
  inset: -8%;
}

.contact__image {
  z-index: -3;
  background: url("./hero-cidade.webp") center 60% / cover no-repeat;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.12);
}

.contact__shade {
  z-index: -2;
  background: rgba(4, 4, 4, 0.84);
  backdrop-filter: grayscale(1);
}

.contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -40%;
  left: 50%;
  width: 1px;
  height: 180%;
  background: linear-gradient(transparent, var(--red), transparent);
  box-shadow: 0 0 45px rgba(223, 16, 40, 0.3);
  transform: rotate(27deg);
}

.contact__inner {
  padding: 130px 0;
  text-align: center;
}

.contact__symbol {
  width: 80px;
  margin: 0 auto 36px;
  filter: drop-shadow(0 0 24px rgba(223, 16, 40, 0.28));
}

.contact .kicker {
  justify-content: center;
}

.contact h2 {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(4.3rem, 8.4vw, 9.5rem);
  font-weight: 500;
  letter-spacing: -0.078em;
  line-height: 0.83;
}

.contact__copy {
  margin: 39px auto 0;
  color: rgba(255, 255, 255, 0.54);
}

.contact__actions {
  max-width: 930px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 45px auto 0;
}

.contact-card {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 7, 7, 0.66);
  text-align: left;
  backdrop-filter: blur(13px);
  transition: background 220ms ease, border-color 220ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.contact-card span {
  font-size: 1rem;
  font-weight: 700;
}

.contact-card small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-card i {
  font-style: normal;
  font-size: 1.2rem;
}

.contact__phone {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer {
  padding: 57px 0 32px;
  background: #040404;
  color: var(--white);
}

.footer__top,
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.footer__top {
  padding-bottom: 43px;
}

.footer__logo {
  width: 230px;
}

.footer__brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
}

.footer__toplink {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
}

.footer__social-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: stretch;
  gap: 35px;
  padding: 31px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-row > p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__social-row > p span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(223, 16, 40, 0.11);
}

.footer__socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__socials a {
  position: relative;
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 17px 44px 17px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 220ms ease, color 220ms ease;
}

.footer__socials a:first-child {
  border-left: 0;
}

.footer__socials a:hover,
.footer__socials a:focus-visible {
  background: var(--white);
  color: var(--black);
}

.footer__socials a > span {
  font-size: 0.84rem;
  font-weight: 700;
}

.footer__socials small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.37);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer__socials a:hover small,
.footer__socials a:focus-visible small {
  color: rgba(7, 7, 7, 0.55);
}

.footer__socials i {
  position: absolute;
  top: 17px;
  right: 18px;
  color: var(--red);
  font-style: normal;
}

.footer__bottom {
  align-items: flex-end;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__legal {
  max-width: 780px;
  display: grid;
  gap: 6px;
}

.footer__legal strong {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.footer__legal address {
  max-width: 720px;
  font-style: normal;
  line-height: 1.65;
}

.footer__meta {
  display: grid;
  flex: 0 0 auto;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  z-index: 990;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 9px 18px 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: #25d366;
  color: #051c0e;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), 0 0 0 0 rgba(37, 211, 102, 0.34);
  opacity: 0;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.is-ready .whatsapp-float {
  animation: whatsapp-enter 520ms 520ms ease forwards;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  border: 1px solid rgba(37, 211, 102, 0.72);
  border-radius: inherit;
  animation: whatsapp-pulse 2.8s 1.4s ease-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #5aeb8b;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.46), 0 0 0 7px rgba(37, 211, 102, 0.13);
  transform: translateY(-4px);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
}

.whatsapp-float svg path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.whatsapp-float svg path:last-child {
  fill: currentColor;
}

.whatsapp-float > span {
  display: grid;
  line-height: 1.05;
}

.whatsapp-float strong {
  font-size: 0.76rem;
  letter-spacing: 0.01em;
}

.whatsapp-float small {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 760ms ease var(--reveal-delay, 0ms),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

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

.magnetic {
  will-change: transform;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

@keyframes intro-logo {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes intro-rule {
  0% { transform: translateX(-100%); }
  55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

@keyframes intro-copy {
  to { opacity: 1; }
}

@keyframes hero-line {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

@keyframes signal-pulse {
  0%, 100% { transform: scale(0.85); opacity: 0.65; }
  50% { transform: scale(1.2); opacity: 1; }
}

@keyframes visual-pulse {
  0% { opacity: 0.65; transform: translate(-50%, -50%) scale(0.55); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.15); }
}

@keyframes whatsapp-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes whatsapp-pulse {
  0% { opacity: 0.6; transform: scale(0.98); }
  72%, 100% { opacity: 0; transform: scale(1.24); }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 64px, 1020px);
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(4.8rem, 10vw, 8.5rem);
  }

  .manifesto__body {
    padding-left: 145px;
  }

  .orbit-wrap {
    padding: 65px;
  }

  .brands__intro,
  .leadership__heading {
    grid-template-columns: 90px minmax(0, 1fr) 240px;
    gap: 40px;
  }

  .brand-story__inner,
  .brand-story__inner--reverse {
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    gap: 70px;
  }

  .brand-story__copy h3 {
    font-size: clamp(3.6rem, 7vw, 6.8rem);
  }

  .operating__inner {
    gap: 65px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 44px, 760px);
  }

  .header__inner {
    min-height: 70px;
  }

  .logo {
    width: 195px;
    height: 49px;
  }

  .logo img {
    width: 195px;
    height: 49px;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 90px 34px 40px;
    background: rgba(6, 6, 6, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 220ms ease, visibility 220ms, transform 220ms ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav > a:not(.nav__cta) {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 1.65rem;
  }

  .nav > a:not(.nav__cta)::after {
    display: none;
  }

  .nav__cta {
    min-height: 60px;
    margin-top: 34px;
    font-size: 1rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero__media {
    background-position: 64% center;
  }

  .hero__wash {
    background: linear-gradient(90deg, rgba(4, 4, 4, 0.96), rgba(4, 4, 4, 0.66)), linear-gradient(0deg, rgba(4, 4, 4, 0.72), transparent 60%);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 115px;
  }

  .hero__signal,
  .hero__side {
    display: none;
  }

  .hero__foot {
    max-width: 700px;
  }

  .manifesto {
    padding: 110px 0;
  }

  .manifesto__top {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 37px;
  }

  .manifesto__body {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-left: 115px;
  }

  .orbit-wrap {
    grid-template-columns: 1fr;
    padding: 55px;
  }

  .orbit {
    justify-self: center;
  }

  .brands__intro,
  .leadership__heading {
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: start;
  }

  .brands__note,
  .leadership__intro {
    grid-column: 2;
    max-width: 440px;
    margin-top: 15px;
  }

  .brand-story {
    min-height: 0;
    padding: 100px 0;
  }

  .brand-story__inner,
  .brand-story__inner--reverse {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .brand-story__inner--reverse .brand-story__media,
  .brand-story__inner--reverse .brand-story__copy {
    grid-column: 1;
  }

  .brand-story__inner--reverse .brand-story__media {
    grid-row: 1;
  }

  .brand-story__inner--reverse .brand-story__copy {
    grid-row: 2;
  }

  .poster,
  .valorize-visual {
    width: min(100%, 570px);
    justify-self: center;
  }

  .chapter-indicator {
    display: none;
  }

  .operating__inner {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .operating__sticky {
    position: relative;
    top: auto;
  }

  .leader {
    grid-template-columns: 48px 1fr;
    padding: 29px 0;
  }

  .leader__focus {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 34px);
  }

  html {
    scroll-padding-top: 68px;
  }

  .pointer-aura {
    display: none;
  }

  .header__inner {
    min-height: 68px;
  }

  .logo,
  .logo img {
    width: 176px;
    height: 44px;
  }

  .hero {
    min-height: 720px;
    height: 100svh;
  }

  .hero__inner {
    padding-top: 95px;
    padding-bottom: 104px;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6.3rem);
    line-height: 0.83;
  }

  .hero__foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
    margin-top: 32px;
  }

  .hero__foot > p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .round-link {
    width: 100px;
    height: 100px;
  }

  .kinetic {
    padding-block: 10px;
  }

  .section-code {
    display: none;
  }

  .manifesto {
    padding: 83px 0;
  }

  .manifesto__top,
  .manifesto__body {
    display: block;
    padding-left: 0;
  }

  .manifesto__statement h2 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .manifesto__accent {
    margin-top: 17px;
    font-size: 2rem;
  }

  .manifesto__body {
    margin-top: 60px;
  }

  .manifesto__copy {
    margin-top: 32px;
  }

  .orbit-wrap {
    gap: 42px;
    margin-top: 78px;
    padding: 35px 22px;
  }

  .orbit-copy h3 {
    font-size: 2.35rem;
  }

  .orbit {
    width: 100%;
  }

  .orbit__node {
    padding: 6px 8px;
    font-size: 0.53rem;
  }

  .brands__intro,
  .leadership__heading {
    display: block;
    padding-top: 85px;
    padding-bottom: 70px;
  }

  .brands__intro h2,
  .leadership__heading h2 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .brands__note,
  .leadership__intro {
    margin-top: 28px;
  }

  .brand-story {
    padding: 75px 0;
  }

  .brand-story::before {
    font-size: 22rem;
  }

  .brand-story__inner,
  .brand-story__inner--reverse {
    gap: 47px;
  }

  .poster,
  .valorize-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .poster--square {
    aspect-ratio: 1;
  }

  .brand-story__copy h3 {
    font-size: clamp(3.7rem, 17vw, 5.6rem);
  }

  .brand-story__copy h3 em {
    font-size: 0.64em;
  }

  .brand-index {
    margin-bottom: 28px;
  }

  .brand-tagline {
    margin-top: 30px;
    font-size: 1.45rem;
  }

  .brand-description {
    font-size: 0.96rem;
  }

  .operating {
    padding: 85px 0;
  }

  .operating__sticky {
    display: block;
  }

  .operating__sticky h2 {
    font-size: clamp(3.9rem, 18vw, 5.8rem);
  }

  .operating__steps li {
    grid-template-columns: 39px 1fr;
    gap: 16px;
    padding: 35px 0;
  }

  .leadership {
    padding-bottom: 90px;
  }

  .leaders {
    margin-top: 20px;
  }

  .leader {
    min-height: 155px;
    gap: 14px;
  }

  .leader__focus {
    line-height: 1.6;
  }

  .leader > i {
    display: none;
  }

  .contact {
    min-height: 760px;
  }

  .contact__image,
  .contact__shade {
    inset: 0;
  }

  .contact__image {
    background-image: url("./hero-cidade-mobile.webp");
    background-position: center;
    transform: none;
  }

  .contact__inner {
    padding: 95px 0;
  }

  .contact__symbol {
    width: 65px;
  }

  .contact h2 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

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

  .contact-card {
    min-height: 96px;
  }

  .footer__top,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__brands {
    justify-content: flex-start;
  }

  .footer__social-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .footer__socials a {
    min-height: 76px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .footer__socials a:first-child {
    border-top: 0;
  }

  .footer__meta {
    justify-items: start;
    text-align: left;
  }

  .whatsapp-float {
    right: max(17px, env(safe-area-inset-right));
    bottom: max(17px, env(safe-area-inset-bottom));
    width: 60px;
    min-height: 60px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float > span {
    display: none;
  }
}

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

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

  .intro {
    display: none !important;
  }

  .reveal,
  .hero-line,
  .hero__kicker,
  .hero__foot,
  .hero__signal {
    opacity: 1 !important;
    transform: none !important;
  }

  .poster {
    clip-path: none;
    opacity: 1;
  }
}
