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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

:root {
  --cor-do-header: #28a332;
  --cor-do-fundo: #f6fdff;
  --cor-do-titulo: #31953b;
  --cor-do-menu-1: #122d85;
  --cor-do-menu-2: #303030cc;
  --cor-da-fonte-menu: #ffffff;
  --cor-de-fundo-escola: #0000008c;
  --cor-do-footerkkk: #010141;
}

::-webkit-scrollbar {
  width: 5px;
  height: 0;
  background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
  background-color: #17a723;
  width: 2px;
  height: 5px;
  border-radius: 50px;
}

body {
  background: var(--cor-do-fundo);
  width: 100%;
  height: 100vh;
}

#pre-load {
  background: #00000063;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 10;
}

.load {
  background: transparent;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1rem solid;
  border-color: #cecece #ffffff #cecece #cecece;
  animation: loanding 1s ease-in-out infinite;
}

@keyframes loanding {
  100% {
    transform: rotate(360deg);
  }
}

#next-load {
  display: none;
}

header {
  background: var(--cor-do-header);
  width: 100%;
  height: 4rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#logo-ofc {
  width: 60px;
  height: 60px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#logo-ofc img {
  filter: drop-shadow(-1px 1px 1px #0000004a);
  width: 70px;
  height: 78px;
}

/*  tela fechar menu  */

.menu-fechar {
  background: #00000070;
  width: 100vw;
  min-height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.fechar-on {
  display: none;
}

/*  configurações de menu */

nav div {
  width: 100%;
  height: 10rem;
  display: flex;
  justify-content: space-between;
}

nav .logo-escola {
  background: #ffffff;
  width: 70px;
  height: 70px;
  margin: 2rem;
  border-radius: 50%;
  border: 1px double #d4d4d4;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav .logo-escola img {
  border-radius: 40%;
  width: 90%;
  height: 90%;
}

#menu-icon-open {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  z-index: 2;
}

#menu-icon-open div {
  background: #ffffff;
  width: 90%;
  height: 6px;
  border-radius: 50px;
}

#menu-icon-close {
  width: 40px;
  height: 40px;
  margin: 0.75rem 2rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

#menu-icon-close div {
  background: #ffffff;
  width: 36px;
  height: 6px;
  border-radius: 50px;
}

#menu-icon-close div:first-child {
  position: absolute;
  transform: rotateZ(45deg);
}

#menu-icon-close div:last-child {
  position: absolute;
  transform: rotateZ(-45deg);
}

