/* ==========================================================================
   CWB RUNNER — Design System v3 "Pista Noturna"
   Substitui components.css / pages.css / stage.css / cwbrunner.css.
   Editorial atlético: display caixa-alta, vermelho de pista, linhas técnicas,
   fotos duotone → cor no hover. Tokens em tokens.css.
   ========================================================================== */

/* ──────────────────────────────────────────────
   TIPOGRAFIA UTILITÁRIA
   ────────────────────────────────────────────── */

/* Split-line: espaço extra para acentos de maiúsculas (É, Ê, Ã)
   — o overflow:hidden do SplitType corta o diacrítico sem isso */
.split-line {
  padding-top: 0.14em !important;
  margin-top: -0.14em !important;
}


.display-1,
.display-2,
.display-3 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  color: var(--text-primary);
}
.display-1 { font-size: clamp(32px, 4.2vw, 60px); }
.display-2 { font-size: clamp(24px, 3vw, 44px); }
.display-3 { font-size: clamp(18px, 2vw, 30px); }

.lead {
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 56ch;
}

.body-text {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.75;
  color: var(--text-secondary);
}
.body-text strong { color: var(--text-primary); font-weight: 600; }
.body-text + .body-text { margin-top: 14px; }
.body-text a { color: var(--accent-cyan); text-decoration: underline; }
.body-text a:hover { opacity: 0.85; }

.t-red { color: var(--accent-cyan); }

/* Cabeçalho de seção editorial — número índice + título */
.sec-head {
  display: block;
  margin-bottom: clamp(36px, 5vw, 72px);
}
.sec-head__index {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(13px, 1.1vw, 16px);
  color: var(--accent-cyan);
  border: 1px solid var(--line-mid);
  padding: 8px 12px;
  border-radius: var(--r-xs);
  letter-spacing: 0.08em;
  white-space: nowrap;
  margin-bottom: 24px;
}
.sec-head__body .lead { margin-top: 18px; }

/* ──────────────────────────────────────────────
   BOTÕES
   ────────────────────────────────────────────── */

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text-primary);
  --btn-line: var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-line);
  border-radius: var(--r-xs);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--d-fast) var(--ease-smooth),
              color var(--d-fast) var(--ease-smooth),
              border-color var(--d-fast) var(--ease-smooth),
              transform var(--d-fast) var(--ease-out-expo);
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: var(--accent-cyan);
  --btn-fg: #fff;
  --btn-line: var(--accent-cyan);
}
.btn--primary:hover {
  --btn-bg: #c92320;
  --btn-line: #c92320;
}

.btn--ghost:hover {
  --btn-line: var(--accent-cyan);
  --btn-fg: #fff;
}

.btn--lg { padding: 17px 34px; font-size: 14px; }

.btn .btn__arrow { display: inline-flex; transition: transform var(--d-fast) var(--ease-out-expo); }
.btn:hover .btn__arrow { transform: translate(3px, -3px); }

/* ──────────────────────────────────────────────
   SEÇÕES / ESTRUTURA
   ────────────────────────────────────────────── */

.section {
  padding-block: clamp(64px, 9vw, 86px);
  position: relative;
}
.section--line-top { border-top: 1px solid var(--line-soft); }
.section--tight { padding-block: clamp(40px, 6vw, 88px); }

/* ──────────────────────────────────────────────
   PAGE TRANSITION — nunca bloqueia cliques
   ────────────────────────────────────────────── */

.page-transition {
  position: fixed;
  inset: 0;
  background: var(--surface-0);
  opacity: 0;
  pointer-events: none !important;
  z-index: var(--z-transition);
}

/* ──────────────────────────────────────────────
   SKIP LINK
   ────────────────────────────────────────────── */

.skip-link {
  position: fixed;
  top: -48px;
  left: 16px;
  z-index: 300;
  background: var(--accent-cyan);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-xs);
  font-size: 13px;
  transition: top 200ms var(--ease-smooth);
}
.skip-link:focus { top: 16px; }

