#hero {
  display: grid;
  grid-template-rows: 128px;
  place-items: center;
  flex-direction: column;
  gap: 1rem;
}

.logo-wrapper {
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}

#logos {
  width: 100%;
  display: flex;
  transition: all 250ms var(--bounce);
}

#logos:hover {
  transform: scale(1.05);
}

#logos:active {
  transform: scale(0.9);
}

#logo-pixel {
  width: 100%;
  image-rendering: pixelated;
}

#logo-svg {
  width: 100%;
}

#celular {
  margin-top: 32px;
  width: 256px;
  filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 25%));
}

.filter-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.destaque-wrapper {
  position: absolute;
  align-self: flex-end;
  transform: rotate(8deg) translateY(-2rem);
}

.destaque {
  display: block;
  font-weight: bold;
  padding: 0.5rem 0.75rem 0.5rem 0.75rem;
  background-color: var(--main);
}

article {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.article-header {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.article-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;

  max-width: 900px;
}

.article-content p {
  text-indent: 2rem;
}

.article-img-container {
  width: 100%;
  max-width: 75%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-img-container p {
  text-indent: unset;
}

.article-img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 800px) {
  .article-header {
    gap: 1rem;
  }
}

@media (max-width: 500px) {
  .article-img-container {
    max-width: 90%;
  }
}
