/* -------------------- */
/* BASE E GERAL */
/* -------------------- */
:root {
  --roxo-escuro: #1b0033;
  --roxo: #5b21b6;
  --roxo-claro: #8b5cf6;
  --branco: #ffffff;
  --cinza: #a1a1aa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rajdhani", sans-serif;
}

body {
  background: linear-gradient(180deg, var(--roxo-escuro), #2b0066);
  color: var(--branco);
  overflow-x: hidden;
}

/* -------------------- */
/* HEADER E NAVBAR */
/* -------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  background: rgba(20, 0, 40, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

header.hidden {
  transform: translateY(-100%);
}

header h1 {
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--branco);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul li a {
  color: var(--branco);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover {
  color: var(--roxo-claro);
}

/* -------------------- */
/* HERO SECTION */
/* -------------------- */
.hero {
  height: 100vh;
  background: linear-gradient(
      rgba(27, 0, 51, 0.7),
      rgba(27, 0, 51, 0.9)
    ),
    url("img/Slide_16_9_-_19.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h2 {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--branco);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.4rem;
  color: var(--cinza);
  max-width: 600px;
}

/* -------------------- */
/* EQUIPAS CONVIDADAS */
/* -------------------- */
.equipas {
  padding: 120px 10%;
  background: var(--roxo-escuro);
}

.equipas h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--roxo-claro);
}

/* -------------------- */
/* EQUIPAS — VERSÃO TOTALMENTE RESPONSIVA */
/* -------------------- */

/* Grid principal */
.equipas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
}

/* Cartões */
.equipa-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-align: center;
  padding: 30px;
  width: 100%;
  max-width: 250px;
  transition: transform 0.3s ease, border 0.3s ease;
}

.equipa-card:hover {
  transform: translateY(-8px);
  border-color: var(--roxo-claro);
}

/* -------------------- */
/* RESPONSIVIDADE */
/* -------------------- */

/* Tablets grandes (até 1200px): 3 colunas */
@media (max-width: 1200px) {
  .equipas-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
}

/* Tablets médios (até 900px): 2 colunas */
@media (max-width: 900px) {
  .equipas {
    padding: 100px 8%;
  }

  .equipas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .equipa-card {
    max-width: 280px;
    padding: 25px;
  }

  .equipa-logo {
    width: 90px;
    height: 90px;
  }

  .equipa-nome {
    font-size: 1.2rem;
  }
}

/* Telemóveis (até 600px): 1 coluna */
@media (max-width: 600px) {
  .equipas {
    padding: 80px 6%;
  }

  .equipas-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .equipa-card {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }

  .equipa-logo {
    width: 80px;
    height: 80px;
  }

  .equipa-nome {
    font-size: 1.1rem;
  }
}

/* Telemóveis pequenos (até 400px) */
@media (max-width: 400px) {
  .equipas {
    padding: 60px 5%;
  }

  .equipas-grid {
    gap: 20px;
  }

  .equipa-card {
    padding: 22px 18px;
    max-width: 280px;
  }

  .equipa-logo {
    width: 70px;
    height: 70px;
  }

  .equipa-nome {
    font-size: 1rem;
  }
}

.equipa-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.equipa-nome {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.equipa-desc {
  color: var(--cinza);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.equipa-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.equipa-socials a {
  color: var(--branco);
  font-size: 1.5rem;
  transition: 0.3s;
}

.equipa-socials a:hover {
  color: var(--roxo-claro);
}

/* -------------------- */
/* FOOTER */
/* -------------------- */
footer {
  text-align: center;
  padding: 40px 0;
  color: var(--cinza);
  font-size: 0.9rem;
  background: rgba(20, 0, 40, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* -------------------- */
/* ANIMAÇÕES AO SCROLL */
/* -------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.equipa-socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.equipa-socials a {
  color: var(--cinza);
  font-size: 1.4rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.equipa-socials a:hover {
  color: var(--roxo-claro);
  transform: scale(1.1);
}
.equipa-socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.equipa-socials .icon svg {
  width: 28px;
  height: 28px;
  color: var(--cinza);
  transition: color 0.3s ease, transform 0.3s ease;
}

.equipa-socials .icon:hover svg {
  color: var(--roxo-claro);
  transform: scale(1.1);
}
/* -------------------- */
/* SOBRE NÓS COM IMAGEM */
/* -------------------- */
#sobre {
  padding: 120px 10%;
  background: linear-gradient(180deg, #210040 0%, #1b0033 100%);
}

.sobre-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.sobre-texto {
  flex: 1;
  min-width: 320px;
}

.sobre-texto h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--roxo-claro);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.sobre-texto p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--cinza);
  max-width: 600px;
}

.sobre-imagem {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.sobre-imagem img {
  width: 100%;
  max-width: 420px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(91, 33, 182, 0.25);
}

/* Responsividade */
@media (max-width: 900px) {
  .sobre-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-imagem img {
    max-width: 320px;
  }
}
/* -------------------- */
/* SPONSORS SECTION */
/* -------------------- */
#sponsors {
  padding: 100px 10%;
  background: linear-gradient(180deg, #1b0033 0%, #100022 100%);
  text-align: center;
}

#sponsors h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--roxo-claro);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

.sponsors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.sponsor img {
  width: 180px;
  height: auto;
  filter: brightness(0.9) contrast(1.2);
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sponsor img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* Responsividade */
@media (max-width: 800px) {
  .sponsors-grid {
    gap: 40px;
  }

  .sponsor img {
    width: 140px;
  }
}

/* -------------------- */
/* INSCRIÇÕES */
/* -------------------- */
#inscricoes {
  padding: 120px 10%;
  background: var(--roxo-escuro);
  display: flex;
  justify-content: center;
}

.inscricoes-container {
  max-width: 850px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 0 25px rgba(91, 33, 182, 0.25);
  text-align: center;
}

#inscricoes h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--roxo-claro);
}

.inscricoes-texto {
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--cinza);
  margin-bottom: 40px;
}

