:root {
  --redColor: red;
}

body,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #F5F5F5; /*var(--iceColor);*/
  font-family: var(--defaultFont) !important;
  display: none;
}

/* Nav seciton */
nav {
  width: 100%;
  background-color: #F5F5F5; /*var(--iceColor);*/
  color: var(--cardsBarColor);
  border-bottom: 1px solid;
  position: fixed;
  top: 0;
  z-index: 2;
}
.container {
  max-width: 1000px;
  width: 90%;
  margin: auto;
}
/* And of Nav seciton */

.pixContainer {
  max-width: 550px;
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 80px;
}
.containerTitle {
  font-size: 45px;
  margin-bottom: 15px;
  text-align: center;
}
.titleInfo {
  max-width: 520px;
  width: 100%;
  margin-bottom: 35px;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
}
.studantEmail {
  color: var(--primary);
  text-decoration: underline;
}
.containerSubTitle {
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
}
.pixInfo {
  text-align: center;
  font-size: 13px;
  margin-bottom: 15px;
}
.infoBuy {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}
.generalInfoPix {
  max-width: 350px;
    width: 90%;
    margin: 0 auto 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    background-color: var(--whiteColor);
    padding: 10px;
    border-radius: 10px;
}
.productPriceBox {
  width: 100%;
  align-items: center;
  margin-bottom: 20px;
}
.infoImgPixCode {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.productPriceBox p {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.infoBuy {
  font-size: 15px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}
.headerInfoImgTicketCode {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headerInfoImgTicketCode p {
    font-size: 12px;
}
.validateDate {
    font-weight: bold;
}
#qrCodePix{
  width: 250px;
  height: 250px;
}
#btnEnviarWhats{
  text-decoration: none;
}
.pageBtnPage {
  max-width: 350px;
  width: 90%;
  margin: 0 auto 5px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.imgBtn {
  width: 47%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--whiteColor);
  border-radius: 16px;
  padding: 6px 8px;
  white-space: nowrap;
  column-gap: 10px;
  cursor: pointer;
  transition: all 500ms;
}
.imgBtn i {
  font-size: 20px;
}
.imgBtn p {
  font-size: 13px;
  font-weight: bold;
  color: var(--blackColor);
  line-height: 11px;
}
.imgBtn:hover {
  transform: scale(1.02);
}
.imgBtn:active {
  box-shadow: 0px 0px 6px 2px #0c162f78;
}
.pageBtnPage2 {
  max-width: 350px;
  width: 90%;
  margin: 0 auto 20px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.imgBtn2 {
  margin: auto;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--whiteColor);
  border-radius: 16px;
  padding: 6px 8px;
  white-space: nowrap;
  column-gap: 10px;
  cursor: pointer;
  transition: all 500ms;
}
.imgBtn2 i {
  font-size: 20px;
}
.imgBtn2 button {
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: var(--blackColor);
  line-height: 11px;
  background-color: transparent;
  border: none;
}
.imgBtn2:hover {
  transform: scale(1.02);
}
.imgBtn2:active {
  box-shadow: 0px 0px 6px 2px #0c162f78;
}
.sslCetificationImg {
  max-width: 190px;
  width: 95%;
  margin: auto;
}

@media (max-width: 576px) {
  .containerTitle {
    font-size: 30px;
  }
  .containerSubTitle {
    font-size: 23px;
  }
}

@media (max-width: 370px) {
  .pageBtnPage, .pageBtnPage2 {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
}
