:root {
  --green-light: #14c25a;
  --green-dark: #0f8f41;
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-shadow: rgba(0, 0, 0, 0.25);
}

* {
  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;
  padding: 20px 0;
}

/* Fundo temporário combinando com a logo */
#bg-temp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #0f7f36, #0fa24b);
  background-size: cover;
  z-index: -1;
  filter: brightness(0.9);
}

/* Container */
.container {
  background: rgba(0, 0, 0, 0.75);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  box-shadow: 0 0 50px rgba(20, 194, 90, 0.4);
  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(--green-light);
  box-shadow: 0 0 30px rgba(20, 194, 90, 0.6);
  background: #fff;
  object-fit: cover;
  margin-bottom: 1.2rem;
}

/* Títulos */
h1 {
  font-family: 'Anton', sans-serif;
  font-size: 2.3rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

p {
  font-size: 1.1rem;
  color: var(--green-light);
  margin-bottom: 2rem;
  font-weight: 400;
}

/* 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: linear-gradient(90deg, #0fa24b, #14c25a);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(20, 194, 90, 0.35);
}

.link-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(20, 194, 90, 0.8);
}

/* Í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(--green-light);
  color: var(--white);
  background: rgba(20, 194, 90, 0.15);
  font-size: 1.4rem;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--green-light);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(20, 194, 90, 0.8);
}

/* Animação */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 480px) {
  .container {
    padding: 2rem 1.5rem;
  }
  h1 { font-size: 1.8rem; }
  .logo-img { width: 120px; height: 120px; }
}
