@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
}

:root {
  --text: #002e5d;
  --line: #bbc1e1;
  --line-active: #d2a200;
}

html{
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bitter", serif;
}

a{
    text-decoration: none !important;
}
img {
    max-width: 100%;
  }
  
  p {
    margin-bottom: 0 !important;
  }

  #whatsapp{
    color: #fff;
    position: fixed;
    z-index: 9999;
    background-color: #d2a200;
    padding: 40px;
    font-size: 1.5em;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    bottom: 10px;
    left: 10px;
  }

  #whatsapp:hover{
    background-color: #002e5d;
    transition: .5s;
    box-shadow: 1px 2px 3px #000;
  }

  .logo img{
    max-width: 60%;
  }

.menu-fixo{
  position: fixed;
  z-index: 9 ;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.863);
  display: none;
  animation: aparecer 2s  ease-in-out;
}

@keyframes aparecer{
  0%{
    opacity: 0;
  }100%{
    opacity: 1;
  }
}

header {
  background-size: cover;
  background-position: center;
  height: 100vh;
  /* display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; */
  position: relative;
}


#myVideo{
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}

.content {
  position: absolute;
  background: linear-gradient(rgba(255,255,255, 0.7), rgba(255,255,255,1));
  width: 100%;
  padding: 20px;
  height: 50vw;
}

.desce{
position: absolute;
bottom: 10px;
font-size: 2em;
color: #002e5d;
animation: pulse 2s infinite;
}

@keyframes pulse{
    0%{
        transform: scale(1);
    }50%{
        transform: scale(1.1);
    }100%{
        transform: scale(1);
    }
}


.l-1{
  margin-top: 25px;
}

.l-2 {
  margin-top: 50px;
}

.b-2 {
  margin-bottom: 50px;
}

.logo {
  max-width: 50%;
}

.menu-item{
  color: #002e5d !important;
  font-size: 1.2em;
  font-weight: bold;
}

.menu-item:hover{
  color: #d2a200 !important;
  transition: .5s;
}

.menu-item-drop{
  background-color: #002e5d;
  border: none !important;
  border-radius: 0px !important;
}

.menu-item-drop .menu-item{
  color: #fff !important;
}

.menu-item-drop .menu-item:hover{
  color: #002e5d !important;
}

.cont-principal h4{
  font-size: 2.5em;
  color: gray;
}

.cont-principal span{
  color: #d2a200;
  font-weight: bolder;
  font-family: "Bitter", serif;
}

#element{
  font-size: 2.5em;
  font-family: "Bitter", serif;
  color: #002e5d;
  font-weight: bold;
}

.typed-cursor{
  font-size: 2em;
  color: #d2a200;
}

.cont-principal{
 display: flex;
 flex-direction: column;
}

.matricula{
  width: 30%;
  margin-top: 20px;
  border: none;
  padding: 10px;
  color: #002e5d;
  background-color: transparent;
  font-weight: bold;
  border: #002e5d solid 4px;
  border-radius: 25px;
}

.matricula:hover{
  background-color: #002e5d;
  color: #fff;
  transition: .5s;
}

/*unidades*/

.flex-container {
  /*position: absolute;*/
  height: 500px;
  width: 100%;
  display: flex;
  overflow: hidden;

  @media screen and (max-width:768px) {
      flex-direction: column;
  }
}

.flex-title {
  color: #fff;
  font-weight: bold;
  font-family: "Bitter", serif;
  position: relative;
  font-size: 1.5vw;
  margin: auto;
  text-align: center;
  transform: rotate(90deg);
  top: 15%;
  transition: all 500ms ease;

  @media screen and (max-width:768px) {
      transform: rotate(0deg) !important;
  }
}

.flex-title h3{
  color: #fff;
  font-weight: bold;
  text-shadow: 0px 2px rgba(0, 0, 0, 0.418);
}

.flex-title img{
  max-width: 50%;
}

.flex-about {
  opacity: 0;
  color: #f1f1f1;
  position: absolute;
  width: 100%;
  font-size: 1vw;
  padding: 5%;
  bottom: 0;
  line-height: 1.3;
  margin: auto;
  text-align: left;
  transform: rotate(0deg);
  transition: all 500ms ease;
  color: #e6e6e6;
  background: rgb(0,46,93);
  background: linear-gradient(180deg, rgba(0,46,93,0.10407913165266103) 0%, rgba(0,46,93,0.6699054621848739) 21%, rgba(0,46,93,1) 67%);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  @media screen and (max-width:768px) {
      padding: 0%;
      border: 0px solid #f1f1f1;
  }
}

.flex-about p{
  width: 85%;
}

.flex-about i{
  color: #d2a200;
}

.flex-slide {
  flex: 1;
  cursor: pointer;
  transition: all 500ms ease;
  position: relative;
  

  @media screen and (max-width:768px) {
      overflow: auto;
      overflow-x: hidden;
  }
}

