:root {
  --ink: #0a0a0a;
  --panel: #131313;
  --panel-2: #171717;
  --gold: #ffd600;
  --white: #ffffff;
  --muted: #c1c1c1;
  --line: rgba(255, 255, 255, 0.1);
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --accent: #ffd600;
  --accent-border: rgba(255, 214, 0, 0.35);
  --accent-glow: rgba(255, 214, 0, 0.18);
  --neutral-600: rgba(255, 255, 255, 0.72);
  --neutral-500: rgba(255, 255, 255, 0.6);
  --line-gold: rgba(255, 214, 0, 0.35);
  --sans: "Outfit", sans-serif;
  --maxw: 1160px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.customize-support .nav {
  top: 32px;
}

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

a {
  color: inherit;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
  scroll-margin-top: 84px;
}

/* ---------- kicker ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  display: inline-block;
}

h1,
h2,
h3 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

h2 em,
h1 em,
.hib em {
  font-style: italic;
  color: var(--gold);
}

.lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 640px;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav li {
  list-style: none;
}

.nav-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 130px;
  height: auto;
}

.brand span {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand b {
  color: var(--gold);
  font-weight: 800;
}

.nav-toggle {
  display: none;
}

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.nav-menu a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

.pill {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 11px 22px;
  transition: transform 0.15s ease, box-shadow 0.2s;
}

.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 214, 0, 0.25);
}

.pill:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.ghost {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 11px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s;
}

.ghost:hover,
.ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.animate-pulse {
  animation: pulse 1.8s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.animate-fade-slide {
  animation: fadeSlideIn 0.8s ease both;
}

.animate-fade-down {
  animation: fadeDown 0.8s ease both;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-dot {
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
}

.animate-on-scroll.on {
  animation: fadeSlideIn 0.8s ease-out both;
}

.anim-delay-1 {
  animation-delay: 0.2s;
}

.anim-delay-2 {
  animation-delay: 0.35s;
}

.anim-delay-3 {
  animation-delay: 0.5s;
}

@keyframes beam-drop {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes beam-slide {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

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

@keyframes count-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.rv.on.animate-fade-slide {
  animation: fadeSlideIn 0.7s ease both;
}

.rv.on.animate-fade-down {
  animation: fadeDown 0.7s ease both;
}

.glyph {
  animation: float 10s ease-in-out infinite;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

.iconify,
.step-icon {
  display: inline-flex;
  width: 1.2em;
  height: 1.2em;
  font-size: 1.2rem;
  vertical-align: middle;
  color: var(--gold);
}

.step-icon {
  margin-right: 10px;
}

.nav .pill {
  margin-left: 8px;
  padding: 9px 18px;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.72) 55%,
      var(--ink) 100%
    ),
    url("../imagens/hero.jpeg") center 30% / cover no-repeat;
  padding: 140px 0 90px;
  scroll-margin-top: 0;
}

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

.hero::before {
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 214, 0, 0.08),
    transparent 22%
  );
  transform: translateX(-20%);
  opacity: 0.7;
  filter: blur(18px);
  animation: beam-slide 18s linear infinite;
}

.hero::after {
  background: radial-gradient(
    circle at 70% 10%,
    rgba(255, 255, 255, 0.08),
    transparent 20%
  );
  transform: translateY(-20%);
  opacity: 0.65;
  filter: blur(14px);
  animation: beam-drop 20s linear infinite;
}

.hero .kicker,
.hero h1,
.hero .lead,
.hero-ctas,
.hero-addr {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeDown 0.88s ease both;
}

.hero .kicker {
  animation-delay: 0.12s;
}

.hero h1 {
  animation-delay: 0.18s;
}

.hero .lead {
  animation-delay: 0.28s;
}

.hero-ctas {
  animation-delay: 0.38s;
}

.hero-addr {
  animation-delay: 0.48s;
}

.hero .lead {
  color: #d8d8d8;
  margin: 22px 0 34px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-addr {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cfcfcf;
}

.hero-addr b {
  color: var(--gold);
  font-weight: 600;
}

/* ---------- o que é ---------- */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

#visao .section-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

#visao .section-title {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
}

#visao .section-title .accent {
  color: var(--gold);
}

#visao .section-body {
  max-width: 720px;
  color: var(--muted);
  margin-top: 12px;
  margin-bottom: 34px;
}

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