/* ──────────────────────────────────────────────
   HERO HOME — foto fullscreen, título display gigante
   ────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
  padding-bottom: clamp(40px, 6vh, 80px);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  filter: grayscale(0.25) brightness(0.52) contrast(1.06);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.35) 38%, rgba(17, 17, 17, 0.15) 60%, rgba(17, 17, 17, 0.45) 100%),
    linear-gradient(to right, rgba(17, 17, 17, 0.55) 0%, transparent 55%);
}

.hero__content { position: relative; }

.hero__topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(18px, 2.5vw, 30px);
}
.hero__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent-cyan);
  padding: 7px 14px;
  border-radius: var(--r-xs);
}
.hero__topline-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: #fff;
  max-width: 16ch;
}
.hero__title em {
  font-style: normal;
  color: var(--accent-cyan);
}

.hero__sub {
  margin-top: clamp(18px, 2.5vw, 28px);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(24px, 3.5vw, 42px);
}

/* Rodapé do hero — mini-stats em linha */
.hero__footer {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  margin-top: clamp(32px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--line-mid);
}
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  color: #fff;
  line-height: 1;
}
.hero__stat span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ──────────────────────────────────────────────
   PAGE HERO — interno, com foto
   ────────────────────────────────────────────── */

.page-hero {
  position: relative;
  min-height: clamp(480px, 72svh, 760px);
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  padding-bottom: clamp(36px, 5vw, 64px);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.5) contrast(1.05);
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(17,17,17,0.97) 0%, rgba(17,17,17,0.4) 45%, rgba(17,17,17,0.3) 100%);
}
/* logos de franquia nos cards — wrapper garante área fixa e alinhamento */
.modality-card__logo-wrap {
  display: flex;
  align-items: center;
  height: 44px;
  margin-bottom: 10px;
  transition: transform 650ms var(--ease-cinematic);
}
.modality-card__logo {
  display: block;
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.franchise-logo {
  display: block;
  height: clamp(72px, 10vw, 120px);
  width: auto;
  max-width: 320px;
  object-fit: contain;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
}
.franchise-logo--color { filter: none; }

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 0.94;
  color: #fff;
  max-width: 16ch;
}
.page-hero__title em { font-style: normal; color: var(--accent-cyan); }
.page-hero__sub {
  margin-top: 18px;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 54ch;
}
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }


/* ──────────────────────────────────────────────
   MARQUEE — texto gigante correndo
   ────────────────────────────────────────────── */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  padding-block: clamp(14px, 1.6vw, 22px);
  background: var(--surface-1);
}
.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: cwb-marquee 28s linear infinite;
}
.marquee.is-paused .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
  padding-right: clamp(20px, 2.5vw, 36px);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(20px, 2.6vw, 38px);
  line-height: 1;
  color: var(--text-primary);
  white-space: nowrap;
}
.marquee__item em { font-style: normal; color: transparent; -webkit-text-stroke: 1px var(--line-strong); }
.marquee__dot {
  width: 10px; height: 10px;
  background: var(--accent-cyan);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes cwb-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Marquee de fotos (filmstrip) */
.marquee--photos {
  padding-block: 0;
  border-block: 1px solid var(--line-soft);
  background: var(--surface-0);
}
.marquee--photos .marquee__track { animation-duration: 60s; }
.marquee--photos img {
  height: clamp(180px, 24vw, 320px);
  width: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
  filter: grayscale(0.5) brightness(0.65);
  transition: filter 400ms var(--ease-smooth);
}
.marquee--photos img:hover { filter: grayscale(0) brightness(0.9); }

/* ──────────────────────────────────────────────
   STATS — counters gigantes
   ────────────────────────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--surface-1);
}
.stats__item {
  padding: clamp(28px, 3.5vw, 52px) clamp(20px, 2.5vw, 40px);
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.stats__item:last-child { border-right: 0; }
.stats__item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 28px; height: 3px;
  background: var(--accent-cyan);
}
.stats__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
  color: var(--text-primary);
}
.stats__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  line-height: 1.5;
  max-width: 20ch;
}

/* ──────────────────────────────────────────────
   MODALIDADES — accordion horizontal
   ────────────────────────────────────────────── */

.modalities {
  display: flex;
  gap: 6px;
  height: clamp(380px, 52vw, 600px);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.modality-card {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--surface-1);
  border-radius: 0;
  transition: flex 650ms var(--ease-cinematic);
  text-align: left;
}
.modalities:hover .modality-card { flex: 0.7 1 0%; }
.modalities .modality-card:hover { flex: 3.2 1 0%; }
.modality-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) brightness(0.5);
  transform: scale(1.05);
  transition: filter 650ms var(--ease-cinematic), transform 650ms var(--ease-cinematic);
}
.modality-card:hover > img {
  filter: grayscale(0.05) brightness(0.68);
  transform: scale(1);
}
.modality-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 2.2vw, 32px);
  background: linear-gradient(to top, rgba(17,17,17,0.75) 0%, rgba(17,17,17,0.2) 45%, rgba(17,17,17,0.45) 100%);
}

