/* Império FC — Site público premium (UI Polish)
   Tailwind CDN + CSS próprio */

:root {
  --ifc-bg: #090909;
  --ifc-surface: #111111;
  --ifc-card: #171717;
  --ifc-hover: #1f1f1f;
  --ifc-orange: #f59e0b;
  --ifc-orange-hover: #d97706;
  --ifc-gold: #d4af37;
  --ifc-text: #ffffff;
  --ifc-muted: #a1a1aa;
  --ifc-line: #27272a;
  --ifc-container: 1600px;
  --ifc-radius: 1.25rem;
  --ifc-font: "Inter", system-ui, sans-serif;
  --ifc-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ifc-bg);
  color: var(--ifc-text);
  font-family: var(--ifc-font);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100vw;
}

body *:focus-visible {
  outline: 2px solid var(--ifc-orange);
  outline-offset: 2px;
}

.font-display {
  font-family: var(--ifc-display);
  letter-spacing: 0.05em;
  font-weight: 400;
  text-transform: uppercase;
}

/* Textura de fundo — ruído + grid + brilho */
.bg-texture {
  background-color: var(--ifc-bg);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(245, 158, 11, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 10%, rgba(212, 175, 55, 0.06), transparent),
    radial-gradient(ellipse 40% 30% at 0% 60%, rgba(245, 158, 11, 0.04), transparent),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    auto,
    64px 64px,
    64px 64px;
  background-attachment: fixed;
}

