:root {
  --black: #000000;
  --dark: #0b0b0b;
  --gold: #d4af37;
  --light-gold: #f5d98b;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--black);
  position: relative;
  text-align: center;
}

/* Fundo visível e nítido */
#bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('fundo.jpg') center center / 120% auto no-repeat;
  filter: brightness(1);
  z-index: -1;
  animation: fadeIn 1.5s ease-in-out;
}

/* Removemos o container visual */
.container {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 3rem 2rem;
  border-radius: 0;
  width: 90%;
  max-width: 480px;
}

/* Logo circular com brilho animado */
.logo-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
  background: rgba(255, 255, 255, 0.05);
  object-fit: cover;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Efeito de brilho dourado animado na logo */
.shiny-logo::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
  transform: rotate(25deg);
  animation: shine 5s infinite linear;
  opacity: 0.4;
}

/* Título e subtítulo */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--light-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

p {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

/* Botões principais com brilho */
.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: 10px;
  background: linear-gradient(90deg, #d4af37, #f5d98b);
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.25);
}

.link-button.shiny::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: shine 6s infinite linear;
}

.link-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(245, 217, 139, 0.6);
}

/* Ícones sociais */
.social-links {
  margin-top: 2.3rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-links a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--light-gold);
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(245, 217, 139, 0.8);
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

/* Responsividade */
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .logo-img {
    width: 120px;
    height: 120px;
  }
}