
 @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: #21962B;
  --cor-do-fundo: #F6FDFF;
  --cor-do-titulo: #267E2F;
  --cor-do-menu-1: #263871;
  --cor-do-menu-2: #303030CC;
  --cor-do-card: #FFC1000A;
  --cor-do-footer: #FFC100;
  --cor-da-fonte-menu: #FFFFFF;
}

::-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: 100vw;
  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: 100%;
  min-height: 137rem;
  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;
  cursor: pointer;
}

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

#menu-icon-close {
  width: 40px;
  height: 40px;
  margin: .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: 137rem;/*60rem*/
  border-radius: 0 0 0 3px;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  transition: width .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 .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: .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: 1s;
}

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;
}



/* CONTEUDO DO SITE */

main{
  width: 100%;
  min-height: 115rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main > section:nth-child(1){
  background: var(--cor-do-card);
  width: 90%;
  min-height: 60rem;
  padding: 1rem;
  margin: 2rem 0 5rem 0;
  border-radius: 10px;
  box-shadow: -1px 3px 5px #00000024;
  display: flex;
  align-items: center;
}

main > section > figure{
  border-radius: 5px;
  width: 45%;
  height: 100%;
  margin-right: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

main > section > figure img{
  width: 90%;
  height: 90%;
}

/*  FORMATACAO DE TEXTO */

main > section > .texto-curso{
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

main > section > .texto-curso > h1, h2, h3, p{
  margin: .3rem 0;
}

main > section > .texto-curso > ul{
  list-style: none;
  padding: 0 2rem;
}

main > section > .texto-curso > p, h2{
  text-indent: .7rem;
  text-align: justify;
}

/*  COORDENADOR  */

main > section:nth-child(2){
  color: #FFFFFF;
  width: 100%;
  min-height: 40rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main > section:nth-child(2) .onda{
  width: 100%;
  min-height: 13rem;
  display: flex;
  align-items: flex-end;
}

main>section:nth-child(2) .onda svg {
  width: 100%;
  height: 100%;
}

main > section:nth-child(2) > header{
  background: var(--cor-do-titulo);
  border-radius: 0 50px 50px 0;
  width: 95%;
  height: 4rem;
  padding: 1rem 2rem;
  margin-right: 5%;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
}

main > section:nth-child(2) > .card_professores{
  width: 90%;
  min-height: 30rem;
 /*height: calc(100% - 5rem);*/
  padding: 1rem;
  display: flex;
}

main > section:nth-child(2) > .card_professores > figure{
  width: 100%;
  height: 100%;
  padding: .5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main>section:nth-child(2)>.card_professores>figure>.foto-corde {
  background: #E5E5E5;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px double #000000;
  overflow: hidden;
}

main>section:nth-child(2)>.card_professores>figure>.foto-corde img {
  width: 100%;
  height: 100%;
}

main > section:nth-child(2) > .card_professores > figure > figcaption{
  color: #000000;
  width: 100%;
  height: calc(100% - 200px);
  padding: 1rem;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

footer{
  background: var(--cor-do-footer);
  min-height: 15rem;
  width: 100%;
  font-family:Arial, Helvetica, sans-serif;
  padding-top: 50px;
  color: #fff;
}
.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: #fff;
}
.socials a i{
  font-size: 1.1rem;
  transition: color .4s ease;

}

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

.footer-bottom{
  background: rgb(0, 0, 0);
  width: 100%;
  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: .4;
  font-weight: 200;
}

      
