* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #05070c;
  color: #fff;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  height: 52px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
}

.nav a:hover {
  color: #fff;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.hero {
  padding: 28px 0 14px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 18px;
  align-items: center;
}

.hero-text h1 {
  font-size: 34px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-text p {
  font-size: 15px;
  color: #aeb8c7;
}

.hero-box {
  min-height: 180px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-logo {
  width: min(100%, 250px);
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.32));
}

.matches-section {
  padding: 18px 0 42px;
}

.section-title {
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.match-card {
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: 0.25s ease;
}

.match-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.12);
}

.fortaleza-card {
  background:
    linear-gradient(135deg, rgba(12, 24, 53, 0.96), rgba(16, 50, 112, 0.78)),
    linear-gradient(135deg, rgba(220, 38, 38, 0.14), transparent);
}

.ceara-card {
  background:
    linear-gradient(135deg, rgba(18, 18, 20, 0.98), rgba(42, 42, 47, 0.9)),
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent);
}

.match-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.team {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.vs {
  font-size: 20px;
  font-weight: 900;
  opacity: 0.9;
}

.match-info {
  color: #d7dfeb;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 14px;
  text-align: center;
}

.watch-btn {
  width: 100%;
  border: 0;
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.fortaleza-btn {
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
}

.fortaleza-btn:hover {
  filter: brightness(1.08);
}

.ceara-btn {
  background: linear-gradient(90deg, #2a2a2f, #3c3c44);
}

.ceara-btn:hover {
  filter: brightness(1.08);
}

.back-btn {
  margin: 20px 0 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
}

.watch-layout {
  display: grid;
  grid-template-columns: 1.4fr 320px;
  gap: 16px;
  align-items: start;
  padding-bottom: 34px;
}

.player-area,
.players-panel {
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.06);
}

.player-area {
  padding: 16px;
}

.watch-top {
  margin-bottom: 14px;
}

.live-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.14);
  color: #ff6b6b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.watch-top h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.watch-top p {
  color: #b9c3d1;
  font-size: 14px;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
  background: #000;
}

.players-panel {
  padding: 16px;
  position: sticky;
  top: 90px;
}

.players-panel h3 {
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.player-btn {
  width: 100%;
  text-align: left;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  color: #fff;
  cursor: pointer;
  margin-bottom: 10px;
  transition: 0.2s;
}

.player-btn span {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 3px;
}

.player-btn small {
  color: #b9c3d1;
  font-size: 12px;
}

.player-btn:hover,
.active-player {
  border-color: rgba(37, 99, 235, 0.7);
  background: rgba(37, 99, 235, 0.1);
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-box {
    min-height: 150px;
  }

  .matches-grid {
    grid-template-columns: 1fr;
  }

  .watch-layout {
    grid-template-columns: 1fr;
  }

  .players-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: 94%;
  }

  .header-content {
    min-height: 68px;
  }

  .logo {
    height: 44px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 13px;
  }

  .hero {
    padding: 20px 0 10px;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-box {
    padding: 16px;
  }

  .hero-logo {
    width: min(100%, 190px);
  }

  .section-title {
    font-size: 20px;
  }

  .match-card {
    padding: 16px;
  }

  .team {
    font-size: 18px;
  }

  .vs {
    font-size: 16px;
  }

  .match-info {
    font-size: 13px;
  }

  .watch-top h2 {
    font-size: 20px;
  }

  .watch-top p {
    font-size: 13px;
  }

  .players-panel h3 {
    font-size: 18px;
  }

  .player-btn span {
    font-size: 14px;
  }
}
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #fff;
  transition: 0.2s;
}

.social-btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
}

.social-btn i {
  font-size: 15px;
}

.instagram:hover {
  border-color: rgba(225, 48, 108, 0.45);
}

.whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.45);
}

.contact-watch-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 13px 14px;
  border-radius: 14px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.contact-watch-btn:hover {
  filter: brightness(1.06);
}

@media (max-width: 980px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .header-right {
    gap: 12px;
  }

  .social-links {
    width: 100%;
    gap: 8px;
  }

  .social-btn {
    flex: 1;
    justify-content: center;
    padding: 10px;
  }

  .social-btn span {
    display: none;
  }
}
.video-container {
  width: 100%;
}

.hidden {
  display: none;
}

.promo-banner {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.promo-banner img {
  width: 100%;
  max-width: 720px; /* controla o tamanho */
  border-radius: 16px;
  transition: 0.2s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.promo-banner img:hover {
  transform: scale(1.02);
}