:root {
  --red: #e1272d;
  --red-dark: #b7141b;
  --ink: #111820;
  --navy: #17212b;
  --navy-light: #22303e;
  --cream: #f4f1e9;
  --paper: #faf9f5;
  --muted: #67717b;
  --line: #d9d8d1;
  --yellow: #f2bf27;
  --green: #1b8a53;
  --blue: #1767a7;
  --display: "Barlow Condensed", sans-serif;
  --body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

/* TOPBAR */
.topbar {
  background: #0e161e;
  color: #aeb6be;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.topbar-inner {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar p {
  margin: 0;
  display: flex;
  align-items: center;
}

.topbar-inner > div {
  display: flex;
  gap: 26px;
  align-items: center;
}

.topbar a:hover {
  color: #fff;
}

.pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #43d17d;
  margin-right: 8px;
  box-shadow: 0 0 0 4px #43d17d22;
}

/* HEADER & NAVIGATION */
.site-header {
  height: 82px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: #fff;
  font: 900 18px var(--display);
  transform: skew(-7deg);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 0.8;
}

.brand strong {
  font: 900 22px var(--display);
  letter-spacing: 0.04em;
  color: var(--ink);
}

.brand small {
  font: 800 12px var(--display);
  letter-spacing: 0.33em;
  color: var(--red);
  margin-top: 7px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 100%;
}

.main-nav a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--ink);
}

.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: var(--red);
}

.search-button {
  border: 0;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
  transition: color 0.2s;
  padding: 8px;
}

.search-button:hover {
  color: var(--red);
}

.support-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  border: none;
  transition: 0.2s ease;
  white-space: nowrap;
}

.support-button:hover,
.primary-button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(225, 39, 45, 0.25);
}

.dark-button {
  background: var(--ink);
}

.dark-button:hover {
  background: #000;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.white-button {
  background: #fff;
  color: var(--red);
}

