/* Fonte Sora Semibold aplicada ao site */
:root {
  --brand-dark: #005C70;
  --brand-mid: #0096B7;
  --accent: #FF7B2C;
  --overlay-opacity: 0.5; /* 50% */
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: 'Sora', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--brand-dark);
  color: #ffffff;
}

/* Camada de fundo com imagem + overlay em degradê */
.background {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(
      135deg,
      #0096B780,
      #005C7080
    ),
    url('assets/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* Conteúdo centralizado */
.coming-soon {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.logo {
  width: min(280px, 70vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
  margin-bottom: 16px;
}

.headline {
  font-weight: 600; /* Sora Semibold */
  letter-spacing: 0.2px;
  margin: 8px 0 4px;
}

.subtitle {
  opacity: 0.9;
  margin: 0;
}

/* Rodapé com barra na cor #FF7B2C */
.company-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent);
  color: #0b1f24;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600; /* mantém Sora Semibold padrão */
  text-align: center;
}

.company-footer p {
  margin: 0;
  white-space: pre-wrap;
}

@media (min-width: 768px) {
  .headline { font-size: 40px; }
  .subtitle { font-size: 18px; }
}


