:root {
  --acai: #4B134F;
  --acai-light: #7B2F7E;
  --green: #4CAF50;
  --light: #ffffff;
  --dark: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: url('fundo.mp4');
  background-size: cover;
  color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  background: rgba(0, 0, 0, 0.7);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(123, 47, 126, 0.6);
  text-align: center;
  max-width: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-img {
  width: 150px;
  height: 150px;
  margin-bottom: 1rem;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid var(--green);
  padding: 5px;
  background: rgba(255, 255, 255, 0.9);
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0.5rem 0;
  color: var(--acai-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #f0f0f0;
  line-height: 1.5;
  max-width: 100%;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.link-list li {
  margin-bottom: 1.2rem;
  width: 100%;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  background: var(--acai-light);
  color: var(--light);
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(123, 47, 126, 0.4);
  gap: 10px;
}

.link-button:hover {
  background: var(--acai);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(75, 19, 79, 0.6);
}

.social-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: var(--light);
  background: rgba(123, 47, 126, 0.2);
  margin: 0 0.7rem;
  font-size: 1.5rem;
  transition: 0.3s;
  border-radius: 50%;
  border: 1px solid var(--acai-light);
}

.social-links a:hover {
  color: var(--light);
  background: var(--acai-light);
  transform: scale(1.1);
}

@media (max-width: 480px) {
  .container {
    padding: 2rem 1.5rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .logo-img {
    width: 120px;
    height: 120px;
  }
}

/* Vídeo de fundo */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1; /* Fica atrás do conteúdo */
}

/* Mantém o container visível sobre o vídeo */
.container {
  background: rgba(0, 0, 0, 0.65); /* Transparência para contraste */
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(123, 47, 126, 0.6);
  text-align: center;
  max-width: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}