@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@500&family=Montserrat:wght@700;800&family=Poppins&display=swap');

/*
font-family: 'Maven Pro', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif;
*/

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

body {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  /*-------------------------*/

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: aliceblue;
}

[vw] [vw-access-button] .access-button {
  width: 43px !important;
  float: right;
  /*border-radius: 36%;*/
  border: solid #282828 2px;
  /* border: solid black; */
  /* border-radius: 12px; */
}

main {
  margin-left: 70px;
}

.navbar-header {
  display: flex;
  justify-content: space-evenly;
  font-family: "Montserrat", sans-serif;
  height: 70px;
  align-items: center;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../assets/images/sobre_nos-nav-background-degrade.png);
  /*adicionar imagem da cor do NAVBAR aqui, ou mude para "background-color" e escolha uma cor.*/
  position: fixed;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}



.logo > a {
  font-weight: 900;
  font-size: 25px;
  text-decoration: none;
  text-shadow: -2px 0px 2px rgba(0, 0, 0, 1);
  color: white;
}

.nav-itens {
  list-style: none;
  display: flex;
  gap: 19px;
}

.nav-itens > li > a {
  padding: 4px 19px;
  text-decoration: none;
  font-size: 12px;
  color: #000000;
  background-color: #d9d9d9fd;
  border-radius: 13px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px,
    rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px,
    rgba(0, 0, 0, 0.07) 0px 16px 16px;
}

.nav-itens-name {
  /*esse é o efeito de acender a luzinha, ao passar o mouse sobre os temas do navbar*/
  transition: all 0.3s ease-out;
}

.nav-itens-name:hover {
  background-image: url(../assets/images/sobre_nos-nav-background-degrade.png);
  color: white;
  transition: 0.5s ease-out;
}

#search {
  text-align: center;
  border-radius: 12px;
  border: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

/*Efeito da cor da Lupa na barra de Pesquisa (Único para cada página!)*/
.search-box:hover > .search-btn {
  background: url(../assets/images/sobre_nos-nav-background-degrade.png);
  background-size: cover;
}

/*Menu mobile*/

.links-mobile {
  position: absolute;
  backdrop-filter: blur(10px);
  top: 69px;
  left: 0;
  width: 40%;
  height: 0;
  /* background-color: #00000051; */
  /*background-image: url(../assets/images/sobre_nos-nav-background-degrade.png);
  background-size: cover;
  background-position: center center;*/
  visibility: hidden;
  transition: 0.5s;
  overflow: hidden;
  border-radius: 0 25px;

  background: rgb(140, 82, 255);
  background: linear-gradient(
    90deg,
    rgba(140, 82, 255, 1) 23%,
    rgba(255, 145, 77, 1) 100%
  );
}

.links-mobile .nav-itens {
  display: flex;
  flex-direction: column;
  padding: 12px;
  text-align: center;
}

.links-mobile .nav-itens-name {
  display: block;
  padding: 10px 30px;
  gap: 25px;
}

#btn-menu {
  color: white;
}

#btn-menu-mobile {
  display: none;
  
}

#btn-menu-close {
  display: none;
  transition: all 0.5s ease-in-out;
}

.click-botao-menu-mobile {
  display: block;
  transform: rotate(180deg);
  color: #fff;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 1030px) {
  .links {
    display: none;
  }

  .logo {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  #btn-menu {
    display: block;
  }

  #btn-menu-mobile{
    display: block;
    color: #fff;
    text-shadow: rgb(0 0 0 / 61%) 3px 3px 6px;
    font-size: 35px;
  }

  span.icon {
    font-size: 17px;
}

  .material-symbols-outlined {
    display: block;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
  }

  /*ícones do menu na lateral */
  .links-mobile .nav-itens-name {
    display: flex;
  }

  .nav-itens-name {
    align-items: center;
  }
  /**/

  .mobile-menu {
    display: block;
  }

  .navbar-header {
    padding: 30px;
  }

  .links-mobile.abrir {
    visibility: visible;
    height: 100vh;
  }

  #btn-menu.ativo {
    display: none;
    color: snow;
    transition: all 0.5s ease-in-out;
  }

  #btn-menu-close.ativo {
    display: block;
    color: #fff;
    transition: all 0.5s ease-in-out;
  }

  .links-mobile {
    width: 25%;
  }
}

@media (max-width: 980px) {
  .links-mobile {
    width: 46%;
  }
}

@media screen and (max-width: 565px) {
  #search {
    display: none;
  }

  .links-mobile {
    width: 50%;
  }
}