.inscricoes-texto strong {
  color: var(--branco);
}

/* Botão de inscrição */
.inscricao-btn {
  display: inline-block;
  background: linear-gradient(90deg, #6d28d9, #8b5cf6);
  color: var(--branco);
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.inscricao-btn:hover {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.6);
  transform: translateY(-3px) scale(1.03);
}


/* Responsividade */
@media (max-width: 900px) {
  .inscricoes-container {
    padding: 40px 30px;
  }

  #inscricoes h2 {
    font-size: 2.2rem;
  }

  .inscricoes-texto {
    font-size: 1rem;
    line-height: 1.4;
  }
}
/* -------------------- */
/* LIVE BANNER TWITCH */
/* -------------------- */
#live-banner {
  position: fixed;
  top: 10px; /* ligeiramente acima do menu */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(91, 33, 182, 0.9); /* Roxo Outking */
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  display: none; /* Só aparece quando em live */
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 3000; /* sempre acima do menu */
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(91, 33, 182, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.5s ease forwards;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* -------------------- */
/* ELEMENTOS INTERNOS */
/* -------------------- */
#live-banner .dot {
  width: 10px;
  height: 10px;
  background: #ff2e63;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

#live-banner .live-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: cover;
}

#live-banner span {
  color: #fff;
}

#live-banner .viewers {
  color: #cfcfcf;
  font-weight: 400;
  font-size: 0.85rem;
}

/* -------------------- */
/* ANIMAÇÕES */
/* -------------------- */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slideDown {
  0% {
    transform: translate(-50%, -30px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

/* -------------------- */
/* RESPONSIVIDADE */
/* -------------------- */
@media (max-width: 600px) {
  #live-banner {
    padding: 6px 14px;
    font-size: 0.8rem;
    gap: 6px;
  }

  #live-banner .live-logo {
    width: 20px;
    height: 20px;
  }
}
/* -------------------- */
/* LIVE TWITCH BANNER */
/* -------------------- */
#live-banner {
  position: fixed;
  top: 15px; /* 🔹 afastado do topo */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(145, 70, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(145, 70, 255, 0.3);
  border-radius: 12px;
  padding: 8px 18px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 2000;
  font-family: "Rajdhani", sans-serif;
  transition: all 0.3s ease-in-out;
  text-decoration: none; /* remove sublinhado */
  opacity: 0;
}

#live-banner * {
  text-decoration: none; /* garante que nada dentro fica sublinhado */
}

#live-banner.active {
  display: flex;
  animation: fadeIn 0.5s ease-in-out forwards; /* animação de entrada */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

#live-banner img.live-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

#live-banner .live-status {
  font-weight: 700;
  color: #ff3b3b;
  margin-left: 8px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

#live-banner .live-viewers {
  color: #ccc;
  font-weight: 500;
  margin-left: 10px;
  font-size: 0.95rem;
}

#live-banner:hover {
  background: rgba(145, 70, 255, 0.25);
  border-color: rgba(145, 70, 255, 0.5);
  cursor: pointer;
}

