/* TELA PRINCIPAL */

.principal {
  background-image: url('../src/images/footer/giphy.gif');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blur {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  -webkit-backdrop-filter: blur(150px) saturate(500%) brightness(40%) contrast(80%);
  backdrop-filter: blur(150px) saturate(500%) brightness(40%) contrast(80%);
}

.exibicao{
  display: flex;
  flex-direction: row;
}

.logoPrincipal {
    transition: all 0.3s;
    width: 40%;
    animation-name: logoAnimacao;
    animation-duration: 40s;
    animation-delay: 0.2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.principalEsquerda {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 90vh;
}
.principalDireita {
    width: 50%;
    height: 90vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.divFlecha{
  display: flex;
  justify-content: center;
  margin-top: -50px;
}

.flecha{
  width: 60px;
  transition: all 0.3s;
}

.flecha:hover{
  width: 65px;
}

.titulo {
    width: 60%;
    margin-top: 30px;
}

img {
  width: 25vw;
}

.logo-cel{
  display: none;
}

.paragrafoPrincipal {
    font-size: 1.3vw;
    font-weight: normal;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.575);
    margin-top: 10px;
    text-align: center;
    cursor: default;
}

.projetos{
  width: 100%;
  display: flex;
  flex-direction: column;
}

.conteudo1, .conteudo2, .conteudo3, .conteudo4{
  background-color: white;
  height: 75vh;
  padding: 0% 15vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}

.conteudo2, .conteudo4{
  background-color: #6248FF;
  color: white;

}

.textos{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  width: 50vw;
  padding-left: 10%;
}

.textos h2{
  margin-top: 40px;
  text-align: center;
  font-size: 46px;
  font-weight: 900;
}

.textos p{
  margin-top: 6%;
  font-size: 1.3rem;
  text-align: justify;
}

.saibaMais{
  transition: all 0.3s;
  width: 35%;
  height: 50px;
  background-color: #6248FF;
  border-radius: 40px;
  color: white;
  font-size: 26px;
  font-weight: normal;
  margin-top: 35px;
  cursor: pointer;
  border: solid 3px #6248FF;
  margin-bottom: 20px;
}

.conteudo2 > .textos, .conteudo4 > .textos{
  padding-right: 10%;
  padding-left: 0%;
}

.conteudo2 .saibaMais, .conteudo4 .saibaMais{
  background-color: rgb(240,240,240);
  color: black;
  border: solid 3px white;
}

.conteudo2 .saibaMais:hover, .conteudo4 .saibaMais:hover{
  background-color: transparent;
  border: solid 3px white;
  color: white;
}

.conteudo1 .saibaMais:hover, .conteudo3 .saibaMais:hover{
  background-color: transparent;
  border: solid 3px #6248FF;
  color: black;
}


/* classe de animação de surgimento da logo e slogan */
#iconPrincipal {
    animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0s both;
}

#logoAnimacao {
    animation: scale-in-center 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
}

#sloganAnimacao {
    animation: scale-in-center2 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.2s both;
}

#setaAnimacao {
    animation: scale-in-center3 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.8s both;
}


/* ANIMAÇÕES */

/* rotacao e fade */
@keyframes logoAnimacao {
    100% {
        rotate: -360deg;
    }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes scale-in-center {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
}

@keyframes scale-in-center2 {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
}

@keyframes scale-in-center3 {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
}


@media(max-width: 1000px) {
    .projetos p{
      font-size: 14px;
    }
    .projetos h2{
      font-size: 30px;
    }
    .saibaMais{
      transition: all 0.3s;
      width: 80%;
      height: 50px;
      background-color: #6248FF;
      border-radius: 40px;
      color: white;
      font-size: 26px;
      font-weight: normal;
      margin-top: 35px;
      cursor: pointer;
      border: solid 3px #6248FF;
    }
    .exibicao{
      flex-direction: column-reverse;
      justify-content: space-evenly;
      align-items: center;
      height: 100vh;
    }
    .principalEsquerda{
      height: 50%;
      margin-top: -200px;
    }
    .principalDireita{
      height: 50%;
      margin-top: 50px;
    }
    #logoAnimacao{
      width: 70vw;
    }
    .logoPrincipal{
      width: 200px;
    }
    .paragrafoPrincipal{
      font-size: 15px;
    }
    .flecha{
      width: 60px;
      margin-bottom: 20px;
    }
    .conteudo1 > img{
      display: none;
    }

    .conteudo1 > h2{
      margin-top: 224140px;
    }

    .logo-cel{
      display: flex;
      flex-direction: column;
      margin: 25px;
      width: 80%;
    }
  
}