/* ============================================================
   Samantha Gutierri — Estética Avançada
   Página "Em construção" · folha de estilo
   ============================================================ */

:root {
  --bg-page:        #faf7f0;
  --brand:          #585830;
  --brand-strong:   #494827;
  --brand-soft:     #e4e3d3;
  --accent:         #915827;
  --green-700:      #494827;
  --text-muted:     #5f5c49;
  --text-on-brand:  #faf7f0;
  --border-strong:  rgba(88, 88, 48, 0.30);
  --line-hairline:  rgba(88, 88, 48, 0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', 'Century Gothic', system-ui, sans-serif;

  --ease-gentle:  cubic-bezier(0.33, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-page); }

/* transform-only entrances — resting state stays fully visible
   even if the animation clock is paused (e.g. a backgrounded tab). */
@keyframes sg-rise { from { transform: translateY(20px); } to { transform: translateY(0); } }

.page {
  min-height: 100vh;
  width: 100%;
  background: var(--bg-page);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 8vh, 96px) 24px;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 clamp(26px, 5vh, 44px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 0.34em;
  animation: sg-rise 900ms var(--ease-gentle) 120ms both;
}

.logo {
  width: clamp(360px, 60vw, 640px);
  height: auto;
  animation: sg-rise 1000ms var(--ease-gentle) 220ms both;
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(240px, 60%);
  margin: clamp(28px, 5vh, 46px) 0 clamp(30px, 5vh, 48px);
  animation: sg-rise 900ms var(--ease-gentle) 360ms both;
}
.divider .rule { flex: 1; height: 1px; background: var(--line-hairline); }
.divider .diamond { width: 7px; height: 7px; transform: rotate(45deg); background: var(--accent); }

.headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 5.4vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--green-700);
  text-wrap: balance;
  animation: sg-rise 1000ms var(--ease-gentle) 460ms both;
}

.support {
  margin: clamp(20px, 3vh, 28px) 0 0;
  max-width: 52ch;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  text-wrap: pretty;
  animation: sg-rise 900ms var(--ease-gentle) 600ms both;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: clamp(34px, 5vh, 52px);
  animation: sg-rise 900ms var(--ease-gentle) 760ms both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 220ms var(--ease-gentle), color 220ms var(--ease-gentle), transform 160ms var(--ease-gentle);
}
.btn:active { transform: translateY(1px); }

.btn--solid { background: var(--brand); color: var(--text-on-brand); border: 1px solid var(--brand); }
.btn--solid:hover { background: var(--brand-strong); border-color: var(--brand-strong); }

.btn--outline { background: transparent; border: 1px solid var(--border-strong); color: var(--brand); }
.btn--outline:hover { background: var(--brand-soft); }
