* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.intro {
  font-family: 'Poppins', sans-serif;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: 60% 100%;
  min-height: 100vh;
  position: relative;
}

.intro__container {
  max-width: calc((100vw - 1136px) / 2 + 1136px);
  margin-left: auto;
  padding-top: 130px;
  display: grid;
  grid-template-columns: 445px 1fr;
  gap: 90px;
  position: relative;
}
.intro__container__menu {
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  justify-content: center;
  list-style: none;
}
.intro__container__menu a {
  font-family: Barlow;
  color: #3f4e55;
  font-size: 18px;
  line-height: 130%;
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.intro__container__menu a:hover {
  color: #c10b25;
}
.intro__warrper {
  position: relative;
}
.intro__warrper h1 {
  color: #c10b25;
  font-size: 45px;
  font-family: Abril Fatface;
  line-height: 92%;
  margin-top: 34px;
  font-weight: 400;
}
.intro__warrper p {
  font-family: Barlow;
  color: #3f4e55;
  font-size: 18px;
  line-height: 130%;
  margin-top: 10px;
  margin-bottom: 20px;
}
.intro__warrper p strong {
  color: #c10b25;
}
.intro__warrper ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.intro__warrper ul p {
  font-size: 12px;
  color: #3f4e55;
  margin-bottom: 20px;
}
.ilustracao {
  width: 100%;
}
.btnmenu {
  display: none;
}
.btn {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  color: #fff !important;
  font-family: Abril Fatface;
  padding: 30px 40px;
  background: #2a2452;
  display: flex;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-size: 18px;
  position: absolute;
  right: -150px;
  top: 300px;
  align-items: center;
}
.btn:hover {
  background: #fff;
  color: #2a2452 !important;
}

body {
  background-image: url('https://publicacoes.estadao.com.br/marcasmais/wp-content/themes/marcasmais2023/imagens/lp2023/vetor1.'),
    url('https://publicacoes.estadao.com.br/marcasmais/wp-content/themes/marcasmais2023/imagens/lp2023/vetor2.svg'),
    url('https://publicacoes.estadao.com.br/marcasmais/wp-content/themes/marcasmais2023/imagens/lp2023/background.jpg');
  background-position: left top, left bottom, right bottom, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, cover;
}
.mobile {
  display: none;
}
img {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .intro__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ilustracao {
    display: none;
  }
  .mobile {
    display: block;
  }
  h1 {
    font-size: 30px !important;
  }
  p,
  h1 {
    padding: 0 40px;
  }
  .btn {
    right: initial;
    top: initial;
    position: relative;
    margin: 0 auto;
  }
  .intro__warrper ul {
    justify-content: center;
  }
  .intro__container {
    padding-top: 80px;
  }
  .btnmenu {
    display: block;
    background: url(./imagens/menu-preto.png) 0 0 no-repeat;
    cursor: pointer;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 100px;
    right: 20px;
    border: none;
    z-index: 200;
  }
  .btnmenuClose {
    background: url(./imagens/close.svg) center no-repeat !important;
  }
  .menu-intro {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 42px;
    opacity: 0;
    left: -120vw;
    transition: 0.5s ease-in-out;
    background: #ffecef;
    z-index: 100;
    transform: initial;
    flex-direction: column;
    padding-top: 100px;
    justify-content: flex-start;
  }
  .menu-intro a {
    font-size: 24px;
  }
  .menu-intro.active {
    opacity: 1;
    left: 0;
  }
}