/* ──────────────────────────────────────────────
   STEPS — processo numerado com trilho
   ────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.steps--5 { grid-template-columns: repeat(5, 1fr); }
.steps--4 { grid-template-columns: repeat(4, 1fr); }

.step {
  background: var(--surface-1);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background var(--d-fast) var(--ease-smooth);
}
.step:hover { background: var(--surface-2); }
.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent-cyan);
}
.step__icon { width: 28px; height: 28px; color: var(--accent-cyan); }
.step__icon svg { width: 100%; height: 100%; }
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(15px, 1.3vw, 19px);
  letter-spacing: 0.03em;
  color: var(--text-primary);
}
.step__body {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.step__img {
  aspect-ratio: 16/10;
  border-radius: var(--r-xs);
  overflow: hidden;
  margin-bottom: 4px;
}
.step__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.45) brightness(0.62);
  transition: filter 450ms var(--ease-smooth), transform 600ms var(--ease-out-expo);
}
.step:hover .step__img img { filter: grayscale(0) brightness(0.82); transform: scale(1.045); }

/* ──────────────────────────────────────────────
   FEATURES — grid com ícones
   ────────────────────────────────────────────── */

.features-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) 7fr;
  gap: clamp(36px, 5vw, 88px);
  align-items: start;
}
.features-aside { position: sticky; top: 110px; }
.features-aside .body-text { margin-top: 16px; max-width: 38ch; }
.features-aside .btn { margin-top: 28px; }

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.feature {
  background: var(--surface-1);
  padding: clamp(20px, 2.4vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--d-fast) var(--ease-smooth);
  position: relative;
}
.feature:hover { background: var(--surface-2); }
.feature::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent-cyan);
  transition: width 450ms var(--ease-out-expo);
}
.feature:hover::after { width: 100%; }
.feature__icon {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-mid);
  border-radius: var(--r-xs);
  color: var(--accent-cyan);
}
.feature__icon svg { width: 20px; height: 20px; }
.feature__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.feature__body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ──────────────────────────────────────────────
   OBJETIVO CARDS — fotos com tag de distância
   ────────────────────────────────────────────── */

.obj-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

/* ──────────────────────────────────────────────
   EVENTOS
   ────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}

/* Card destaque ocupa a primeira coluna, duas linhas */
.event-card--featured {
  grid-row: 1 / 3;
}

.event-card {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--surface-1);
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2) brightness(0.7);
  transition: transform 500ms var(--ease-cinematic), filter 500ms var(--ease-smooth);
}

.event-card--featured img { min-height: 480px; }
.event-card:not(.event-card--featured) img { height: 220px; }

.event-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(0.65);
}

/* Barra de info no rodapé (cards regulares) */
.event-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Info centralizada no card destaque */
.event-card__info--mid {
  inset: auto 24px 24px 24px;
  border-radius: var(--r-sm);
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: rgba(10, 10, 10, 0.92);
}

.event-card__date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.event-card__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.event-card__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--d-fast);
}

.event-card__link:hover { color: var(--accent-cyan); }

.btn--sm {
  padding: 10px 20px;
  font-size: 12px;
}

@media (max-width: 880px) {
  .events-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }
  .event-card--featured { grid-row: unset; }
  .event-card--featured img { min-height: 360px; }
  .event-card:not(.event-card--featured) img { height: 180px; }
}