.pilar-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.pilar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.pilar-card:hover {
  /* background: rgba(255, 214, 0, 0.08); */
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 214, 0, 0.14);
  border-color: rgba(255, 214, 0, 0.35);
}

.pilar-card:hover::before {
  transform: scaleX(1);
}

.pilar-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.8rem;
  color: var(--gold);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.pilar-card:hover .pilar-icon {
  background: rgba(255, 214, 0, 0.12);
  border-color: rgba(255, 214, 0, 0.35);
}

.pilar-number {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 1rem;
}

.pilar-title {
  font-size: 1.4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--white);
}

.pilar-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.card h3 {
  font-size: 1.35rem;
  margin: 14px 0 10px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.glyph {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 700;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px 26px;
  transition: transform 0.28s ease, border-color 0.28s ease,
    box-shadow 0.28s ease, background-color 0.28s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-4px);
  /* background: rgba(255, 214, 0, 0.08); */
  border-color: rgba(255, 214, 0, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 214, 0, 0.14);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover h3 {
  color: var(--gold);
}

.card:hover p {
  color: #f1f1f1;
}

.card:hover .glyph {
  background: rgba(255, 214, 0, 0.12);
  border-color: rgba(255, 214, 0, 0.45);
}

/* ---------- visão geral (#ecossistema) ---------- */
#ecossistema {
  background-color: #ffd600;
  color: #0a0a0a;
}

#ecossistema .kicker {
  color: #0a0a0a;
}

#ecossistema .kicker::before {
  background: #0a0a0a;
}

#ecossistema h2,
#ecossistema h2 em {
  color: #0a0a0a;
}

#ecossistema .lead {
  color: #0a0a0a;
}

#ecossistema .card {
  background: #0a0a0a;
  border: 1px solid #0a0a0a;
  color: #ffffff;
}

#ecossistema .card::before {
  background: #ffd600;
}

#ecossistema .card h3 {
  color: #ffffff;
}

#ecossistema .card p {
  color: #c1c1c1;
}

#ecossistema .glyph {
  border-color: rgba(255, 214, 0, 0.35);
  color: #ffd600;
}

#ecossistema .card:hover {
  background: #0a0a0a;
  border-color: rgba(255, 214, 0, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 10, 10, 0.25);
}

#ecossistema .card:hover::before {
  background: #ffd600;
}

#ecossistema .card:hover h3 {
  color: #ffd600;
}

#ecossistema .card:hover p {
  color: #ffffff;
}

#ecossistema .card:hover .glyph {
  border-color: #ffd600;
  color: #ffd600;
  background: rgba(255, 214, 0, 0.15);
}

/* ---------- espaço ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}

.ph {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
}

.ph img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ph:hover img {
  transform: scale(1.03);
}

.ph figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.9));
  padding: 40px 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1000;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  width: min(100%, 1200px);
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-caption {
  color: #f4f4f4;
  font-size: 0.95rem;
  text-align: center;
  max-width: 92vw;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 2rem;
  padding: 10px;
  line-height: 1;
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
}

.lightbox-nav.prev {
  left: 18px;
}

.lightbox-nav.next {
  right: 18px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  color: var(--gold);
}

@media (max-width: 680px) {
  .lightbox-close,
  .lightbox-nav {
    font-size: 1.8rem;
  }
}

.ph .t {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
}

.ph .c {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.cap-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.espaco-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.espaco-item {
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 2px;
}

.espaco-item .t {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.espaco-item .c {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.cap-note b {
  color: var(--white);
}

.cap-note::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-4px);
  flex: none;
}

/* ---------- associado ---------- */
#associado {
  background: url(../imagens/592425051-conjunto-ou-sala-comercial-curitiba-centro.jpeg);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#associado::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1;
  pointer-events: none;
}

#associado > .wrap {
  position: relative;
  z-index: 2;
}

.assoc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3em;
  margin-top: 44px;
  align-items: stretch;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-size: 0.82rem;
  color: #d5d5d5;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em 3em;
}

.benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.15rem;
  color: var(--muted);
}

.benefit b {
  color: var(--white);
  font-weight: 600;
}

.benefit::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  line-height: 1.5;
}

.video-panel {
  background: var(--panel);
  border: 1px solid var(--line-gold);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  height: fit-content;
}

.video-panel .k {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.video-panel blockquote {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.25;
}

.video-panel p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- associação (#associado) ---------- */
#associado {
  background: #ffd600;
  color: #0a0a0a;
}

#associado::before {
  display: none;
}

