* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "ExtraBold";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("fonts/Made-Tommy-ExtraBold.eot");
  src: url("fonts/Made-Tommy-ExtraBold.otf") format("otf"),
    url("fonts/Made-Tommy-ExtraBold.ttf") format("truetype"),
    url("fonts/Made-Tommy-ExtraBold.woff") format("woff"),
    url("fonts/Made-Tommy-ExtraBold.woff2") format("woff2");
}

@font-face {
  font-family: "Light";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("fonts/Made-Tommy-Light.eot");
  src: url("fonts/Made-Tommy-Light.otf") format("otf"),
    url("fonts/Made-Tommy-Light.ttf") format("truetype"),
    url("fonts/Made-Tommy-Light.woff") format("woff"),
    url("fonts/Made-Tommy-Light.woff2") format("woff2");
}

html {
  min-height: 100%;
  max-width: 100vw;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 120%
    ),
    url(images/bg-mobile.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 0;
  background-color: #000;
}

.img-avatar {
  width: 100%;
  max-width: 150px; /* Limita o tamanho do avatar em telas menores */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 45px;
  gap: 15px;
}

.content-img-avatar {
  position: relative;
  /* overflow: hidden; */ /* NEW */
  /* border-radius: 50%; */ /* NEW */
  border-radius: 50%;
  border: 5px solid #8100ff;
  box-shadow: 0 0 15px 2px #8100ff;
  transition: box-shadow 0.3s ease;
}

/* .image-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid rgb(12 12 251);
  box-shadow: 0 0 4px 1px rgb(12 12 251);
} */

.image-avatar {
  width: 165px;
  height: 165px;
  /* border-radius: 50%; */
  /* border: 5px solid #ff9600; */
  /* box-shadow: 0 0 20px 5px #ff9600; */
  /* transition: box-shadow 0.3s ease; */
}

.reflection {
  width: 165px;
  height: 165px;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}
.reflection::after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 6s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 6s ease-in-out infinite;
}
@keyframes reflect {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  10% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  20% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0; /* O efeito desaparece e a animação pausa até completar 12 segundos */
  }
}
@-webkit-keyframes reflect {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  10% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  20% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0; /* O efeito desaparece e a animação pausa até completar 12 segundos */
  }
}

.image-verificado {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 75%;
  right: 10px;
}

.img-avatar span a {
  display: inline-block;
  font-family: "ExtraBold";
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  margin-top: 30px;
  margin-bottom: 30px;
  /* text-shadow: 0px 0px 10px #00c2cb, 0px 0px 20px #fff; */
  cursor: pointer;
}

.content-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  width: 80%;
  margin-bottom: 25px;
}

.bloco-link {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.bloco-link img {
  width: 100%;
  height: auto;
  max-width: 420px;
  margin: 0 auto;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
  }

  70% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.95);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.block-redes-sociais{
  text-align: center;
}
.tit-redes-sociais{
  font-family: "Light";
  color: #fff;
  font-size: 1.2em;
}
.content-redes {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
  border: 2px solid #ff9600;
  border-radius: 10px;
  padding: 13px 15px 8px;
  box-shadow: 0 0 15px 2px #ff9600;
}
.bloco-redeSocial{
  display: flex;
  justify-content: center;
  align-items: center;
}
.bloco-redeSocial img {
  width: 35px;
  height: auto;
}

@media (min-width: 992px) {
  body {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0) 120%
      ),
      url(images/bg-dekstop.webp);
    background-position: top center;
  }
}
.jogo-responsabilidade{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: row;
  gap: 25px;
  margin-top: 15px;
}
.idade img{
  width: 200px;
  height: auto;
}
.sinap img{
  width: 150px;
  height: auto;
}
.footer-bar {
  background-color: #8b00ff;
  color: #FFFFFF;
  height: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1px;
}
.top-bar {
  background-color: #8B00FF;
  height: 18px;
  width: 100%;
}

.radius {
  border-radius: 50%;
}