/* ===================== RESET BÁSICO ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ===================== TEMA / TOKENS ===================== */
:root{
  --bg: #0c0c0c;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.75);
  --accent: #14b8c4;     /* aqua-teal */
  --accent-ink: #001518; /* contraste no botão */
}

/* ===================== BASE ===================== */
html, body {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow: hidden; /* evita scroll com o canvas full-viewport */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================== CANVAS DE FUNDO ===================== */
#background-canvas{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none; /* não bloquear cliques */
}

/* Vignette suave para legibilidade em cima do canvas */
body::after{
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(1200px 800px at 50% 40%, rgba(0,0,0,0.0), rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.75));
  z-index: 1;
  pointer-events: none;
}

/* ===================== LAYOUT DO CONTEÚDO ===================== */
.coming-soon{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  z-index: 2;
  text-align: center;
  padding: 24px;
}

.content{
  max-width: 720px;
  margin-inline: auto;
  opacity: 1;
  transform: translateY(0);
}

/* ===================== TÍTULO (linhas mais próximas) ===================== */
.tight-title{
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;           /* base neutra */
  margin-bottom: 20px;
}

.tight-title .line1,
.tight-title .line2{
  display: block;
  line-height: 1;           /* garantir consistência por linha */
}

.tight-title .line1{
  color: var(--accent);
}

/* Aproximação real entre as duas linhas */
.tight-title .line2{
  margin-top: -0.22em;      /* puxa a 2.ª linha para cima */
}

/* Fine-tuning em écrans grandes */
@media (min-width: 1200px){
  .tight-title .line2{ margin-top: -0.26em; }
}

/* ===================== TEXTO E CTA ===================== */
p{
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta{
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 16px 38px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
  box-shadow: 0 0 12px rgba(20,184,196,.35);
}
.cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(20,184,196,.6);
}
.cta:active{
  transform: translateY(0);
  opacity: 0.9;
}

/* ===================== REDUÇÃO DE MOVIMENTO ===================== */
@media (prefers-reduced-motion: reduce){
  #background-canvas{ display: none; }
  body::after{ background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.8)); }
}
