/* 
   PLUSDOCTOR — Coming Soon Page
   Color: #0F766E
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #0F766E;
  --primary-light: #14b8a6;
  --primary-dark: #0d9488;
  --primary-gradient: linear-gradient(135deg, #0F766E 0%, #0d9488 100%);
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 24px;
  z-index: 1;
}

.content {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  text-align: center;
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */
.logo-wrapper {
  margin-bottom: 40px;
}

.logo {
  height: 40px;
  width: auto;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Título */
.title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

@media (max-width: 640px) {
  .title {
    font-size: 40px;
  }
}

/* Subtítulo */
.subtitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 24px;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

@media (max-width: 640px) {
  .subtitle {
    font-size: 20px;
  }
}

/* Descrição */
.description {
  font-size: 16px;
  color: var(--muted-foreground);
  margin-bottom: 48px;
  line-height: 1.8;
  animation: fadeIn 0.8s ease-out 0.5s both;
}

/* Newsletter */
.newsletter {
  margin-bottom: 48px;
  animation: fadeIn 0.8s ease-out 0.6s both;
}

.newsletter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 12px;
  display: block;
}

.email-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

@media (max-width: 640px) {
  .email-form {
    flex-direction: column;
  }
}

.email-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--foreground);
  transition: all 0.2s ease;
}

.email-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.email-input::placeholder {
  color: var(--muted-foreground);
}

.email-button {
  padding: 12px 24px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.email-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.3);
}

.email-button:active {
  transform: translateY(0);
}

.email-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-message {
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
}

.form-message.success {
  color: #10b981;
}

.form-message.error {
  color: #ef4444;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  animation: fadeIn 0.8s ease-out 0.7s both;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--muted);
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--primary-gradient);
  color: white;
  transform: translateY(-4px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Contact */
.contact {
  font-size: 14px;
  color: var(--muted-foreground);
  animation: fadeIn 0.8s ease-out 0.8s both;
}

.contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Background Decoration */
.background-decoration {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(15, 118, 110, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15, 118, 110, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .content {
    padding: 40px 24px;
  }

  .title {
    font-size: 36px;
  }

  .subtitle {
    font-size: 18px;
  }

  .description {
    font-size: 15px;
  }

  .social-links {
    gap: 16px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }
}