@media (max-width: 560px) {
  .events-grid { grid-template-columns: 1fr; }
}
.obj-card {
  position: relative;
  aspect-ratio: 3/4.2;
  border-radius: var(--r-sm);
  overflow: hidden;
  display: flex;
  text-decoration: none;
  isolation: isolate;
}
.obj-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.55);
  transform: scale(1.02);
  transition: filter 450ms var(--ease-smooth), transform 700ms var(--ease-out-expo);
}
.obj-card:hover img { filter: grayscale(0) brightness(0.75); transform: scale(1.08); }
.obj-card__overlay {
  position: relative;
  z-index: 2;
  margin-top: auto;
  width: 100%;
  padding: clamp(14px, 1.6vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(to top, rgba(17,17,17,0.94), transparent);
}
.obj-card__dist {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
  color: var(--accent-cyan);
  text-transform: uppercase;
}
.obj-card__name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.obj-card__go {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  background: rgba(17,17,17,0.55);
  border: 1px solid var(--line-mid);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity var(--d-fast) var(--ease-smooth), transform var(--d-fast) var(--ease-out-expo);
}
.obj-card:hover .obj-card__go { opacity: 1; transform: translateY(0); }

/* ──────────────────────────────────────────────
   TESTIMONIALS
   ────────────────────────────────────────────── */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tcard {
  display: flex;
  flex-direction: column;
  background: var(--surface-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: transform var(--d-fast) var(--ease-out-expo), border-color var(--d-fast);
}
.tcard:hover { transform: translateY(-4px); border-color: var(--line-mid); }
.tcard__result {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: clamp(18px, 2vw, 26px);
  border-bottom: 1px solid var(--line-soft);
}
.tcard__result b {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1;
  color: var(--accent-cyan);
  text-transform: uppercase;
}
.tcard__result span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.tcard__quote {
  padding: clamp(18px, 2vw, 26px);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
}
.tcard__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 clamp(18px, 2vw, 26px) clamp(18px, 2vw, 26px);
}
.tcard__author b { font-size: 13px; color: var(--text-primary); font-weight: 600; }
.tcard__author span { font-size: 12px; color: var(--text-tertiary); }

/* ──────────────────────────────────────────────
   BLOG CARDS
   ────────────────────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bcard {
  display: flex;
  flex-direction: column;
  background: var(--surface-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--d-fast) var(--ease-out-expo), border-color var(--d-fast);
}
.bcard:hover { transform: translateY(-4px); border-color: var(--line-mid); }
.bcard__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.bcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) brightness(0.62);
  transition: filter 450ms var(--ease-smooth), transform 650ms var(--ease-out-expo);
}
.bcard:hover .bcard__img img { filter: grayscale(0) brightness(0.85); transform: scale(1.05); }
.bcard__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 2vw, 26px);
  flex: 1;
}
.bcard__tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  border: 1px solid rgba(176, 25, 23, 0.35);
  padding: 5px 10px;
  border-radius: var(--r-pill);
}
.bcard__title {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
}
.bcard__excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
}
.bcard__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.bcard__link::after { content: " →"; color: var(--accent-cyan); }

/* destaque do blog */
.blog-featured {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 0;
  background: var(--surface-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 14px;
  text-decoration: none;
  transition: border-color var(--d-fast);
}
.blog-featured:hover { border-color: var(--line-mid); }
.blog-featured__img { overflow: hidden; min-height: 320px; }
.blog-featured__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.6);
  transition: filter 450ms var(--ease-smooth), transform 650ms var(--ease-out-expo);
}
.blog-featured:hover .blog-featured__img img { filter: grayscale(0) brightness(0.8); transform: scale(1.03); }
.blog-featured__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 56px);
}
.blog-featured__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.05;
  color: var(--text-primary);
}

/* tags de categoria */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--line-mid);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--d-fast) var(--ease-smooth);
}
.tag:hover, .tag--active {
  color: #fff;
  border-color: var(--accent-cyan);
  background: var(--accent-cyan);
}

/* ──────────────────────────────────────────────
   TWO-COL editorial
   ────────────────────────────────────────────── */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
}
.two-col--top { align-items: start; }
.two-col .display-3 { margin-bottom: 8px; }

.media-frame {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
}
.media-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.68);
  transition: filter 500ms var(--ease-smooth);
}
.media-frame:hover img { filter: grayscale(0) brightness(0.85); }
.media-frame--tall img { aspect-ratio: 3/4; }
.media-frame__caption {
  position: absolute;
  left: 14px; bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(17,17,17,0.65);
  border: 1px solid var(--line-mid);
  padding: 7px 12px;
  border-radius: var(--r-xs);
  backdrop-filter: blur(8px);
}

