:root {
  --bg-main: #050816;
  --bg-alt: #0b1020;
  --bg-card: #14182a;
  --bg-card-soft: #171c30;
  --text-main: #f4f3ff;
  --text-muted: #b7b9d9;
  --accent: #ffb74d;
  --accent-strong: #ff9100;
  --accent-soft: #fdd18a33;
  --border-soft: #262b41;
  --danger: #ff5252;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 14px 35px rgba(0, 0, 0, 0.6);
  --max-width: 1200px;
}

/* =====================================================================
   RESET BÁSICO
   ===================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #151b32 0, #050816 45%, #02040a 100%);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

/* todas as imagens se ajustam ao container,
   exceto quando sobrescritas por classes específicas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================================================================
   LAYOUT BASE
   ===================================================================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =====================================================================
   HEADER
   ===================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(5, 8, 22, 0.92),
    rgba(5, 8, 22, 0.88),
    rgba(5, 8, 22, 0.85),
    rgba(5, 8, 22, 0.75),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

/* bloco nav + bandeira */

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

/* logo */

.logo-area {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.7);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* bandeira */

.header-flag {
  display: flex;
  align-items: center;
}

.header-flag img {
  width: 24px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0.9;
}

.header-flag img:hover {
  opacity: 1;
}

/* navegação */

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  font-size: 0.83rem;
  text-decoration: none;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    color 0.16s ease-out,
    background-color 0.16s ease-out,
    border-color 0.16s ease-out,
    transform 0.12s ease-out;
}

.nav-link:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* links visitados do menu mantêm a cor original */
.nav a:link,
.nav a:visited {
  color: var(--text-muted);
}

.nav a:hover {
  color: var(--text-main);
}

/* =====================================================================
   HERO DA HOME
   ===================================================================== */

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--text-main);
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(3, 6, 20, 0.9)),
    url("../img/hero-fairplaycs-banner2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 183, 77, 0.16), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3.4rem 0 3.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(5, 8, 22, 0.7);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 183, 77, 0.35);
}

.hero-tagline-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: 0 0 0 6px rgba(255, 145, 0, 0.18);
}

.hero-main {
  margin-top: 1.4rem;
  max-width: 720px;
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3rem);
  margin: 0 0 0.6rem;
}

.hero-title span {
  display: block;
  font-size: 0.78em;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.8;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.hero-description {
  font-size: 0.98rem;
  max-width: 620px;
  color: #e3defb;
}

/* =====================================================================
   BOTÕES
   ===================================================================== */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.16s ease-out,
    color 0.16s ease-out,
    border-color 0.16s ease-out,
    transform 0.08s ease-out;
}

/* botão laranja com texto bem legível */
.btn-primary {
  background: var(--accent-strong);
  color: #ffffff !important;
  font-weight: 800;
  text-shadow: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
}

