:root {
  --black: #000000;
  --dark: #0d0d0d;
  --gold: #d4af37;
  --gold-light: #f5d88a;
  --light: #ffffff;
}

* {
  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;
  padding: 20px 0;
  background: var(--black) !important;
  overflow-x: hidden;
  overflow-y: auto;
}

/* CONTAINER */
.container {
  background: rgba(0, 0, 0, 0.7);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.25);
  text-align: center;
  width: 90%;
  max-width: 420px;
  animation: fadeIn 1.2s ease-in-out;
}

/* LOGO */
.logo-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  background: #fff;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

/* TÍTULO */
h1 {
  font-family: 'Anton', sans-serif;
  color: var(--gold-light);
  font-size: 2.4rem;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* SUBTÍTULO */
p {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 400;
}

/* REMOVER BOLINHAS */
.link-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.link-list li {
  list-style: none !important;
  margin-bottom: 1.2rem;
}

/* BOTÕES */
.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35);
}

.link-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(245, 216, 138, 0.9);
}

/* ÍCONES SOCIAIS */
.social-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  font-size: 1.4rem;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

/* ANIMAÇÃO */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