.equipa-status {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 6px;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.equipa-status.confirmada {
  background: rgba(0, 200, 90, 0.15);
  color: #00d26a;
  border: 1px solid rgba(0, 200, 90, 0.4);
}

.equipa-status.pendente {
  background: rgba(255, 180, 0, 0.15);
  color: #ffb800;
  border: 1px solid rgba(255, 180, 0, 0.4);
}

/* -------------------- */
/* RESPONSIVIDADE GERAL */
/* -------------------- */

/* Tablets (até 1024px) */
@media (max-width: 1024px) {
  header {
    padding: 15px 40px;
  }

  nav ul {
    gap: 25px;
  }

  .hero h2 {
    font-size: 3.5rem;
  }

  .equipas {
    padding: 100px 8%;
  }

  .equipas h2 {
    font-size: 2.4rem;
  }

  #inscricoes h2 {
    font-size: 2.5rem;
  }

  .inscricoes-container {
    padding: 50px 35px;
  }
}

/* Tablets e telemóveis (até 768px) */
@media (max-width: 768px) {
  header {
    padding: 15px 25px;
  }

  header h1 {
    font-size: 1.3rem;
  }

  nav ul {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(20, 0, 40, 0.95);
    width: 100%;
    padding: 20px 0;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    text-align: center;
    padding: 10px 0;
  }

  /* Ícone de menu tipo hamburguer */
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--branco);
  }

  /* Hero */
  .hero h2 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  /* Sobre nós */
  .sobre-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .sobre-texto h2 {
    font-size: 2.2rem;
  }

  /* Equipas */
  .equipas h2 {
    font-size: 2.2rem;
  }

  .equipas-grid {
    gap: 30px;
  }

  /* Sponsors */
  #sponsors h2 {
    font-size: 2.2rem;
  }

  .sponsor img {
    width: 120px;
  }

  /* Inscrições */
  #inscricoes {
    padding: 80px 6%;
  }

  .inscricoes-container {
    padding: 40px 25px;
  }

  .inscricao-btn {
    font-size: 1rem;
    padding: 12px 30px;
  }

  /* Footer */
  footer {
    padding: 30px 10px;
    font-size: 0.8rem;
  }
}

/* Telemóveis pequenos (até 480px) */
@media (max-width: 480px) {
  header {
    padding: 12px 20px;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .equipas {
    padding: 70px 5%;
  }

  .equipas h2 {
    font-size: 1.8rem;
  }

  .equipa-card {
    padding: 25px 20px;
  }

  .sobre-texto h2 {
    font-size: 1.8rem;
  }

  .sobre-texto p {
    font-size: 1rem;
  }

  #sponsors h2 {
    font-size: 1.8rem;
  }

  .sponsor img {
    width: 100px;
  }

  #inscricoes h2 {
    font-size: 1.8rem;
  }

  .inscricoes-texto {
    font-size: 0.95rem;
  }

  .inscricao-btn {
    font-size: 0.9rem;
    padding: 10px 25px;
  }
}
/* HEADER BASE */
header h1 a {
  color: var(--branco);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Ícone menu mobile escondido no PC */
.menu-toggle {
  display: none;
}

/* Responsivo - Tablets e Telemóveis */
@media (max-width: 768px) {
  /* Mostrar o botão hamburguer */
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 2rem;
    color: var(--branco);
    z-index: 1100;
  }

  /* Esconder o menu principal por padrão */
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(20, 0, 40, 0.98);
    width: 100%;
    padding: 20px 0;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Mostrar menu quando ativo */
  nav ul.active {
    display: flex;
  }

  nav ul li {
    text-align: center;
    padding: 12px 0;
  }

  nav ul li a {
    font-size: 1.1rem;
  }

  header {
    padding: 15px 30px;
  }
}

/* -------------------- */
/* REDES SOCIAIS FIXAS — VERSÃO RESPONSIVA */
/* -------------------- */
.social-fixed {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
}

.social-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(91, 33, 182, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: var(--branco);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.social-fixed a:hover {
  background: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px) scale(1.07);
  color: var(--roxo-claro);
}

/* -------------------- */
/* RESPONSIVIDADE */
/* -------------------- */

