section.boas-vindas {
  display: grid;
  grid-template-columns: .85fr 1.15fr;

  height: 498px;
  width: 100%;

  margin: 28px 0 80px;
}

section.boas-vindas div.hello div {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  justify-content: center;

  height: 100%;
}

section.boas-vindas a.default-button {
  margin-top: 28px;
}

section.boas-vindas div.hello h1 {
  font-size: 54px;
  line-height: 70px;
  color: var(--white);
}

section.boas-vindas div.hello h1 em {
  position: relative;

  color: var(--highlight);
  font-style: normal;
}

section.boas-vindas div.hello h1 em::after {
  content: '';
  width: 100%;
  height: 24px;

  background-image: url('../assets/long_marker.svg');
  background-size: 100%;
  background-repeat: no-repeat;

  position: absolute;
  top: 72px;
  left: 0;
}

section.boas-vindas div.hello p {
  font-weight: 300;
  font-size: 24px;
  line-height: 34px;
  margin-top: 8px;
}

section.boas-vindas div.dr-landi {
  display: flex;
  flex-direction: column-reverse;
  padding: 20% 15%;

  width: 100%;
  height: 100%;

  background-image: url(../assets/header.png);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

div.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;

  width: fit-content;
  height: fit-content;

  padding: 16px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.85);
}

div.card img {
  width: 50px;
  height: 50px;
}

div.card a {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;

  padding: 10px;
  border-radius: 10px;
  color: var(--white);

  background: var(--radial);
}

div.card div h4 {
  font-size: 14px;
  color: var(--neutral-black)
}

div.card div span {
  font-weight: 700;
  font-size: 12px;
  color: var(--grey);

  margin-top: 4px;
}

div.responsive-compra-container {
  display: none;
}

@media (max-width: 768px) {
  section.boas-vindas {
    grid-template-columns: 1fr;
    
    height: fit-content;

    margin: 0 0 40px;
  }

  section.boas-vindas div.hello {
    padding: 0 28px;
  }
  
  section.boas-vindas div.hello h1 {
    font-size: 30px;
    line-height: 42px;
  }

  section.boas-vindas div.hello h1 em::after {
    top: 42px;
    height: 18px;
    background-image: url('../assets/long_marker_mobile.svg');
    background-repeat: no-repeat;
  }

  section.boas-vindas div.hello p {
    font-size: 18px;
    font-weight: 400;
  }

  section.boas-vindas div.hello a.quero-comprar {
    display: none;
  }

  section.boas-vindas div.hello div {
    justify-content: flex-start;
  }

  section.boas-vindas div.dr-landi {
    height: 785px;
    padding: 0 20px 36px;

    background-image: url('../assets/header_responsive.png');
    background-repeat: no-repeat;
  }

  div.responsive-compra-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  div.responsive-compra-container a.quero-comprar {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  section.boas-vindas div.dr-landi {
    height: 426px;
  }
}