#associado .kicker {
  color: #0a0a0a;
}

#associado .kicker::before {
  background: #0a0a0a;
}

#associado h2,
#associado h2 em {
  color: #0a0a0a;
}

#associado .lead {
  color: #0a0a0a;
}

#associado .chip {
  border-color: rgba(10, 10, 10, 0.25);
  color: #0a0a0a;
  background: rgba(10, 10, 10, 0.05);
}

#associado .benefit {
  color: #0a0a0a;
}

#associado .benefit b {
  color: #0a0a0a;
}

#associado .benefit::before {
  color: #0a0a0a;
}

#associado .video-panel {
  background: #0a0a0a;
  border: 1px solid #0a0a0a;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.15);
}

#associado .video-panel .k {
  color: #ffd600;
}

#associado .video-panel blockquote {
  color: #ffffff;
}

#associado .video-panel p {
  color: #c1c1c1;
}

/* ---------- três formas ---------- */

.modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.mode {
  border: 1px solid var(--line);
  padding: 30px 26px;
  background: var(--panel);
}

.mode .num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
}

.mode h3 {
  font-size: 1.15rem;
  margin: 10px 0 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
}

.mode ul {
  list-style: none;
}

.mode li {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 7px 0 7px 18px;
  position: relative;
}

.mode li::before {
  content: "·";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.modes-close {
  margin-top: 28px;
  font-family: var(--sans);
  font-style: italic;
  font-size: 1.2rem;
  color: #d9d9d9;
}

.modes-close em {
  color: var(--gold);
}

/* ---------- híbrido ---------- */
.hibrido {
  position: relative;
  background: url("../imagens/592425041-conjunto-ou-sala-comercial-curitiba-centro.jpeg")
    center/cover no-repeat;
  text-align: center;
}

.hibrido::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
  pointer-events: none;
}

.hibrido > .wrap {
  position: relative;
  z-index: 2;
}

.hib {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.2;
}

.hibrido p {
  color: var(--white);
  margin-top: 18px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- microssistemas ---------- */
.micro {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.ms,
.mode,
.video-panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.ms::before,
.mode::before,
.video-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.ms:hover,
.mode:hover,
.video-panel:hover {
  background: rgba(255, 214, 0, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 214, 0, 0.14);
  border-color: rgba(255, 214, 0, 0.35);
}

.ms:hover::before,
.mode:hover::before,
.video-panel:hover::before {
  transform: scaleX(1);
}

.ms:hover .name,
.mode:hover .num,
.video-panel:hover .k {
  color: var(--gold);
}

.ms .name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.ms .name b {
  color: var(--gold);
}

.ms p {
  color: var(--muted);
  font-size: 0.84rem;
}

.micro-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 760px;
}

.micro-note b {
  color: var(--white);
}

/* ---------- microssistemas (#micro) ---------- */
#micro {
  background-color: #ffd600;
  color: #0a0a0a;
}

#micro .kicker {
  color: #0a0a0a;
}

#micro .kicker::before {
  background: #0a0a0a;
}

#micro h2,
#micro h2 em {
  color: #0a0a0a;
}

#micro .lead {
  color: #0a0a0a;
}

#micro .ms {
  background: #0a0a0a;
  border: 1px solid #0a0a0a;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(10, 10, 10, 0.08);
}

#micro .ms .name {
  color: #ffffff;
}

#micro .ms .name b {
  color: #ffd600;
}

#micro .ms p {
  color: #c1c1c1;
}

#micro .ms::before {
  background: #ffd600;
}

#micro .ms:hover {
  background: #0a0a0a;
  border-color: rgba(255, 214, 0, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 10, 10, 0.25);
}

#micro .ms:hover .name {
  color: #ffd600;
}

#micro .ms:hover p {
  color: #ffffff;
}

#micro .micro-note {
  color: #0a0a0a;
}

#micro .micro-note b {
  color: #0a0a0a;
}

/* ---------- marcas ---------- */
.logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.slot {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slot.you {
  border: 1px dashed var(--line-gold);
  color: var(--gold);
  font-weight: 600;
}

/* ---------- passos ---------- */
.assoc-final {
  position: relative;
  overflow: hidden;
  background: #ffd600;
  color: #0a0a0a;
  border-top: none;
}

#associar .kicker {
  color: #0a0a0a;
}

#associar .kicker::before {
  background: #0a0a0a;
}

