body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.1),
    0 0 10px rgba(106, 17, 203, 0.3),
    0 0 20px rgba(37, 117, 252, 0.2);
  max-width: 500px;
  width: 90%;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
}

.logo span {
  color: #ffd700;
}

.domain {
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

.status-box {
  margin: 1rem 0;
  font-size: 1.2rem;
  color: #ffcccb;
}

.status-icon {
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.tagline {
  font-size: 1rem;
  margin: 1rem 0;
}

.progress-container {
  margin: 1rem 0;
}

.progress-label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.progress-bar {
  background: #ffffff33;
  border-radius: 20px;
  overflow: hidden;
  height: 20px;
}

.progress-fill {
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, #3a7bd5, #00d2ff);
  background-size: 200% 100%;
  animation: pulseFill 3s ease-in-out infinite;
  border-radius: 20px;
}

@keyframes pulseFill {
  0% {
    background-position: 0% 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0% 0;
  }
}


.subscribe-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.subscribe-form input {
  padding: 0.7rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.subscribe-form button {
  padding: 0.7rem;
  background: #6a11cb;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe-form button:hover {
  background: #4e0fa3;
}

.cta {
  margin-top: 1rem;
  font-weight: 700;
  color: #f0f8ff;
}

footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #dcdcdc;
}

/* Responsivo */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
    max-width: 90%;
  }

  .logo {
    font-size: 1.8rem;
  }

  .status-box {
    font-size: 1rem;
  }

  .progress-label {
    font-size: 0.9rem;
  }

  .cta {
    font-size: 0.95rem;
  }

  footer {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .status-box {
    flex-direction: column;
    font-size: 0.95rem;
  }

  .progress-bar {
    height: 16px;
  }

  .progress-label {
    font-size: 0.85rem;
  }

  .cta {
    font-size: 0.9rem;
  }
}
