* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.center {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2%;
  overflow: hidden;
}
.center2 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
.center3 {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2%;
  overflow: hidden;
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&display=swap");

@font-face {
  font-family: RomanC;
  src: url(../fonts/RomanC.ttf);
}

/* Header nav bar */

.header-bg {
  width: 100%;
  background: white;
  height: auto;
}

header:first-child {
  height: 180px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  display: flex;
  align-items: center;
  margin: 0 80px;
  margin-left: 150px;
  justify-content: space-around;
}

.logo {
  width: 200px;
  height: auto;
  display: flex;
  justify-content: center;
}

.logo img {
  max-width: 100%;
  height: auto;
}

nav ul {
  display: flex;
}

nav ul li {
  list-style-type: none;
}

nav a {
  text-decoration: none;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  color: #316633;
  font-weight: 900;
  padding: 0 13px;
  margin: 0 10px;
}

.nav-bar-mobile {
  display: none;
  height: 0;
}

.nav-bar-mobile img {
  display: flex;
  width: 70px;
  margin-top: 20px;
  margin: 0 auto;
}

.nav-bar-mobile ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-bar-mobile ul {
  display: block;
  flex-direction: column;
  position: absolute;
  right: 0;
  width: 0;
  background: rgb(240, 240, 240);
  height: 700px;
  z-index: 2;
  top: 0;
  align-items: center;
  visibility: hidden;
  overflow-x: hidden;
  transition: 0.5s;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.nav-bar-mobile a {
  padding: 15px 0;
  text-align: center;
  width: 100%;
  display: block;
  color: #154c1a;
  list-style-type: none;
  text-decoration: none;
  font-size: 15px;
}

.nav-bar-mobile ul li a:hover {
  background: #c7c7c7;
}

.fa-bars {
  color: #144c1a;
  cursor: pointer;
  font-size: 25px;
  position: absolute;
  right: 10px;
  padding: 10px 10px;
  top: 35px;
  transition: 0.3s;
  transform: scaleY(-1);
}

.fa-times {
  color: #144c1a;
  align-self: flex-start;
  margin-left: 10px;
  font-size: 20px;
  cursor: pointer;
  padding: 15px 15px;
  transition: 0.3s;
  opacity: 0.8;
}

.fa-times:hover {
  opacity: 1;
  text-shadow: 0px 0px 15px #ffffff8a;
}

.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-media a {
  align-items: center;
  justify-content: center;
  font-size: 21px;
  transition: 0.3s;
  margin: 5px 5px;
}

.social-media i {
  padding: 0;
}

/* Overlines */

.oh {
  position: relative;
  left: 23px;
  visibility: hidden;
  width: 0px;
  height: 3px;
  border-radius: 2px;
  transform: scaleX(0);
  background: #316633;
}

nav ul li:hover .oh {
  visibility: visible;
  width: 48px;
  transform: scaleX(1);
  transition: 0.4s;
}

.oe {
  position: relative;
  left: 23px;
  visibility: hidden;
  width: 0px;
  height: 3px;
  border-radius: 2px;
  transform: scaleX(0);
  background: #316633;
}

nav ul li:hover .oe {
  visibility: visible;
  width: 79px;
  transform: scaleX(1);
  transition: 0.4s;
}

.od {
  position: relative;
  left: 23px;
  visibility: hidden;
  width: 0px;
  height: 3px;
  border-radius: 2px;
  transform: scaleX(0);
  background: #316633;
}

nav ul li:hover .od {
  visibility: visible;
  width: 95px;
  transform: scaleX(1);
  transition: 0.4s;
}

.om {
  position: relative;
  left: 24px;
  visibility: hidden;
  width: 0px;
  height: 3px;
  transform: scaleX(0);
  border-radius: 2px;
  background: #316633;
}

nav ul li:hover .om {
  visibility: visible;
  width: 87px;
  transform: scaleX(1);
  transition: 0.4s;
}

.oeq {
  position: relative;
  left: 23px;
  visibility: hidden;
  width: 0px;
  height: 3px;
  transform: scaleX(0);
  border-radius: 2px;
  background: #316633;
}

nav ul li:hover .oeq {
  visibility: visible;
  width: 59px;
  transform: scaleX(1);
  transition: 0.4s;
}

.oc {
  position: relative;
  left: 24px;
  visibility: hidden;
  width: 0px;
  height: 3px;
  transform: scaleX(0);
  border-radius: 2px;
  background: #316633;
}

nav ul li:hover .oc {
  visibility: visible;
  width: 73px;
  transform: scaleX(1);
  transition: 0.4s;
}

/* Overline-end */

.social-medias {
  position: relative;
  display: flex;
}

.social-medias a {
  font-size: 22px;
  margin: 0 8px;
  color: #316633;
  padding: 0 !important;
  transition: 0.3s;
}

/* Header Nav-bar end */

/* Destaques section */

.destaques {
  display: flex;
  padding-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 35px;
  background: #f0f0f0;
}

.destaques h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: #316633;
  width: 100%;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 25px;
}

.nome-destaque-single {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(30, 65, 31, 0.7);
  height: 18%;
  width: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nome-destaque-single p {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 20px;
  line-height: 20px !important;
}

/* Modal settings */

#modal_img {
  max-height: 85vh;
  transform: scale(0);
  transition: all linear 0.2s;
  max-width: 95%;
}
.modal_active #modal_img {
  transform: scale(1);
}