.flex-slide:hover{
  filter: grayscale(0);
}

.flex-slide p {
  @media screen and (max-width:768px) {
      font-size: 2em
  }
}

.flex-slide:hover {
  flex-grow: 2;
}

.conheca{
  width: 40%;
  /* margin: 0 auto; */
  border: 3px solid #fff;
  padding: 10px;
  background-color: transparent;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  margin-top: 20px;
}

.conheca:hover{
  background-color: #d2a200;
  border: solid 3px #d2a200;
  transition: .5s;
}



@keyframes aboutFlexSlide {
  0% {
      flex-grow: 1;
  }

  50% {
      flex-grow: 3;
  }

  100% {
      flex-grow: 1;
  }
}

@keyframes homeFlexTitle {
  0% {
      transform: rotate(90deg);
      top: 15%;
  }

  50% {
      transform: rotate(0deg);
      top: 15%;
  }

  100% {
      transform: rotate(90deg);
      top: 15%;
  }
}


.unidade{
  
  display: flex;
  
  
}

.uni-1{
  background: linear-gradient(rgb(0, 46, 93, 0.3), rgb(0, 46, 93, 0.5)), url('../img/unidades/Csng.jpg');
  background-size: cover;
  background-position: center;
}

.uni-2{
  background: linear-gradient(rgb(0, 46, 93, 0.3), rgb(0, 46, 93, 0.5)), url('../img/unidades/imh.jpg');
  background-size: cover;
  background-position: center;
}

.uni-3{
  background: linear-gradient(rgb(0, 46, 93, 0.3), rgb(0, 46, 93, 0.5)), url('../img/unidades/unecim.jpg');
  background-size: cover;
  background-position: center;
}

.uni-4{
  background: linear-gradient(rgb(0, 46, 93, 0.3), rgb(0, 46, 93, 0.5)), url('../img/unidades/virgempoderosa.jpg');
  background-size: cover;
  background-position: center;
}

.uni-5{
  background: linear-gradient(rgb(0, 46, 93, 0.3), rgb(0, 46, 93, 0.5)), url('../img/unidades/cnsd.jpg');
  background-size: cover;
  background-position: center;
}

.uni-6{
  background: linear-gradient(rgb(0, 46, 93, 0.3), rgb(0, 46, 93, 0.5)), url('../img/unidades/pcime.jpg');
  background-size: cover;
  background-position: center;
}

.uni-7{
  background: linear-gradient(rgb(0, 46, 93, 0.3), rgb(0, 46, 93, 0.5)), url('../img/unidades/cnsl.jpg');
  background-size: cover;
  background-position: center;
}


.futuro{
  padding: 50px;
  background-color: #e6e6e6;
  background: url(../img/rede.png) no-repeat;
}

.futuro h2 {
  color: #868686;
  font-size: 2.5em;
  font-weight: bold;
  margin: 0;
}


.futuro span{
  font-weight: bold;
  color: #002e5d;
}



.card-futuro{
  /* border: 3px solid #002e5d; */
  padding: 40px;
  border-radius: 30px;
  position: relative;
  background-color: #d2a200;
}

.card-futuro::before{
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background-color: #002e5d;
  top: -10%;
  right: -2%;
  padding: 20px;
  overflow: hidden;
  color: #e6e6e6;
  border-radius: 50%;
}

.card-futuro h3{
  color: #fff;
  font-weight: bolder;
}

.card-futuro p{
  width: 80%;
  font-size: 1em;
  font-weight: 500;
  color: #fff;
}


