* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(120deg, #2096ff, #000ecc);
  color: #333;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 20px;
}

.container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 100%;
  animation: fadeIn 1.2s ease-in-out;
}

.icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: bounce 1.5s infinite;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #000000;
}

p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #8b8b8b;
}

.btn {
  display: inline-block;
  background-color: #dd003e;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
  font-weight: 600;
}

.btn:hover {
  background-color: #8d0021;
}

footer {
  position: absolute;
  bottom: 20px;
  font-size: 14px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Animações */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
