:root {
  --bg: #0a0a0b;
  --bg-2: #0f0f11;
  --bg-3: #141417;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.07);
  --ink: #f6f6f3;
  --muted: rgba(246, 246, 243, 0.62);
  --faint: rgba(246, 246, 243, 0.4);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --gold: #f5c542;
  --gold-deep: #d6a52b;
  --radius: 18px;
  --radius-sm: 12px;
  --pad-x: clamp(20px, 6vw, 96px);
  --pad-y: clamp(72px, 11vw, 150px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

::selection {
  background: var(--gold);
  color: #0a0a0b;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

/* Display type */
h1,
h2 {
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(4.2rem, 13vw, 11rem);
}

h2 {
  margin: 0 0 24px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 700;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 16px var(--pad-x);
  transition: padding 0.3s ease;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 9px 9px 9px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 12, 14, 0.55);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Quando rola para fora do topo, o header vira uma barra sólida
   para não "brigar" com as fotos atrás dele. */
.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-header.is-scrolled .header-inner {
  background: rgba(10, 10, 11, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.55);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-chip {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 8px;
  background: var(--gold);
  color: #0a0a0b;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav-links a {
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--surface-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: flex;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.lang-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.lang-button:hover {
  opacity: 0.85;
}

.lang-button.is-active {
  background: var(--surface-2);
  opacity: 1;
}

.flag {
  display: block;
  width: 22px;
  height: 15px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.flag-br {
  position: relative;
  background: #139447;
}

.flag-br::before {
  position: absolute;
  inset: 2px 4px;
  content: "";
  background: #f6d03a;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.flag-br::after {
  position: absolute;
  top: 4px;
  left: 7px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #213a8f;
}

.flag-it {
  background: linear-gradient(90deg, #009246 0 33.33%, #fff 33.33% 66.66%, #ce2b37 66.66%);
}

.agency-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: background 0.2s ease;
}

.agency-link:hover {
  background: var(--surface-2);
}

.agency-link img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding: 150px var(--pad-x) clamp(56px, 7vw, 88px);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 28%;
  content: "";
  background:
    linear-gradient(90deg, rgba(245, 197, 66, 0.8) 0 18%, transparent 18% 100%) left bottom / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) left bottom 14px / 100% 1px no-repeat;
  opacity: 0.65;
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.92) 0%, rgba(8, 8, 10, 0.55) 45%, rgba(8, 8, 10, 0.05) 78%),
    linear-gradient(0deg, rgba(8, 8, 10, 0.95) 2%, rgba(8, 8, 10, 0.15) 55%);
}

.hero-watermark {
  position: absolute;
  z-index: -1;
  right: clamp(-30px, -2vw, -10px);
  bottom: clamp(-14px, -1vw, 0px);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(7rem, 27vw, 26rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.12);
  pointer-events: none;
  user-select: none;
}

.hero-content {
  width: min(820px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker .idx {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 22px;
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.5;
}

.hero-tags,
.trait-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.trait-list span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* Buttons */
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  background: var(--gold);
  color: #0a0a0b;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: #ffd45e;
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.secondary-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.secondary-button::after {
  content: "→";
  font-size: 1rem;
}

/* Hero floating glass card */
.hero-card {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(56px, 7vw, 88px);
  width: min(310px, 70vw);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(20, 20, 24, 0.45);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.hero-card-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card-text {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.45;
}

.hero-card-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-card-foot .dot {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0a0b;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-card-foot strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card-foot span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

/* ============ STATUS STRIP ============ */
.status-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background:
    linear-gradient(90deg, rgba(245, 197, 66, 0.12), transparent 36%),
    var(--bg-2);
  border-block: 1px solid var(--line-soft);
}

.status-strip div {
  position: relative;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 40px);
  border-left: 1px solid var(--line-soft);
}

.status-strip div::after {
  position: absolute;
  left: clamp(20px, 3vw, 40px);
  right: clamp(20px, 3vw, 40px);
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.85;
  transition: transform 0.25s ease;
}

.status-strip div:hover::after {
  transform: scaleX(1);
}

.status-strip div:first-child {
  border-left: 0;
}

.status-strip strong {
  display: block;
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
}

.status-strip div:nth-child(odd) strong {
  color: var(--gold);
}

.status-strip span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============ SECTION SHELL ============ */
.section-pad {
  padding: var(--pad-y) var(--pad-x);
}

.section-kicker {
  margin-bottom: 16px;
}

.section-kicker .idx {
  color: var(--faint);
  letter-spacing: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-heading p:not(.section-kicker),
.split .section-copy p:not(.section-kicker),
.highlight-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

/* Profile */
.profile {
  background: var(--bg);
}

.section-copy p:not(.section-kicker) {
  max-width: 520px;
  margin-bottom: 26px;
}

.trait-list span {
  border-color: var(--line);
  background: var(--surface);
  color: rgba(255, 255, 255, 0.82);
}

.feature-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ============ HIGHLIGHT (international) ============ */
.highlight {
  background: var(--bg-2);
  border-block: 1px solid var(--line-soft);
}

.highlight-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #000;
}

.highlight-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.highlight-copy p:not(.section-kicker) {
  max-width: 520px;
}

/* ============ STATS (numeri) ============ */
.stats {
  background: var(--bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.stats-grid article {
  position: relative;
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  border-left: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.25s ease;
}

.stats-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.stats-grid article:hover {
  background: var(--surface);
}

.stats-grid strong {
  display: block;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.85;
}

.stats-grid strong::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 18px;
  border-radius: 2px;
  background: var(--gold);
  opacity: 0.4;
  transform: scaleX(0.55);
  transform-origin: left;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.stats-grid article:hover strong::after {
  opacity: 1;
  transform: scaleX(1);
}

.stats-grid span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.stats-grid article:hover span {
  color: var(--ink);
}

/* ============ VIDEOS ============ */
.video-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
}

.video-heading p:not(.section-kicker) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Slots "em breve" (gols pela seleção, aguardando vídeo) */
.video-shell.is-soon {
  cursor: default;
}

.video-shell.is-soon .video-poster {
  filter: grayscale(0.4) brightness(0.5);
  opacity: 1;
}

.video-shell.is-soon::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.soon-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 66, 0.5);
  background: rgba(10, 10, 11, 0.72);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.video-shell {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-shell video,
.video-poster {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.video-shell video {
  z-index: 1;
  object-fit: contain;
  background: #000;
}

.video-poster {
  z-index: 2;
  object-fit: cover;
  transition: opacity 0.22s ease;
}

.video-shell.is-ready .video-poster {
  opacity: 0;
  pointer-events: none;
}

.video-play-button {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.08) 0 42px, rgba(0, 0, 0, 0.18) 43px 44px, transparent 45px),
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.24));
  color: #fff;
  cursor: pointer;
  transition: opacity 0.18s ease, background 0.18s ease;
}

.video-play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 25px solid currentColor;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5));
}

