  .main-body {
      color: var(--brand-text-secondary);
      font-family: var(--font-family-sans);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 2rem;
      text-align: center;
  }

  .main-body a {
      color: var(--brand-primary);
      text-decoration: none;
  }

  .main-body a:hover {
      text-decoration: underline;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes pulseIcon {

      0%,
      100% {
          transform: scale(1);
          filter: drop-shadow(0 0 5px rgba(29, 185, 84, 0.2));
      }

      50% {
          transform: scale(1.05);
          filter: drop-shadow(0 0 15px rgba(29, 185, 84, 0.5));
      }
  }

  /* Container Principal */
  .coming-soon-container {
      max-width: 600px;
      width: 100%;
      animation: fadeIn 0.8s ease-out;
  }

  .main-icon {
      font-size: 5rem;
      color: var(--brand-primary);
      margin-bottom: 1.5rem;
      display: inline-block;
      animation: pulseIcon 3s infinite ease-in-out;
  }

  h1 {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--brand-text-primary);
      letter-spacing: -0.025em;
      margin-bottom: 1rem;
      line-height: 1.2;
      animation: fadeInUp 0.5s ease-out 0.2s backwards;
  }

  p.description {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 2.5rem;
      animation: fadeInUp 0.5s ease-out 0.4s backwards;
  }

  @media (min-width: 768px) {
      h1 {
          font-size: 3rem;
      }

      p.description {
          font-size: 1.1rem;
      }
  }

  /* Formulário de Notificação */
  .notify-form {
      animation: fadeInUp 0.5s ease-out 0.6s backwards;
  }

  .notify-form p.form-title {
      font-weight: 600;
      color: var(--brand-text-primary);
      margin-bottom: 1rem;
  }

  .form-wrapper {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
  }

  @media (min-width: 640px) {
      .form-wrapper {
          flex-direction: row;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          border-radius: 9999px;
          background-color: var(--brand-bg-content);
          padding: 0.5rem;
      }
  }

  .notify-input {
      flex-grow: 1;
      background-color: var(--brand-bg-elevated);
      border: 1px solid var(--brand-border);
      color: var(--brand-text-primary);
      padding: 0.9rem 1.25rem;
      border-radius: 9999px;
      font-size: 1rem;
      transition: border-color 0.2s, box-shadow 0.2s;
  }

  .notify-input:focus {
      outline: none;
      border-color: var(--brand-primary);
      box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.2);
  }

  .notify-button {
      background-color: var(--brand-primary);
      color: black;
      border: none;
      padding: 0.9rem 1.75rem;
      border-radius: 9999px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
  }

  .notify-button:hover {
      background-color: var(--brand-primary-darker);
      transform: scale(1.03);
  }

  /* Links de Retorno */
  .back-links {
      margin-top: 2.5rem;
      font-size: 0.9rem;
      animation: fadeInUp 0.5s ease-out 0.8s backwards;
  }