.btn-primary:hover {
  background: #000000;
  color: #ffffff !important;
  text-shadow: none !important;
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* =====================================================================
   LAYOUT PRINCIPAL HOME
   ===================================================================== */

.main-container {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(220px, 0.4fr);
  gap: 2rem;
  margin-top: 2rem;
  padding-bottom: 3rem;
}

.content-column {
  background: linear-gradient(145deg, #101529, #090d1d);
  border-radius: 22px;
  padding: 1.8rem 1.7rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* =====================================================================
   CARDS GENÉRICOS
   ===================================================================== */

.card {
  background: linear-gradient(145deg, #14182a, #0a0f20);
  border-radius: 18px;
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.sidebar-card {
  font-size: 0.92rem;
}

.sidebar-title {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li + li {
  margin-top: 0.4rem;
}

/* =====================================================================
   SEÇÕES DA COLUNA PRINCIPAL
   ===================================================================== */

.section-title {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.subsection-title {
  font-size: 1rem;
  margin: 0.2rem 0 0.4rem;
}

/* listas de regras */

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0.6rem 0 1rem;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.78rem;
  color: var(--accent);
}

.rules-list {
  margin: 0.7rem 0 1.2rem;
  padding-left: 1.1rem;
}

/* =====================================================================
   TABELAS (CAMPEONATOS, JOGOS ETC.)
   ===================================================================== */

.table-wrapper {
  margin-top: 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at top left, rgba(255, 183, 77, 0.11), rgba(11, 16, 35, 0.95));
  overflow-x: auto;
  overflow-y: hidden;
}

.matches-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 640px; /* evita esmagar no mobile */
}

.matches-table thead {
  background: rgba(0, 0, 0, 0.55);
}

.matches-table th,
.matches-table td {
  padding: 0.7rem 0.8rem;
  vertical-align: top;
}

.matches-table th {
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.matches-table tbody tr:nth-child(odd) {
  background: rgba(5, 8, 22, 0.9);
}

.matches-table tbody tr:nth-child(even) {
  background: rgba(10, 14, 35, 0.96);
}

.matches-table tbody tr:hover {
  background: rgba(30, 36, 72, 0.95);
}

.matches-table a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.matches-table a:hover {
  text-decoration: underline;
}

/* =====================================================================
   LISTA DE TIMES – COLUNA "TIMES INSCRITOS"
   ===================================================================== */

/* container geral */

.team-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* item */

.team-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* logo */

.team-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* nome do time */

.team-list li strong {
  font-size: 1rem;
  white-space: nowrap;
}

/* =====================================================================
   PADRINHOS (CARDS)
   ===================================================================== */

.godfathers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.godfather-card {
  background: radial-gradient(circle at top left, rgba(255, 183, 77, 0.07), #12172a);
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  flex: 1 1 calc(33.333% - 0.8rem);
  max-width: calc(33.333% - 0.8rem);
}

.godfather-card h4 {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
}

.steam-link,
.faceit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--accent);
  text-decoration: none;
  margin-right: 0.4rem;
}

.steam-link:hover,
.faceit-link:hover {
  text-decoration: underline;
}

.steam-icon,
.faceit-icon {
  width: 14px;
  height: 14px;
}

.gc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--accent);
  text-decoration: none;
  margin-right: 0.4rem;
}

.gc-link:hover {
  text-decoration: underline;
}

.gc-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}



/* =====================================================================
   BLOCO FINAL DA HOME
   ===================================================================== */

.final-block {
  padding: 1.5rem 0 3rem;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.final-card {
  background: radial-gradient(circle at top left, rgba(255, 183, 77, 0.1), #11162b);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

/* =====================================================================
   FOOTER HOME
   ===================================================================== */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0 1.4rem;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
}

.footer-note {
  color: #9fa3d1;
}

/* link "voltar ao topo" */

.back-to-top {
  text-align: right;
  margin: 1.8rem 0 2.6rem;
}

.back-to-top a {
  font-size: 0.85rem;
  color: var(--accent);
  opacity: 0.8;
  text-decoration: none;
}

.back-to-top a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* =====================================================================
   RESPONSIVIDADE GERAL
   ===================================================================== */

@media (max-width: 960px) {
  .header-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-container {
    grid-template-columns: minmax(0, 1fr);
  }

  .sidebar {
    order: -1;
  }

  .hero-content {
    padding: 2.6rem 0 2.4rem;
  }

  .godfather-card {
    flex: 1 1 calc(50% - 0.8rem);
    max-width: calc(50% - 0.8rem);
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.1rem;
  }

  .content-column {
    padding: 1.4rem 1.2rem 1.5rem;
  }

  .hero {
    min-height: 50vh;
    background-position: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.94rem;
  }

  .final-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-flag img {
    width: 20px;
  }

  .godfather-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* grid de times no mobile: 2 colunas */

@media (max-width: 680px) {
  .team-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .team-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-logo {
    width: 60px;
    height: 60px;
  }

  .team-list li strong {
    font-size: 0.9rem;
    white-space: normal;
  }
}

/* =====================================================================
   LINKS VISITADOS (MANTÊM COR)
   ===================================================================== */

.matches-table a:visited,
.sidebar a:visited,
.godfather-card a:visited,
.final-card a:visited,
.hero a:visited,
.footer a:visited,
.award-card a:visited,
.section a:visited {
  color: var(--accent);
}

/* =====================================================================
   PÁGINA DO CAMPEONATO (campeonato-brasileiro-1.html)
   ===================================================================== */

.fp-body {
  min-height: 100vh;
}

/* hero específico */

.fp-body .hero {
  min-height: 40vh;
  padding: 3.5rem 0 2.5rem;
}

.fp-body .hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.fp-body .hero-logo img {
  max-width: 140px;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 35px rgba(0, 0, 0, 0.7));
}

.fp-body .hero-text h1 {
  font-size: clamp(2.1rem, 3.2vw, 2.6rem);
  margin: 0.4rem 0 0.8rem;
}

.fp-body .hero-text h1 span {
  display: block;
  font-size: 0.9em;
  opacity: 0.9;
}

.fp-body .hero-subtitle {
  margin-top: 0.2rem;
  margin-bottom: 0.8rem;
}

.fp-body .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: rgba(5, 8, 22, 0.7);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
}

.fp-body .hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: 0 0 0 6px rgba(255, 145, 0, 0.18);
}

.fp-body .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.fp-body .hero-meta span::before {
  content: "• ";
  opacity: 0.7;
}

/* layout principal da página */

.fp-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

/* seções genéricas */

.fp-section {
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.fp-section:last-of-type {
  border-bottom: none;
}

.fp-breadcrumb {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.fp-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.fp-breadcrumb a:hover {
  color: var(--accent);
}

/* títulos & textos */

.fp-section-title {
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}

.fp-section-subtitle {
  margin: 0 0 1.4rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.fp-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* grid de cards */

.fp-grid-2 {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 880px) {
  .fp-grid-2 {
    grid-template-columns: 1.2fr 1.1fr;
  }
}

/* cards */

.fp-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgb(23, 30, 51);
}

.fp-card h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
}

.fp-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.fp-card li + li {
  margin-top: 0.45rem;
}

.fp-card--highlight {
  border-color: var(--accent-soft);
  background: linear-gradient(135deg, rgba(255, 145, 0, 0.1), rgba(10, 14, 35, 0.95));
}

/* botões dessa página */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.16s ease-out,
    color 0.16s ease-out,
    border-color 0.16s ease-out,
    transform 0.08s ease-out;
}

.btn--primary {
  background: var(--accent-strong);
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
}

.btn--primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* rodapé da página */

.fp-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.4rem 1.5rem 1.7rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.4rem;
  background: rgba(5, 8, 22, 0.96);
}