.video-play-button:hover {
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.18) 0 42px, rgba(245, 197, 66, 0.7) 43px 44px, transparent 45px),
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.32));
}

.video-shell.is-playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}

.video-shell.is-loading .video-play-button {
  cursor: wait;
}

/* Player principal: vídeo grande em destaque */
.video-feature {
  max-width: 1000px;
  margin: 0 auto;
}

.video-feature .video-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 36px 90px -46px rgba(0, 0, 0, 0.95);
}

.video-now {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.video-now-idx {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0a0b;
  font-size: 1rem;
  font-weight: 800;
}

/* Botões dos outros lances (galeria) */
.video-playlist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.video-thumb {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #000;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.25s ease, transform 0.4s ease;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.video-thumb:hover,
.video-thumb:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(245, 197, 66, 0.55);
  outline: none;
}

.video-thumb:hover img,
.video-thumb:focus-visible img {
  opacity: 0.98;
  transform: scale(1.05);
}

.video-thumb-num {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(10, 10, 11, 0.62);
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.video-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  transform: translate(-40%, -50%);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #fff;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.65));
  transition: border-left-color 0.2s ease, transform 0.2s ease;
}

.video-thumb:hover .video-thumb-play {
  transform: translate(-40%, -50%) scale(1.12);
}

.video-thumb-label {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 11px;
  z-index: 2;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Lance em reprodução no player grande */
.video-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 18px 44px -24px rgba(245, 197, 66, 0.65);
}

.video-thumb.is-active img {
  opacity: 0.5;
}

.video-thumb.is-active .video-thumb-num {
  background: var(--gold);
  color: #0a0a0b;
}

.video-thumb.is-active .video-thumb-play {
  border-left-color: var(--gold);
}

/* ============ SELEÇÃO ITALIANA ============ */
.selecao {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}

.selecao-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.selecao-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #000;
}

.selecao-image img {
  width: 100%;
  aspect-ratio: 1916 / 821;
  object-fit: cover;
}

.selecao-stats {
  display: grid;
  gap: 12px;
}

