@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300&family=Poppins:wght@100&display=swap");

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

body {
  font-family: "Oswald", sans-serif;

  background-color: #fff;
}
html {
  scroll-behavior: smooth;
}
header {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 1;
}
li {
  list-style: none;
}

.navbar {
  min-height: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}
.logo {
  margin-left: 1rem;
}
.imagem {
  width: 20rem;
  margin-top: 2%;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.nav-link:hover {
  background-color: #15bef1;
  color: white;
  border-radius: 5px;
  transition: 0.3s;
}
.nav-menu a {
  text-decoration: none;
  color: #00a2d4;
  padding: 1rem;
  transform: 2ms ease-in;
  position: relative;
  font-family: "Poppins" sans-serif;
}
.nav-menu:hover {
  color: rgb(255, 255, 255);
  border: none;
}
ul li ul.dropTown li {
  display: block;
  margin-top: 20px;
}
ul li ul.dropTown li:hover {
  width: 100%;
  height: 30px;
}
ul li ul.dropTown li a {
  color: #ffffff;
}
ul li ul.dropTown {
  border-top: 1px solid black;
  margin-top: 10px;
  width: 10%;
  position: absolute;
  z-index: 999;
  display: none;
  transition: 1.5s;
  background-color: #15bef1;
}
ul li:hover ul.dropTown {
  display: block;
}

.mobileMenu {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  margin: 5px auto;
  background-color: #255794;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .mobileMenu {
    display: block;
    position: absolute;
  }
  .mobileMenu.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobileMenu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobileMenu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  #dropTown {
    display: none;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    border-radius: 0 0 20px 20px;
    background-color: #acdef9;
    text-align: center;
    flex-direction: column;
    width: 100%;
    transition: 0.3s;
  }
  .nav-item {
    margin: 16px 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .navbar {
    min-height: 70px;
  }
  #container {
    width: 100%;
    background-size: cover;
    background-image: url(../Imagens/escola.jpg);
  }
  .imagem {
    margin-left: 6rem;
    display: flex;
    width: 10rem;
  }
  #jogo {
    display: none;
  }
  .imagemP {
    display: none;
  }
  #headline {
    display: none;
  }
  #corpo {
    display: flex;
    width: 100%;
  }
  #card1 {
    height: 400px;
    width: 90%;
  }
  #card2 {
    width: 90%;
    height: 430px;
  }
  #card3 {
    margin-left: 1rem;
    width: 90%;
    height: 400px;
  }
  #card4 {
    width: 90%;
  }
  #botaoLeiaMais {
    padding: 0;
    margin: 0;
    display: none;
  }
  #content {
    display: none;
  }
  #conteudo {
    display: flex;
    flex-direction: column;
    margin: 0;
    margin-left: 0;
    padding: 0;
  }
  #imagemConteudo {
    padding: 0;
    width: 200px;
    height: 200px;
  }
  #textoConteudo {
    text-align: center;
  }
  #textoCard {
    align-items: flex-end;
    justify-content: flex-end;
    color: #ffffff;
  }
}

.container {
  width: 100%;
  background-image: url(../Imagens/fundo.jpg);
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}

