@font-face {
  font-family: "Gotham";
  src: url("./font/Gotham-Light%20(1).otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./font/Gotham-Book%20(1).otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./font/Gotham-Medium%20(1).otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Sora";
  src: url("./font/Sora-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Sora";
  src: url("./font/Sora-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --bg: #252527;
  --panel: rgba(10, 10, 10, 0.94);
  --soft-pink: #ef9a98;
  --soft-pink-soft: rgba(239, 154, 152, 0.82);
  --soft-pink-line: rgba(239, 154, 152, 0.72);
  --text: #f4efed;
  --muted: rgba(255, 255, 255, 0.7);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  font-family: "Gotham", sans-serif;
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(37, 37, 39, 0.15), rgba(37, 37, 39, 0.22)),
    url("./img/fundo.jpg") center top / cover no-repeat;
  z-index: -2;
}

.page {
  min-height: 100vh;
}

.landing {
  min-height: 100vh;
}

.landing__top p,
.landing__copy h1,
.landing__copy p,
.signup-card p,
.landing__tagline p,
.footer__label,
.footer__legal,
.landing__credit {
  margin: 0;
}

@media (min-width: 1181px) {
  body {
    overflow: hidden;
  }

  .landing {
    width: 1920px;
    height: 768px;
    margin: 0 auto;
    padding: 28px 84px 12px 48px;
    display: grid;
    grid-template-columns: 98px 760px 728px;
    grid-template-rows: 88px minmax(0, 1fr) auto auto;
    column-gap: 48px;
    row-gap: 12px;
  }

  .landing__side-note {
    grid-column: 1;
    grid-row: 2 / 4;
    align-self: center;
    justify-self: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: rgba(239, 154, 152, 0.58);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .landing__top {
    grid-column: 2 / 4;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    padding-right: 36px;
  }

  .landing__brand {
    width: 222px;
  }

  .landing__coming-soon,
  .landing__location {
    align-self: start;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.78em;
    text-transform: uppercase;
  }

  .landing__coming-soon {
    justify-self: center;
    padding-top: 10px;
  }

  .landing__location {
    justify-self: end;
    padding-top: 10px;
    width: 100%;
    text-align: right;
  }

  .landing__main {
    grid-column: 2 / 4;
    grid-row: 2;
    display: grid;
    grid-template-columns: 760px 688px;
    column-gap: 48px;
    align-items: start;
    padding-right: 36px;
  }

  .landing__visual {
    display: flex;
    align-items: flex-end;
    min-height: 0;
    justify-self: right;
    align-self: end;
    z-index: 2;
  }

  .landing__visual img {
    width: 680px;
    max-width: 100%;
    display: block;
  }

  .landing__content {
    display: grid;
    justify-items: end;
    row-gap: 28px;
    align-content: start;
    padding-top: 26px;
  }

  .landing__copy {
    width: 100%;
    max-width: 688px;
    display: grid;
    row-gap: 16px;
    justify-items: start;
  }

  .landing__copy h1 {
    max-width: 470px;
    color: var(--soft-pink);
    font-size: 21px;
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: 1.22;
    text-transform: uppercase;
  }

  .landing__lead {
    max-width: 520px;
    padding-left: 18px;
    border-left: 4px solid var(--soft-pink);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.3;
  }

  .signup {
    width: calc(100% + 74px);
    display: grid;
    justify-items: end;
    row-gap: 0;
    margin-left: -74px;
    z-index: 1;
  }

  .signup-card {
    width: 100%;
    background: var(--panel);
    padding: 28px 32px 34px 70px;
    display: grid;
    row-gap: 22px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  }

  .signup-card__header {
    display: grid;
    grid-template-columns: 1fr 252px;
    column-gap: 30px;
    align-items: start;
  }

  .signup-card__title {
    margin-bottom: 14px;
    color: var(--soft-pink);
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.34em;
    text-transform: uppercase;
  }

  .signup-card__subtitle {
    max-width: 280px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.3;
  }

  .signup-card__callout {
    color: var(--soft-pink-soft);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    align-self: start;
  }

  .signup-card__callout-line {
    display: block;
    position: relative;
    width: 228px;
    height: 40px;
    margin-bottom: 12px;
    border-left: 1px solid var(--soft-pink-line);
    border-bottom: 1px solid var(--soft-pink-line);
    border-bottom-left-radius: 18px;
  }

  .signup-card__callout-line::after {
    content: "";
    position: absolute;
    right: -2px;
    bottom: -3px;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--soft-pink);
  }

  .signup-form {
    display: grid;
    row-gap: 18px;
  }

  .signup-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
  }

  .signup-form__field {
    display: grid;
    row-gap: 12px;
  }

  .signup-form__field span {
    color: rgba(245, 178, 175, 0.88);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }

  .signup-form__field input {
    width: 100%;
    border: 0;
    border-left: 1px solid var(--soft-pink-line);
    border-bottom: 1px solid var(--soft-pink-line);
    background: transparent;
    color: var(--text);
    padding: 12px 16px 10px;
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    font-weight: 300;
    outline: none;
  }

  .signup-form__field input::placeholder {
    color: rgba(255, 255, 255, 0.34);
  }

  .signup__actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
    padding: 0 0 0 28px;
  }

  .signup__submit {
    border: 0;
    padding: 11px 32px 10px;
    min-width: 124px;
    background: linear-gradient(90deg, #f7c1bc, #ef9a98);
    color: #1f1b1d;
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    transform: translateY(0);
    cursor: pointer;
  }

  .landing__footer {
    grid-column: 2 / 4;
    grid-row: 3;
    display: grid;
    grid-template-rows: auto auto;
    row-gap: 6px;
    align-items: start;
    align-self: end;
    padding-top: 10px;
    padding-left: 122px;
    padding-right: 42px;
  }

  .footer__meta,
  .footer__content-row {
    display: grid;
    grid-template-columns: 332px 176px 176px 1fr;
    column-gap: 28px;
    align-items: start;
  }

  .footer__meta {
    align-items: center;
  }

  .footer__label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }

  .footer__label--realizacao {
    justify-self: center;
  }

  .footer__label--gestao,
  .footer__label--social {
    justify-self: center;
  }

  .footer__logos {
    display: flex;
    gap: 20px;
    margin: auto;
  }

  .footer__logos--realizacao {
    justify-self: center;
    align-self: start;
  }

  .footer__logo {
    display: block;
    object-fit: contain;
  }

  .footer__logo--pichitelli {
    width: 90px;
  }

  .footer__logo--global {
    width: 90px;
  }

  .footer__logo--housi {
    width: 126px;
    margin: auto;
    justify-self: center;
  }

  .footer__social-icons {
    display: flex;
    gap: 10px;
  }

  .footer__social-block {
    display: grid;
    row-gap: 8px;
    justify-items: center;
    justify-self: center;
    margin: auto;
  }

  .footer__social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
  }

  .footer__social-icons img {
    width: 100%;
    height: 100%;
    display: block;
  }

  .footer__handle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 300;
    text-decoration: none;
  }

  .footer__info {
    min-width: 0;
    align-self: start;
    padding-top: 2px;
  }

  .footer__address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: min(100%, 640px);
    border: 1px solid var(--soft-pink-line);
    border-radius: 4px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.72);
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    min-width: 0;
    justify-self: end;
  }

  .footer__address img {
    width: 8px;
    height: 11px;
    opacity: 0.9;
  }

  .footer__address span {
    white-space: nowrap;
  }

  .footer__legal {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 300;
    line-height: 1.34;
    text-align: left;
    margin-top: 4px;
  }

  .landing__credit {
    grid-column: 3;
    grid-row: 4;
    justify-self: end;
    align-self: end;
    color: rgba(255, 255, 255, 0.34);
    font-size: 10px;
    font-weight: 300;
    margin-right: 42px;
  }

  .landing__tagline {
    width: min(100%, 640px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 10px;
    justify-self: end;
  }

  .landing__tagline img {
    width: 28px;
    display: block;
    opacity: 0.95;
  }

  .landing__tagline p {
    color: rgba(255, 255, 255, 0.98);
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-align: center;
  }
}