.bg-texture::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.ifc-container {
  width: 100%;
  max-width: var(--ifc-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .ifc-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .ifc-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ——— Buttons ——— */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  background: var(--ifc-orange);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  background: var(--ifc-orange-hover);
  box-shadow: 0 10px 32px rgba(245, 158, 11, 0.32);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-outline:hover {
  border-color: var(--ifc-orange);
  color: var(--ifc-orange);
  background: rgba(245, 158, 11, 0.08);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ifc-gold);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.btn-ghost:hover {
  color: var(--ifc-orange);
  gap: 0.55rem;
}

/* ——— Cards ——— */
.card-sport,
.ifc-card {
  background: var(--ifc-card);
  border: 1px solid var(--ifc-line);
  border-radius: var(--ifc-radius);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.card-sport:hover,
.ifc-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: var(--ifc-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.section-title {
  font-family: var(--ifc-display);
  font-size: clamp(2.25rem, 4.5vw, 3.35rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--ifc-muted);
  font-size: 1rem;
  margin-top: 0.85rem;
  max-width: 36rem;
  line-height: 1.65;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ifc-gold);
  margin-bottom: 0.9rem;
}

.ifc-section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .ifc-section {
    padding: 7rem 0;
  }
}

.ifc-section--tight {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .ifc-section--tight {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

.watermark-shield {
  position: absolute;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
  border-bottom: none;
  background: transparent;
  overflow: visible;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: 84px;
  height: 84px;
  overflow: visible;
  padding: 0.65rem 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .site-header__bar {
    min-height: 112px;
    height: 112px;
    padding: 0.85rem 0;
  }
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 1;
  min-width: 0;
  overflow: visible;
  text-decoration: none;
  line-height: 0;
  padding: 0.15rem 0;
}

@media (max-width: 639px) {
  .site-header__brand {
    flex: 1 1 auto;
    max-width: min(62vw, 220px);
  }
}

@media (min-width: 400px) and (max-width: 639px) {
  .site-header__brand {
    max-width: min(64vw, 240px);
  }
}

.site-header__logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__logo--mobile {
  width: auto;
  height: 52px;
  max-height: 52px;
  max-width: 100%;
}

@media (max-width: 380px) {
  .site-header__logo--mobile {
    height: 46px;
    max-height: 46px;
  }
}

@media (min-width: 400px) and (max-width: 639px) {
  .site-header__logo--mobile {
    height: 58px;
    max-height: 58px;
  }
}

.site-header__logo--desktop {
  height: 72px;
  max-height: 72px;
  max-width: 260px;
  width: auto;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .site-header__logo--desktop {
    height: 88px;
    max-height: 88px;
    max-width: 320px;
  }
}

@media (min-width: 1280px) {
  .site-header__logo--desktop {
    height: 96px;
    max-height: 96px;
    max-width: 360px;
  }
}

.site-header__brand:hover .site-header__logo {
  opacity: 0.95;
  transform: scale(1.02);
}

.site-header.is-solid,
.site-header:not(.site-header--over-hero) {
  background: rgba(9, 9, 9, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-header--over-hero:not(.is-solid) {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), transparent);
}

.site-nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.3rem 0;
}

.site-nav-link:hover,
.site-nav-link.is-active {
  color: #fff;
}

.site-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.35rem;
  height: 2px;
  background: var(--ifc-orange);
  border-radius: 999px;
  transition: right 0.25s ease;
}

.site-nav-link:hover::after,
.site-nav-link.is-active::after {
  right: 0;
}

/* ——— Hero Banner ——— */
.hero {
  position: relative;
  min-height: 720px;
  height: clamp(700px, 88vh, 820px);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 7.5rem;
  padding-bottom: 3rem;
  isolation: isolate;
}

@media (min-width: 1024px) {
  .hero {
    align-items: flex-start;
    padding-top: 8.25rem;
  }
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  will-change: transform;
  transition: transform 0.1s linear;
  filter: saturate(0.92) contrast(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(9, 9, 9, 0.88) 0%,
      rgba(9, 9, 9, 0.55) 32%,
      rgba(9, 9, 9, 0.22) 55%,
      rgba(9, 9, 9, 0.4) 78%,
      rgba(9, 9, 9, 0.72) 100%),
    linear-gradient(180deg,
      rgba(9, 9, 9, 0.42) 0%,
      transparent 32%,
      rgba(9, 9, 9, 0.35) 70%,
      rgba(9, 9, 9, 0.9) 100%),
    radial-gradient(ellipse 65% 55% at 58% 48%, transparent 35%, rgba(0, 0, 0, 0.35) 100%);
}

.hero__glow {
  position: absolute;
  left: 35%;
  top: 20%;
  width: 55%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.16), rgba(245, 158, 11, 0.05) 42%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero__smoke {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 50% 35% at 70% 80%, rgba(255, 255, 255, 0.04), transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 85%, rgba(212, 175, 55, 0.035), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.55;
  animation: heroSmoke 12s ease-in-out infinite alternate;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.hero__particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.35);
  animation: particleFloat linear infinite;
  opacity: 0;
}

.hero__watermark {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-40%, -50%);
  width: min(52vw, 560px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 1;
  filter: sepia(0.35) saturate(1.4) brightness(1.05);
}

.hero__title {
  font-family: var(--ifc-display);
  font-size: clamp(4.5rem, 9vw, 5.625rem); /* 72–90px */
  line-height: 0.88;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

.hero__phrase {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--ifc-gold);
  font-weight: 600;
  margin-top: 1.1rem;
  max-width: 28rem;
  line-height: 1.35;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.65rem;
}

.hero__actions .btn-primary,
.hero__actions .btn-outline {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 1.15rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  .hero__actions .btn-primary,
  .hero__actions .btn-outline {
    width: auto;
    flex: 0 1 auto;
  }
}

.hero-match {
  position: relative;
  background: linear-gradient(165deg, rgba(28, 28, 28, 0.92), rgba(12, 12, 12, 0.88));
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 1.35rem;
  padding: 1.35rem 1.35rem 1.25rem;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-match:hover {
  transform: translateY(-4px);
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-match__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.hero-match__label {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ifc-orange);
  font-weight: 700;
}

.hero-match__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.1);
  color: var(--ifc-gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hero-match__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hero-match__team {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.hero-match__shield {
  height: 3.75rem;
  width: 3.75rem;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}

.hero-match__team-name {
  margin-top: 0.55rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-match__vs {
  font-family: var(--ifc-display);
  color: var(--ifc-gold);
  font-size: 1.55rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  line-height: 1;
}

.hero-match__meta {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}

.hero-match__when,
.hero-match__where {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.875rem;
  color: var(--ifc-muted);
}

.hero-match__when {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.hero-match__countdown {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  text-align: center;
}

.hero-match__tick {
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.55rem 0.25rem;
}

.hero-match__tick-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.hero-match__tick-label {
  margin-top: 0.2rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ifc-muted);
}

.hero-match__cta {
  margin-top: 1.15rem;
}

.share-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.share-bar__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ifc-gold);
}

.share-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.share-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.share-bar__btn:hover {
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.1);
  color: #fff;
}

.share-bar__btn--wa:hover {
  border-color: rgba(37, 211, 102, 0.55);
  background: rgba(37, 211, 102, 0.12);
}

.share-bar__btn.is-copied {
  border-color: rgba(52, 211, 153, 0.55);
  color: #6ee7b7;
}

.share-bar--compact {
  margin-top: 0;
}

.share-bar--compact .share-bar__label {
  display: none;
}

.share-bar--inline {
  margin-top: 0;
}

.share-bar--inline .share-bar__actions {
  justify-content: flex-end;
}

.share-bar.items-center .share-bar__label,
.share-bar.items-center .share-bar__actions {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.share-bar.items-center .share-bar__actions {
  justify-content: center;
}

.share-bar__btn--native {
  display: none;
}

@media (max-width: 767px) {
  .share-bar__btn--native {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .share-bar__btn {
    transition: none;
  }
}

@keyframes heroGlow {
  from { opacity: 0.65; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}

@keyframes heroSmoke {
  from { transform: translateY(0) scale(1); opacity: 0.55; }
  to { transform: translateY(-12px) scale(1.05); opacity: 0.85; }
}

@keyframes particleFloat {
  0% { transform: translateY(20px); opacity: 0; }
  15% { opacity: 0.7; }
  85% { opacity: 0.5; }
  100% { transform: translateY(-110px); opacity: 0; }
}

/* ——— Stats strip ——— */
.stats-strip {
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.stats-strip__panel {
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(17, 17, 17, 0.98));
  border: 1px solid var(--ifc-line);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.stats-strip__last {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 140px;
  padding: 1.25rem 1.1rem;
}

.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 110px;
  padding: 1.15rem 0.65rem;
  transition: background 0.2s ease;
  position: relative;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-strip__grid .stats-strip__item {
  border-right: 1px solid var(--ifc-line);
  border-bottom: 1px solid var(--ifc-line);
}

.stats-strip__grid .stats-strip__item:nth-child(2n) {
  border-right: none;
}

@media (min-width: 768px) {
  .stats-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-strip__grid .stats-strip__item:nth-child(2n) {
    border-right: 1px solid var(--ifc-line);
  }

  .stats-strip__grid .stats-strip__item:nth-child(3n) {
    border-right: none;
  }
}

@media (min-width: 1024px) {
  .stats-strip__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .stats-strip__grid .stats-strip__item {
    border-bottom: none;
    min-height: 140px;
  }

  .stats-strip__grid .stats-strip__item:nth-child(3n) {
    border-right: 1px solid var(--ifc-line);
  }

  .stats-strip__grid .stats-strip__item:nth-child(6n),
  .stats-strip__grid .stats-strip__item:last-child {
    border-right: none;
  }
}

.modalidade-filter {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.modalidade-filter__tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #e4e4e7;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.modalidade-filter__tab:hover {
  border-color: rgba(245, 158, 11, 0.55);
  color: #fff;
  background: rgba(245, 158, 11, 0.1);
}

.modalidade-filter__tab.is-active {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #090909;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.28);
}

.modalidade-filter.mod-filter--home {
  margin-top: 0.15rem;
}

.mod-filter-block {
  margin-bottom: 1rem;
}

.stats-strip__item:hover {
  background: rgba(245, 158, 11, 0.06);
}

.stats-strip__value {
  font-family: var(--ifc-display);
  font-size: 1.85rem;
  color: var(--ifc-orange);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
}

.stats-strip__label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ifc-muted);
  margin-top: 0.35rem;
  font-weight: 600;
}

/* ——— About ——— */
.about-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--ifc-line);
  background: var(--ifc-surface);
}

.about-fact {
  background: var(--ifc-card);
  border: 1px solid var(--ifc-line);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.about-fact:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.about-fact__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ifc-gold);
  font-weight: 600;
}

