@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #f7f9fc, #e3e8f0);
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  padding: 20px;
}

/* 🔹 Conteúdo principal */
.container {
  text-align: center;
  padding: 40px 30px;
  max-width: 600px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
  margin-bottom: 80px;
}

.logo {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 3s infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px rgba(0,114,255,0.3); }
  to { text-shadow: 0 0 20px rgba(0,198,255,0.5); }
}

.subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
}

/* 🔹 Loader */
.loader {
  width: 60px;
  height: 60px;
  border: 5px solid #ddd;
  border-top-color: #0072ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 25px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

h2 {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.2em;
}

p {
  color: #555;
  font-size: 0.95em;
}

.divider {
  height: 1px;
  width: 80%;
  margin: 25px auto;
  background: rgba(0,0,0,0.1);
}

/* 🔹 Rodapé */
footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.85em;
  color: #555;
  line-height: 1.5;
  background: transparent;
  padding: 10px;
}

footer strong {
  color: #333;
}

/* ❤️ Animação do coração */
.heart {
  color: #ff3366;
  font-size: 1em;
  display: inline-block;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* 🔹 Link Store Criativo */
footer a {
  color: #0072ff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

footer a:hover {
  color: #00c6ff;
  text-shadow: 0 0 10px rgba(0,198,255,0.6);
}

/* 🔸 Responsividade */
@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }

  .logo {
    font-size: 2em;
  }

  .subtitle {
    font-size: 1em;
  }

  h2 {
    font-size: 1.1em;
  }

  footer {
    font-size: 0.8em;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .container {
    padding: 25px 15px;
    margin-bottom: 70px;
  }

  .logo {
    font-size: 1.8em;
  }

  .subtitle {
    font-size: 0.95em;
  }

  p {
    font-size: 0.9em;
  }

  footer {
    font-size: 0.75em;
  }
}