.selecao-stats article {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: clamp(16px, 2.4vw, 22px) clamp(18px, 2.6vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 0.25s ease;
}

.selecao-stats article:hover {
  border-color: rgba(245, 197, 66, 0.5);
}

.selecao-stats strong {
  flex: none;
  min-width: 1.8em;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 0.85;
}

.selecao-stats span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.goal-block-title {
  margin: 0 0 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.goal-grid {
  margin-top: 0;
}

/* ============ CAREER TIMELINE ============ */
.career {
  background: var(--bg);
}

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

.timeline li {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(20px, 2.5vw, 30px) 0;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left 0.25s ease;
}

.timeline li:hover {
  padding-left: 12px;
}

.timeline time {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.timeline h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: none;
}

.timeline p {
  margin: 0;
  color: var(--faint);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============ TITLES ============ */
.titles {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
}

.titles-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.title-cards {
  display: flex;
  gap: 14px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 14px;
  scrollbar-width: none; /* Firefox */
}

.title-cards::-webkit-scrollbar {
  display: none; /* Safari/Chrome: rolagem por arraste/setas */
}

.title-cards article {
  flex: 0 0 clamp(230px, 31%, 300px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

/* Setas de navegação do carrossel */
.carousel-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--gold);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease,
    transform 0.2s ease;
}

.carousel-arrow span {
  margin-top: -3px;
}

.carousel-arrow:hover {
  border-color: rgba(245, 197, 66, 0.6);
  transform: scale(1.06);
}

.carousel-arrow:disabled {
  opacity: 0.28;
  cursor: default;
  transform: none;
  border-color: var(--line);
}

.title-cards article:hover {
  border-color: rgba(245, 197, 66, 0.5);
  transform: translateY(-3px);
}

.title-cards span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
}

.title-cards h3 {
  margin: auto 0 0;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: none;
  line-height: 1.3;
}

/* ============ GALLERY ============ */
.gallery-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 12px;
  padding: 12px;
  background: var(--bg);
}

.gallery-section img {
  width: 100%;
  height: clamp(340px, 38vw, 540px);
  border-radius: var(--radius-sm);
  object-fit: cover;
  filter: grayscale(0.15);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.gallery-section img:hover {
  filter: grayscale(0);
  transform: scale(1.01);
}

.gallery-section img:first-child {
  object-position: center top;
}

/* ============ CONTACT ============ */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
}

.contact-section h2 {
  margin-bottom: 16px;
}

.contact-section p:not(.section-kicker) {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.agency-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 20px 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 700;
  font-size: 0.85rem;
  transition: border-color 0.2s ease;
}

.agency-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.agency-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.whatsapp-button {
  background: #25d366;
  color: #06210f;
}

.whatsapp-button:hover {
  background: #2ee375;
}

.instagram-button {
  background: var(--ink);
  color: #0a0a0b;
}

.instagram-button:hover {
  background: #fff;
}

.instagram-glyph {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.instagram-glyph-dot {
  fill: currentColor;
  stroke: none;
}

/* ============ FOOTER ============ */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.82rem;
}

.site-footer .footer-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.site-footer a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.site-footer img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-card {
    display: none;
  }
}

