/** Definição de configuração padrão **/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
  margin: 0;
  padding: 0;
  font-family: 'Lexend', sans-serif;
}
body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: #E8E8E8;
}

body::-webkit-scrollbar-thumb {
  background-color: #B5B5B5;
  border-radius: 10px;
}
a{
  text-decoration: none;
  color: black;
}

.container{
  position: relative;
  width: 1110px;
  margin: auto auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
}

/******** Sessão principal ********/
.background-primario{
  height: 125vh;
  background-image: url(image/background.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.content-links{
  height: 100vh;
}

.content-links img{
  width: 12%;
  padding-top: 50px;
  display: block;
  margin: auto auto;
}
.content-links h3{
  font-size: 25px;
  font-weight: 500;
  color: white;
}

.box-links{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.back-link{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  width: 30%;
  padding: 15px;
  background: white;
  border-radius: 5px;
  box-shadow: 2px 2px 25px 1px #0000003b;
  transition: 0.2s ease-out;
}
.back-link i{
  font-size: 26px;
}
.back-link:hover{
  cursor: pointer;
  background: #FF4D4D;
  color: white;
  font-weight: 500;

}
.back-link:hover i{
  animation: go-back 0.7s infinite alternate;
}
@keyframes go-back {
  from { opacity: 0.1; }
  to   { opacity: 1; }
}
