:root {
  --gold: #d4af37;
  --light-gold: #f8e9c1;
  --shadow-gold: rgba(212, 175, 55, 0.25);
  --white: #ffffff;
  --font-dark: #2b2b2b;
}

* {
  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;
  background: url('fundo.jpg') no-repeat center center/cover;
  overflow-x: hidden;
  padding: 40px 0;
  position: relative;
}

/* Container central totalmente transparente */
.container {
  background: transparent;
  padding: 3rem 2.5rem;
  border-radius: 25px;
  text-align: center;
  width: 90%;
  max-width: 420px;
  animation: fadeIn 1.2s ease-in-out;
}

/* Logo com fundo branco isolado */
.logo-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
  object-fit: contain;
  background-color: var(--white); /* fundo branco apenas na logo */
  padding: 6px; /* pequena margem interna */
  margin-bottom: 1rem;
}

/* Título e subtítulo */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: capitalize;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.3rem;
}

p {
  font-size: 1.1rem;
  color: var(--light-gold);
  font-weight: 500;
  margin-bottom: 2rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

/* Botões */
.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: rgba(0, 0, 0, 0.45); /* transparência sutil */
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  border: 1px solid var(--gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
}

.link-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, var(--gold), var(--light-gold));
  color: var(--font-dark);
  box-shadow: 0 0 25px var(--shadow-gold);
}

/* Í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(--gold);
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
  font-size: 1.3rem;
  transition: 0.3s;
  backdrop-filter: blur(3px);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--font-dark);
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--shadow-gold);
}

/* 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.9rem; }
  .logo-img { width: 100px; height: 100px; padding: 4px; }
}