/* Tablets (até 900px): move ligeiramente para dentro */
@media (max-width: 900px) {
  .social-fixed {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .social-fixed a {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}

/* Telemóveis (até 600px): vira barra horizontal centrada */
@media (max-width: 600px) {
  .social-fixed {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    bottom: 15px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    background: rgba(20, 0, 40, 0.6);
    border-radius: 40px;
    padding: 8px 14px;
    gap: 16px;
    backdrop-filter: blur(10px);
  }

  .social-fixed a {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    background: transparent;
    border: none;
  }

  .social-fixed a:hover {
    background: none;
    transform: scale(1.2);
    color: var(--roxo-claro);
  }
}

/* Telemóveis muito pequenos (até 400px) */
@media (max-width: 400px) {
  .social-fixed {
    bottom: 10px;
    padding: 6px 10px;
    gap: 10px;
  }

  .social-fixed a {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}

/* SERIES SECTION */
#series {
  padding: 100px 10%;
  background: linear-gradient(180deg, var(--roxo-escuro) 0%, #110025 100%);
  color: var(--branco);
  font-family: 'Rajdhani', sans-serif;
}

.series-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.series-header h2 {
  font-size: 2rem;
  color: var(--roxo-claro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.series-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.past-series,
.upcoming-series {
  flex: 1;
  min-width: 340px;
}

/* Jogo */
.match-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 22px;
  padding: 14px 18px 18px;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.4s forwards;
}

.match-card:hover {
  transform: translateY(-4px);
  border-color: var(--roxo-claro);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.3);
}

.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, var(--roxo) 0%, var(--roxo-claro) 100%);
  color: #fff;
  border-radius: 10px;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 1rem;
}

.match-body {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 16px 0;
}

.team-logo {
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}

.score {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--branco);
}

.match-info {
  text-align: center;
  color: var(--cinza);
  font-size: 0.95rem;
  margin-top: 8px;
}

.no-series {
  text-align: center;
  font-style: italic;
  color: var(--cinza);
  margin-top: 20px;
}

/* Animação de entrada */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 900px) {
  .series-content {
    flex-direction: column;
    align-items: center;
  }
}

.countdown {
  color: #9f9fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(155, 13, 13, 0.76);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: none;
  backdrop-filter: blur(4px);
  animation: pulse 1.6s infinite;
}

.live::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #ff4040;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff4040;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.view-more {
  margin-top: 15px;
  background: #592c88;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.view-more:hover {
  background: #8b5cf6;
  transform: scale(1.05);
}

/* WRAPPER PRINCIPAL */
.timeline-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
  transition: 0.3s ease;
}

/* BOXES */
.tl-step {
  padding: 14px 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  text-align: center;
  min-width: 150px;
  box-shadow: 0 0 12px rgba(139,92,246,0.15);
  transition: 0.3s;
}

.tl-step h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.tl-step span {
  font-size: 0.95rem;
  color: var(--cinza);
}

/* LINHA ENTRE ETAPAS */
.tl-connector {
  width: 40px;
  height: 3px;
  background: var(--roxo-claro);
  border-radius: 3px;
  opacity: 0.7;
  transition: 0.3s;
}

/* CAMPEÕES */
.tl-step.winner {
  background: linear-gradient(90deg, gold, #ffb700);
  color: black;
  font-weight: 800;
  border: none;
  box-shadow: 0 0 18px gold;
}

.tl-step.winner span {
  color: black;
  font-weight: 700;
}

/* -------------------------------------------- */
/* RESPONSIVIDADE — TELEMÓVEIS */
/* PASSA DE HORIZONTAL → VERTICAL AUTOMATICAMENTE */
/* -------------------------------------------- */

@media (max-width: 600px) {
  .timeline-wrapper {
    flex-direction: column;
    gap: 22px;
  }

  .tl-connector {
    width: 3px;
    height: 35px;
  }

  .tl-step {
    min-width: 100%;
    max-width: 260px;
    padding: 16px 20px;
  }
}

/* BOTÃO REDONDO FLUTUANTE */
.social-popup-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: rgba(91, 33, 182, 0.2);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: var(--branco);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  z-index: 999;
}

.social-popup-btn:hover {
  transform: scale(1.08);
  background: rgba(139, 92, 246, 0.3);
  color: var(--roxo-claro);
}

/* POPUP */
.social-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 0, 25, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.4s ease forwards;
}

/* CAIXA DO POPUP */
.popup-content {
  background: rgba(255,255,255,0.08);
  padding: 30px 40px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  box-shadow: 0 0 25px rgba(139,92,246,0.3);
  animation: popIn 0.35s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* FECHAR */
.close-popup {
  position: absolute;
  top: 15px;
  right: 22px;
  font-size: 2rem;
  color: var(--branco);
  cursor: pointer;
  transition: 0.3s;
}

.close-popup:hover {
  color: var(--roxo-claro);
}

/* ÍCONES */
.popup-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.popup-icons a {
  color: var(--branco);
  font-size: 2.5rem;
  transition: 0.3s ease;
}

.popup-icons a:hover {
  color: var(--roxo-claro);
  transform: scale(1.15);
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .popup-icons {
    gap: 22px;
  }
  .popup-icons a {
    font-size: 2.1rem;
  }
  .popup-content {
    width: 85%;
    padding: 25px 20px;
  }
}
