/* FONTES GOOGLE */
@import url("https://fonts.googleapis.com/css2?family=Play&display=swap");
@import url(style-body.css);
@import url(name-devs.css);
@import url(style-menu.css);
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Play", sans-serif;
}

/* Style dos buttons menu*/
.button-menu {
  justify-content: center;
}

/*********************************** CLASS SELECTORS   */

.imagem-header {
  width: 100%;
  height: 100%;
}
.filtros {
  display: flex;
}

/* BOTÃO LIMPAR CAMPO BUSCA */

.button {
  color: #72ef4b;
  padding: 0.8em 1.7em;
  background-color: transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  font-size: 17px;
  border: 1px solid;
  font-family: "Play", sans-serif;
  backdrop-filter: blur(5px);
  position: relative;
}

.button:hover {
  color: rgb(65, 190, 232);
}

/* IMAGEM DO CABEÇALHO */
.logo {
  display: flex;
  margin: auto;
  width: 50%;
  justify-content: center;
}

/* ESTILO DA NAV QUE CONTÉM OS SELETORES */
.nav-filtros {
  border-radius: 20px;
  display: flex;
  justify-content: center;
  height: 20vh;
  margin-left: 10%;
  margin-right: 10%;
}
/* ESTILO DOS SELETORES */
.filtros {
  border-radius: 10px;
  color: #06bee1;
  font-size: 1.5rem;
  height: 3rem;
  margin: auto;
  background-color: transparent;
  padding-left: 1%;
  padding-right: 1%;
  border: 2px solid purple;
  font-family: "Play", sans-serif;
  backdrop-filter: blur(5px);
}

/* FORM QUE CONTÉM O PESQUISAR E LIMPAR */
.buscar-e-limpar {
  display: flex;
  justify-content: center;
}

/* CAMPO PESQUISAR */
.pesquisar {
  font-size: 16px;
  background: transparent;
  color: white;
  border-radius: 10px;
  border: 2px solid purple;
  margin-right: 50px;
  width: 100%;
  text-align: left;
  padding-left: 1%;
  backdrop-filter: blur(5px);
}
/* TEXTO QUE ESTÁ DENTRO DO CAMPO PESQUISAR */
:placeholder {
  font-size: 20px;
  letter-spacing: 1px;
  color: white;
  font-family: "Play", sans-serif;
}

/* PARÁGRAFO QUE MOSTRA O RESULTADO DA PORCENTAGEM */
.calculo {
  justify-content: center;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  color: #00ff88;
  width: 80%;
  text-align: center;
  font-size: 3vh;
}

/* DIV GERAL QUE CONTÉM OS CARDS PRINTADOS NA TELA POR MEIO DO MAIN.JS */
.cards-container {
  display: flex;
  width: 100%;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 100px;
  justify-items: flex-end;
  grid-gap: 2rem;
}

.card-info {
  width: 280px;
  height: 360px;
  padding: 2rem 1rem;
  position: relative;
  display: flex;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  transition: 0.5s ease-in-out;
  border-radius: 10px;
}

.card-info:hover {
  transform: translateY(20px);
}

.card-info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2; /*se tirar perde o bkg preto */
  transition: 0.5s all;
  opacity: 0;
  border-radius: 10px;
}

.card-info:hover:before {
  opacity: 1;
}

.card-info img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
}
.p-lista {
  font-family: "Play", sans-serif;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.858);
}
.card-info .info-lista {
  position: relative;
  z-index: 3;
  color: rgb(238, 238, 238);
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s all 0s;
}

.card-info:hover .info-lista {
  opacity: 1;
  transform: translateY(0px);
}

/* DIV COM NOMES DAS DEVELOPERS */
.bannr {
  justify-content: center;
  display: flex;
  text-align: center;
}
.devs {
  padding-top: 4vw;
  padding-bottom: 5%;
  color: rgba(245, 245, 245, 0.564);
  font-family: "Play", sans-serif;
  letter-spacing: 1px;
  font-size: 12px;
}
.fixed-button {
  position: fixed;
  width: 19vw;
  height: 21vw;
  bottom: 0px;
  right: 0px;
  opacity: 0.8;
}