.modal {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s linear, opacity 0.3s linear;
}

.modal .next {
  color: white;
  font-size: 80px;
  padding: 0 30px;
  cursor: pointer;
  position: absolute;
  opacity: 0.7;
  transition: 0.2s;
  transform: scale(0.9);
  right: 0;
  z-index: 5;
}
.modal .next:hover {
  color: white;
  opacity: 1;
  transform: scale(1);
}

.modal .prev {
  display: none;
  color: white;
  font-size: 80px;
  padding: 0 30px;
  cursor: pointer;
  position: absolute;
  opacity: 0.7;
  transition: 0.2s;
  transform: scale(0.9);
  left: 0;
  z-index: 5;
}
.modal .prev:hover {
  color: white;
  opacity: 1;
  transform: scale(1);
}

.chapanext,
.chapaprev {
  font-family: "Montserrat", sans-serif;
  color: white;
  position: absolute;
  bottom: 20px;
  font-weight: bold;
  font-size: 20px;
}

.chapanext {
  display: none;
}

.modal_content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.modal_active {
  visibility: visible;
  opacity: 1;
}

.closemodal {
  height: 100%;
  width: 100%;
  opacity: 1;
  position: absolute;
  top: 0;
}

#bt_close {
  color: white;
  background-color: black;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 12px;
  font-size: 25px;
  border: solid 1px #fff;
  cursor: pointer;
  transition: all ease-out 0.2s;
  border-radius: 50%;
}

#bt_close:hover {
  background-color: red;
}

/* Modal end */

/* Modal_destaque */

#modal_img_destaque {
  max-height: 85vh;
  transform: scale(0);
  transition: all linear 0.2s;
  max-width: 95%;
}
.modal_destaque_active #modal_img_destaque {
  transform: scale(1);
}

.modal_destaque {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s linear, opacity 0.3s linear;
}

.modal_destaque_content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.modal_destaque_active {
  visibility: visible;
  opacity: 1;
}

.closemodal_destaque {
  height: 100%;
  width: 100%;
  opacity: 1;
  position: absolute;
  top: 0;
  z-index: 2;
}

#bt_close_destaque {
  color: white;
  background-color: black;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 12px;
  font-size: 25px;
  border: solid 1px #fff;
  cursor: pointer;
  transition: all ease-out 0.2s;
  border-radius: 50%;
  z-index: 10;
}