@media (max-width: 860px) {
  .split,
  .selecao-body,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .status-strip,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-strip div:nth-child(3) {
    border-left: 0;
  }

  .stats-grid article {
    padding-right: clamp(16px, 2vw, 24px);
  }

  .stats-grid article:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .title-cards article {
    flex-basis: clamp(220px, 44%, 280px);
  }

  .gallery-section {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-section img:first-child {
    grid-column: span 2;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --pad-x: 20px;
    --pad-y: 64px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    padding: 7px 7px 7px 14px;
    gap: 8px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(8, 8, 10, 0.72);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand-mark {
    font-size: 1.18rem;
    letter-spacing: 0.08em;
  }

  .brand-chip {
    min-width: 25px;
    height: 25px;
    border-radius: 6px;
    font-size: 0.9rem;
  }

  .header-actions {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 8px;
  }

  .language-switch {
    padding: 3px;
  }

  .lang-button {
    width: 34px;
    height: 28px;
  }

  .agency-link {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 116px var(--pad-x) 28px;
    align-items: flex-end;
  }

  .hero-media img {
    object-position: 57% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(8, 8, 10, 0.22) 0%, rgba(8, 8, 10, 0.42) 42%, rgba(8, 8, 10, 0.96) 86%),
      linear-gradient(90deg, rgba(8, 8, 10, 0.82) 0%, rgba(8, 8, 10, 0.36) 62%, rgba(8, 8, 10, 0.08) 100%);
  }

  .hero::after {
    height: 40%;
    background:
      linear-gradient(90deg, var(--gold) 0 38%, transparent 38% 100%) left bottom / 100% 2px no-repeat,
      repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 16px);
    opacity: 0.55;
  }

  .hero-watermark {
    right: auto;
    left: -8px;
    bottom: 172px;
    font-size: 8.5rem;
    line-height: 0.8;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    opacity: 0.8;
  }

  .hero-content {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: calc(100svh - 144px);
    flex-direction: column;
    justify-content: flex-end;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(3.7rem, 17vw, 4.8rem);
    line-height: 0.82;
  }

  .hero-lead {
    max-width: 100%;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .hero-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 6px;
    border-block: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .hero-tags span {
    min-height: 52px;
    padding: 11px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    font-family: "Barlow Condensed", "Inter", sans-serif;
    font-size: clamp(0.86rem, 3.8vw, 1rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
    backdrop-filter: none;
  }

  .hero-tags span:nth-child(3),
  .hero-tags span:nth-child(4) {
    grid-column: 1 / -1;
  }

  .hero-tags span:nth-child(odd),
  .hero-tags span:nth-child(4) {
    border-right: 0;
  }

  .hero-tags span:nth-child(1) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-tags span:nth-child(n + 3),
  .hero-tags span:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-actions {
    display: flex;
    width: min(100%, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
    gap: 10px;
    margin-top: 18px;
    overflow: hidden;
  }

  .hero-actions a {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
  }

  .primary-button,
  .secondary-button {
    min-height: 46px;
    padding: 0 10px;
    border-radius: 0;
    font-size: 0.72rem;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
  }

  .instagram-button {
    background: var(--gold);
    color: #0a0a0b;
  }

  .secondary-button {
    background: rgba(255, 255, 255, 0.02);
  }

  .secondary-button::after {
    content: none;
  }

  .status-strip,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .video-playlist {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .video-now {
    font-size: 1.1rem;
  }

  .title-cards article {
    flex-basis: 78%; /* deixa "espiar" o próximo card: indica que dá pra arrastar */
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .status-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background:
      linear-gradient(135deg, rgba(245, 197, 66, 0.1), transparent 38%),
      #0c0c0e;
  }

  .status-strip div {
    border-left: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line-soft);
    padding: 20px;
  }

  .status-strip div:nth-child(odd) {
    border-right: 1px solid var(--line-soft);
  }

  .status-strip div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .status-strip div::after {
    left: 20px;
    right: 20px;
    transform: scaleX(1);
    opacity: 0.5;
  }

  .status-strip strong {
    font-size: clamp(2.4rem, 13vw, 3.3rem);
    line-height: 0.82;
  }

  .status-strip span {
    max-width: 9rem;
    margin-top: 10px;
    color: rgba(246, 246, 243, 0.7);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .section-pad {
    padding-top: var(--pad-y);
    padding-bottom: var(--pad-y);
  }

  .profile {
    padding-top: 56px;
  }

  .section-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  h2 {
    font-size: clamp(2.65rem, 14vw, 4rem);
    line-height: 0.88;
  }

  .section-copy p:not(.section-kicker),
  .highlight-copy p:not(.section-kicker),
  .video-heading p:not(.section-kicker) {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .trait-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-block: 1px solid var(--line);
  }

  .trait-list span {
    min-height: 46px;
    padding: 12px 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-family: "Barlow Condensed", "Inter", sans-serif;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .trait-list span:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .trait-list span:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .feature-photo,
  .highlight-image,
  .title-cards article {
    border-radius: 0;
  }

  .feature-photo {
    margin-top: 8px;
    border-color: rgba(255, 255, 255, 0.16);
  }

  .feature-photo img {
    aspect-ratio: 4 / 4.7;
  }

  .stats-grid article {
    padding: 26px 0;
    border-left: 0;
  }

  .gallery-section {
    grid-template-columns: 1fr;
  }

  .gallery-section img:first-child {
    grid-column: auto;
  }

  .timeline li {
    grid-template-columns: 88px 1fr;
    gap: 14px;
  }

  .timeline p {
    grid-column: 2;
    white-space: normal;
  }

  .contact-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-actions a {
    flex: none;
    width: 100%;
  }

  /* WhatsApp e Instagram lado a lado; WoneSports ocupa a linha inteira
     para não "sobrar"/transbordar como acontecia com flex: 1 (a pílula
     com logo + texto não conseguia encolher como os outros botões). */
  .contact-actions .agency-card {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 54px;
    padding: 0 18px;
  }

  .contact-actions .whatsapp-button,
  .contact-actions .instagram-button {
    min-height: 54px;
  }
}

/* ============ SCROLL REVEAL ============ */
/* Classe aplicada via JS — sem JS, nada fica escondido. */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
