/* styles.css */
:root {
  --azul: #25556f;
  --blanco: #ffffff;
  --negro: #000000;

  --primario: var(--azul);
  --secundario: var(--blanco);
  --alternativo: var(--negro);

  --font-texto: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;

  --font-destacado: "Roboto", system-ui, -apple-system, "Segoe UI", Arial,
    sans-serif;

  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-texto);
  background: var(--azul);
  color: var(--blanco);
}

/* ===== Construction page ===== */
.construction {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: clamp(16px, 4vw, 48px);
}

.construction__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 22px);
}

.construction__logo {
  width: min(78vw, 420px);
  height: auto;
  max-height: 45svh;
  padding-bottom: 5px;
}

.construction__msg {
  margin: 0;
  font-family: var(--font-destacado);
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.15;
  color: var(--blanco);
  font-size: clamp(18px, 3.2vw, 34px);
}
