.page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;

  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.page .title-page {
  position: absolute;
  top: 0;
  padding: 24px 0;

  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  text-align: center;

  color: #853141;
}

.page .background {
  margin-top: 35px;
  margin-left: 25px;

  opacity: 0.4;
  transform: scale(1.1);

  animation: shimmer-background 6s ease-in-out infinite;
}

/**
 * Mandala
 */
.mandala {
  position: absolute;
  z-index: 100;

  display: flex;
  align-items: center;
  width: 630px;
  height: 675px;

  margin-top: 20px;
}

.mandala .descricao {
  position: absolute;
  width: 250px;

  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  color: #853141;

  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/**
 * Pétalas
 */
.mandala .petala {
  position: absolute;

  cursor: pointer;
  transition: transform 0.5s ease-in-out, filter 0.5s linear, opacity 0.5s linear;
}

.mandala .petala.blob {
}

.mandala .petala.selected {
  transform: scale(1.05);
  filter: drop-shadow(-10px 10px 5px rgba(0, 0, 0, 0.2));
}

.mandala .petala .petala-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-size: 11px;
  color: #fff;
}

.mandala .petala .title-petala {
  margin-top: 8px;
  font-size: 16px;
}

/**
 * Pétala 1
 */
.mandala .petala:nth-of-type(1) {
  top: 8px;
  left: 70px;
}

.mandala .petala:nth-of-type(1).blob {
  /*animation-delay: 1s;*/
}

.mandala .petala:nth-of-type(1) .petala-content {
  top: 37px;
  left: 145px;
}

/**
 * Pétala 2
 */
.mandala .petala:nth-of-type(2) {
  top: 11px;
  left: 310px;

}

.mandala .petala:nth-of-type(2).blob {
  /*animation-delay: 2s;*/
}

.mandala .petala:nth-of-type(2) .petala-content {
  top: 95px;
  left: 138px;
}

/**
 * Pétala 3
 */
.mandala .petala:nth-of-type(3) {
  top: 135px;
  left: 374px;
}

.mandala .petala:nth-of-type(3).blob {
  /*animation-delay: 3s;*/
}

.mandala .petala:nth-of-type(3) .petala-content {
  top: 170px;
  left: 160px;
}

/**
 * Pétala 4
 */
.mandala .petala:nth-of-type(4) {
  top: 385px;
  left: 264px;

}

.mandala .petala:nth-of-type(4).blob {
  /*animation-delay: 4s;*/
}

.mandala .petala:nth-of-type(4) .petala-content {
  top: 125px;
  left: 170px;
}

/**
 * Pétala 5
 */
.mandala .petala:nth-of-type(5) {
  top: 393px;
  left: 149px;
}

.mandala .petala:nth-of-type(5).blob {
  /*animation-delay: 5s;*/
}

.mandala .petala:nth-of-type(5) .petala-content {
  top: 180px;
  left: 90px;
}

/**
 * Pétala 6
 */
.mandala .petala:nth-of-type(6) {
  top: 248px;
  left: 17px;
}

.mandala .petala:nth-of-type(6).blob {
  /*animation-delay: 6s;*/
}

.mandala .petala:nth-of-type(6) .petala-content {
  top: 155px;
  left: 40px;
}

/**
 * Pétala 7
 */
.mandala .petala:nth-of-type(7) {
  top: 127px;
  left: 0;

}

.mandala .petala:nth-of-type(7).blob {
  /*animation-delay: 7s;*/
}

.mandala .petala:nth-of-type(7) .petala-content {
  top: 45px;
  left: 65px;
}

/**
 * Saiba mais
 */
.saiba-mais-box {
  position: fixed;
  bottom: 50px;
  right: 12px;
  z-index: 500;

  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 12px;

  border-radius: 4px;

  font-size: 13px;
  font-family: sans-serif;
  line-height: 20px;
  font-weight: 300;

  opacity: 0;
  color: rgba(255, 255, 255, 1);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0 rgba(0, 0, 0, 1);

  transition: opacity 0.5s ease-in-out;
}

.saiba-mais-box .close-button {
  width: 24px;
  height: 24px;
  margin-left: 12px;

  cursor: pointer;
}

.saiba-mais-box .close-button svg path {
  fill: rgba(255, 255, 255, 1);
}

@media screen and (max-height: 850px) {
  .page .title-page {
    padding: 34px 0;

    font-size: 16px;
  }

  .page .mandala {
    transform: scale(0.8);
  }

  .page .background {
    transform: scale(0.8);
  }
}

@media screen and (max-height: 700px) {
  .page .title-page {
    font-size: 16px;
  }

  .page .mandala {
    transform: scale(0.7);
  }

  .page .background {
    transform: scale(0.7);
  }
}

@media screen and (max-height: 640px) {
  .page .title-page {
    font-size: 16px;
  }

  .page .mandala {
    transform: scale(0.6);
  }

  .page .background {
    transform: scale(0.6);
  }
}

@media screen and (max-height: 580px) {
  .page .title-page {
    font-size: 16px;
  }

  .page .mandala {
    transform: scale(0.4);
  }

  .page .background {
    margin-left: 10px;
    transform: scale(0.4);
  }
}

@media screen and (max-width: 670px) {
  .page {
    overflow: hidden;
  }

  .page .title-page {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
  }

  .page .mandala {
    transform: scale(0.8);
  }
}

@media screen and (max-width: 500px) {
  .page .mandala {
    transform: scale(0.7);
  }

  .page .background {
    margin-top: 25px;
    margin-left: 10px;
    transform: scale(0.7);
  }

  .mandala .title-petala {
    font-size: 20px;
  }
}

@media screen and (max-width: 450px) {
  .page .mandala {
    transform: scale(0.6);
  }

  .page .background {
    transform: scale(0.6);
  }
}

@media screen and (max-width: 375px) {
  .page .title-page {
    font-size: 16px;
  }

  .page .mandala {
    transform: scale(0.45);
  }

  .page .background {
    transform: scale(0.45);
  }
}
