* {
  font-family: "Roboto", sans-serif !important;
  color: #48453b;
}

header nav a {
  font-family: "SinkinSans", "Verdana", sans-serif !important;
}

.title {
  max-width: 28.75rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 3rem auto 1.5rem;
  max-width: 1165px;
}

.illustration {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  right: -15%;

  .illustration__cards {
    position: absolute;
    margin-top: 5%;
  }
}

.separator {
  width: 6rem;
  display: flex;
  gap: 0.5rem;

  img {
    flex-shrink: 0;
  }

  &::after {
    content: "";
    display: inline-block;
    border-radius: 10px;
    height: 0.5rem;
    transition: ease-in 200ms;
    width: 100%;
    background-color: #6e3eff;
  }
}

@media (max-width: 1280px) {
  main {
    margin: 3rem 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  main {
    margin: 2rem 2rem 1.5rem;
  }

  .title {
    display: none;
  }

  .tabs {
    gap: 1.25rem;

    button {
      font-size: 1rem;
    }
  }

  .illustration {
    position: static;
    width: 100%;

    .illustration__cloud {
      display: none;
    }

    .illustration__cards {
      position: static;
      max-width: 15rem;
      margin: auto;
    }
  }

  .plans {
    flex-direction: column;

    .plan {
      width: 100%;
      padding: 1rem 1.5rem;

      .plan__recommended-badge {
        font-size: 1rem;
        padding: 0.5rem 0;
      }

      .plan__title {
        font-size: 1.25rem;
      }

      .plan__price-by-day {
        font-size: 2rem;

        small {
          font-size: 2rem;
        }
      }

      .plan__value-description {
        display: none;
      }

      .plan__price {
        font-size: 1rem;
      }

      .plan__main-resources-list {
        font-size: 1rem;
      }

      .plan__button {
        font-size: 1.125rem;
      }
    }

    .plan--highlighted {
      padding-top: 3rem;
    }
  }
}
.illustration {
  top: 10%;
  right: 0;
  width: 60%;

  .illustration__cloud {
    top: -25%;
    position: absolute;
    width: 100%;
  }

  .illustration__content {
    position: relative;
    width: 100%;
  }
}

.conclusion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 8.5rem;
}

.conclusion-message {
  max-width: 28.75rem;
  display: flex;
  flex-direction: column;

  * {
    font-family: "Verdana", sans-serif !important;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .conclusion-message__title {
    color: #6e3eff;
    font-weight: 700;
  }

  .conclusion-message__subtitle {
    font-weight: 700;
  }
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;

  .download-buttons__button {
    border-radius: 0.5rem;
    border: 2px solid #000;
    width: 20.6875rem;
    padding: 1.125rem 2rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    text-decoration: none;

    .download-buttons__button__icon {
      width: 2rem;
    }

    .download-buttons__button__content {
      display: flex;
      flex-direction: column;

      * {
        font-family: "Verdana", sans-serif !important;
        line-height: 1;
        color: #000;
      }

      small {
        text-transform: uppercase;
        font-size: 1rem;
      }

      h2 {
        margin: 0;
        font-size: 2rem;
      }
    }
  }
}

@media (max-width: 768px) {
  main {
    gap: 1.375rem;
  }

  .title {
    display: block;
  }

  .illustration {
    width: 100%;

    .illustration__cloud {
      display: block;
      top: 0;
      right: -20%;
    }

    .illustration__content {
      width: 130%;
    }
  }
}


.social {
  display: flex;

  a {
    padding: 10px;
  }

  #privacy {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: unset;
    width: unset;
    height: unset;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    margin-right: 130px;
  }

  #privacy:active,
  #privacy:focus,
  #privacy:visited,
  #privacy:hover {
    color: white !important;
  }
  @media screen and (max-width: 1186px) {
    #privacy {
      margin-right: 160px;
    }
  }

  @media screen and (max-width: 900px) {
    #privacy {
      width: 100%;
      margin-right: 0;
    }
  }
}