@font-face {
  font-family: "Corbel";
  src: url("../01-insumos/fontes/corbel/CORBEL.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Corbel";
  src: url("../01-insumos/fontes/corbel/Corbel Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../01-insumos/fontes/gotham/Gotham Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../01-insumos/fontes/gotham/Gotham Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #303188;
  --blue-deep: #191a4d;
  --blue-dark: #111236;
  --yellow: #ffd400;
  --yellow-shadow: #fdb913;
  --green: #00a651;
  --green-dark: #007f3e;
  --white: #ffffff;
  --white-muted: #dfe1f3;
  --page-padding: clamp(1.5rem, 5vw, 5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--blue-deep);
}

body {
  margin: 0;
  color: var(--white);
  font-family: "Gotham", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 0 var(--page-padding) clamp(1.25rem, 4vh, 2.25rem);
  background:
    radial-gradient(circle at 50% 35%, rgba(69, 71, 177, 0.42), transparent 34rem),
    var(--blue-deep);
}

.coming-soon::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.44) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  width: auto;
  justify-content: center;
  justify-self: stretch;
  margin-inline: calc(var(--page-padding) * -1);
  border-radius: 0;
  background: var(--white);
  padding: clamp(0.75rem, 2vh, 1.1rem) var(--page-padding);
  box-shadow: 0 10px 34px rgba(8, 9, 36, 0.2);
}

.brand img {
  display: block;
  width: clamp(7.75rem, 11.5vw, 10.375rem);
  height: auto;
}

.message {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  width: min(100%, 72rem);
  padding-block: clamp(2.5rem, 7vh, 6rem);
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  color: var(--white-muted);
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2.5rem;
  height: 0.25rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--yellow);
}

h1 {
  max-width: none;
  margin: 0 auto;
  font-family: "Corbel", Arial, sans-serif;
  font-size: clamp(3rem, 6.5vw, 6.75rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.91;
  text-wrap: balance;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.intro {
  max-width: 39rem;
  margin: clamp(1.5rem, 3vw, 2.25rem) auto 0;
  color: var(--white-muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.launch {
  width: fit-content;
  margin: clamp(1.5rem, 3.5vw, 2.75rem) auto 0;
  border-left: 0.3rem solid var(--green);
  padding: 0.2rem 0 0.2rem 1rem;
  color: var(--white);
  font-family: "Corbel", Arial, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.25;
}

.launch strong {
  color: var(--yellow);
}

.footer {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.footer p {
  margin: 0;
}

::selection {
  background: var(--yellow);
  color: var(--blue-dark);
}

@media (max-width: 900px) {
  .coming-soon {
    background:
      radial-gradient(circle at 50% 30%, rgba(69, 71, 177, 0.42), transparent 25rem),
      var(--blue-deep);
  }

  .message {
    width: min(100%, 42rem);
  }
}

@media (max-width: 560px) {
  .coming-soon {
    --page-padding: clamp(1.25rem, 6vw, 2rem);
    padding-inline: var(--page-padding);
  }

  .brand {
    padding-block: 0.7rem;
  }

  .brand img {
    width: 7.75rem;
  }

  .message {
    align-self: start;
    padding-top: clamp(3.75rem, 12vh, 6.5rem);
    padding-bottom: clamp(8rem, 20vh, 10rem);
  }

  .eyebrow {
    max-width: 19rem;
    letter-spacing: 0.09em;
  }

  h1 {
    max-width: none;
    font-size: clamp(2rem, 9.7vw, 3rem);
    letter-spacing: -0.045em;
    line-height: 0.98;
  }

  .intro {
    max-width: 31rem;
    line-height: 1.55;
  }

  .launch {
    max-width: 18rem;
  }
}

@media (max-height: 690px) and (min-width: 700px) {
  .message {
    padding-block: 2rem;
  }

  h1 {
    font-size: clamp(3.5rem, 8.5vh, 5rem);
  }

  .intro,
  .launch {
    margin-top: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
