* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: #374151;
  background: linear-gradient(135deg, #f5f5f5 0%, #f5f5f5 100%);
  min-height: 100vh;
}

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.content {
  max-width: 28rem;
  width: 100%;
  text-align: center;
}

/* Logo */
.logo-container {
  margin-bottom: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: white;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.settings-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #4b5563;
}

/* Card Principal */
.main-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #d5d7da;
}

.main-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.message {
  margin-bottom: 2rem;
}

.message p {
  color: #4b5563;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.message p:last-child {
  margin-bottom: 0;
}

/* Divisória */
.divider {
  border-top: 1px solid #f3f4f6;
  padding-top: 1.5rem;
}

.contact-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Links de Contato */
.contact-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #1f2937;
}

.contact-icon {
  width: 1rem;
  height: 1rem;
}

/* Status Indicator */
.status-indicator {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #fbbf24;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-indicator span {
  font-size: 0.875rem;
  color: #6b7280;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsividade */
@media (max-width: 640px) {
  .container {
    padding: 1rem;
  }
  
  .main-card {
    padding: 1.5rem;
  }
  
  .contact-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .contact-link {
    justify-content: center;
  }
}