﻿/* Reset simples */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  background: radial-gradient(circle at top, #1f2933, #020617);
  color: #e5e7eb;
  min-height: 100vh;
}

/* Layout principal */
.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Conteúdo central */
.content {
  max-width: 640px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
}

/* Logo / nome */
.logo {
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 12px;
}

/* Título principal */
.content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

/* Subtítulo */
.subtitle {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #cbd5f5;
  margin-bottom: 24px;
}

/* Citação */
.quote {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #9ca3af;
  margin-bottom: 24px;
}

.quote-author {
  font-size: 0.85rem;
  color: #e5e7eb;
}

/* Contacto e botão */
.contact p {
  margin-bottom: 8px;
}

.email a {
  color: #e5e7eb;
  text-decoration: underline;
  font-weight: 500;
}

.email a:hover {
  color: #bfdbfe;
}

/* Botão */
.btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #3b82f6;
  color: #f9fafb;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

/* Footer */
.footer {
  margin-top: 32px;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Animação de entrada */
.content.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Responsivo */
@media (max-width: 480px) {
  .content h2 {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }
}