.media-collage {
  position: relative;
  padding-bottom: 14%;
}
.media-collage__main {
  border-radius: var(--r-sm);
  overflow: hidden;
}
.media-collage__main img {
  width: 100%;
  aspect-ratio: 4/4.5;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.78);
  transition: filter 500ms var(--ease-smooth);
}
.media-collage:hover .media-collage__main img { filter: grayscale(0) brightness(0.9); }
.media-collage__secondary {
  position: absolute;
  right: -6%;
  bottom: 0;
  width: 56%;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 6px solid var(--surface-0);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.media-collage__secondary img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2) brightness(0.85);
  transition: filter 500ms var(--ease-smooth);
}
.media-collage:hover .media-collage__secondary img { filter: grayscale(0) brightness(0.95); }
@media (max-width: 720px) {
  .media-collage { padding-bottom: 18%; }
  .media-collage__secondary { width: 60%; right: -4%; border-width: 4px; }
}

/* media reveal — clip rise (motion.js adiciona .is-in) */
.media-reveal { clip-path: inset(12% 6% 12% 6% round 8px); transform: scale(1.04); transition: clip-path 900ms var(--ease-cinematic), transform 900ms var(--ease-cinematic); }
.media-reveal.is-in { clip-path: inset(0 0 0 0 round 8px); transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .media-reveal { clip-path: none; transform: none; }
}

/* ──────────────────────────────────────────────
   LISTAS — check / x
   ────────────────────────────────────────────── */

.check-list { display: flex; flex-direction: column; gap: 12px; list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-cyan);
  border: 1px solid rgba(176, 25, 23, 0.45);
  border-radius: 50%;
  margin-top: 2px;
}
.check-list--x li::before { content: "✕"; color: var(--text-tertiary); border-color: var(--line-mid); }
.check-list b, .check-list strong { color: var(--text-primary); font-weight: 600; }

/* ──────────────────────────────────────────────
   PACE TABLE
   ────────────────────────────────────────────── */

.pace-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.pace-table th {
  text-align: left;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  background: var(--surface-1);
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-mid);
}
.pace-table td {
  padding: 13px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--line-soft);
}
.pace-table tr:last-child td { border-bottom: 0; }
.pace-table tr:hover td { background: var(--surface-1); }
.pace-table td:first-child { color: var(--text-primary); font-weight: 600; }
.pace-table .t-red { font-weight: 600; }

/* ──────────────────────────────────────────────
   FAQ — details/summary nativo
   ────────────────────────────────────────────── */

.faq { display: flex; flex-direction: column; border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--d-fast);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent-cyan);
  transition: transform 300ms var(--ease-out-expo);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--accent-cyan); }
.faq .faq__body {
  padding: 0 4px 22px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 70ch;
}

/* ──────────────────────────────────────────────
   PHOTO BANNER — quebra fotográfica full-bleed
   ────────────────────────────────────────────── */

.photo-banner {
  position: relative;
  height: clamp(320px, 48vw, 560px);
  overflow: hidden;
  isolation: isolate;
}
.photo-banner img {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.55);
}
.photo-banner__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 28px;
  padding-bottom: clamp(28px, 4vw, 56px);
}
.photo-banner__quote {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(20px, 2.6vw, 40px);
  line-height: 0.98;
  color: #fff;
  max-width: 22ch;
}
.photo-banner__quote em { font-style: normal; color: var(--accent-cyan); }
.photo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(17,17,17,0.88), rgba(17,17,17,0.2) 55%, rgba(17,17,17,0.35));
}

/* ──────────────────────────────────────────────
   CTA FINAL — painel vermelho full
   ────────────────────────────────────────────── */

/* CTA como seção de fundo vermelho full-width */
.section--cta {
  background: var(--accent-cyan);
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: "CWB";
  position: absolute;
  z-index: 0;
  right: -2%;
  bottom: -18%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(140px, 26vw, 380px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}
.section--cta .container { position: relative; z-index: 1; }

.cta-final {
  background: transparent;
  border-radius: 0;
  padding: 0;
  position: relative;
  overflow: visible;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  isolation: isolate;
}

/* cta-final standalone (sem section--cta) mantém o bloco original */
.section:not(.section--cta) .cta-final {
  background: var(--accent-cyan);
  border-radius: var(--r-md);
  padding: clamp(40px, 6vw, 96px) clamp(24px, 5vw, 80px);
  overflow: hidden;
}

.cta-final__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 0.96;
  color: #fff;
  max-width: 18ch;
}
.cta-final__sub {
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
}
.cta-final .btn {
  margin-top: 10px;
  --btn-bg: #fff;
  --btn-fg: var(--accent-cyan);
  --btn-line: #fff;
}
.cta-final .btn:hover { --btn-bg: #f1e6e6; --btn-line: #f1e6e6; }
.cta-final__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}

