:root {
  --bg: #05031a;
  --surface: #0c0a2b;
  --surface-2: #13103a;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f2f3f7;
  --muted: #9ca0b3;
  --accent: #f4c300;
  --display: "Anton", sans-serif;
  --sans: "Inter", sans-serif;
}

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 3, 26, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.03em;
  font-style: italic;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.main-nav a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.live-chip {
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 10px;
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

#navMobile {
  background: var(--surface);
}

#navMobile a {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
}

#navMobile a:hover {
  color: var(--accent);
  text-decoration: none;
}

.hero {
  min-height: 78vh;
  position: relative;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), rgba(5, 3, 26, 0.3), rgba(5, 3, 26, 0.75));
}

.hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(56px, 12vw, 176px);
  line-height: 0.82;
  text-transform: uppercase;
  font-style: italic;
  margin: 8px 0 0;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 20px;
  color: #d8d9e0;
  font-size: 22px;
  line-height: 1.35;
}

.marquee {
  background: var(--accent);
  color: #0b0924;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 45s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 10px 18px;
  font-family: var(--display);
  font-style: italic;
  text-transform: uppercase;
  font-size: 31px;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #0b0924;
}

.section-wrap {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 88px);
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 18px;
}

.section-sub {
  color: var(--muted);
  max-width: 580px;
}

.link-accent {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  font-weight: 700;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.countdown-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.01);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.count-num {
  font-family: var(--display);
  font-size: 62px;
  color: var(--accent);
  line-height: 0.9;
}

.count-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--muted);
}

.news-feature-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-category {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 11px;
}

.news-title-lg,
.news-title-md {
  font-family: var(--display);
  text-transform: uppercase;
  font-style: italic;
  line-height: 0.95;
}

.news-title-lg {
  font-size: clamp(30px, 5.2vw, 58px);
}

.news-title-md {
  font-size: clamp(21px, 2.5vw, 33px);
}

.news-summary,
.news-meta {
  color: var(--muted);
}

.news-meta {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}

.news-side-item {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}

.news-side-thumb {
  width: 112px;
  height: 112px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-list-card {
  display: block;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 100%;
}

.news-list-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.news-list-body {
  padding: 14px;
}

.news-list-title {
  font-family: var(--display);
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.2;
  font-size: clamp(24px, 2.1vw, 34px);
}

.escolas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

@media (min-width: 1200px) {
  .escolas-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

.escola-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  text-decoration: none;
}

.escola-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 58px;
  opacity: 0.55;
}

.escola-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  background: linear-gradient(to top, rgba(5, 3, 26, 0.95), rgba(5, 3, 26, 0.2));
}

.escola-idx {
  display: block;
  font-size: 10px;
  color: #cfd2de;
  letter-spacing: 0.12em;
}

.escola-name {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 17px;
  line-height: 0.92;
}

.escola-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
}

.campeas-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .campeas-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.campea-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
}

.campea-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.campea-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.campea-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 3, 26, 0.95), rgba(5, 3, 26, 0.1));
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.gallery-strip::-webkit-scrollbar {
  height: 7px;
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
}

.gallery-item {
  width: min(420px, 83vw);
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
  overflow: hidden;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.site-footer {
  margin-top: 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-title {
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 64px);
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.9;
}

.footer-input {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 11px 14px;
  width: 100%;
}

.footer-btn {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #080616;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 14px;
}

.page-headline {
  font-family: var(--display);
  text-transform: uppercase;
  font-style: italic;
  font-size: clamp(52px, 8vw, 118px);
  line-height: 0.86;
}

.noticia-headline {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.12;
  word-break: break-word;
}

.panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
}

.panel-body {
  padding: 20px;
}

.text-muted-soft {
  color: #babdca;
}

.noticia-body p,
.rich-content p {
  color: #dbdde6;
  font-size: 19px;
  line-height: 1.7;
}

.noticia-body {
  white-space: pre-line;
  word-break: break-word;
}

.noticia-body img,
.rich-content img {
  max-width: 100%;
  height: auto;
}

.form-control-dark,
.form-control-dark:focus {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 68vh;
  }
  .hero-subtitle {
    font-size: 17px;
  }
  .count-num {
    font-size: 38px;
  }
  .marquee-item {
    font-size: 24px;
  }
}