.fp-footer a {
  color: var(--accent);
  text-decoration: none;
}

.fp-footer a:hover {
  text-decoration: underline;
}

/* voltar ao topo na página do campeonato */

.fp-body .back-to-top {
  text-align: right;
  max-width: var(--max-width);
  margin: 1rem auto 1.5rem;
  padding: 0 1.5rem;
}

/* =====================================================================
   REGULAMENTO – ESTILOS
   ===================================================================== */

.reg-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.reg-back {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.reg-back:hover {
  text-decoration: underline;
}

.reg-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

.reg-toc a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
}

.reg-toc a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.reg-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.7rem 1.7rem 1.8rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
}

.reg-card h2 {
  font-size: 1.4rem;
  margin-top: 0;
}

.reg-card .num {
  color: var(--accent);
  margin-right: 0.4rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.8rem 0 1.2rem;
}

.pill {
  background: rgba(255, 183, 77, 0.15);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
}

.note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 145, 0, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  color: var(--text-main);
  font-size: 0.9rem;
}

/* =====================================================================
   SIDEBAR – PATROCINADORES
   ===================================================================== */

.sidebar-sponsors {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-sponsor {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-sponsor:first-of-type {
  border-top: none;
  padding-top: 0;
}

.sidebar-sponsor .sponsor-logo-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4rem 0;
}

.sidebar-sponsor .sponsor-logo-img img {
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.sidebar-sponsor-links {
  margin-top: 0.4rem;
}

/* ícone instagram */

.instagram-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 0.35rem;
  vertical-align: middle;
}

/* links patrocinadores */

.sponsor-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.6rem;
}

.sponsor-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.18s ease, transform 0.18s ease;
}

.sponsor-link:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.sponsor-link .instagram-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.sponsor-link:hover .instagram-icon {
  opacity: 1;
}


/* Faixa horizontal de patrocinadores na página do campeonato */
.fp-sponsors-strip {
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.fp-sponsors-strip-inner {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.fp-sponsors-strip .sidebar-sponsor {
  border: none;
  padding: 0;
  margin: 0;
}

.fp-sponsors-strip .sponsor-logo-img img {
  max-height: 60px;  /* logos bem menores */
  width: auto;
}

.fp-sponsors-strip .sidebar-sponsor-links {
  margin-top: 0.3rem;
  text-align: center;
}