@media screen and (max-width: 440px) {
  .links-mobile {
    width: 70%;
  }

  .logo > a {
    font-weight: 900;
    font-size: 20px;
    text-decoration: none;
    text-shadow: -2px 0px 2px rgba(0, 0, 0, 1);
    color: white;
  }
}

@media screen and (max-width: 300px) {
  .links-mobile {
    width: 90%;
  }
}

/**/

.tittle-apresentation-initial {
  margin-top: 4rem;
  padding: 10px 12px;
  text-align: center;
  font-family: "Maven Pro", sans-serif;
  font-weight: 900;
  font-size: 16px;
  text-shadow: -3px 1px 0px rgba(255, 255, 255, 1);
  color: blueviolet;
}

@media (max-width: 745px) {
  .tittle-apresentation-initial {
    font-size: 12px;
  }
}

.sobre-nos {
  font-family: "Maven Pro", sans-serif;
  text-align: justify;
  line-height: 1.5;
}

.texto-sobre-nos {
  font-size: 20px;
  font-family: "Maven Pro", sans-serif;
}

p {
  font-family: "Maven Pro", sans-serif;
  font-weight: 400;
  font-size: 21px;
}

@media (max-width: 745px) {
  .texto-sobre-nos {
    font-size: 16px;
    margin-top: 25px;
    text-align: justify;
  }
}

@media (max-width: 300px) {
  .texto-sobre-nos {
    text-align: initial;
  }
}

.nome-jornal-grifado {
  color: blueviolet;
}

a {
  text-decoration: none;
  color: blueviolet;
}

.subtitulo-sobre-nos {
  font-size: 20px;
  line-height: 2;
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  font-family: "Maven Pro", sans-serif;
  text-align: justify;
  font-weight: 100;
  letter-spacing: -1.6px;
}

.container-sobre-nos {
  display: flex;
  max-width: 1360px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 40px;
  letter-spacing: -1.6px;
}

.img-sobre-nos > img {
  width: 40rem;
  border-radius: 15px;
}

.slide-container {
  max-width: 1360px;
  width: 100%;

  background-position: center center;
  background-size: cover;
  padding: 40px 0;
  z-index: 0;
}

.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 12px;
}

@media (max-width: 1290px) {
  .container-sobre-nos {
    flex-direction: column;
  }

  .slide-container {
    width: 50%;
  }
}

@media (max-width: 1000px) {
  .slide-container {
    width: 60%;
  }
}

@media (max-width: 800px) {
  .slide-container {
    width: 75%;
  }
}

@media (max-width: 500px) {
  .slide-container {
    width: 100%;
  }
}

@media (max-width: 310px) {
  .slide-container {
    width: 150%;
    margin-left: -48px
  }
}

/**/

