@import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");

body,
h1,
h2,
p,
ul,
li,
a {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

* {
  box-sizing: border-box;
}

/*Menu*/

.menu-bg {
  background: rgb(9, 9, 121);
  background: linear-gradient(
    90deg,
    rgba(9, 9, 121, 1) 0%,
    rgba(49, 5, 245, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
}

.menu-site {
  max-width: 960px;
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.menu-site a {
  color: white;
}

.menu-logo a {
  font-family: "Righteous", cursive !important;
  font-size: 2.25em;
  font-weight: bold;
  margin: 0 10px;
}

.menu-logo a:hover {
  color: #3a51d5;
  transition: all 0.3s;
}

.menu-nav ul {
  display: flex;
  flex-wrap: wrap;
}

.menu-nav a {
  font-size: 1.25em;
  font-weight: bold;
  display: block;
  padding: 10px;
}

.menu-nav a:hover {
  color: #122ab2;
  transition: 0.3s;
}

/* main site */

.conteudo_site {
  display: flex;
  background-image: url("/static/img/22431.jpg");
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  background-attachment: fixed;
}

/* Footer */

.footer-bg {
  background: rgb(9, 9, 121);
  background: linear-gradient(
    90deg,
    rgba(9, 9, 121, 1) 0%,
    rgba(49, 5, 245, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
}

.footer-menu {
  display: flex;
  max-width: 960px;
  margin: 0 auto;
  padding: 15px 0;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-menu i,
a {
  color: white;
}

.contato-footer i,
a {
  padding: 5px;
}

.copy-footer-site {
  color: white;
  padding-right: 40px;
  border-right: 1px solid white;
}

.social-footer {
  display: flex;
}

.social-footer i {
  font-size: 34px;
  padding: 5px;
}

@media screen and (max-width: 794px) {
  .footer-menu {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 794px) {
  .contato-footer,
  .social-footer,
  .copy-footer-site {
    padding: 20px;
    border: none;
  }
}

@media screen and (max-width: 794px) {
  .social-footer i {
    padding: 15px;
  }
}

@media screen and (max-width: 461px) {
  .copy-footer-site {
    text-align: center;
    border: none;
    padding: 0;
  }
}

/* Altera foto de fundo do site no modo celular. */

@media screen and (max-width: 480px) {
  .conteudo_site {
    background-image: url("/static/img/img_fundo_site_mobile.jpg");
  }
}

/* Seção1 - Grids

.titulo-site-secao1 {
  margin-top: 100px;
  margin-bottom: 50px;
  text-align: center;
}

.grid-site {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 3em;
  margin: 40px 20px;
  color: white;
  background: rgb(9, 9, 121);
  background: linear-gradient(
    90deg,
    rgba(9, 9, 121, 1) 0%,
    rgba(49, 5, 245, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  border-radius: 8px;
  padding-bottom: 50px;
}

.grid-site-meio {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 3em;
  margin: 40px 20px;
  background-color: aliceblue;
  border-radius: 8px;
  padding-bottom: 50px;
}

.grid-site i {
  font-size: 3.5em;
  padding-top: 40px;
  color: aliceblue;
}

.grid-site-meio i {
  font-size: 3.5em;
  padding-top: 30px;
  color: #3a51d5;
}

.par-grid-site-titulo {
  font-size: 1.5em;
  font-weight: 700;
}

.grids-site {
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 100px;
} */
