:root {
  --color-bg: #070605;
  --color-bg-vignette: radial-gradient(circle at 50% 50%, #0f0d0b 0%, #050404 100%);
  --color-text: #ffffff;
  --color-text-muted: #948b84;
  --color-border: #28211d;
  --color-border-focus: #d4af37;
  --color-input-bg: #14100e;
  --color-btn-bg: #ffffff;
  --color-btn-text: #0d0b0a;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  background-image: var(--color-bg-vignette);
  color: var(--color-text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 1.5rem;
  overflow-x: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.coming-soon-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Símbolo Oficial da Marca */
.brand-symbol {
  margin-bottom: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-symbol svg {
  display: block;
  width: 78px;
  height: 78px;
  filter: drop-shadow(0 6px 24px rgba(212, 175, 55, 0.18));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.brand-symbol:hover svg {
  transform: scale(1.04);
  filter: drop-shadow(0 8px 30px rgba(212, 175, 55, 0.28));
}

/* Tipografia */
.headline {
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #faf7f2;
  margin-bottom: 1.1rem;
  line-height: 1.12;
  text-rendering: optimizeLegibility;
}

.subheadline {
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.7;
  color: #b5aba1;
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 480px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/* Formulário de Notificação */
.notify-form {
  width: 100%;
  max-width: 520px;
}

.input-group {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.email-field {
  flex: 1 1 auto;
  min-width: 0;
  background-color: var(--color-input-bg);
  border: 1px solid #382e27;
  color: #faf7f2;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.9rem 1.25rem;
  border-radius: 6px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  background-clip: padding-box;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.email-field::placeholder {
  color: #7a7067;
  opacity: 1;
}

.email-field:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 1px #d4af37;
  outline: none;
}

.email-field.input-error {
  border-color: #ff5247;
}

/* Remover estilo de preenchimento automático (autofill) padrão do navegador */
.email-field:-webkit-autofill,
.email-field:-webkit-autofill:hover,
.email-field:-webkit-autofill:focus,
.email-field:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--color-input-bg) inset !important;
  -webkit-text-fill-color: #faf7f2 !important;
  transition: background-color 5000s ease-in-out 0s;
  caret-color: #faf7f2;
}

.notify-btn {
  flex-shrink: 0;
  background-color: #faf7f2;
  color: #0d0b0a;
  border: none;
  border-radius: 6px;
  padding: 0.9rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.1s ease, background-color 0.2s ease;
}

.notify-btn:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.12);
}

.notify-btn:active {
  transform: scale(0.98);
}

.notify-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Mensagem de Feedback */
.form-feedback {
  min-height: 1.5rem;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  color: #a89f96;
  transition: color 0.2s ease;
}

.form-feedback.success {
  color: #e5c358;
}

.form-feedback.error {
  color: #ff6b61;
}

/* Ícones Sociais */
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2.25rem;
}

.social-icon {
  color: #9e9389;
  opacity: 0.75;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
  opacity: 1;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 480px) {
  .brand-symbol svg {
    width: 64px;
    height: 64px;
  }

  .headline {
    font-size: 2.3rem;
  }

  .input-group {
    flex-direction: column;
  }

  .notify-btn {
    width: 100%;
    padding: 0.9rem;
  }
}

/* Informações do Rodapé */
.footer-info {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.015em;
  line-height: 1.5;
}

.company-name {
  font-weight: 500;
  color: #8c8278;
}

.company-cnpj {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: #6e645b;
}

/* Utilitário acessível para SEO / Screen Readers */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}