.about-fact__value {
  margin-top: 0.4rem;
  font-weight: 600;
  color: #fff;
}

.about-quote {
  position: relative;
  margin-top: 1.75rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(245, 158, 11, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--ifc-gold);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
}

.about-photo {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.2),
    0 0 60px rgba(245, 158, 11, 0.08);
  min-height: 360px;
  height: 100%;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 9, 0.55), transparent 45%);
  pointer-events: none;
}

/* ——— Player cards ——— */
.player-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.15;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--ifc-line);
  background: var(--ifc-card);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.player-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(245, 158, 11, 0.18);
}

.player-card__number {
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
  font-family: var(--ifc-display);
  font-size: clamp(4.5rem, 11vw, 7rem);
  line-height: 0.85;
  color: rgba(212, 175, 55, 0.16);
  z-index: 1;
  pointer-events: none;
  letter-spacing: 0.02em;
}

.player-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform 0.55s ease;
}

.player-card:hover .player-card__img {
  transform: scale(1.04);
}

.player-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.1rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.75) 55%, transparent 100%);
}

.player-card__name {
  font-family: var(--ifc-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.player-card__pos {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ifc-gold);
}

.player-card__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.player-card__meta span {
  text-align: center;
}

.player-card__meta strong {
  display: block;
  font-family: var(--ifc-display);
  font-size: 1.15rem;
  color: var(--ifc-orange);
  letter-spacing: 0.04em;
  line-height: 1;
}

.player-card__meta small {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ifc-muted);
}