.textoCard {
  text-align: center;
  margin-top: 20px;
}
.corpo {
  flex-flow: row wrap;
  display: flex;
  text-align: center;
  width: 100%;
  gap: 90px;
  margin-top: 20px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  scroll-margin-top: 14.5rem;
}
.card1 {
  width: 30%;
  box-shadow: 0 4px 8px 0 rgb(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  height: 400px;
  background-color: #ffffff;
  border-radius: 10px;
  color: #000000;
  background-image: url(../Imagens/9456979.jpg);
  background-size: cover;
  background-position: center;
}
.textoCard {
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 310px;
  font-size: 25px;
  margin-bottom: 20px;
  cursor: pointer;
  color: #ffffff;
}
.texto {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
.card1 a,
.card2 a,
.card3 a,
.card4 a {
  text-decoration: none;
  color: #000000;
}

button {
  width: 75%;
  background-color: #00a2d4;
  padding: 5px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
button:hover {
  background-color: #15bef1;
}
.card2 {
  width: 30%;
  box-shadow: 0 4px 8px 0 rgb(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  height: 400px;
  border-radius: 10px;
  background-image: url(../Imagens/tartaruga.png);
  background-size: cover;
  background-position: center;
}

.card3 {
  width: 30%;
  box-shadow: 0 4px 8px 0 rgb(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  height: 400px;
  margin-right: 20px;
  border-radius: 10px;
  background-image: url(../Imagens/arara.jpg);
  background-size: cover;
  background-position: center;
}

.card4 {
  width: 30%;
  box-shadow: 0 4px 8px 0 rgb(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  height: 400px;
  background-image: url(../Imagens/full-shot-girl-with-down-syndrome-swing.jpg);
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
.galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 30px;
  width: 100%;
  scroll-margin-top: 12.5rem;
}
.imagemGaleria {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgb(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: rgb(40, 43, 50);
}
@media (max-width: 768px) {
  .galeria {
    grid-template-columns: 1fr;
  }
  #jogos {
    grid-template-columns: 1fr;
  }
}

h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.hr {
  width: 150px;
  margin: 0 auto;
}
.jogos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
  width: 100%;
  scroll-margin-top: 12.5rem;
}
.imagemJogo {
  width: 100%;
  box-shadow: 0 4px 8px 0 rgb(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.galeriaAnimada {
  padding: 40px;
  display: grid;
  place-items: center;
  scroll-margin-top: 4rem;
}

.gallery {
  display: flex;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .gallery {
    display: block;
  }
  #cardAnimado {
    width: 250px;
    margin-top: 20px;
  }
  #cardAnimado img {
    width: 250px;
  }
}
.cardAnimado {
  position: relative;
  left: 0px;
  width: 400px;
  height: 300px;
  border-radius: 8px;
  transition: 1000ms all;
  transform-origin: center left;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.5);

  overflow: hidden;
}

.cardAnimado img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

.cardAnimado:hover {
  cursor: pointer;
  transform: scale(1.15);
}

.cardAnimado:hover ~ .cardAnimado {
  font-weight: bold;
  cursor: pointer;
  transform: translateX(22px);
}
.conteudo {
  display: flex;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
  align-items: center;
  padding: 10px 20px 10px 80px;
  scroll-margin-top: 9rem;
}
.conteudoImagem {
  width: 50%;
}
.imagemConteudo {
  width: 70%;
  height: 450px;

  border-radius: 50%;
  margin-top: 50px;
}

.tituloConteudo {
  margin-top: 110px;
  margin-bottom: 30px;
  text-decoration: dashed;
}
.conteudo p {
  margin-bottom: 10px;
}
.textoP {
  color: #00a2d4;
}

footer {
  width: 100%;
  color: rgb(0, 0, 0);
}

.footer-link {
  text-decoration: none;
}

#footer_content {
  margin-top: 20px;
  margin-top: 20px;
  border-radius: 5px;
  background-color: #acdef9;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3rem 3.5rem;
  gap: 15px;
}

#footer_contacts h1 {
  margin-bottom: 0.75rem;
}

#footer_social_media {
  display: flex;
  gap: 4rem;
  margin-top: 1.5rem;
}

#footer_social_media .footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  color: rgb(3, 3, 3);
  border-radius: 50%;
  transition: all 0.4s;
}

#footer_social_media .footer-link i {
  font-size: 1.25rem;
}

#footer_social_media .footer-link:hover {
  opacity: 0.8;
}

#instagram {
  background: linear-gradient(#7f37c9, #ff2992, #ff9807);
}

#facebook {
  background-color: #4267b3;
}

#whatsapp {
  background-color: #25d366;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin-top: 20px;
}

.footer-list .footer-link {
  color: rgb(0, 0, 0);
  transition: all 0.4s;
}

.footer-list .footer-link:hover {
  color: #7f37c9;
}

#footer_copyright {
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  background-color: #89b2ff;
  font-size: 0.9rem;
  padding: 1.5rem;
  font-weight: 100;
}

@media screen and (max-width: 768px) {
  #footer_content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 426px) {
  #footer_content {
    grid-template-columns: repeat(1, 1fr);
    padding: 3rem 2rem;
  }
}
.buttonFooter {
  width: 10%;
  margin-left: 20px;
}
.devs {
  display: none;
  margin-left: 10px;
}