#associar h2,
#associar h2 em {
  color: #0a0a0a;
}

#associar .n438 {
  -webkit-text-stroke: 1px rgba(10, 10, 10, 0.12);
}

#associar article .n {
  color: #0a0a0a;
}

#associar .step {
  border-top: 1px solid rgba(10, 10, 10, 0.25);
}

#associar h3.step {
  color: #0a0a0a;
}

#associar .step p {
  color: #0a0a0a;
}

#associar .final-cta .pill {
  background: #0a0a0a;
  color: #ffd600;
  border-color: #0a0a0a;
}

#associar .final-cta .site-link {
  color: #0a0a0a;
  border-bottom: 1px solid rgba(10, 10, 10, 0.4);
}

#associar .final-cta .site-link:hover {
  border-bottom-color: #0a0a0a;
}

.n438 {
  position: absolute;
  right: -40px;
  top: -70px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(16rem, 30vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 214, 0, 0.14);
  user-select: none;
  pointer-events: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  margin-top: 44px;
  position: relative;
}

.step {
  border-top: 1px solid var(--line-gold);
  padding-top: 22px;
}

article .n {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

h3.step {
  font-size: 1.25rem;
  margin: 14px 0 10px;
}

.step p {
  color: var(--muted);
  font-size: 0.94rem;
}

.final-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  position: relative;
}

.site-link {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--line-gold);
}

.site-link:hover {
  border-bottom-color: var(--gold);
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
}

.foot {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.foot img {
  width: 100px;
  height: auto;
  transform: translateY(-8px);
}

.foot-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.86rem;
  color: var(--muted);
}

.foot-info b {
  color: var(--white);
  font-family: var(--sans);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.foot-links {
  margin-left: auto;
  display: flex;
  gap: 22px;
  font-size: 0.86rem;
}

.foot-links a {
  color: var(--muted);
  text-decoration: none;
}

.foot-links a:hover {
  color: var(--gold);
}

.motif {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

.motif b {
  color: var(--gold);
  font-weight: 600;
}

/* ---------- reveal ---------- */
.rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.rv.on {
  opacity: 1;
  transform: none;
}

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

  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ph img,
  .pill {
    transition: none;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .cards3,
  .modes,
  .steps,
  .espaco-items {
    grid-template-columns: 1fr 1fr;
  }

  .micro {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .nav-toggle__bar,
  .nav-toggle__bar::before,
  .nav-toggle__bar::after {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-toggle__bar {
    position: relative;
  }

  .nav-toggle__bar::before,
  .nav-toggle__bar::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle__bar::before {
    top: -8px;
  }

  .nav-toggle__bar::after {
    bottom: -8px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 60;
  }

  .nav-toggle__bar,
  .nav-toggle__bar::before,
  .nav-toggle__bar::after {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-toggle__bar {
    position: relative;
  }

  .nav-toggle__bar::before,
  .nav-toggle__bar::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle__bar::before {
    top: -8px;
  }

  .nav-toggle__bar::after {
    bottom: -8px;
  }

  .nav-toggle.open .nav-toggle__bar {
    background: transparent;
  }
  .nav-toggle__bar,
  .nav-toggle__bar::before,
  .nav-toggle__bar::after {
    transform-origin: center;
  }

  .nav-toggle.open .nav-toggle__bar::before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav-toggle.open .nav-toggle__bar::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 70px);
    background: rgba(10, 10, 10, 0.96);
    padding: 20px 24px 28px;
    border-top: 1px solid var(--line);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
    flex-direction: column;
    gap: 18px;
    z-index: 60;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-menu {
    flex-direction: column;
    gap: 2em;
    text-align: center;
  }

  .nav-links a,
  .nav-menu a {
    font-size: 1.5rem;
    text-align: left;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 50;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle.open .nav-toggle__bar {
    background: transparent;
  }

  .nav-toggle.open .nav-toggle__bar::before,
  .nav-toggle.open .nav-toggle__bar::after {
    background: var(--white);
  }

  .nav .pill {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  section {
    padding: 72px 0;
  }

  .cards3,
  .modes,
  .steps,
  .gallery,
  .espaco-items {
    grid-template-columns: 1fr;
  }

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

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

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

  .ph img {
    height: 240px;
  }

  .hero {
    min-height: 76vh;
    padding-top: 120px;
  }

  .n438 {
    font-size: 15rem;
    right: -60px;
  }
}
