html, body {
  background-color: #000000;
  font-family: "Lato", sans-serif;
}


.site {
  width: 100%;
  max-width: 1024px;
  padding: 48px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

img {
  width: 100%;
  height: auto;
}

.col {
  display: flex;
  position: relative;
}

.grid {
  display: grid;
  grid-template-columns: 38% 29% 33%;
  gap: 20px;
}

.title {
  grid-column: 2 / span 2;
  align-items: flex-end;
}

.id {
  justify-content: flex-end;
}

.id img {
  width: 77%;
}

.up {
  align-items: flex-start;
  justify-content: flex-start;
}

.up img {
  width: 70%;
}

.cta {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 20px 40px;
  position: absolute;
  width: 100%;
}

h2 {
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
}

a {
  color: #000;
  margin-top: 8px;
  text-transform: uppercase;
  text-decoration: none;
}

a:not(:last-child) {
  margin-bottom: 14px;
}


@media (max-width: 767px) {
  .site {
    padding: 16px;
    max-width: 100%;
  }


  .logo,
  .title {
    align-items: flex-end;
  }

  .title,
  .text {
    width: 90%;
  }

  .up {
    display: none;
  }

  .grid {
    grid-template-columns: 50% 50%;
    gap: 16px;
  }

  .id {
    align-items: flex-start;
  }

  .cta {
    padding: 20px 12px;
  }

  h2 {
    font-size: 18px;
    margin-bottom: 24px;
  }

  a {
    font-size: 14px;
  }
}


/* Para telas menores (mobile) */
@media (max-width: 767px) {
  .desktop {
    display: none;
  }
}

/* Para telas maiores (desktop) */
@media (min-width: 768px) {
  .mobile {
    display: none;
  }
}