/* ============================================================
   MASTER INTERNET – empresa.css
   Página "Para Sua Empresa" — comunicado de em construção
   ============================================================ */

.soon-wrap {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 28px 64px;
}
.soon-card {
  max-width: 620px;
  width: 100%;
  text-align: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  padding: 56px 40px;
}
.soon-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-lt), var(--blue-md));
  display: flex;
  align-items: center;
  justify-content: center;
}
.soon-icon svg { width: 38px; height: 38px; color: var(--blue); }

.soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.soon-tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,196,0,.25);
}

.soon-card h1 {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 14px;
}
.soon-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--gray-500);
  max-width: 460px;
  margin: 0 auto;
}
.soon-card p + p { margin-top: 12px; }

.soon-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.soon-actions .svc-btn { flex: 0 1 auto; padding: 13px 26px; }

.soon-progress {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gray-500);
}
.soon-progress-bar {
  width: 140px;
  height: 6px;
  border-radius: 999px;
  background: var(--gray-100);
  overflow: hidden;
}
.soon-progress-fill {
  height: 100%;
  width: 65%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-md));
}

@media (max-width: 560px) {
  .soon-card { padding: 40px 24px; }
}