#bt_close_destaque:hover {
  background-color: red;
}
.modal_destaque .modal_destaque_content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal_destaque .sliderdestaque {
  visibility: hidden;
  width: 95%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal_destaque .sliderdestaque .slider-destaque-single {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal_destaque .sliderdestaque .slider-destaque-single img {
  max-width: 95%;
  max-height: 90vh;
}
.modal_destaque .sliderdestaque .slider-destaque-single p {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  background: #00000057;
  padding: 8px 20px;
  margin-top: 20px;
  font-weight: bold;
}

.sliderdestaque .slick-next {
  top: 50% !important;
}
.sliderdestaque .slick-prev {
  top: 1% !important;
}

.sliderdestaque .slick-track {
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 3 !important;
}

.sliderdestaque .slick-list {
  z-index: 3 !important;
}

.sliderdestaque .slick-initialized,
.sliderdestaque .slick-slider {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sliderdestaque button.slick-next.slick-arrow::before,
.sliderdestaque button.slick-prev.slick-arrow::before {
  position: absolute;
  z-index: 11 !important;
  font-size: 50px;
}

.sliderdestaque .slick-next,
.sliderdestaque .slick-prev {
  z-index: 4 !important;
}

.sliderdestaque button.slick-next.slick-arrow::before {
  right: 0;
}

#chapaacesasingle {
  display: none;
}

/* Modal_destaque end */

.destaque-single {
  width: 310px;
  padding: 15px 15px;
  position: relative;
}

.destaque-single img:nth-child(4) {
  display: none;
}

.destaque-single img:nth-child(5) {
  display: none;
}

.destaque-single img {
  width: 100%;
  height: auto;
  transition: 0.4s;
  cursor: pointer;
}

.destaque-single img:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.destaque-single .fechar {
  position: absolute;
  z-index: 20;
  right: 0;
  top: 0;
  cursor: pointer;
  color: green;
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: white;
  border: 1px solid green;
  font-family: "Montserrat", sans-serif;
  display: none;
  text-align: center;
}

/* Destaques end */

/* Materiais section */

/*  */

#modal_img {
  height: 85vh;
  transform: scale(0);
  transition: all linear 0.2s;
  max-width: 95%;
}
.modal_active #modal_img {
  transform: scale(1);
}

.modal {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s linear, opacity 0.3s linear;
}

.modal_content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.modal_active {
  visibility: visible;
  opacity: 1;
}

#bt_close {
  color: white;
  background-color: black;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 12px;
  font-size: 25px;
  border: solid 1px #fff;
  cursor: pointer;
  transition: all ease-out 0.2s;
  border-radius: 50%;
}

#bt_close:hover {
  background-color: red;
}

/*  */

.materiais-bg {
  background: white;
}

.materiais {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 30px;
}

.materiais h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: #316633;
  width: 100%;
  text-align: center;
  padding-top: 70px;
  font-size: 25px;
}

.sessaob {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  background: white;
}

.sessaoc {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  background: #f0f0f0;
}