.valores {
  background: url('../img/principal.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px;
}

.valores h2 {
  color: #002e5d;
  font-weight: bold;
  font-size: 3em;
}

.subtitulo{
  font-size: 1.4em;
  font-weight: bold;
  color: #868686;
}


.content-manifesto{
  display: flex;
  flex-direction: column;
}

.sanfona-item{
  padding: 50px;
  background-color: #002e5d;
  color: #fff !important;
  font-family: "Bitter", serif;
  margin-top: 20px;
  border-radius: 25px;
  box-shadow: #d2a200 5px 5px 0px;
  display: flex;
  justify-content: center;
  text-align: center;
  height: 230px;
}

.sanfona-item i{
  border-radius: 10px;
  display: flex;
  align-items: center;
  font-size: 30pt;
}

.sanfona-item:hover{
  background-color: #d2a200;
  transition: .5s;
}

.sanfona-item h3{
  font-size: 14pt;
}

.sanfona-item h4{
  font-size: 10pt;
}

.safona-texto{
  background-color: #002e5d;
}

.sanfona-desc{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sanfona-desc .desc-img img{
  border-radius: 25px 25px 0px 0px;
}

.desc-img{
  height: 600px;
}

.desc-img img{
  width: 600px;
  height: 700px;
  object-fit: cover;
}

.desc-texto{
  background-color: #d2a200;
  padding: 20px;
  border-radius: 0px 0px 25px 25px;
  color: #002e5d;
  text-align: center;
  font-weight: 500;
}

.grafico{
  background-color: #dbdbdb;
  padding: 60px;
  color: #002e5d;
}

.grafico h2{
  font-weight: bold;
}

.item-grafico{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.item-grafico h2{
  font-weight: bold;
}

.box-valor {
  background: rgb(255, 201, 16);
  border-radius: 50%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #fff solid 10px;
  padding: 20px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.103);
}

.more {
  background-color: #002e5d;
  color: #fff;
  border: none;
  padding: 10px;
  font-weight: bold;
  border: #002e5d solid 3px;
  border-radius: 50px;
  font-size: 1em;
}

.more:hover {
  background-color: #d2a200;
  color: #fff;
  transition: 0.5s;
  border: #d2a200 solid 3px;
}

.box-valor h3 {
  color: #002e5d;
  font-weight: bold;
}



.depoimentos {
  background-color: rgb(230, 230, 230);
  padding-top: 50px;
}

.depoimentos h2 {
  color: #002e5d;
  font-weight: bold;
  font-size: 2em;
}


.box-seg img{
  border-radius: 50%;
  border: 10px solid #002e5d;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.219);
  margin-bottom: 20px;
  width: 100%;
  height: 200px;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.box-seg img:hover{
  transform: scale(1.1);
  transition: .5s;
}

.box-seg h4{
  color: #002e5d;
  font-weight: bold;
}



.espac {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pilar{
  font-size: 20pt;
  color: #fff;
  background-color: #002e5d;
  font-family: "Bitter", serif;
  display: flex;
  font-weight: bold;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border-radius: 25px;
}

.pilar i{
  border: 3px solid #fff;
  padding: 10px;
  font-size: 25pt;
  border-radius: 10px;
}

.pilar:hover{
  color: #d2a200;
  transition: .5s;
}

.accordion-button::after{
  background-image: url(../img/sinal-de-mais.png) !important;
  color: #fff;
}

.accordion-button:not(.collapsed)::after{
  background-image: url(../img/minus-solid.svg) !important;
}

.dif-img{
  display: flex;
  align-items: center;
  flex-direction: column;
}

.dif-img i{
  color: #002e5d;
  font-size: 60pt;
}

.dif-img img{
  max-width: 50%;
}


.box-dif{
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  bottom: 0px;
  width: 100%;
}

.box-dif h2{
  color: #002e5d;
  font-size: 20pt;
}

.dentro-pilar{
  padding: 50px;
}

.fundo{
  display: flex;
  align-items: flex-end;
}


.dif{
  text-align: justify;
}

.dif p{
  width: 80%;
}

.topic-1{
  background-color: #b6b6b6;
}

.topic-2{
  background-color: #cacaca;
}

.topic-3{
  background-color: #dbdbdb;
}

.contato{
  background: linear-gradient(rgb(0, 46, 93, 0.6), rgb(0, 46, 93, 0.9)), url('../img/formulario.jpg') fixed;
  background-size: cover ;
  padding: 50px;
  color: #fff;
}

.dados{
  display: flex;
  margin-bottom: 10px;
}

.dados input, textarea, select{
  width: 90%;
  margin-left: 1%;
  padding-left: 10px;
}

.dados textarea{
  height: 100px;
}


.dados i{
  background-color: #002e5d;
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.concluir .envia{
  background-color: #d2a200;
  padding: 10px;
  width: 30%;
  border: none;
  color: #fff;
  border-radius: 4px;
  margin-right: 3%;
}

.concluir{
  display: flex;
  justify-content: flex-end;
}

.envia:hover{
  background-color: #002e5d;
  transition: .5s;
}

.contato iframe{
  width: 100%;
  background-color: #d2a200;
  height: 510px;
  border-radius: 25px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #dbdbdb;
  padding: 50px;
  color: #002e5d;
}

footer img {
  max-width: 70%;
}

.uni-roda{
  display: flex;
  flex-direction: column;
}


.cada-uni{
  border-bottom: 1px solid #86868648;
  padding: 5px;
}

.cada-uni h3{
  font-weight: bold;
  color: #575757;
  font-size: 16pt;
}

.alinha{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.social-roda{
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-roda i{
  background-color: #002e5d;
  padding: 20px;
  color: #fff;
  border-radius: 50%;
  font-size: 20pt;
  margin: 5px;
}

.social-roda i:hover{
  background-color: #d2a200;
  transition: .8s;
}

.copy {
  padding: 5px;
  background-color: #002e5d;
  color: #fff;
}

.copy a {
  text-decoration: none;
  color: #d2a200;
}
