:root {
  --black: #000000;
  --panel: #0a0a0a;
  --panel-2: #1a1a1a;
  --gold: #B08A35;
  --gold-light: #d8b25a;
  --white: #ffffff;
  --gray: #cfcfcf;
}

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

html, body { min-height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 50% -10%, #1c1710 0%, #0a0a0a 45%, #000 100%);
  background-attachment: fixed;
  color: var(--white);
  min-height: 100vh;
  /* min-height dvh: usa altura real da viewport no mobile (sem URL bar) */
  min-height: 100dvh;
  display: flex;
  /* centralização via margin:auto -> quando o conteúdo é mais alto que a tela,
     ele encosta no topo e continua rolável (não corta a logo no mobile) */
  padding: 32px 20px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: auto;
  text-align: center;
  z-index: 1;
}

.glow {
  position: absolute;
  top: -120px; left: 50%;
  width: 460px; height: 460px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(176,138,53,.35) 0%, rgba(176,138,53,0) 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.brand { position: relative; z-index: 1; }

.logo {
  width: min(340px, 78vw);
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.6));
  animation: floatIn .9s ease both;
}

.content { position: relative; z-index: 1; margin-top: 8px; }

.badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(176,138,53,.5);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
  background: rgba(176,138,53,.08);
}

h1 {
  font-size: clamp(30px, 7vw, 52px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
}

h1 .gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  margin: 22px auto 0;
  max-width: 520px;
  color: var(--gray);
  font-size: clamp(15px, 2.6vw, 18px);
  line-height: 1.6;
}

.soon {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
}

.actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 14px;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  min-width: 220px;
  justify-content: center;
}

.btn .ico { width: 22px; height: 22px; }

.btn-whatsapp {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #111;
  box-shadow: 0 10px 24px rgba(176,138,53,.35);
}

.btn-instagram {
  background: var(--panel-2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.14);
}

.btn:hover { transform: translateY(-2px); }
.btn-whatsapp:hover { box-shadow: 0 14px 30px rgba(176,138,53,.5); }
.btn-instagram:hover { background: #242424; }

.foot {
  margin-top: 44px;
  color: #7e7e7e;
  font-size: 12.5px;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  body { padding: 24px 16px; }
  .glow { width: 320px; height: 320px; top: -70px; }
  .logo { width: min(280px, 70vw); }
  .actions { margin-top: 26px; }
}

@media (max-width: 480px) {
  .btn { width: 100%; min-width: 0; }
}

/* Telas baixas (paisagem no celular): reduz respiros para não cortar nada */
@media (max-height: 560px) {
  .glow { display: none; }
  .logo { width: min(180px, 40vw); }
  .badge { margin-bottom: 12px; }
  .lead { margin-top: 14px; }
}