.white-button:hover {
  background: #f7f7f7;
  color: var(--red-dark);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

.outline-button {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
  gap: 16px;
  transition: 0.2s ease;
}

.outline-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.menu-button {
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  background: #17212b;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 25, 0.96) 0%, rgba(12, 20, 27, 0.85) 45%, rgba(12, 20, 27, 0.3) 78%),
              linear-gradient(0deg, rgba(10, 16, 22, 0.75), transparent 60%),
              url("images/hero_futebol_moamba.jpg") center 40%/cover no-repeat;
  filter: saturate(0.95);
}

.hero-stripes {
  position: absolute;
  right: 4%;
  top: -20%;
  height: 140%;
  width: 24%;
  background: linear-gradient(110deg, transparent 0 38%, #e1272d25 38% 54%, transparent 54% 62%, #f2bf2718 62% 70%, transparent 70%);
  transform: skewX(-8deg);
  pointer-events: none;
}

.hero-grid {
  min-height: 640px;
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 60px;
  padding: 40px 0;
}

.eyebrow,
.kicker {
  display: inline-block;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  font-size: 10px;
  margin-right: 8px;
}

.hero h1,
.section-heading h2,
.athlete-copy h2,
.agenda-grid h2,
.support-inner h2,
.page-hero h1 {
  font: 900 clamp(44px, 5.5vw, 76px)/0.88 var(--display);
  letter-spacing: -0.025em;
  margin: 18px 0;
  text-transform: uppercase;
}

.hero h1 em,
.page-hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-copy > p {
  max-width: 540px;
  color: #d8dde1;
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.play-link {
  border: 0;
  background: none;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.play {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 11px;
  transition: 0.2s;
}

.play-link:hover .play {
  border-color: var(--red);
  background: var(--red);
}

.hero-stats {
  display: flex;
  margin-top: 48px;
  gap: 32px;
}

.hero-stats div {
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
}

.hero-stats div:last-child {
  border: 0;
}

.hero-stats strong {
  font: 800 32px var(--display);
  line-height: 1;
}

.hero-stats span {
  color: #aeb7bf;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* SCORE CARD */
.score-card {
  align-self: end;
  margin-bottom: 40px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-top: 4px solid var(--red);
}

.score-head {
  display: flex;
  justify-content: space-between;
  background: var(--red);
  color: #fff;
  padding: 12px 18px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.score-date {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 18px 10px 6px;
  font-weight: 600;
}

.teams-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 18px 24px;
}

.team {
  text-align: center;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.crest,
.big-crest {
  display: grid;
  place-items: center;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  color: #fff;
  border: 3px double rgba(255, 255, 255, 0.7);
  font: 800 16px var(--display);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.crest-a { background: var(--red); }
.crest-b { background: var(--blue); }
.crest-c { background: var(--green); }
.crest-d { background: #b8860b; }

.score {
  display: flex;
  gap: 8px;
  align-items: center;
}

.score span {
  font: 900 34px var(--display);
}

.score small {
  background: #ecedf0;
  color: #75808a;
  padding: 4px 6px;
  font-size: 8px;
  font-weight: 800;
}

.score-card > a {
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.score-card > a:hover {
  background: #fff8f8;
}

.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-hint span {
  height: 18px;
  width: 2px;
  background: var(--red);
}

/* SPORTS BAR */
.sports-bar {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.sports-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.sports-list a {
  height: 84px;
  border-right: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 700 15px var(--display);
  text-transform: uppercase;
  transition: 0.2s;
  color: var(--ink);
}

.sports-list a:first-child {
  border-left: 1px solid #ececec;
}

.sports-list a span {
  font-size: 20px;
  filter: grayscale(1);
  transition: 0.2s;
}

.sports-list a:hover,
.sports-list a.active {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 39, 45, 0.2);
}

.sports-list a:hover span,
.sports-list a.active span {
  filter: none;
}

/* GENERAL SECTION STYLES */
.section {
  padding: 85px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 20px;
}

.section-heading h2 {
  font-size: 44px;
  margin: 6px 0 0;
}

.section-heading > a {
  color: var(--red);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 6px;
  white-space: nowrap;
}

.section-heading > a:hover {
  border-color: var(--red);
}

/* NEWS SECTION & CARDS */
.news-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid #e5e3dc;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.image-wrap {
  height: 320px;
  position: relative;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .image-wrap img {
  transform: scale(1.03);
}

.football-photo {
  background: url("images/jogo_classico_terra.jpg") center/cover no-repeat;
}

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  padding: 5px 9px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  z-index: 2;
}

.tag.orange { background: #e88524; }
.tag.dark { background: #202a35; }
.tag.green { background: var(--green); }
.tag.blue { background: var(--blue); }
.tag.light { position: static; background: rgba(255, 255, 255, 0.2); }

.story-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.story-body time,
.story-row time {
  color: #8b949c;
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.story-body h3 {
  font: 800 28px/1.1 var(--display);
  margin: 10px 0;
  letter-spacing: -0.01em;
}

.story-body p,
.story-row p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px;
  font-size: 14px;
}

.story-body a,
.story-row a {
  color: var(--red);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.story-body a:hover,
.story-row a:hover {
  color: var(--red-dark);
}

.side-stories {
  display: grid;
  gap: 16px;
}

.story-row {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 145px;
}

.thumb {
  position: relative;
  background-size: cover;
  background-position: center;
}

.basketball-photo {
  background-image: url("images/basquete_comunitario.jpg");
}

.chess-photo {
  background-image: url("images/xadrez_comunitario.jpg");
}

.story-row > div:last-child {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
}

.story-row h3 {
  font: 800 19px/1.15 var(--display);
  margin: 6px 0 8px;
}

.story-row p {
  font-size: 12px;
  margin: 0 0 10px;
}

.brief {
  padding: 24px;
  background: var(--red);
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  border: 0;
}

.brief-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 22px;
}

.brief h3 {
  font: 800 20px var(--display);
  margin: 6px 0 4px;
}

.brief p {
  font-size: 12px;
  margin: 0;
  color: #ffd9d9;
}

.brief > a {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}

/* LIVE MATCHES & STANDINGS */
.live-section {
  background: var(--navy);
  color: #fff;
}

.light-heading h2 {
  color: #fff;
}

.tabs {
  display: flex;
  background: #0d151c;
  padding: 4px;
}

.tabs button {
  border: 0;
  background: none;
  color: #88939d;
  padding: 10px 18px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: 0.2s;
}

.tabs button.active {
  background: var(--red);
  color: #fff;
}

.match-list {
  display: grid;
  gap: 8px;
}

.match {
  display: grid;
  grid-template-columns: 100px 42px 1fr 90px 1fr 42px 110px;
  align-items: center;
  gap: 15px;
  background: #202c37;
  padding: 16px 20px;
  border-left: 3px solid transparent;
  transition: 0.2s ease;
}

.match:hover {
  border-color: var(--red);
  background: #25333f;
}

.match time {
  font: 700 15px var(--display);
  color: #fff;
  line-height: 1.2;
}

.match time small {
  font: 500 9px var(--body);
  color: #8e99a3;
  text-transform: uppercase;
  display: block;
}

.mini-crest {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 800 11px var(--display);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.red { background: var(--red); }
.blue { background: var(--blue); }
.yellow { background: #c69200; }
.green { background: var(--green); }

.match strong {
  font: 700 15px var(--display);
  letter-spacing: 0.02em;
}

.match b {
  text-align: center;
  font: 800 22px var(--display);
  letter-spacing: 0.05em;
}

.match a {
  text-align: right;
  color: #aab3bb;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.match a:hover {
  color: var(--red);
}

.hidden {
  display: none !important;
}

/* CLUBS SECTION */
.club-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.club-card {
  background: #fff;
  border: 1px solid #e2e0da;
  transition: transform 0.2s, box-shadow 0.2s;
}

.club-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.club-top {
  height: 170px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.club-top:after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border: 24px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.red-top { background: linear-gradient(135deg, #e23438, #a81016); }
.blue-top { background: linear-gradient(135deg, #2578b7, #113f70); }
.green-top { background: linear-gradient(135deg, #28a667, #126139); }
.dark-top { background: linear-gradient(135deg, #32404e, #18222b); }

.big-crest {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: #18222c;
  font-size: 22px;
}

.district {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 8px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.club-card > div:last-child {
  padding: 20px;
}

.club-card > div > span {
  font-size: 10px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: block;
}

.club-card h3 {
  font: 800 21px/1.1 var(--display);
  margin: 8px 0;
}

.club-card p {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 14px;
}

.club-card a {
  font-size: 10px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.join-card {
  border: 2px dashed #b9b9b4;
  background: transparent;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.join-card > span {
  font-size: 36px;
  color: var(--red);
  line-height: 1;
}

.join-card h3 {
  font: 800 24px/1.05 var(--display);
  margin: 14px 0 8px;
}

.join-card p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.join-card button,
.join-card a {
  background: none;
  border: 0;
  border-bottom: 2px solid var(--red);
  padding: 6px 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ATHLETE SECTION */
.athlete-section {
  background: var(--cream);
}

.athlete-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: stretch;
}

.athlete-photo {
  position: relative;
  background: linear-gradient(0deg, rgba(16, 24, 32, 0.75) 0%, transparent 60%),
              url("images/atleta_celina.jpg") center 30%/cover no-repeat;
  min-height: 520px;
}

.player-number {
  position: absolute;
  right: -10px;
  top: 10px;
  color: rgba(255, 255, 255, 0.2);
  font: 900 170px var(--display);
  line-height: 1;
  pointer-events: none;
}

.photo-caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.photo-caption span {
  font-size: 10px;
  text-transform: uppercase;
  color: #ffb6b6;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.photo-caption strong {
  font: 800 32px var(--display);
  line-height: 1.1;
}

.athlete-copy {
  padding: 50px 30px 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.athlete-copy h2 {
  font-size: 52px;
}

.athlete-copy > p {
  line-height: 1.7;
  color: var(--muted);
  font-size: 15px;
}

.athlete-copy blockquote {
  border-left: 3px solid var(--red);
  margin: 24px 0;
  padding: 6px 0 6px 18px;
  font: 700 19px/1.3 var(--display);
  color: var(--ink);
}

.player-data {
  display: flex;
  margin: 22px 0 28px;
}

.player-data div {
  min-width: 95px;
  border-right: 1px solid #d5d1c7;
  display: flex;
  flex-direction: column;
  padding-left: 18px;
}

.player-data div:first-child {
  padding-left: 0;
}

.player-data strong {
  font: 800 28px var(--display);
  line-height: 1;
}

.player-data span {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* PLACES / RECINTOS SECTION */
.places-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 25px;
}

.map-card {
  min-height: 420px;
  background: #d9d7cf;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(30deg, #e1dfd8 12%, transparent 12.5%, transparent 87%, #e1dfd8 87.5%),
                    linear-gradient(150deg, #e1dfd8 12%, transparent 12.5%, transparent 87%, #e1dfd8 87.5%);
  background-size: 55px 95px;
  border: 1px solid #c9c7c0;
}

.road {
  position: absolute;
  background: #f7f5ef;
  box-shadow: 0 0 0 1px #c9c7c0;
}

.road-a {
  height: 1000px;
  width: 28px;
  left: 47%;
  top: -270px;
  transform: rotate(31deg);
}

.road-b {
  height: 800px;
  width: 18px;
  left: 23%;
  top: -130px;
  transform: rotate(-48deg);
}

.road-c {
  height: 800px;
  width: 14px;
  right: 13%;
  top: -170px;
  transform: rotate(75deg);
}

.pin {
  position: absolute;
  border: 4px solid #fff;
  background: var(--red);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform 0.2s;
  cursor: pointer;
}

.pin:hover {
  transform: scale(1.15);
}

.p1 { left: 41%; top: 36%; }
.p2 { right: 18%; top: 21%; }
.p3 { left: 23%; bottom: 20%; }

.map-label {
  position: absolute;
  font: 700 11px var(--display);
  color: #555d56;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.7);
  padding: 2px 6px;
  border-radius: 2px;
}

.l1 { left: 42%; top: 27%; }
.l2 { right: 8%; top: 11%; }
.l3 { left: 12%; bottom: 13%; }

.map-pop {
  position: absolute;
  left: 48%;
  top: 42%;
  background: #fff;
  width: 215px;
  padding: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  z-index: 10;
  border-left: 3px solid var(--red);
}

.map-pop small {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.map-pop strong {
  font: 800 18px var(--display);
  margin: 4px 0;
}

.map-pop span {
  font-size: 11px;
  color: var(--muted);
}

.map-pop a {
  font-size: 10px;
  color: var(--red);
  font-weight: 800;
  margin-top: 10px;
  text-transform: uppercase;
}

.venue-list {
  display: grid;
  gap: 12px;
}

.venue {
  border: 1px solid #dfddd7;
  background: #fff;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  transition: 0.2s;
}

.venue.active,
.venue:hover {
  border-left: 4px solid var(--red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.venue > span {
  font: 800 24px var(--display);
  color: #c7c7c2;
}

.venue small {
  font-size: 9px;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.05em;
  display: block;
}

.venue h3 {
  font: 800 20px var(--display);
  margin: 4px 0;
}

.venue p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.venue a {
  grid-column: 2;
  font-size: 10px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 6px;
  display: inline-block;
}

/* AGENDA SECTION */
.agenda-section {
  background: #fff;
}

.agenda-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.agenda-grid h2 {
  font-size: 54px;
}

.agenda-grid > div:first-child > p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 24px;
}

.events article {
  display: grid;
  grid-template-columns: 76px 1fr 40px;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #ddd;
  padding: 18px 0;
}

.events article:last-child {
  border-bottom: 1px solid #ddd;
}

.events time {
  display: flex;
  flex-direction: column;
  color: var(--red);
  font-size: 11px;
  text-align: center;
  font-weight: 700;
}

.events time strong {
  font: 900 36px var(--display);
  line-height: 0.9;
}

.events span {
  font-size: 9px;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.events h3 {
  font: 800 20px var(--display);
  margin: 4px 0 2px;
}

.events p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.events button {
  border: 1px solid #ddd;
  background: none;
  width: 38px;
  height: 38px;
  font-size: 20px;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: 0.2s;
}

.events button:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* SUPPORT SECTION */
.support-section {
  background: var(--red);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.support-section:after {
  content: "MD";
  position: absolute;
  right: -30px;
  top: -70px;
  font: 900 280px var(--display);
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.support-inner {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding: 60px 0;
  gap: 40px;
}

.support-inner .kicker {
  color: #ffc5c5;
}

.support-inner h2 {
  font-size: 54px;
  margin: 12px 0;
}

.support-inner p {
  color: #ffd7d7;
  max-width: 580px;
  font-size: 16px;
  line-height: 1.6;
}

.support-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.support-actions > a:last-child {
  text-transform: uppercase;
  font-size: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
  font-weight: 700;
  color: #fff;
}

/* FOOTER */
footer {
  background: #0f171f;
  color: #a8b0b7;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand {
  color: #fff;
  width: max-content;
  margin-bottom: 20px;
}

.footer-brand strong {
  color: #fff;
}

.footer-grid p {
  font-size: 13px;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid #303a43;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  transition: 0.2s;
}

.socials a:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer-grid h4 {
  font: 800 18px var(--display);
  color: #fff;
  text-transform: uppercase;
  margin: 4px 0 20px;
  letter-spacing: 0.05em;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-grid > div:not(:first-child) a {
  font-size: 13px;
  color: #a8b0b7;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #263039;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =======================================================
   SUBPAGE SPECIFIC STYLES & COMPONENTS
   ======================================================= */

/* SUBPAGE HERO & BREADCRUMB */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 55px 0 45px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--red);
}

.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 33, 43, 0.98), rgba(23, 33, 43, 0.85));
  z-index: 1;
}

.page-hero.hero-bg-news:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/jogo_classico_terra.jpg") center/cover no-repeat;
  opacity: 0.2;
}

.page-hero.hero-bg-sports:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/voleibol_andebol_rural.jpg") center/cover no-repeat;
  opacity: 0.2;
}

.page-hero.hero-bg-clubs:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/comunidade_festa.jpg") center/cover no-repeat;
  opacity: 0.2;
}

.page-hero.hero-bg-athletes:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/atleta_celina.jpg") center/cover no-repeat;
  opacity: 0.2;
}

.page-hero.hero-bg-venues:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/campo_primeiro_maio.jpg") center/cover no-repeat;
  opacity: 0.2;
}

.page-hero.hero-bg-results:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero_futebol_moamba.jpg") center/cover no-repeat;
  opacity: 0.2;
}

.page-hero.hero-bg-support:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/comunidade_festa.jpg") center/cover no-repeat;
  opacity: 0.25;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8b96a0;
  margin-bottom: 12px;
}

.breadcrumb a {
  color: #d8dde1;
}

.breadcrumb a:hover {
  color: var(--red);
}

.page-hero h1 {
  font-size: clamp(40px, 4.5vw, 62px);
  margin: 6px 0 12px;
}

.page-hero p.lead {
  max-width: 680px;
  color: #cfd6dc;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* FILTER PILLS BAR */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  padding: 16px 20px;
  border: 1px solid var(--line);
  margin-bottom: 35px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  border: 1px solid #ddd;
  background: #faf9f7;
  color: var(--ink);
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  transition: 0.2s;
  cursor: pointer;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.filter-search-box {
  display: flex;
  align-items: center;
  background: #faf9f7;
  border: 1px solid #ddd;
  padding: 6px 12px;
  border-radius: 4px;
}

.filter-search-box input {
  border: 0;
  background: none;
  font-size: 13px;
  outline: none;
  width: 180px;
}

/* NEWS ARCHIVE GRID */
.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-header {
  padding: 40px 0 30px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  font: 900 clamp(36px, 4.5vw, 56px)/0.95 var(--display);
  letter-spacing: -0.02em;
  margin: 16px 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  padding: 50px 0;
}

.article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #242c34;
}

.article-content p {
  margin-bottom: 22px;
}

.article-content h3 {
  font: 800 26px var(--display);
  margin: 32px 0 14px;
  color: var(--ink);
  text-transform: uppercase;
}

.article-lead-img {
  margin-bottom: 30px;
  border: 1px solid var(--line);
}

.article-lead-img figcaption {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--muted);
  background: #f4f3ee;
  border-top: 1px solid var(--line);
  font-style: italic;
}

.article-quote {
  background: var(--cream);
  border-left: 4px solid var(--red);
  padding: 24px 28px;
  margin: 30px 0;
  font: 700 22px/1.35 var(--display);
  color: var(--ink);
}

.article-quote cite {
  display: block;
  font: 600 12px var(--body);
  text-transform: uppercase;
  color: var(--red);
  margin-top: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}

.sidebar-widget h4 {
  font: 800 20px var(--display);
  text-transform: uppercase;
  margin: 0 0 16px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
}

.match-facts-list {
  display: grid;
  gap: 12px;
  font-size: 13px;
}

.match-facts-list div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #e2e0da;
  padding-bottom: 8px;
}

.match-facts-list div strong {
  color: var(--ink);
}

/* STANDINGS TABLE (CLASSIFICAÇÕES) */
.table-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow-x: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.table-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: #17212b;
  color: #fff;
}

.table-card-head h3 {
  font: 800 22px var(--display);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.table-badge {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  padding: 4px 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

.standings-table th {
  background: #f7f6f1;
  padding: 12px 16px;
  font: 800 11px var(--display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.standings-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #ebe9e2;
  vertical-align: middle;
}

.standings-table tr:hover td {
  background: #faf7f0;
}

.standings-table .pos {
  font: 800 16px var(--display);
  width: 35px;
  color: var(--ink);
}

.standings-table tr:nth-child(1) .pos {
  color: var(--red);
}

.standings-table .team-name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--ink);
}

.standings-table .pts {
  font: 900 18px var(--display);
  color: var(--red);
}

.form-badges {
  display: flex;
  gap: 4px;
}

.form-badge {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  font: 800 10px var(--display);
  color: #fff;
  display: grid;
  place-items: center;
}

.form-w { background: var(--green); }
.form-d { background: #b8860b; }
.form-l { background: var(--red); }

/* TOP SCORERS / ARTILHEIROS */
.scorers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.scorer-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.scorer-rank {
  font: 900 36px var(--display);
  color: var(--red);
  line-height: 1;
}

.scorer-info h4 {
  font: 800 19px var(--display);
  margin: 0 0 4px;
}

.scorer-info p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.scorer-goals {
  margin-left: auto;
  text-align: right;
}

.scorer-goals strong {
  font: 900 28px var(--display);
  color: var(--ink);
  display: block;
  line-height: 1;
}

.scorer-goals span {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

/* MODALIDADES SHOWCASE */
.sports-showcase-grid {
  display: grid;
  gap: 45px;
}

.sport-detail-card {
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.sport-detail-card:nth-child(even) {
  direction: rtl;
}

.sport-detail-card:nth-child(even) > div {
  direction: ltr;
}

.sport-detail-img {
  height: 100%;
  min-height: 380px;
  position: relative;
}

.sport-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sport-detail-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sport-detail-body h3 {
  font: 900 36px/1.05 var(--display);
  margin: 10px 0 16px;
  text-transform: uppercase;
}

.sport-detail-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sport-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 26px;
}

.sport-feature-item {
  background: #faf8f3;
  padding: 12px 14px;
  border-left: 3px solid var(--red);
}

.sport-feature-item small {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  display: block;
}

.sport-feature-item strong {
  font: 800 16px var(--display);
  color: var(--ink);
}

/* CLUB DIRECTORY FULL CARDS */
.club-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.club-full-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.club-full-header {
  padding: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.club-full-header.acm-bg { background: linear-gradient(135deg, #e1272d, #8f0d12); }
.club-full-header.cdr-bg { background: linear-gradient(135deg, #1865a3, #0b375b); }
.club-full-header.ads-bg { background: linear-gradient(135deg, #1b8a53, #0e4e2e); }
.club-full-header.ep-bg { background: linear-gradient(135deg, #b8860b, #705206); }
.club-full-header.mac-bg { background: linear-gradient(135deg, #32404e, #141c24); }
.club-full-header.cfm-bg { background: linear-gradient(135deg, #b82b12, #5a1408); }

.club-full-header h3 {
  font: 800 24px var(--display);
  margin: 0;
  line-height: 1.1;
}

.club-full-header span.badge {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 6px;
  display: inline-block;
  margin-top: 4px;
}

.club-full-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.club-info-list {
  display: grid;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 20px;
}

.club-info-list div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #e8e6e0;
  padding-bottom: 6px;
}

.club-info-list div span {
  color: var(--muted);
}

.club-info-list div strong {
  color: var(--ink);
}

/* ATHLETES DIRECTORY */
.athletes-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.athlete-card-profile {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.athlete-card-profile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.athlete-card-photo {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.athlete-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.athlete-card-profile:hover .athlete-card-photo img {
  transform: scale(1.04);
}

.athlete-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 8px;
  text-transform: uppercase;
}

.athlete-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.athlete-card-body h3 {
  font: 800 24px var(--display);
  margin: 4px 0 2px;
}

.athlete-card-body .team-sub {
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.athlete-card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 16px;
}

.athlete-stats-row {
  display: flex;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid #eee;
  padding-top: 14px;
}

.athlete-stats-row div {
  flex: 1;
  text-align: center;
}

.athlete-stats-row strong {
  font: 800 20px var(--display);
  display: block;
  line-height: 1;
}

.athlete-stats-row small {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
}

/* RECINTOS FULL DIRECTORY */
.venues-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.venue-card-full {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.venue-card-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.venue-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.venue-card-body h3 {
  font: 800 26px var(--display);
  margin: 6px 0 12px;
}

.venue-card-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.venue-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  background: #f7f6f1;
  padding: 14px;
}

.venue-spec-grid div {
  display: flex;
  flex-direction: column;
}

.venue-spec-grid small {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
}

.venue-spec-grid strong {
  font: 800 15px var(--display);
  color: var(--ink);
  margin-top: 2px;
}

/* SUPPORT / APOIAR FULL PAGE & COMMUNITY FORMS */
.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.support-action-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 34px 28px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.support-action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: #c9c7be;
}

.support-action-card .icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #fff7f5 0%, var(--cream) 100%);
  color: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(225, 39, 45, 0.15);
  box-shadow: 0 4px 12px rgba(225, 39, 45, 0.08);
  transition: transform 0.25s ease;
}

.support-action-card:hover .icon {
  transform: scale(1.08);
}

.support-action-card h3 {
  font: 800 24px var(--display);
  margin: 0 0 12px;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.support-action-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.support-action-card .primary-button {
  width: 100%;
  padding: 12px 18px;
  font-size: 11px;
  margin-top: auto;
}

/* Institutional Partnership Card */
.support-partner-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 44px 40px;
  margin-bottom: 55px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
}

.support-partner-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
}

.support-partner-grid h3 {
  font: 900 36px/1.05 var(--display);
  margin: 10px 0 18px;
  text-transform: uppercase;
  color: var(--ink);
}

.support-partner-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.support-partner-grid p:last-of-type {
  margin-bottom: 0;
}

.support-contact-box {
  background: var(--cream);
  padding: 28px 26px;
  border-left: 4px solid var(--red);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.support-contact-box h4 {
  font: 800 20px var(--display);
  margin: 0 0 12px;
  text-transform: uppercase;
  color: var(--ink);
}

.support-contact-box p {
  font-size: 13.5px;
  color: #38424d;
  line-height: 1.7;
  margin-bottom: 14px;
}

.support-contact-box strong {
  color: var(--ink);
}

.support-contact-box small {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Form Card Styling (apoiar, atletas talent nomination, clubes registration) */
.support-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  padding: 44px 40px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.support-form-card h3 {
  font: 900 32px var(--display);
  margin: 6px 0 10px;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.support-form-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.support-form-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.support-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.support-form-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.support-form-card input,
.support-form-card select,
.support-form-card textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #d4d2cb;
  background: #faf9f6;
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  border-radius: 4px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.support-form-card input::placeholder,
.support-form-card textarea::placeholder {
  color: #9aa4ae;
  font-weight: 400;
}

.support-form-card input:focus,
.support-form-card select:focus,
.support-form-card textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(225, 39, 45, 0.12);
}

.support-form-card select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23111820' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px;
  padding-right: 40px;
  cursor: pointer;
}

.support-form-card textarea {
  resize: vertical;
  min-height: 105px;
  line-height: 1.5;
}

.support-form-card button[type="submit"] {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

/* Impact numbers counter / highlights banner */
.support-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.support-impact-item {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px 20px;
  text-align: center;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.support-impact-item strong {
  font: 900 36px var(--display);
  color: var(--red);
  display: block;
  line-height: 1;
}

.support-impact-item span {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-top: 8px;
  display: block;
}

.support-impact-item small {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

/* MODALS & TOAST */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 24, 0.88);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-panel {
  position: relative;
  background: #fff;
  width: min(520px, 100%);
  padding: 42px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.close-modal {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: none;
  font-size: 30px;
  color: var(--ink);
  cursor: pointer;
}

.modal-panel h2 {
  font: 900 42px var(--display);
  margin: 8px 0;
  text-transform: uppercase;
}

.modal-panel p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.modal form {
  display: grid;
  gap: 15px;
  margin-top: 18px;
}

.modal label {
  display: grid;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal input,
.modal select,
.modal textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 13px 14px;
  background: #fff;
  font-size: 14px;
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
  border-color: var(--red);
  outline: none;
}

.search-panel form {
  display: flex;
}

.search-panel form input {
  flex: 1;
}

.search-panel form button {
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-panel > p button {
  border: 0;
  background: #eee;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 4px;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 25px;
  bottom: 25px;
  background: #111820;
  color: #fff;
  padding: 16px 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  font-size: 13px;
  border-left: 4px solid var(--red);
  pointer-events: none;
}

.toast.show {
  transform: none;
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* =======================================================
   RESPONSIVE STYLES
   ======================================================= */

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .support-button {
    display: none;
  }
  .menu-button {
    display: flex;
    flex-direction: column;
    gap: 5px;
    order: 2;
    padding: 6px;
  }
  .menu-button span {
    width: 24px;
    height: 2px;
    background: #111;
    transition: 0.2s;
  }
  .search-button {
    order: 3;
  }
  .main-nav.open {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    top: 82px;
    left: 0;
    right: 0;
    height: auto;
    background: #fff;
    padding: 20px 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid var(--red);
  }
  .main-nav.open a {
    height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
  }
  .hero-grid {
    grid-template-columns: 1fr 0.65fr;
    gap: 25px;
  }
  .club-grid,
  .club-full-grid,
  .athletes-full-grid,
  .news-archive-grid,
  .support-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sports-list {
    overflow-x: auto;
  }
  .sports-list a {
    min-width: 140px;
  }
  .match {
    grid-template-columns: 75px 36px 1fr 70px 1fr 36px;
  }
  .match a {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 30px, 1180px);
  }
  .topbar-inner > div a {
    display: none;
  }
  .site-header {
    height: 70px;
  }
  .main-nav.open {
    top: 70px;
  }
  .hero,
  .hero-grid {
    min-height: auto;
  }
  .hero-bg {
    background: linear-gradient(0deg, #101820 15%, rgba(16, 24, 32, 0.85) 65%, rgba(16, 24, 32, 0.45)),
                url("images/hero_futebol_moamba.jpg") center/cover no-repeat;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 50px 0 65px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-stats {
    margin-top: 30px;
    gap: 15px;
  }
  .hero-stats div {
    padding-right: 15px;
  }
  .score-card {
    margin: 20px 0 0;
  }
  .scroll-hint {
    display: none;
  }
  .section {
    padding: 60px 0;
  }
  .section-heading {
    align-items: flex-start;
  }
  .section-heading h2 {
    font-size: 38px;
  }
  .section-heading > a {
    display: none;
  }
  .news-grid,
  .athlete-grid,
  .places-layout,
  .agenda-grid,
  .article-layout,
  .sport-detail-card,
  .sport-detail-card:nth-child(even),
  .venues-full-grid {
    grid-template-columns: 1fr;
  }
  .story-row {
    grid-template-columns: 38% 62%;
  }
  .match {
    grid-template-columns: 56px 1fr 60px 1fr;
    padding: 12px 10px;
    gap: 8px;
  }
  .match .mini-crest {
    display: none;
  }
  .match strong {
    font-size: 12px;
  }
  .match b {
    font-size: 16px;
  }
  .club-grid,
  .club-full-grid,
  .athletes-full-grid,
  .news-archive-grid,
  .support-cards-grid,
  .support-impact-grid,
  .support-partner-grid,
  .scorers-grid {
    grid-template-columns: 1fr;
  }
  .athlete-copy {
    padding: 40px 10px;
  }
  .athlete-copy h2,
  .agenda-grid h2,
  .support-inner h2,
  .page-hero h1 {
    font-size: 42px;
  }
  .athlete-photo {
    min-height: 440px;
  }
  .places-layout {
    gap: 15px;
  }
  .map-card {
    min-height: 340px;
  }
  .agenda-grid {
    gap: 30px;
  }
  .support-inner {
    padding: 50px 0;
    display: block;
  }
  .support-actions {
    align-items: flex-start;
    margin-top: 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    padding: 18px 0;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .modal-panel {
    padding: 30px 20px;
  }
  .search-panel form {
    display: grid;
  }
  .search-panel form button {
    padding: 12px;
  }
  .image-wrap {
    height: 240px;
  }
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-search-box input {
    width: 100%;
  }
  .support-form-card .form-row {
    grid-template-columns: 1fr;
  }
  .support-form-card {
    padding: 30px 20px;
  }
  .support-partner-card {
    padding: 30px 20px;
  }
  .support-form-card button[type="submit"] {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    transition: none !important;
  }
}
