:root {
  --navy: #192033;
  --navy-deep: #0d1322;
  --gold: #c6a17e;
  --gold-light: #e2c8ad;
  --sand: #c8b4a1;
  --slate: #515766;
  --ivory: #f5f2ed;
  --white: #ffffff;
  --graphite: #252728;

  --paper: var(--ivory);
  --paper-deep: var(--navy-deep);
  --ink: var(--navy);
  --muted: rgba(25, 32, 51, .64);
  --line: rgba(25, 32, 51, .14);

  --serif: "Cormorant Garamond", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --header-height: 6rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper-deep);
}

body {
  margin: 0;
  background: var(--paper-deep);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; }

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--gold);
  color: var(--navy-deep);
  padding: .7rem 1rem;
  text-decoration: none;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-height);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    background-color .35s ease,
    border-color .35s ease,
    color .35s ease,
    box-shadow .35s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 16, 30, .46);
  border-color: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.site-header.is-static {
  background: rgba(245, 242, 237, .92);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(13, 19, 34, .05);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  border-radius: .7rem;
  overflow: hidden;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, .14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: .72rem;
  letter-spacing: .18em;
}

.brand-copy small {
  margin-top: .22rem;
  font-size: .56rem;
  letter-spacing: .16em;
  opacity: .68;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 3rem);
}

.site-nav a,
.menu-toggle {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: .5rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .25rem;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }

.menu-toggle {
  display: none;
  border: 0;
  padding: .5rem 0;
  background: transparent;
  color: inherit;
}

.page-shell {
  position: relative;
  background: var(--paper-deep);
}

.video-stage {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 25%, rgba(198, 161, 126, .12), transparent 28%),
    linear-gradient(180deg, #0d1322, #151d30 70%, #101625);
}

.background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .65s ease;
}

.video-stage.is-ready .background-video { opacity: 1; }

.video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.video-placeholder span {
  color: rgba(255, 255, 255, .46);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .68rem;
}

.video-stage.is-ready .video-placeholder {
  opacity: 0;
  visibility: hidden;
}

.video-stage.has-error .video-placeholder span {
  color: var(--gold-light);
  max-width: 26rem;
  text-align: center;
}

.video-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 8, 17, .22), transparent 30%, transparent 72%, rgba(4, 8, 17, .38)),
    radial-gradient(circle at center, transparent 28%, rgba(4, 8, 17, .34) 100%);
}

.global-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(8, 12, 22, .36);
  pointer-events: none;
  transition: opacity .4s ease;
}

.immersive-sections {
  position: relative;
  z-index: 2;
}

.panel,
.details-section,
.ecosystems-section,
.brands-section,
.method-section,
.segments-section,
.manifesto-section,
.contact-section {
  min-height: 100vh;
  position: relative;
  padding: calc(var(--header-height) + 3rem) var(--gutter) 3rem;
}

.panel {
  display: grid;
  align-items: center;
  color: var(--white);
}

.panel__content {
  width: min(100%, 39rem);
  will-change: transform, opacity, filter;
}

.panel--center {
  justify-items: center;
  text-align: center;
}

.panel--center .panel__content {
  width: min(100%, 70rem);
}

.panel--left { justify-items: start; }
.panel--right { justify-items: end; }

.panel--right .panel__content { text-align: right; }

.eyebrow {
  margin: 0 0 1.55rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

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

h1,
h2,
blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .94;
  text-wrap: balance;
}

h1 { font-size: clamp(4rem, 10vw, 9.5rem); }
h2 { font-size: clamp(3rem, 6.2vw, 6.5rem); }

.panel__content > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 2rem 0 0;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.panel__content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .76);
}

.panel--right .panel__content > p:not(.eyebrow) { margin-left: auto; }
.hero-copy .lead { margin-inline: auto !important; }

.text-link,
.contact-link {
  display: inline-flex;
  gap: .75rem;
  align-items: center;
  margin-top: 3rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: .5rem;
}

.panel .text-link {
  color: var(--gold-light);
}

.section-index {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  margin: 0;
  font-size: .66rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.54);
}