/* ──────────────────────────────────────────────
   FOOTER — rico, 4 colunas
   ────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--surface-1);
  padding-top: clamp(48px, 6vw, 88px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo { width: 180px; height: auto; opacity: 0.95; filter: brightness(0) invert(1); }
.footer__tagline {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-tertiary);
  max-width: 30ch;
}
.footer__col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 18px;
}
.footer__col nav { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 13.5px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--d-fast);
  width: fit-content;
}
.footer__col a:hover { color: var(--accent-cyan); }
.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.footer__contact b { color: var(--text-primary); font-weight: 600; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 22px;
  border-top: 1px solid var(--line-soft);
}
.footer__copy { font-size: 12px; color: var(--text-tertiary); }
.footer__social { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--d-fast), border-color var(--d-fast), background var(--d-fast);
}
.footer__insta:hover {
  color: var(--text-primary);
  border-color: var(--line-mid);
  background: rgba(255,255,255,0.04);
}

/* ──────────────────────────────────────────────
   VIEW — entrada suave por rota
   ────────────────────────────────────────────── */

.view { animation: cwb-view-in 0.4s var(--ease-out-quart) both; }
@keyframes cwb-view-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ──────────────────────────────────────────────
   FAILSAFE — se o GSAP/CDN falhar, o conteúdo aparece
   mesmo assim após 2.5s (motion.css esconde [data-rise]
   etc. enquanto html não tem .gsap-ready)
   ────────────────────────────────────────────── */

html:not(.gsap-ready) [data-rise],
html:not(.gsap-ready) [data-fade],
html:not(.gsap-ready) [data-stagger] > *,
html:not(.gsap-ready) [data-split] {
  animation: cwb-failsafe 0.6s var(--ease-smooth) 2.5s forwards;
}
@keyframes cwb-failsafe {
  to { opacity: 1; transform: none; visibility: visible; }
}

/* ──────────────────────────────────────────────
   RESPONSIVO
   ────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .features-wrap { grid-template-columns: 1fr; }
  .features-aside { position: static; }
  .obj-grid { grid-template-columns: repeat(3, 1fr); }
  .obj-card:nth-child(4), .obj-card:nth-child(5) { aspect-ratio: 3/2.4; }
  .steps--5 { grid-template-columns: repeat(3, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stats__item { border-bottom: 1px solid var(--line-soft); }
  .stats__item:nth-child(2n) { border-right: 0; }
  .stats__item:nth-last-child(-n+2) { border-bottom: 0; }
  .steps, .steps--4, .steps--5 { grid-template-columns: 1fr 1fr; }
  .testimonials, .blog-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .sec-head__index { margin-bottom: 16px; }
  .features { grid-template-columns: 1fr; }
  .hero__footer { flex-wrap: wrap; gap: 20px; }

  /* modalidades viram pilha vertical no mobile */
  .modalities { flex-direction: column; height: auto; }
  .modality-card { min-height: 220px; flex: none; }
  .modalities:hover .modality-card { flex: none; }
  .modalities .modality-card:hover { flex: none; }
}

@media (max-width: 620px) {
  .obj-grid { grid-template-columns: 1fr 1fr; }
  .obj-card:nth-child(5) { grid-column: span 2; aspect-ratio: 16/9; }
  .steps, .steps--4, .steps--5 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .pace-table { font-size: 12.5px; }
  .pace-table th, .pace-table td { padding: 10px 10px; }
}

/* ---------- Produtos ---------- */
.products-category { margin-bottom: clamp(36px, 5vw, 56px); }
.products-category:last-child { margin-bottom: 0; }
.products-category__title {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--surface-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  overflow: hidden;
  text-decoration: none;
  font: inherit;
  text-align: left;
  color: inherit;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--d-fast) var(--ease-out-expo), border-color var(--d-fast);
}
.product-card:hover { transform: translateY(-4px); border-color: var(--line-mid); }

