/* Página em breve — usa variáveis de tokens.css na mesma pasta */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body.page {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-surface);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, var(--color-accent-sky), transparent 55%),
    radial-gradient(ellipse 90% 50% at 100% 100%, rgb(201 162 39 / 0.12), transparent 50%),
    radial-gradient(ellipse 70% 40% at 0% 90%, rgb(45 90 39 / 0.08), transparent 45%);
}

.shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-page);
}

.card {
  width: 100%;
  max-width: 32rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.logo {
  display: block;
  width: min(280px, 72vw);
  height: auto;
  margin: 0 auto 1rem;
}

.eyebrow {
  margin: 0 0 0.35rem;
}

.title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.lede {
  margin: 0 0 0.5rem;
  color: var(--color-text-muted);
}

.tagline {
  margin: 0.25rem 0 1.75rem;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  max-width: 22rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  background-color: #25d366;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-wa:hover {
  background-color: #1ebe57;
}

.btn-wa:active {
  background-color: #128c7e;
  transform: scale(0.98);
}

.btn-wa:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
}

.btn-wa__icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.phone-note {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.phone-note__label {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.15rem;
}

.foot {
  margin-top: 2rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.foot small {
  font-size: inherit;
}
