body {
  background-image: linear-gradient(to bottom right, #4182b2, #7b4092, #f36f64);
  margin: 0;
  color: white;
  font-family: "Parkinsans", sans-serif;
}

main {
  max-width: 800px;
  padding: 80px 20px;
  margin: auto;

  & > p {
    max-width: 700px;
    margin: 20px auto;
  }

  @media (max-width: 600px) {
    padding-top: 40px;
  }
}

.logo {
  margin: auto;
  display: block;
  margin-bottom: 60px;
  max-width: 500px;
  width: 100%;
  height: auto;
}

h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
  margin-top: 60px;

  @media (max-width: 600px) {
    font-size: 2em;
  }
}

ul {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;

  li {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;

    &:hover {
      transform: scale(1.05);
    }

    p {
      margin: 0;
      font-size: 1.2em;
      text-align: center;
    }
  }
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  gap: 26px;

  a,
  div {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;

    @media (max-width: 600px) {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    svg {
      margin-top: -6px;

      @media (max-width: 600px) {
        margin-top: 0;
      }
    }

    span {
      br {
        @media (max-width: 600px) {
          display: none;
        }
      }
    }
  }

  a {
    &:hover {
      text-decoration: underline;
    }

    &:active {
      opacity: 0.7;
    }
  }
}

.whatsapp {
  position: fixed;
  right: 32px;
  bottom: 40px;
  transition: transform 75ms ease;

  &:hover {
    transform: scale(1.1);
  }

  &:active {
    transform: scale(1);
    opacity: 0.7;
  }
}