.light-section {
  z-index: 4;
  background:
    radial-gradient(circle at 88% 12%, rgba(198, 161, 126, .11), transparent 20%),
    var(--ivory);
  color: var(--navy);
}

.light-section .eyebrow { color: var(--gold); }
.light-section .section-index { color: rgba(25,32,51,.46); }

.dark-section {
  z-index: 4;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(198, 161, 126, .12), transparent 25%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.dark-section .eyebrow { color: var(--gold-light); }
.dark-section .section-index { color: rgba(255,255,255,.45); }

.section-heading {
  align-self: center;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.dark-section .section-heading > p:not(.eyebrow) {
  color: rgba(255,255,255,.68);
}

.details-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, .9fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: center;
}

.facts-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.facts-list div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.facts-list dt {
  color: rgba(25,32,51,.52);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}

.facts-list dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.3;
}

.ecosystems-section {
  display: grid;
  grid-template-columns: minmax(16rem, .38fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.ecosystems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ecosystem-card {
  min-height: 17rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.46);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 161, 126, .5);
  box-shadow: 0 24px 60px rgba(13, 19, 34, .08);
}

.ecosystem-card--dark {
  background: var(--navy);
  color: var(--white);
  border-color: rgba(255,255,255,.08);
}

.ecosystem-card--gold {
  background: linear-gradient(145deg, rgba(198,161,126,.32), rgba(255,255,255,.58));
}

.ecosystem-card--wide {
  grid-column: span 2;
  min-height: 15rem;
}

.card-number {
  font-size: .66rem;
  letter-spacing: .16em;
  opacity: .5;
}

.card-kicker {
  margin: 0 0 .8rem;
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}

.ecosystem-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.ecosystem-card > p {
  margin: 0;
  color: rgba(25,32,51,.62);
  font-size: .92rem;
  max-width: 34rem;
}

.ecosystem-card--dark > p { color: rgba(255,255,255,.64); }

.brands-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.brands-section .section-heading {
  width: min(100%, 62rem);
}

.brands-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: clamp(3rem, 6vw, 6rem);
}