.player-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.player-badge--capitao {
  background: rgba(212, 175, 55, 0.2);
  color: var(--ifc-gold);
  border: 1px solid rgba(212, 175, 55, 0.45);
}

.player-badge--artilheiro {
  background: rgba(245, 158, 11, 0.2);
  color: var(--ifc-orange);
  border: 1px solid rgba(245, 158, 11, 0.45);
}

.player-badge--novo {
  background: rgba(16, 185, 129, 0.18);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.player-badge--lesionado {
  background: rgba(239, 68, 68, 0.18);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

/* ——— Empty state ——— */
.empty-premium {
  position: relative;
  text-align: center;
  padding: 3.25rem 1.75rem;
  border: 1px solid var(--ifc-line);
  border-radius: 1.35rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 175, 55, 0.08), transparent 70%),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.empty-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

.empty-premium__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  color: var(--ifc-gold);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.empty-premium__title {
  font-family: var(--ifc-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--ifc-gold);
  text-transform: uppercase;
}

.empty-premium__text {
  color: var(--ifc-muted);
  margin-top: 0.85rem;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ——— Sponsor ——— */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .sponsors-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1280px) {
  .sponsors-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.35rem;
  }
}

.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 0.65rem 0.75rem;
  border-radius: 1.25rem;
  border: 1px solid var(--ifc-line);
  background: var(--ifc-card);
  text-decoration: none;
  color: #fff;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
  overflow: hidden;
}

a.sponsor-card {
  cursor: pointer;
}

.sponsor-card img {
  max-height: 7.25rem;
  max-width: 100%;
  width: 100%;
  height: 7.25rem;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(0.15) brightness(0.95);
}

.sponsor-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-4px);
  background: var(--ifc-hover);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.sponsor-card:hover img {
  transform: scale(1.08);
  filter: none;
}

/* ——— CTA ——— */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(245, 158, 11, 0.4);
  background:
    linear-gradient(120deg, rgba(245, 158, 11, 0.16), transparent 42%, rgba(212, 175, 55, 0.08)),
    linear-gradient(180deg, #171717, #111111);
  padding: 2.25rem 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band__title {
  font-family: var(--ifc-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

/* ——— Gallery / Instagram ——— */
.gallery-tile {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--ifc-line);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}

.gallery-tile:hover img {
  transform: scale(1.07);
  filter: brightness(0.75);
}

.gallery-tile:hover .gallery-tile__overlay {
  opacity: 1;
}

.gallery-tile__more {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-family: var(--ifc-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ig-tile {
  position: relative;
}

/* ——— Footer ——— */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--ifc-line);
  background:
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(212, 175, 55, 0.06), transparent),
    #050505;
  position: relative;
  overflow: hidden;
}

.site-footer__inner {
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

.site-footer__title {
  font-family: var(--ifc-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.15rem;
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ifc-line);
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ——— Misc ——— */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--ifc-orange);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.toast {
  position: fixed;
  top: 5.5rem;
  right: 1rem;
  z-index: 80;
  max-width: 22rem;
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  font-size: 0.875rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.toast-success {
  background: #052e16;
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #bbf7d0;
}

.toast-error {
  background: #450a0a;
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fecaca;
}

#back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 4.5rem;
  z-index: 40;
}

.text-gradient {
  background: linear-gradient(90deg, var(--ifc-orange), var(--ifc-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-orange {
  background: linear-gradient(90deg, var(--ifc-orange), var(--ifc-gold));
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.counter-animated {
  font-variant-numeric: tabular-nums;
}

.stat-mini-card {
  text-align: center;
  padding: 1.25rem 0.85rem;
}

/* ——— Responsive ——— */
@media (max-width: 1023px) {
  .hero {
    height: auto;
    min-height: 0;
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }

  .hero__title {
    font-size: clamp(3.25rem, 14vw, 4.5rem);
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.48) 0%, rgba(9, 9, 9, 0.62) 42%, rgba(9, 9, 9, 0.94) 100%),
      radial-gradient(ellipse at center, transparent 28%, rgba(0, 0, 0, 0.35) 100%);
  }

  .hero__watermark {
    width: 70vw;
    opacity: 0.1;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
  }

  .stats-strip {
    margin-top: 0;
  }

  .about-photo {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .ifc-section {
    padding: 3.75rem 0;
  }

  .stats-strip__value {
    font-size: 1.45rem;
  }

  .player-card__meta {
    gap: 0.2rem;
  }

  .cta-band {
    padding: 1.75rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__glow,
  .hero__smoke,
  .hero__particles span,
  .reveal {
    animation: none !important;
    transition: none !important;
  }

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