.menu-show {
  background: var(--cor-do-menu-2);
  width: 35rem; /*35rem*/
  min-height: 100vh; /*60rem*/
  border-radius: 0 0 0 3px;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  transition: width 0.35s ease-in-out;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.menu-hidden {
  height: 40rem;
  width: 0;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

nav .menu-main {
  opacity: 0;
  list-style-type: none;
  height: 30rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

nav .efect-view {
  opacity: 1;
  transition: 0.3s ease-in;
}

nav .menu-main li {
  width: 100%;
  height: 5rem;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav .menu-main li span {
  color: #ececec;
  font-size: 1em;
}

nav .menu-main li a {
  color: var(--cor-da-fonte-menu);
  text-decoration: none;
  font-size: 1.5em;
  height: 100%;
  width: 50%;
  /*border-bottom: 1px solid #EBEBEB;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  position: relative;
}

nav .menu-main li a::after {
  content: "";
  background: var(--cor-da-fonte-menu);
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 15%;
  left: 0;
  transition: 0.8s;
}

nav .menu-main li a:hover:after {
  width: 100%;
}

nav .frase {
  width: 100%;
  height: 8rem;
  margin-top: 12rem;
  padding: 8px;
  border-top: 1px solid #ffffff70;
  display: flex;
}

nav .frase span {
  color: #ffffff;
  width: 100%;
  height: 8rem;
  padding: 1rem 3rem;
  font-size: 1rem;
  text-align: justify;
  font-weight: 600;
  letter-spacing: 4px;
}

/*  CORPO DA PAGINA  */

main {
  width: 100%;
  min-height: 100rem;
  padding: 2px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .foto-escola::after {
  content: "";
  background: var(--cor-do-header);
  width: 100%;
  height: 3px;
  position: absolute;
  top: -2px;
}

main .foto-escola {
  width: 100%;
  height: 30rem;
  margin: 2px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

main .foto-escola img {
  border-radius: 1px 1px 25px 25px;
  width: 100%;
  height: 100%;
  user-select: none;
  object-fit: cover;
}

main .foto-escola figcaption {
  background: var(--cor-de-fundo-escola);
  width: 100%;
  height: 100%;
  border-radius: 1px 1px 25px 25px;
  box-shadow: 0 2px 5px #0000001f;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 4rem;
}

main .foto-escola figcaption h1 {
  color: #ffffff;
  width: 90%;
  min-height: 4rem;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .foto-escola figcaption p {
  color: #ffffff;
  width: 90%;
  height: 6rem;
  padding: 0 4rem;
  margin: 2rem 0;
  text-align: justify;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .foto-escola figcaption a {
  background: transparent;
  color: #f3f3f3;
  width: 15rem;
  height: 4rem;
  padding: 6px;
  margin-left: 30rem;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 3px;
  border-radius: 50px;
  border: 2px solid #ffffffb8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

main .foto-escola figcaption a:hover {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000b8;
}

/*  configurações informações adicionais  */

main .info-escola {
  width: 100%;
  height: 20rem;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

main .info-escola .card-info {
  width: 80%;
  height: 80%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

main .info-escola .card-info .circulo-progress {
  width: 10rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

main .info-escola .card-info .circulo-progress::before {
  content: "";
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1rem solid #0f188f;
  border-left-color: #565656;
  border-top-color: #0f188f;
  transform: rotateZ(-45deg);
  position: absolute;
}

main .info-escola .card-info .circulo-progress::after {
  content: "";
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1rem solid #0f188f;
  border-right-color: #0f188f;
  border-bottom-color: #565656;
  transform: rotateZ(55deg);
  position: absolute;
}

main .info-escola .card-info .circulo-progress span {
  background: #e2e2e2;
  color: #0f188f;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bolder;
  box-shadow: 0 0 5px inset #0000005c;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

main .info-escola .card-info .card-texto {
  background: #000a7d1a;
  border-radius: 20px;
  width: 35rem;
  height: 10rem;
  padding: 10px 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}

main .info-escola .card-info .card-texto h3 {
  color: var(--cor-do-menu-1);
  font-size: 1.5rem;
  font-weight: bold;
}

main .info-escola .card-info .card-texto p {
  color: #000d37;
  text-align: justify;
  text-indent: 1rem;
}

/*  configurações do nucleo gestor  */

main .orgao-gestor {
  width: 100%;
  height: 25rem;
  display: flex;
  flex-direction: column;
  margin: 2rem 0 1rem 0;
}

main .orgao-gestor header {
  background: var(--cor-do-titulo);
  color: #ffffff;
  border-radius: 0 50px 50px 0;
  width: 95%;
  height: 4rem;
  padding: 1rem 2rem;
  margin-right: 5%;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
}

main .orgao-gestor .coordenacao {
  width: 100%;
  height: 40rem;
  padding-left: 4rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow-x: scroll;
  gap: 2%;
}

main .orgao-gestor .coordenacao .cord {
  width: 15rem;
  height: 20rem;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main .orgao-gestor .coordenacao .cord figure {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 4px double #263871;
  overflow: hidden;
}

main .orgao-gestor .coordenacao .cord:nth-child(1) figure img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

main .orgao-gestor .coordenacao .cord:nth-child(2) figure img {
  width: 110%;
  height: 160%;
  object-fit: cover;
}

main .orgao-gestor .coordenacao .cord:nth-child(3) figure img {
  width: 100%;
  height: 130%;
  object-fit: cover;
}

main .orgao-gestor .coordenacao .cord span {
  color: #202020;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .orgao-gestor .coordenacao .cord span h4 {
  color: #2020207d;
}

/*  LOCAIS DA ESCOLA  */

main .locais {
  width: 100%;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0 2rem 0;
}

main .locais header {
  background: var(--cor-do-titulo);
  color: #ffffff;
  border-radius: 0 50px 50px 0;
  width: 95%;
  height: 4rem;
  padding: 1rem 2rem;
  margin-right: 5%;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
}

/*  configurações dos card locais  */

main .locais .cartoes {
  width: 100%;
  height: 17rem;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: 1s ease-in-out;
  overflow-x: scroll;
}

main .locais .cartoes .card-visivel,
.card-oculto {
  width: 100%;
  height: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2%;
  opacity: 1;
  transition: 2s ease;
}

main .locais .cartoes .oculto {
  opacity: 0;
  transition: 1s;
}

main .locais .cartoes .card {
  width: 12rem;
  height: 12rem;
  border-radius: 5px;
  position: relative;
}

main .locais .cartoes .card:nth-child(1),
.card:nth-child(2),
.card:nth-child(3),
.card:nth-child(4) {
  margin-bottom: 2rem;
}

main .locais .cartoes .card:nth-child(5),
.card:nth-child(6),
.card:nth-child(7),
.card:nth-child(8) {
  margin-bottom: 1rem;
}

main .locais .cartoes .card img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #000000;
}

main .locais .cartoes .card h3 {
  background: linear-gradient(0deg, #000000b1 20%, transparent);
  color: #ffffff;
  width: 100%;
  height: 4rem;
  padding: 6px;
  border-radius: 0 0 5px 5px;
  font-size: 1rem;
  text-transform: capitalize;
  position: absolute;
  bottom: 0;
  z-index: 0;
}

main .locais button {
  background: transparent;
  color: #000000;
  width: 15rem;
  height: 4rem;
  margin: 0.5rem 0;
  padding: 6px;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 50px;
  border: 2px solid #000000b8;
  transition: 0.3s ease-out;
  z-index: 3;
}

main .locais button:hover {
  background: var(--cor-do-titulo);
  color: #ffffff;
}

main .locais .larg {
  height: 30rem;
  transition: 1s ease-in-out;
}

/*  configurações das perguntas frequentes  */

aside {
  width: 100%;
  min-height: 15rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.faq-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
}

.faq-titulo {
  color: var(--cor-do-header);
  height: 4rem;
  font-size: 2rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.pergunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid black;
  cursor: pointer;
  margin-bottom: 10px;
}

.pergunta h3 {
  font-size: 20px;
}

.pergunta i {
  font-size: 25px;
  transition: all 0.5s ease;
}

.resposta {
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.ativar {
  max-height: 300px;
  opacity: 1;
}

.fechar i {
  transform: rotate(180deg);
}

/*  configurações do footer */

footer {
  /*  background: linear-gradient(98deg, #263871, #061444); */
  background: var(--cor-do-fundo);
  height: auto;
  width: 100vw;
  font-family: Arial, Helvetica, sans-serif;
  padding-top: 50px;
  color: rgb(0, 0, 0);
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.footer-content h3 {
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 3rem;
}
.footer-content p {
  max-width: 500px;
  margin: 10px auto;
  line-height: 28px;
  font-size: 14px;
}
.socials {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 3rem 0;
}
.socials li {
  margin: 0 10px;
}
.socials a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}
.socials a i {
  font-size: 1.1rem;
  transition: color 0.4s ease;
}

.socials a:hover i {
  color: tomato;
}

.footer-bottom {
  background: rgb(0, 0, 0);
  width: 100vw;
  padding: 20px 0;
  text-align: center;
  color: #fff;
}
.footer-bottom p {
  font-size: 14px;
  word-spacing: 2px;
  text-transform: capitalize;
}
.footer-bottom span {
  text-transform: uppercase;
  opacity: 0.4;
  font-weight: 200;
}

/* responsivo */
