/* Base comum para landings dos domínios */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { min-height: 100vh; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 500px;
  width: 90%;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo {
  width: 200px;
  height: 200px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.subtitle { font-size: 1.1rem; color: #64748b; margin-bottom: 25px; font-weight: 500; }
.message { font-size: 1rem; color: #475569; margin-bottom: 30px; line-height: 1.6; }
.footer { font-size: 0.85rem; color: #94a3b8; margin-top: 20px; }

@media (max-width: 480px) {
  .container { padding: 25px 20px; }
  .logo { width: 150px; height: 150px; }
}
