body {
  background-color: #000;
  color: white;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  font-family: Arial, sans-serif;
}

.background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  max-width: 90%;
  max-height: 90%;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

@keyframes fadeInZoom {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.mica-image {
  width: 240px;
  animation: fadeInZoom 1s ease-out forwards;
}

.logo-image {
  width: 200px;
  margin-top: -15px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: white;
  color: black;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.pix-support {
  color: #fff;
  margin-top: 20px;
}

.pix-support p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
