:root {
  --black: #0a0a0a;
  --dark: #121212;
  --orange: #ff6b00;
  --gold: #ffb300;
  --light: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-y: auto; /* agora permite rolar para baixo */
  overflow-x: hidden;
  padding: 20px 0; /* espaço extra nas bordas em telas menores */
}

/* Fundo de vídeo totalmente visível e centralizado */
/* Fundo de vídeo ajustado e mais largo */
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200vw; /* aumenta levemente a largura */
  height: 150vh; /* mantém altura proporcional */
  transform: translate(-50%, -50%);
  object-fit: contain; /* mostra o vídeo inteiro */
  background-color: #000; /* preenche eventuais bordas */
  z-index: -1;
  filter: brightness(1) contrast(1.15);
}


/* Container central */
.container {
  background: rgba(0, 0, 0, 0.7);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  box-shadow: 0 0 50px rgba(255, 107, 0, 0.4);
  text-align: center;
  width: 90%;
  max-width: 420px;
  animation: fadeIn 1.2s ease-in-out;
}

/* Logo circular */
.logo-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
  background: rgba(255, 255, 255, 0.95);
  object-fit: cover;
  margin-bottom: 1.2rem;
}

/* Título e subtítulo */
h1 {
  font-family: 'Anton', sans-serif;
  font-size: 2.3rem;
  color: var(--light); /* agora é branco */
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4); /* leve brilho */
}

p {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Botões principais */
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  margin-bottom: 1.2rem;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff6b00, #ffb300);
  color: var(--light);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.link-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 179, 0, 0.7);
}

/* Ícones sociais */
.social-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--orange);
  color: var(--light);
  background: rgba(255, 107, 0, 0.15);
  font-size: 1.4rem;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--orange);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
}

/* Animação */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 480px) {
  .container {
    padding: 2rem 1.5rem;
  }
  h1 { font-size: 1.8rem; }
  .logo-img { width: 120px; height: 120px; }
}
