/* Reset básico e Fontes */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

body {
  /* Fundo Dark Premium com toque da cor da marca no topo */
  background-color: #050505;
  background-image: radial-gradient(circle at 50% 0%, #1f1f1f 0%, #000000 60%);
  background-attachment: fixed;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  height: 100%;
  min-height: 100vh;
  /* Fallback */
  min-height: 100dvh;
  /* Mobile moderno */

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

/* Container central para dar foco */
.main-wrapper {
  text-align: center;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

  /* Animação de entrada */
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

/* Logo Taiff */
.taiff {
  margin-bottom: 40px;
}

.taiff img {
  height: 90px;
  /* Levemente maior */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

/* Botões das Lojas */
.appstores {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  /* Previne quebra em telas muito pequenas */
}

.appstores a {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* O efeito Tilt JS cuida do 3D, aqui cuidamos do visual estático */
.appstores img {
  height: 56px;
  /* Tamanho padronizado moderno */
  width: auto;
  object-fit: contain;
  /* Sombra suave nos botões */
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

/* Footer / Política */
.footer-policy {
  margin-top: 48px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.footer-policy a {
  color: #888888;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.footer-policy a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-policy a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  background-color: #ffffff;
  /* Vermelho Taiff */
  transition: all 0.3s ease;
}

.footer-policy a:hover::after {
  width: 100%;
  left: 0;
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 480px) {
  .main-wrapper {
    width: 90%;
    padding: 30px 20px;
  }

  .taiff img {
    height: 70px;
  }

  .appstores {
    gap: 16px;
  }

  .appstores img {
    height: 48px;
  }
}