:root {
  --bg: #ffffff;
  --title: #4f46e5;
  --text: #0f172a;
  --strong: #050505;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.page {
  position: relative;
  height: 100dvh;
  padding: 48px clamp(20px, 8vw, 320px) 96px;
  background-image: url("Logotipo-fundo.svg");
  background-repeat: no-repeat;
  background-position: right 0 bottom 100px;
  background-size: min(48vw, 620px) auto;
}

.header {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  width: 286px;
  height: auto;
}

.header-note {
  margin: 0;
  width: 220px;
  font-size: 18px;
  line-height: 1.5;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: clamp(24px, 8vh, 96px) auto 0;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.copy {
  width: min(100%, 486px);
}

.copy h1 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1.2;
  color: var(--title);
}

.copy p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.5;
}

.copy .strong {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--strong);
}

.hero {
  margin: 0;
  width: min(100%, 737px);
}

.hero img {
  width: 100%;
  display: block;
  height: auto;
  max-height: 62vh;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .page {
    padding: 28px 24px 32px;
    background-position: right -180px bottom -160px;
    background-size: min(86vw, 560px) auto;
  }

  .content {
    margin-top: 28px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .copy {
    width: 100%;
    max-width: 680px;
  }

  .hero {
    max-width: 560px;
  }

  .header-note {
    width: auto;
    max-width: 260px;
    text-align: right;
    font-size: 16px;
  }

  .copy h1 {
    font-size: clamp(42px, 8vw, 64px);
  }

  .copy p {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .hero img {
    max-height: 36vh;
  }
}

@media (max-width: 640px) {
  html,
  body {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .page {
    height: auto;
    min-height: 100dvh;
    padding: 64px 20px;
    background-position: calc(50% + 35px) 130px;
    background-size: 339px 358.03px;
  }

  .logo {
    width: 173.767px;
  }

  .header {
    align-items: center;
    gap: 16px;
  }

  .header-note {
    width: 145.86px;
    max-width: none;
    text-align: left;
    font-size: 12px;
  }

  .content {
    margin-top: 56px;
    gap: 32px;
    align-items: flex-start;
  }

  .copy {
    order: 2;
    width: 100%;
    max-width: none;
  }

  .copy p {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .copy h1 {
    margin-bottom: 16px;
    font-size: 48px;
    line-height: 1.2;
  }

  .hero {
    order: 1;
    width: 100%;
    max-width: 374px;
    height: 318px;
    overflow: hidden;
    position: relative;
  }

  .hero img {
    position: absolute;
    width: 372.317px;
    height: 325.053px;
    max-width: none;
    left: 0.08px;
    top: -11.44px;
  }
}