@media (min-width: 1181px) and (max-width: 1690px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .landing {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 24px clamp(28px, 3vw, 56px) 16px clamp(24px, 2.6vw, 40px);
    grid-template-columns: 72px minmax(520px, 1fr) minmax(500px, 0.92fr);
    grid-template-rows: 84px auto auto auto;
    column-gap: clamp(24px, 2vw, 40px);
    row-gap: 16px;
  }

  .landing__side-note {
    font-size: 9px;
    letter-spacing: 0.28em;
  }

  .landing__top {
    grid-template-columns: 280px minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 24px;
    padding-right: 0;
  }

  .landing__brand {
    width: clamp(188px, 13vw, 222px);
  }

  .landing__coming-soon,
  .landing__location {
    font-size: clamp(11px, 0.72vw, 14px);
    letter-spacing: clamp(0.34em, 0.04vw + 0.3em, 0.62em);
  }

  .landing__main {
    grid-template-columns: minmax(520px, 1fr) minmax(500px, 0.92fr);
    column-gap: clamp(24px, 2vw, 40px);
    padding-right: 0;
  }

  .landing__visual img {
    width: min(100%, clamp(560px, 40vw, 680px));
  }

  .landing__content {
    row-gap: 24px;
    padding-top: 18px;
  }

  .landing__copy {
    max-width: 100%;
  }

  .landing__copy h1 {
    max-width: clamp(380px, 28vw, 470px);
    font-size: clamp(18px, 1.08vw, 21px);
    letter-spacing: clamp(0.14em, 0.02vw + 0.1em, 0.2em);
  }

  .landing__lead {
    max-width: clamp(420px, 33vw, 520px);
    font-size: clamp(13px, 0.82vw, 15px);
  }

  .signup {
    width: calc(100% + 54px);
    margin-left: -54px;
  }

  .signup-card {
    padding: 24px 26px 30px 52px;
    row-gap: 18px;
  }

  .signup-card__header {
    grid-template-columns: minmax(0, 1fr) clamp(204px, 15vw, 240px);
    column-gap: 22px;
  }

  .signup-card__title {
    margin-bottom: 12px;
    font-size: clamp(15px, 0.95vw, 17px);
    letter-spacing: clamp(0.22em, 0.04vw + 0.2em, 0.34em);
  }

  .signup-card__subtitle {
    max-width: 250px;
    font-size: clamp(13px, 0.85vw, 15px);
  }

  .signup-card__callout {
    font-size: clamp(11px, 0.76vw, 13px);
    letter-spacing: clamp(0.16em, 0.03vw + 0.14em, 0.24em);
  }

  .signup-card__callout-line {
    width: clamp(176px, 13vw, 228px);
    height: clamp(30px, 2.2vw, 40px);
    margin-bottom: 10px;
  }

  .signup-form {
    row-gap: 16px;
  }

  .signup-form__row {
    column-gap: 20px;
  }

  .signup-form__field {
    row-gap: 10px;
  }

  .signup-form__field span {
    font-size: clamp(10px, 0.72vw, 12px);
    letter-spacing: clamp(0.16em, 0.03vw + 0.14em, 0.28em);
  }

  .signup-form__field input {
    padding: 10px 14px 9px;
    font-size: clamp(11px, 0.72vw, 12px);
  }

  .signup__actions {
    padding-left: 22px;
  }

  .signup__submit {
    min-width: 116px;
    padding: 10px 26px;
    font-size: 10px;
    letter-spacing: clamp(0.18em, 0.03vw + 0.16em, 0.34em);
  }

  .landing__tagline {
    width: min(100%, 560px);
    gap: 18px;
    margin-top: 4px;
  }

  .landing__tagline img {
    width: clamp(22px, 1.5vw, 28px);
  }

  .landing__tagline p {
    font-size: clamp(12px, 0.86vw, 14px);
    letter-spacing: clamp(0.08em, 0.02vw + 0.06em, 0.14em);
  }

  .landing__footer {
    padding-top: 8px;
    padding-left: 84px;
    padding-right: 12px;
  }

  .footer__meta,
  .footer__content-row {
    grid-template-columns: 270px 156px 164px minmax(0, 1fr);
    column-gap: 20px;
  }

  .footer__label {
    font-size: 8px;
    letter-spacing: 0.2em;
  }

  .footer__logo--pichitelli,
  .footer__logo--global {
    width: clamp(74px, 5.3vw, 90px);
  }

  .footer__logo--housi {
    width: clamp(108px, 7.6vw, 126px);
  }

  .footer__social-icons {
    gap: 8px;
  }

  .footer__social-icons a {
    width: 18px;
    height: 18px;
  }

  .footer__handle {
    font-size: 10px;
  }

  .footer__address {
    width: min(100%, 560px);
    padding: 8px 12px;
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .footer__address span {
    white-space: normal;
    line-height: 1.35;
    text-align: center;
  }

  .footer__legal {
    font-size: 8px;
    line-height: 1.38;
  }

  .landing__credit {
    font-size: 8px;
    margin-right: 12px;
  }
}

@media (min-width: 1181px) and (max-height: 860px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .page {
    min-height: 100vh;
  }

  .landing {
    height: auto;
    min-height: 768px;
    grid-template-rows: 88px auto auto auto;
  }

  .landing__footer {
    align-self: start;
    padding-top: 14px;
  }

  .landing__credit {
    align-self: start;
    margin-top: 6px;
  }
}

@media (max-width: 1180px) {
  .page,
  .landing {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .landing {
    max-width: 960px;
    min-height: auto;
    margin: 0 auto;
    padding: 28px 24px 40px;
    display: grid;
    row-gap: 28px;
  }

  .landing__side-note {
    display: none;
  }

  .landing__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: 16px;
    row-gap: 14px;
  }

  .landing__brand {
    grid-column: 1 / -1;
    width: 220px;
  }

  .landing__coming-soon,
  .landing__location {
    color: rgba(255, 255, 255, 0.72);
    font-family: "Sora", sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .landing__coming-soon {
    justify-self: start;
    align-self: start;
    padding-top: 0;
  }

  .landing__location {
    justify-self: end;
    align-self: start;
    padding-top: 0;
    text-align: right;
  }

  .landing__main,
  .landing__footer {
    display: grid;
    row-gap: 28px;
  }

  .landing__main {
    grid-template-columns: minmax(0, 1fr);
  }

  .landing__top,
  .landing__main,
  .landing__footer,
  .landing__content,
  .signup,
  .signup-card,
  .signup-card__header,
  .signup-form__row,
  .footer__meta,
  .footer__content-row,
  .footer__address,
  .footer__info {
    min-width: 0;
  }

  .landing__top > *,
  .landing__content > *,
  .signup-card__header > *,
  .signup-form__row > *,
  .footer__meta > *,
  .footer__content-row > * {
    min-width: 0;
  }

  .landing__visual {
    justify-self: center;
  }

  .landing__visual img {
    width: min(100%, 760px);
    display: block;
  }

  .landing__content {
    display: grid;
    row-gap: 22px;
    max-width: 760px;
    width: 100%;
    justify-self: center;
    justify-items: stretch;
    padding-top: 0;
  }

  .landing__copy {
    display: grid;
    row-gap: 14px;
  }

  .landing__copy h1 {
    color: var(--soft-pink);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
    max-width: 560px;
  }

  .landing__lead {
    max-width: 620px;
    padding-left: 18px;
    border-left: 4px solid var(--soft-pink);
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.3;
  }

  .signup {
    width: 100%;
    margin-left: 0;
    justify-items: stretch;
    z-index: auto;
  }

  .signup-card {
    background: var(--panel);
    width: 100%;
    padding: 26px 24px 28px;
    display: grid;
    row-gap: 20px;
  }

  .signup-card__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    column-gap: 24px;
    row-gap: 16px;
    align-items: start;
  }

  .signup-card__title {
    color: var(--soft-pink);
    font-size: 16px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }

  .signup-card__subtitle {
    max-width: 300px;
    font-size: 15px;
    line-height: 1.32;
  }

  .signup-card__callout {
    justify-self: end;
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .signup-card__callout-line {
    width: 190px;
    height: 34px;
    margin-bottom: 10px;
  }

  .signup-form {
    display: grid;
    row-gap: 16px;
  }

  .signup-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }

  .signup-form__field {
    display: grid;
    row-gap: 10px;
  }

  .signup-form__field span {
    color: var(--soft-pink);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .signup-form__field input {
    width: 100%;
    border: 0;
    border-left: 1px solid var(--soft-pink-line);
    border-bottom: 1px solid var(--soft-pink-line);
    background: transparent;
    color: var(--text);
    padding: 11px 14px 9px;
    font-family: "Gotham", sans-serif;
    font-size: 12px;
  }

  .signup__actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
    padding-left: 24px;
  }

  .signup__submit {
    border: 0;
    min-width: 118px;
    padding: 10px 28px;
    background: linear-gradient(90deg, #f7c1bc, #ef9a98);
    color: #1f1b1d;
    font-family: "Sora", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .landing__tagline {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 4px;
  }

  .landing__tagline img {
    width: 22px;
  }

  .landing__tagline p {
    color: rgba(255, 255, 255, 0.98);
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.12em;
  }

  .landing__footer {
    padding-top: 4px;
  }

  .footer__meta,
  .footer__content-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 14px;
    align-items: start;
  }

  .footer__label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    justify-self: start;
  }

  .footer__logos,
  .footer__social-icons {
    display: flex;
    gap: 14px;
    align-items: center;
  }

  .footer__logos--realizacao {
    justify-self: start;
    margin: 0;
  }

  .footer__logo--pichitelli {
    width: 80px;
  }

  .footer__logo--global {
    width: 80px;
  }

  .footer__logo--housi {
    width: 116px;
    justify-self: start;
    margin: 0;
  }

  .footer__social-block {
    display: grid;
    row-gap: 8px;
    justify-items: start;
    justify-self: start;
  }

  .footer__social-icons a {
    display: inline-flex;
    width: 24px;
    height: 24px;
  }

  .footer__social-icons img {
    width: 100%;
    height: 100%;
    display: block;
  }

  .footer__handle {
    font-size: 11px;
  }

  .footer__address {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    grid-column: 1 / -1;
    border: 1px solid var(--soft-pink-line);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 9px;
    letter-spacing: 0.18em;
    justify-self: stretch;
  }

  .footer__address img {
    width: 8px;
    height: 11px;
  }

  .footer__address span {
    white-space: normal;
    line-height: 1.45;
  }

  .footer__info {
    min-width: 0;
    grid-column: 1 / -1;
  }

  .footer__legal {
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .landing__credit {
    color: rgba(255, 255, 255, 0.34);
    font-size: 10px;
    justify-self: start;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 760px) {
  body::before {
    background:
      linear-gradient(180deg, rgba(37, 37, 39, 0.32), rgba(37, 37, 39, 0.4)),
      url("./img/fundo.jpg") 62% top / cover no-repeat;
  }

  .landing {
    max-width: 100%;
    padding: 20px 16px 28px;
    row-gap: 24px;
  }

  .landing__top {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 12px;
    text-align: center;
  }

  .landing__brand {
    width: 180px;
  }

  .landing__coming-soon,
  .landing__location {
    justify-self: center;
    padding-top: 0;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .landing__main,
  .landing__footer {
    row-gap: 22px;
  }

  .landing__footer {
    display: grid;
    row-gap: 12px;
    justify-items: center;
  }

  .landing__visual img {
    width: 100%;
  }

  .landing__content {
    row-gap: 18px;
  }

  .landing__visual,
  .landing__visual img,
  .landing__copy,
  .landing__content,
  .signup,
  .signup-card,
  .landing__tagline,
  .footer__meta,
  .footer__content-row,
  .footer__address,
  .footer__info {
    min-width: 0;
  }

  .landing__copy h1 {
    max-width: 100%;
    font-size: 21px;
    letter-spacing: 0.14em;
  }

  .landing__lead {
    max-width: 100%;
    font-size: 15px;
  }

  .signup-card {
    padding: 22px 18px 24px;
    row-gap: 18px;
  }

  .signup-card__header {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 16px;
  }

  .signup-card__title {
    font-size: 15px;
  }

  .signup-card__subtitle {
    max-width: 100%;
    font-size: 14px;
  }

  .signup-card__callout {
    justify-self: start;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .signup-card__callout-line {
    width: 168px;
    height: 30px;
    margin-bottom: 8px;
  }

  .signup-form__row {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .signup-form__field span {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .signup-form__field input {
    font-size: 11px;
    padding: 10px 12px 8px;
  }

  .signup__actions {
    padding-left: 0;
  }

  .signup__submit {
    min-width: 112px;
    padding: 10px 22px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .landing__tagline {
    gap: 12px;
    justify-content: center;
  }

  .landing__tagline img {
    width: 20px;
    flex: 0 0 auto;
  }

  .landing__tagline p {
    font-size: 11px;
    line-height: 1.4;
  }

  .footer__meta,
  .footer__content-row {
    display: contents;
  }

  .footer__label,
  .footer__logos--realizacao,
  .footer__logo--housi,
  .footer__social-block,
  .footer__address,
  .footer__info,
  .landing__credit {
    justify-self: center;
  }

  .footer__label {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-align: center;
  }

  .footer__label--realizacao {
    order: 1;
  }

  .footer__logos--realizacao {
    order: 2;
  }

  .footer__label--gestao {
    order: 3;
  }

  .footer__logo--housi {
    order: 4;
  }

  .footer__label--social {
    order: 5;
  }

  .footer__social-block {
    order: 6;
    justify-items: center;
  }

  .footer__address {
    order: 7;
    margin-top: 8px;
  }

  .footer__info {
    order: 8;
    max-width: 390px;
  }

  .footer__logos {
    gap: 14px;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
  }

  .footer__logo--pichitelli {
    width: 94px;
  }

  .footer__logo--global {
    width: 92px;
  }

  .footer__logo--housi {
    width: 132px;
  }

  .footer__social-icons a {
    width: 24px;
    height: 24px;
  }

  .footer__handle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    text-align: center;
  }

  .footer__address {
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    max-width: 390px;
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 12px 14px;
    text-align: center;
  }

  .footer__address span {
    white-space: normal;
    line-height: 1.45;
  }

  .footer__legal {
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
  }

  .landing__credit {
    font-size: 9px;
    word-break: break-word;
    text-align: center;
  }
}
