* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  background: #ffffff;
}

.lancamento {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 16px;
}

.banner__lancamento {
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
}

.header {
  width: calc(100% - 32px);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #332a28;
}

.header__container {
  width: 100%;
  max-width: 1320px;
  display: flex;
  flex-direction: column;
}

.header__left {
  display: flex;
  flex-direction: column;
}

.header__right {
  display: flex;
  flex-direction: column;
  padding: 16px 0 0 0;
}

.header__greeting {
  color: #ffffff;
  font-size: 32px;
}

.header__author-name {
  color: #d9a874;
  font-size: 48px;
  margin-bottom: 16px;
}

.header__author-image {
  border-radius: 16px;
  width: 100%;
  max-width: 450px;
}

.header__description {
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 24px;
}

.header__description:last-child {
  margin-bottom: 0;
}

.header__button {
  border: none;
  border-radius: 16px;
  padding: 16px 24px;
  font-size: 1.3rem;
  background: #d9a874;
  color: #ffffff;
  width: max-content;
  max-width: 100%;
  cursor: pointer;
  margin: 16px 0;
}

.sobre {
  width: calc(100% - 32px);
  padding: 64px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #d9a874;
}

.sobre__container {
  width: 100%;
  max-width: 1320px;
  display: flex;
  flex-direction: column;
}

.section__title {
  color: #332a28;
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.section__description {
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: #332a28;
  line-height: 24px;
}

.frase {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 16px;
}

.introducao__sinopse {
  text-align: center;
  line-height: 2.5rem;
  font-size: 2rem;
}

.introducao__sinopse span {
  color: #d9a874;
}

.livro {
  width: calc(100% - 32px);
  padding: 64px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fbddbf;
}

.livro__container {
  width: 100%;
  max-width: 1320px;
  display: flex;
  flex-direction: column;
}

.livro__left {
  display: flex;
  flex-direction: column;
}

.livro__right {
  display: flex;
  flex-direction: column;
  padding: 16px 0 0 0;
}

.livro__titulo {
  width: 100%;
  max-width: 450px;
  margin-bottom: 48px;
}

.livro__sinopse {
  margin-bottom: 16px;
  font-size: 1.2rem;
  line-height: 24px;
  color: #332a28;
}

.livro__capa {
  width: 100%;
  max-width: 600px;
}

.livro__button {
  border: none;
  border-radius: 16px;
  padding: 16px 24px;
  font-size: 1.3rem;
  background: #d9a874;
  color: #ffffff;
  width: max-content;
  max-width: 100%;
  cursor: pointer;
  margin: 16px 0;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #332a28;
  color: #ffffff;
  width: calc(100% - 32px);
  padding: 16px;
  font-size: 1rem;
}

.contato {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px 16px;
}

.social__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 16px 0;
}

.social__item img {
  width: 100%;
  max-width: 32px;
  margin: 0 8px 0 0;
}

.social__item a {
  text-decoration: none;
  color: #332a28;
}

.social__item a:hover {
  text-decoration: underline;
}

@media (min-width: 800px) {
  .header {
    padding: 64px 16px;
  }

  .header__container,
  .livro__container {
    flex-direction: row;
  }

  .header__left,
  .livro__left {
    flex: 1;
    justify-content: center;
    padding-right: 64px;
  }

  .header__right,
  .livro__right {
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .header__description,
  .section__description,
  .livro__sinopse {
    font-size: 1rem;
  }

  .section__title {
    font-size: 3rem;
  }

  .introducao__sinopse {
    max-width: 800px;
    line-height: 4.5rem;
    font-size: 3rem;
  }
}