.slidermateriais {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.slidermateriais .material-single {
  width: 20%;
  max-width: 90%;
  min-width: 280px;
  margin: 25px 25px;
  position: relative;
}

.slidermateriais .material-single img {
  width: 100%;
  transition: 0.2s;
  cursor: pointer;
}

.materiais img:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.nome-material-single {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(30, 65, 31, 0.7);
  height: 18%;
  width: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nome-material-single p {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
}

.material-single:nth-child(28) p {
  font-size: 19px;
}

.materiais .button button {
  margin-top: 20px !important;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 16px;
  padding: 12px 15px;
  background: transparent;
  border: 1px solid #316633;
  color: #316633;
  cursor: pointer;
  transition: 0.3s;
  height: auto !important;
  width: auto !important;
}

.materiais .button button:hover {
  background: #316633;
  color: white;
}

/* Materiais end */

/* Footer */

.footer-bg {
  height: auto;
  width: 100%;
  background-color: #316633;
}

.footer {
  padding-top: 20px;
  height: auto;
  width: 100%;
  background-color: #316633;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.footer .logofooter {
  position: relative;
}

.footer img {
  max-width: 95%;
}

.footer .footerlinks h2 {
  color: white;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 19px;
}

.footer .footerlinks {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.footer .footerlinks .links-colunas {
  display: flex;
}

.footer .footerlinks .links-colunas ul {
  list-style-type: none;
  margin: 5px 20px;
}

.footer .footerlinks .links-colunas ul li {
  margin: 7px 7px;
}

.footer .footerlinks .links-colunas ul li a {
  color: white;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  padding: 3px 3px;
}

.footer .footerlinks .links-colunas ul li a:hover {
  color: rgb(196, 196, 196);
}

.siga-nos h2 {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: 20px;
}

.redesfooter i {
  color: white;
  font-size: 25px;
  margin: 0 5px;
  padding: 5px 5px;
}

.redesfooter i:hover {
  color: rgb(209, 209, 209);
}

.redesfooter {
  margin-top: 5px;
  display: flex;
  justify-content: center;
}

.footer .direitos {
  width: 100%;
  text-align: center;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  padding: 5px 3%;
}

.informacoes-contato {
  font-family: "Montserrat", sans-serif;
  color: #060a2c;
  font-size: 17px;
  align-self: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.informacoes-contato p {
  font-size: 14px !important;
  text-align: left !important;
  color: white;
  font-family: "Montserrat", sans-serif;
}

.informacoes-contato p:nth-child(6) {
  margin-top: 15px;
}

.informacoes-contato h2 {
  color: white;
  margin-bottom: 10px;
  font-size: 18px !important;
}

footer .direitos p {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Footer-end */

/* Animacoes scroll */

[data-anime] {
  opacity: 0;
  transition: 0.5s;
}

[data-anime2] {
  opacity: 0;
  transition: 0.5s;
}

[data-anime3] {
  transition: 0.5s;
}

[data-anime3="bigger"] {
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: center;
}

[data-anime3].animatee3 {
  opacity: 1;
  transform: scaleX(1);
}

[data-anime2="left"] {
  transform: translate3d(-70px, 0px, 0px);
}

[data-anime2].animatee2 {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

[data-anime="left"] {
  transform: translate3d(-70px, 0, 0);
}

[data-anime="right"] {
  transform: translate3d(70px, 0, 0);
}

[data-anime="bottom"] {
  transform: translate3d(0, 50px, 0);
}

[data-anime="top"] {
  transform: translate3d(0, -50px, 0);
}

[data-anime].animatee {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

/* Animacoes scroll end */

@media screen and (min-width: 1200px) {
  .nome-material-single p {
    font-size: 20px;
    line-height: 20px;
  }
}

@media screen and (max-width: 1230px) {
  header nav ul,
  header .social-medias {
    display: none;
  }
  nav {
    margin: 0;
  }
  .nav-bar-mobile {
    display: flex;
  }
  .nav-bar-mobile ul {
    display: block;
    visibility: hidden;
  }
}

@media screen and (max-width: 935px) {
  header:first-child {
    height: auto;
  }
  .logo {
    max-width: 70%;
    padding: 4% 0;
  }
}
@media screen and (max-width: 450px) {
  #modal_img {
    max-width: 95%;
    height: auto !important;
  }
}
@media screen and (max-width: 935px) {
  .footer {
    flex-direction: column;
    justify-content: center;
    height: auto;
  }
  .footer .logofooter {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    position: relative;
    left: 0;
  }
  .footer .footerlinks {
    margin: 15px 0;
  }
  .footer .siga-nos {
    margin: 25px 0;
  }
  .footer .informacoes-contato p {
    text-align: center !important;
  }
  .footer .informacoes-contato {
    text-align: center;
  }
}
