@import url("https://fonts.googleapis.com/css?family=Lato:100,200,300,400,500,600,700,800,900");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
}

.wrapper,
.actions {
  display: flex;
  flex-direction: column;
}

.wrapper {
  width: 100%;

  justify-content: center;
  margin: auto;

  background-image: url(../../../img/bg-vitrine-5.png);
  background-size: cover;

  aspect-ratio: 1108 / 591;
}

.start {
  width: 70%;

  margin: 0 0 0 80px;
  padding: 24px 120px 24px 56px;

  -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);

  background-color: #ffdcdc;
  border: 1px solid white;
  box-shadow: 0 0 10px white;
}

.start h1 {
  color: #8d000e;

  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
}

.start p {
  color: #8d000e;

  font-weight: 400;
  font-size: 16px;

  width: 90%;
}


.actions {
  width: 70%;

  margin: 24px 0 0 132px;
}

.actions button {
  -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);

  background-color: #8d000e;

  border: 0;

  color: white;
  cursor: pointer;

  padding: 18px 26px;
  width: 40%;

  font-size: 24px;
  font-weight: 700;
  text-align: left;
}

.questions {
  width: 90%;
  margin-bottom: 1rem;
  margin: 0 auto;
}

.end {
  width: 75%;
  margin-bottom: 1rem;
  margin: 0 auto;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;

  overflow: visible;
  position: relative;
}

.questions h1 {
  width: 80%;

  margin: 0px 0 32px 32px;

  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);

  background-color: #8d000e;
  border: 1px solid white;

  padding: 12px 72px 12px 40px;

  font-size: 20px;
  font-weight: 400;
  font-style: italic;

  color: white;
}

.answers {
  width: 85%;
  margin: auto;

  display: flex;
  flex-direction: column;
}

.answer {
  cursor: pointer;

  padding: 12px 50px 12px 24px;

  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);

  background-color: #8d000e;

  margin-bottom: 24px;

  width: 60%;

  color: white;
}

.answer:nth-child(2) {
  align-self: center;
}

.answer:last-child {
  align-self: flex-end;
}

.select {
  background-color: #ffa4a4;

  color: #8d000e;
}

.answer-2 {
  cursor: pointer;

  padding: 20px 50px 20px 24px;

  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);

  background: rgb(141, 0, 14);
  background: linear-gradient(90deg, rgba(141, 0, 14, 1) 30%, rgba(141, 0, 14, 0.8) 100%);

  width: 52%;

  color: white;
}

.answer-2:nth-child(2) {
  align-self: flex-end;
  text-align: right;

  background: rgb(141, 0, 14);
  background: linear-gradient(90deg, rgba(141, 0, 14, 0.8) 30%, rgba(141, 0, 14, 1) 100%);

  margin-top: -72px;
  margin-bottom: 56px;
}

.answer-2:last-child {
  align-self: flex-end;
  text-align: right;

  background: rgb(141, 0, 14);
  background: linear-gradient(90deg, rgba(141, 0, 14, 0.8) 30%, rgba(141, 0, 14, 1) 100%);

  margin-top: -72px;
  margin-bottom: 56px;
}

.checkbox {
  border: 1.5px solid rgb(43, 62, 238);
  border-radius: 100%;
  height: 20px;
  margin-right: 05px;
  padding: 02px;
  width: 20px;
  display: none;
}

.checked {
  background-color: rgb(43, 62, 238);
  border-radius: 100%;
  height: 100%;
  width: 100%;
  transition: width 1s;
}

.box-perfil {
  width: 35%;

  position: absolute;
  left: 5%;
  bottom: 10%;
  z-index: 2;

  background: white;
  padding: 8px 16px;

  -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);

  color: #d51a48;
}

.box-description {
  width: 100%;

  display: flex;
  align-items: flex-start;
  justify-content: flex-end;

  font-size: 16px;
  color: white;

  padding: 12px;

  background-color: #8d0929;

  -webkit-clip-path: polygon(45% 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 0% 100%);

  height: 370px;
  overflow-y: scroll;
}

.box-description p {
  width: 50%;

}

@media (max-width: 991px) {
  .start {
    margin: 0 0 0 40px;
    padding: 12px 50px 12px 32px;

    width: 75%;
  }

  .start h1 {
    font-size: 20px;
  }

  .start p {
    font-size: 10px;
  }

  .actions {
    margin: 24px 0 0 72px;
  }

  .actions button {
    padding: 12px 18px;

    font-size: 18px;
  }

  .questions h1 {
    width: 85%;

    margin: 0px 0 18px 16px;
    padding: 12px 32px 12px 24px;

    font-size: 12px;
  }

  .answer {
    padding: 8px 24px;
    margin-bottom: 12px;

    width: 70%;

    font-size: 8px;
  }

  .box-description {
    height: 210px;
    font-size: 12px;
  }

  .box-perfil h1 {
    font-size: 20px;
    margin: 0;
    line-height: 1;
  }

  .box-perfil p {
    font-size: 12px;
  }

  .answer-2 {
    padding: 10px 32px 10px 24px;
  }

  .answer-2 .text {
    font-size: 10px;
  }

  .answer-2:nth-child(2) {
    margin-top: 0;
    margin-bottom: 0px;
  }

  .answer-2:last-child {
    margin-top: 0;
    margin-bottom: 0px;
  }
}