.card-image {
  width: 100%;
  height: 190px;
  border-radius: 15px;
  margin-top: 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/*Parte dos Cards texto "Sobre"*/

h1.title-apresentation-initial.sobre-nos {
  font-size: 35px;
  text-align: center;
  text-shadow: 1px 3px 2px rgba(0, 0, 0, 0.27);
  color: blueviolet;
  border-top: solid blueviolet 2px;
  background-color: gainsboro;
}

/*Cards*/

.cards-sobre-nos-somos {
  display: flex;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: solid blueviolet 2px;
  background-color: gainsboro;
}

.card-somos {
  padding: 9px 11px;
  margin-top: 35px;
  width: 300px;
  border-radius: 15px;
  margin: 1rem;
}

.card-somos {
  font-family: "Maven Pro", sans-serif;
  cursor: context-menu;
  transition: all 0.3s ease-out;
}

.card-somos:hover {
  transform: scale(1.03);
  background-color: #dcdcdc34;
}

.img-card {
  width: 100%;
  height: 195px;
  border-radius: 12px;
  object-fit: cover;

  background: linear-gradient(270deg, #dabcdf, #baa2d5, #6093b6);
  background-size: 600% 600%;

  -webkit-animation: AnimationName 50s ease infinite;
  -moz-animation: AnimationName 50s ease infinite;
  animation: AnimationName 50s ease infinite;
}


@-webkit-keyframes AnimationName {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@keyframes AnimationName {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}



@media (max-width: 560px) {
  .img-card {
    object-fit: cover;
  }
}

.title_card {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -1px;
  text-align: center;
  color: #282828;
  padding-top: 10px;
}

.description_card {
  color: black;
  font-size: 15px;
  font-weight: 500;
  text-align: justify;
  letter-spacing: 0.5px;
  padding-top: 10px;
  letter-spacing: -0.5px;
}

/*Agradecimentos aos desenvolvedores*/
.texto-pre-rodape {
  font-family: "Maven Pro", sans-serif;
  font-size: 16px;
  align-items: center;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 15px;
  background-color: whitesmoke;
}

@media (max-width: 300px) {
  .texto-pre-rodape {
    letter-spacing: -0.65px;
    text-align: justify;
  }
}

.desenvolvedores {
  font-size: 16px;
  font-family: "Maven Pro", sans-serif;
  display: flex;
  /* padding: 3rem;*/
  padding-bottom: 15px;
  text-align: center;
  gap: 15%;
  justify-content: center;
  background-color: ghostwhite;
  flex-wrap: wrap;
}

@media (max-width: 745px) {
  .desenvolvedores {
    flex-wrap: wrap;
    padding: 3rem;
  }
  .nomes-desenvolvedores.\32 {
    margin-top: 75px;
  }
}

.img-desenvolvedores {
  display: flex;
  margin-top: 20px;
  width: 200px;
  /*height: 300px;*/
  border-radius: 100%;
  border: solid mediumblue 2px;
  flex-wrap: wrap;
}

.logo-redes-sociais {
  padding: 12px;
  width: 65px;
}

.agradecimentos {
  font-family: "Maven Pro", sans-serif;
  font-size: 16px;
  padding-top: 4rem;
  text-align: center;
  margin-bottom: -75px;
  border-top: solid blueviolet 2px;
}

.agradecimentos > p {
  padding: 0 40px;
}

@media (max-width: 745px) {
  .texto-pre-rodape {
    text-align: initial;
    letter-spacing: -0.9px;
  }
  .agradecimentos > p {
    letter-spacing: -1.1px;
  }
}

@media(max-width: 500px){
  .agradecimentos>p {
    text-align: justify;
  }
}

.img-apoiadores {
  margin-top: -85px;
}

.img-professora {
  width: 125px;
  margin-top: 20px;
  border: solid 2px;
  border-color: mediumblue;
  border-radius: 50%;
  margin-bottom: 45px;
}

@media (max-width: 745px) {
  .img-apoiadores {
    width: 100vw;
    padding: 20px 20px;
  }
}

.copyright {
  font-family: "Maven Pro", sans-serif;
  text-align: center;
  margin-top: 5rem;
  background-color: #dcdcdc;
}

.social-links-page a {
  display: inline-block;
  height: 60px;
  width: 60px;
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #060606;
  font-size: 35px;
  padding: 10px;
  border: solid blueviolet 1px;
  margin-top: 15px;
  transition: all 0.5s ease;
}

.social-links-page a:hover {
  transition: all 0.5s ease-in;
  transform: scale(1.07);
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background: rgb(140, 82, 255);
  background: linear-gradient(
    90deg,
    rgba(140, 82, 255, 1) 23%,
    rgba(255, 145, 77, 1) 100%
  );
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  transition: all 0.5s ease-in-out;
}

.sidenav a {
  padding: 1em 1em 1em 3em;
  text-decoration: none;
  font-size: 1.5em;
  font-family: "Maven pro", sans-serif;
  color: #fff;
  display: block;
  transition: 0.3s;
  display: flex;
}

.sidenav .side_nav_a:hover {
  background-color: #505050;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 1em;
  margin-left: 1em;
}

.side_nav_btn {
  color: #fff;
}

.side_nav_btn {
  display: none;
}
span.material-symbols-outlined.\32 {
  display: block;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

span.material-symbols-outlined.\32:hover {
  display: block;
  transform: rotate(-180deg);
  color: #fff;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 1030px) {
  .side_nav_btn {
    display: none;
  }
  span.material-symbols-outlined.\32 {
    display: none;
  }
}


#navbar-icons {
  padding-right: 10px;
}
#sidebar_icons {
  padding-right: 10px;
}

.footer {
  margin-left: 0;
  border-top: solid blueviolet 2px;
}




@media (max-width: 1030px) {
  nav.menu-lateral {
    display: none;
  }
  
  main {
    margin-left: 0;
  }

  .logo > a {
    margin-left: 10rem;
  }

  .search-box {
    margin: 0;
  }

  .footer {
    margin-left: 0;
  }
}

@media (max-width: 980px) {
  .logo > a {
    margin-left: 0rem;
  }
}

/*sidebar lateral*/

nav.menu-lateral {
  background-color: #3EECAC;
  background-image: linear-gradient(19deg, #3EECAC 0%, #EE74E1 100%);

  box-shadow: 3px 0 0 darkmagenta;
}

ul li.ativo {
  background-color: rgba(139, 0, 139, 0.87);
  border-radius: 50px 0px 0px 50px;
  
}

ul li.item-menu:hover {
  background-color: darkmagenta;
  border-radius: 50px 0px 0px 50px;
}
