/* ══ EXCLUSIVIDADES MODULE ════════════ */
#s-ex { background: var(--blue); padding: 96px 0 72px; }

.ex-header { margin-bottom: 52px; }

.ex-title {
  font-family: var(--ff-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}

/* ── Ticker wrapper ───────────────────── */
.ex-track-wrap {
  overflow: hidden;
  /* fade nas bordas */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

/* ── Track — animação ticker ──────────── */
.ex-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 8px 0 28px;
  animation: ex-ticker 42s linear infinite;
}

.ex-track:hover { animation-play-state: paused; }

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

/* ── Card ─────────────────────────────── */
.ex-card {
  flex: 0 0 272px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, background .25s ease;
  cursor: default;
}

.ex-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,127,0,.4);
}

/* ── SVG baroque icon ─────────────────── */
.ex-icon {
  width: 52px;
  height: 52px;
  color: var(--orange);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.ex-icon svg { width: 100%; height: 100%; }

/* ── Gold divider ─────────────────────── */
.ex-line {
  border: none;
  border-top: 1px solid rgba(255,127,0,.35);
  margin: 0 0 18px;
}

/* ── Number ───────────────────────────── */
.ex-num {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: .1em;
  margin-bottom: 8px;
}

/* ── Experience name ──────────────────── */
.ex-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin: 0 0 10px;
}

/* ── 2-line description ───────────────── */
.ex-desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

/* ── CTA ──────────────────────────────── */
.ex-cta { text-align: center; margin-top: 52px; }
