*{
  font-family: "Playwrite VN", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

body{
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #000;
}

div#introduction {
  max-width: 600px;
  height: 100dvh;
  position: relative;
}

video.introduction {
  width: 100%;
  height: 100%;
}

div#introduction .box.boxActionMuted {
  max-width: 600px;
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

div#introduction .boxActionMuted button.btnMutedVideo {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

div#introduction .boxActionMuted .btnMutedVideo .icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
}

div#introduction .boxActionMuted .btnMutedVideo span{
  margin: 0.3rem 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}

div#introduction .box.boxActionNext, div#screen1 .box.boxActionNext, div#screen2 .box.boxActionNext, div#screen3 .box.boxActionNext, div#screen4 .box.boxActionNext {
  max-width: 600px;
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

div#introduction .box.boxActionNext button.btnNextIntroduction, div#screen1 .box.boxActionNext button.btnNext, div#screen2 .box.boxActionNext button.btnNext, div#screen3 .box.boxActionNext button.btnNext, div#screen4 .box.boxActionNext button.btnNext {
  background: #172966;
  width: 80%;
  height: 2.8rem;
  border: none;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
}

/* TELA 1 */

div#screen1, div#screen2, div#screen3, div#screen4, div#screen5, div#screen6 {
  max-width: 600px;
  height: 100dvh;
  position: relative;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

div#screen6{
  background: #fff;
}

#screen6 div.icon i {
  font-size: 4rem;
  color: #172966;
}

#screen6 .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
}

#screen6 h2.title {
  text-align: center;
}

#screen6 h3.subtitle {
  text-align: center;
}

div#screen1.active, div#screen2.active, div#screen3.active, div#screen4.active, div#screen5.active, div#screen6.active{
  display: flex;
}

div#screen1 img#imgScreen1, div#screen2 img#imgScreen2, div#screen3 img#imgScreen3, div#screen4 img#imgScreen4 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TELA 5 */

div#screen5 img.background {
  width: 100%;
  height: 100%;
}

div#screen5 .box {
  max-width: 600px;
  background: rgb(0 0 0 / 80%);
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
}

div#screen5 h2.title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}

div#screen5 input {
  width: 80%;
  height: 2rem;
  margin: 0.3rem 0;
  border-radius: 0.3rem;
  border: 1px solid #172966;
}

div#screen5 button.btnSendConfirm {
  margin: 0.4rem 0;
  background: #172966;
  width: 82%;
  height: 2.2rem;
  border: none;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
}