.product-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--surface-2);
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.75);
  transition: filter 450ms var(--ease-smooth), transform 650ms var(--ease-out-expo);
}
.product-card:hover .product-card__img img { filter: grayscale(0) brightness(0.95); transform: scale(1.05); }

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(14px, 1.6vw, 20px);
}
.product-card__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
}
.product-card__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-cyan);
}

.products-empty { color: var(--text-secondary); }

@media (max-width: 880px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---------- Modal de produto ---------- */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-transition);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-modal.is-open { display: flex; }
body.product-modal-open { overflow: hidden; }

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 8, 0.72);
  backdrop-filter: blur(6px);
}

.product-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface-1);
  border: 1px solid var(--line-mid);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-deep);
}
@media (min-width: 640px) {
  .product-modal__dialog { flex-direction: row; min-height: 480px; }
}

.product-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-mid);
  border-radius: var(--r-pill);
  background: rgba(0, 0, 0, 0.45);
  color: var(--text-primary);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.product-modal__close:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }

.product-modal__media {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}
@media (min-width: 640px) {
  .product-modal__media { width: 50%; }
}

.product-modal__img {
  flex: 1 1 auto;
  aspect-ratio: 1/1;
  background: var(--surface-2);
  overflow: hidden;
}
@media (min-width: 640px) {
  .product-modal__img { aspect-ratio: auto; min-height: 320px; }
}
.product-modal__img img,
.product-modal__img video { width: 100%; height: 100%; object-fit: cover; background: #000; }

.product-modal__thumbs {
  display: none;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
  background: var(--surface-2);
}
.product-modal__thumbs.is-visible { display: flex; }

.product-modal__thumb {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--r-xs);
  overflow: hidden;
  background: var(--surface-1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: border-color var(--d-fast);
}
.product-modal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-modal__thumb.is-active { border-color: var(--accent-cyan); }
.product-modal__thumb-play { font-size: 14px; }

.product-modal__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(28px, 4vw, 48px);
  flex: 1 1 auto;
  justify-content: center;
}

.product-modal__name {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.product-modal__price {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 600;
  color: var(--accent-cyan);
}
.product-modal__desc {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: var(--lh-base);
  color: var(--text-secondary);
  white-space: pre-line;
}
.product-modal__cta { margin-top: 12px; align-self: flex-start; }

/* ---------- Colaboradores ---------- */
.requirements-card {
  background: var(--accent-cyan);
  border-radius: var(--r-md);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.requirements-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.05;
  color: #fff;
  max-width: 24ch;
}
.requirements-card__text {
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 60ch;
}
.requirements-card__list {
  list-style: disc;
  padding-left: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}
.requirements-card .btn {
  margin-top: 6px;
  --btn-bg: #fff;
  --btn-fg: var(--accent-cyan);
  --btn-line: #fff;
}
.requirements-card .btn:hover { --btn-bg: #f1e6e6; --btn-line: #f1e6e6; }

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

.collaborator-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: transform var(--d-fast) var(--ease-out-expo), border-color var(--d-fast);
}
.collaborator-card:hover { transform: translateY(-4px); border-color: var(--line-mid); }

.collaborator-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--surface-2);
}
.collaborator-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.75);
  transition: filter 450ms var(--ease-smooth), transform 650ms var(--ease-out-expo);
}
.collaborator-card:hover .collaborator-card__img img { filter: grayscale(0) brightness(0.95); transform: scale(1.05); }

.collaborator-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(14px, 1.6vw, 20px);
}
.collaborator-card__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
}
.collaborator-card__benefit {
  font-size: 13px;
  line-height: 1.4;
  color: var(--accent-cyan);
}

.collaborators-empty { color: var(--text-secondary); }

@media (max-width: 880px) {
  .collaborator-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .collaborator-grid { grid-template-columns: 1fr; }
}

/* Science Performance — usa o azul da marca em vez do vermelho padrão CWB */
.view--franquia-science-run {
  --accent-cyan: #245aa6;
  --accent-lime: #4c7fc4;
  --accent-magenta: #17396b;
}
.view--franquia-science-run .btn--primary:hover {
  --btn-bg: #1c4a89;
  --btn-line: #1c4a89;
}