.brands-marquee span {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  color: rgba(255,255,255,.82);
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.brands-marquee span:hover {
  color: var(--gold-light);
  border-color: rgba(198,161,126,.48);
  background: rgba(198,161,126,.08);
}

.brands-note {
  margin-top: clamp(3rem, 6vw, 6rem);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2rem;
}

.brands-note p {
  margin: 0;
  color: rgba(255,255,255,.62);
}

.brands-note strong { color: var(--gold-light); }

.method-section {
  display: grid;
  grid-template-columns: minmax(16rem, .42fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

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

.method-list li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.method-list li > span {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.method-list strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.method-list p {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.segments-section {
  display: grid;
  grid-template-columns: minmax(16rem, .42fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

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

.segment-list > div {
  display: grid;
  grid-template-columns: 3rem minmax(12rem, .75fr) minmax(0, 1.25fr);
  gap: 1.25rem;
  align-items: start;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.segment-list span {
  font-size: .64rem;
  letter-spacing: .14em;
  color: var(--gold);
}

.segment-list strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.25;
}

.segment-list p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.manifesto-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, .85fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: center;
}

.manifesto-copy blockquote {
  max-width: 14ch;
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  color: var(--white);
}

.manifesto-copy blockquote em {
  color: var(--gold-light);
  font-style: normal;
}

.manifesto-copy > p:last-child {
  margin: 2rem 0 0;
  color: rgba(255,255,255,.62);
}

.manifesto-values {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.14);
}

.manifesto-values span {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  color: rgba(255,255,255,.72);
}

.contact-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.contact-copy {
  margin: auto;
  width: min(100%, 78rem);
}

.contact-copy h2 {
  font-size: clamp(3.2rem, 7vw, 7.4rem);
}

.contact-copy > p:not(.eyebrow) { margin-inline: auto; }

.contact-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.contact-link {
  margin-top: 1rem;
}

.contact-link--primary {
  color: var(--navy);
  border-color: var(--gold);
}

.site-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .62rem;
  color: var(--muted);
}

.site-footer p { margin: 0; }
.site-footer p:nth-child(2) { text-align: center; }
.site-footer p:last-child { text-align: right; }

.immersive-progress {
  position: fixed;
  z-index: 20;
  left: var(--gutter);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(255,255,255,.62);
  pointer-events: none;
  transition: opacity .35s ease;
}

.immersive-progress.is-hidden { opacity: 0; }

.immersive-progress__label {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .58rem;
}

.immersive-progress__track {
  display: block;
  width: 5rem;
  height: 1px;
  background: rgba(255,255,255,.22);
  overflow: hidden;
}

.immersive-progress__track i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold-light);
}

.immersive-progress__number {
  min-width: 1.5rem;
  font-size: .62rem;
  letter-spacing: .12em;
}

@media (max-width: 900px) {
  .details-section,
  .ecosystems-section,
  .method-section,
  .segments-section,
  .manifesto-section {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 3.5rem;
  }

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

  .ecosystem-card--wide {
    grid-column: auto;
  }

  .segment-list > div {
    grid-template-columns: 2.5rem 1fr;
  }

  .segment-list p {
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  :root { --header-height: 4.8rem; }

  .site-header {
    color: var(--navy);
    background: rgba(245,242,237,.94);
    border-color: var(--line);
    backdrop-filter: blur(12px);
  }

  .brand-mark {
    width: 2.8rem;
    height: 2.8rem;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: .7rem;
    cursor: pointer;
  }

  .menu-icon,
  .menu-icon::before {
    display: block;
    width: 1.2rem;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease;
  }

  .menu-icon { position: relative; }

  .menu-icon::before {
    content: "";
    position: absolute;
    transform: translateY(5px);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon::before { transform: rotate(-90deg); }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    background: var(--paper);
    color: var(--navy);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem;
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s;
  }

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

  .site-nav a {
    padding: .8rem 0;
    border-bottom: 1px solid var(--line);
  }

  .video-placeholder span {
    max-width: 16rem;
    text-align: center;
  }

  .panel,
  .details-section,
  .ecosystems-section,
  .brands-section,
  .method-section,
  .segments-section,
  .manifesto-section,
  .contact-section {
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 4rem;
  }

  .panel { align-items: end; }
  .panel--center { align-items: center; }
  .panel--left,
  .panel--right { justify-items: start; }

  .panel--right .panel__content { text-align: left; }
  .panel--right .panel__content > p:not(.eyebrow) { margin-left: 0; }

  h1 { font-size: clamp(3.5rem, 18vw, 6.5rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.8rem); }

  .facts-list div { grid-template-columns: 6.5rem 1fr; }

  .brands-note {
    align-items: start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer p:nth-child(2),
  .site-footer p:last-child { text-align: center; }

  .section-index { bottom: 1.25rem; }

  .immersive-progress {
    left: var(--gutter);
    bottom: 1.2rem;
  }
}

@media (max-width: 520px) {
  .brand-copy { display: none; }

  .method-list li {
    grid-template-columns: 3.3rem 1fr;
  }

  .segment-list > div {
    grid-template-columns: 2rem 1fr;
  }
}

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

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

/* Refinamento Bifulco: azul-marinho, dourado e tipografia proporcional. */
:root { --card-image-opacity: .30; }
html { scroll-padding-top: calc(var(--header-height) + 1rem); }
.video-stage { position: fixed; height:100vh; height:100svh; pointer-events:none; }
.video-stage.is-past { visibility:hidden; }
.global-overlay { background:rgba(8,12,22,.24); }
h1 {font-size:clamp(2.65rem,6.1vw,5.8rem);line-height:1.07;letter-spacing:-.035em;}
h2 {font-size:clamp(2.15rem,4.1vw,4.15rem);line-height:1.12;letter-spacing:-.025em;}
.panel {min-height:100svh;}
.panel__content {padding:clamp(1.4rem,3.2vw,3rem);border-left:1px solid rgba(226,200,173,.5);background:linear-gradient(105deg,rgba(13,19,34,.78),rgba(13,19,34,.28));will-change:auto;}
.panel--center .panel__content {width:min(100%,62rem);border-left:0;border-top:1px solid rgba(226,200,173,.5);}
.panel__content > p:not(.eyebrow) {color:#eeeef1;margin-top:1.5rem;}
.panel--right .panel__content {text-align:left;}
.panel--right .panel__content > p:not(.eyebrow) {margin-left:0;}
.eyebrow,.card-kicker,.facts-list dt,.site-nav a,.menu-toggle,.text-link,.contact-link,.manifesto-values span {font-size:.875rem;letter-spacing:.10em;}
.brand-copy strong {font-size:.875rem;}.brand-copy small{font-size:.75rem;}
.brand-mark {width:4rem;height:4rem;border:0;border-radius:0;}.brand-mark img{object-fit:contain;}
.section-index,.card-number,.site-footer,.immersive-progress__label,.immersive-progress__number,.segment-list span {font-size:.75rem;}
.ecosystems-section {grid-template-columns:1fr;gap:3rem;}
.ecosystems-section .section-heading {max-width:52rem;}
.ecosystems-grid {grid-template-columns:repeat(2,minmax(0,1fr));gap:1.4rem;}
.ecosystem-card {position:relative;isolation:isolate;overflow:hidden;min-height:23rem;background:#0d1322;color:white;border:1px solid rgba(198,161,126,.35);gap:1.6rem;}
.ecosystem-card::before {content:'';position:absolute;inset:0;z-index:-1;background-image:var(--card-image);background-size:cover;background-position:center;opacity:var(--card-image-opacity);transition:transform .6s ease;}
.ecosystem-card:hover::before {transform:scale(1.045);}
.ecosystem-card h3 {font-size:clamp(1.9rem,2.8vw,2.7rem);line-height:1.13;}
.ecosystem-card > p {font-size:1rem;color:#f1f0f3;}
.card-kicker{color:var(--gold-light);}.card-number{opacity:.85;color:var(--gold-light);}
.brands-marquee {display:block;overflow:hidden;margin-top:3rem;mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);}
.brands-track{display:flex;width:max-content;animation:brands-scroll 44s linear infinite;}
.brands-group{display:flex;gap:1rem;padding-right:1rem;align-items:stretch;}
.brand-tile{width:200px;min-height:120px;background:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:1.2rem;gap:.6rem;border-radius:3px;}
.brand-tile img{max-width:160px;width:100%;height:62px;object-fit:contain;}
.brands-marquee .brand-tile span{border:0;padding:0;background:none;color:var(--navy);font:500 .875rem var(--sans);}
.brands-marquee:hover .brands-track,.brands-marquee:focus-within .brands-track,.brands-marquee.is-paused .brands-track{animation-play-state:paused;}
.carousel-toggle{align-self:flex-start;margin-top:1.3rem;padding:.7rem 1rem;background:transparent;color:var(--gold-light);border:1px solid #c6a17e;font:500 .875rem var(--sans);cursor:pointer;}
@keyframes brands-scroll {to{transform:translateX(-50%);}}
.contact-copy{max-width:64rem;}.contact-copy h2{font-size:clamp(2.2rem,4.6vw,4.6rem);line-height:1.12;}
.contact-actions{margin-bottom:4rem;}.contact-link{overflow-wrap:anywhere;}
.manifesto-copy blockquote{font-size:clamp(2.5rem,4.8vw,4.7rem);line-height:1.15;max-width:22ch;}
.method-list p,.segment-list p{font-size:1rem;}.method-list strong,.segment-list strong{font-size:1.35rem;}
a:focus-visible,button:focus-visible{outline:2px solid var(--gold);outline-offset:5px;}
@media(max-width:780px){
 .site-header.is-scrolled{background:rgba(245,242,237,.96);color:var(--navy);}
 .panel{align-items:center;padding-inline:1.25rem;}.panel__content{padding:1.5rem;}
 .ecosystems-grid{grid-template-columns:1fr;}.ecosystem-card--wide{grid-column:auto;}
 .brand-copy{display:grid;}.brand-mark{width:3rem;height:3rem;}
 .eyebrow{font-size:.75rem;letter-spacing:.08em;}
 .facts-list div{grid-template-columns:1fr;gap:.4rem;}
 .site-footer{font-size:.75rem;}.brands-note{margin-top:2rem;}
}
@media(prefers-reduced-motion:reduce){.brands-track{animation:none;width:auto;}.brands-group{flex-wrap:wrap;}.brands-group[aria-hidden]{display:none;}.brands-marquee{mask-image:none;}.brand-tile{width:150px;}.carousel-toggle{display:none;}}

.brand-tile--navy{background:#192033;border:1px solid #515766}.brands-marquee .brand-tile--navy span{color:#fff;}

/* =========================================================
   ECOSYSTEM CARD COM IMAGEM
   Nova classe independente
========================================================= */

.ecosystem-cardimagem {
  position: relative;

  width: 100%;
  min-height: 420px;

  display: flex;
  align-items: flex-end;

  overflow: hidden;

  border-radius: 24px;

  background: #09090b;

  border: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================================
   IMAGEM
========================================================= */

.ecosystem-cardimagem__imagem {
  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;

  width: 60%;
  height: 100%;

  z-index: 1;
}


.ecosystem-cardimagem__imagem img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  /*
     Controla onde a imagem fica posicionada.
     "center" = centralizada
     "right center" = prioriza o lado direito
  */

  object-position: right center;
}


/* =========================================================
   GRADIENTE ENTRE TEXTO E IMAGEM
========================================================= */

.ecosystem-cardimagem__overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      #09090b 0%,
      #09090b 30%,
      rgba(9, 9, 11, 0.92) 42%,
      rgba(9, 9, 11, 0.60) 60%,
      rgba(9, 9, 11, 0.10) 100%
    );
}


/* =========================================================
   NÚMERO DO CARD
========================================================= */

.ecosystem-cardimagem__numero {
  position: absolute;

  top: 28px;
  left: 32px;

  z-index: 4;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 0.12em;

  color: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   CONTEÚDO
========================================================= */

.ecosystem-cardimagem__conteudo {
  position: relative;

  z-index: 3;

  width: 58%;

  padding:
    80px
    40px
    40px
    32px;
}


/* =========================================================
   PEQUENO TÍTULO
========================================================= */

.ecosystem-cardimagem__kicker {
  margin: 0 0 14px 0;

  font-size: 13px;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  color: #c8a688;
}


/* =========================================================
   TÍTULO PRINCIPAL
========================================================= */

.ecosystem-cardimagem__conteudo h3 {
  margin: 0;

  max-width: 680px;

  font-size: clamp(26px, 3vw, 44px);

  line-height: 1.08;

  letter-spacing: -0.03em;

  color: #ffffff;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.ecosystem-cardimagem__descricao {
  margin: 24px 0 0;

  max-width: 560px;

  font-size: 16px;

  line-height: 1.65;

  color: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   EFEITO HOVER
========================================================= */

.ecosystem-cardimagem__imagem img {
  transition: transform 0.8s ease;
}

.ecosystem-cardimagem:hover .ecosystem-cardimagem__imagem img {
  transform: scale(1.04);
}


/* =========================================================
   RESPONSIVO - TABLET / CELULAR
========================================================= */

@media (max-width: 768px) {

  .ecosystem-cardimagem {
    min-height: 520px;

    align-items: flex-end;
  }


  .ecosystem-cardimagem__imagem {
    width: 100%;
    height: 100%;
  }


  .ecosystem-cardimagem__imagem img {
    object-position: center;
  }


  .ecosystem-cardimagem__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(9, 9, 11, 0.05) 0%,
        rgba(9, 9, 11, 0.25) 30%,
        rgba(9, 9, 11, 0.88) 65%,
        #09090b 100%
      );
  }


  .ecosystem-cardimagem__conteudo {
    width: 100%;

    padding:
      100px
      24px
      30px
      24px;
  }


  .ecosystem-cardimagem__numero {
    top: 22px;
    left: 24px;
  }


  .ecosystem-cardimagem__conteudo h3 {
    font-size: clamp(25px, 8vw, 36px);
  }


  .ecosystem-cardimagem__descricao {
    font-size: 15px;
  }

}

/* =========================================================
   VIDEO DO ECOSYSTEM CARD
========================================================= */

.ecosystem-cardimagem__imagem video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: right center;
}

