@charset "UTF-8";
/* ini: Preloader */
@import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #415a80;
  /* cor do background que vai ocupar o body */
  z-index: 999999999;
  /* z-index para jogar para frente e sobrepor tudo */
}

#preloader .inner {
  position: absolute;
  top: 50%;
  /* centralizar a parte interna do preload (onde fica a animação)*/
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.bolas > div {
  display: inline-block;
  background-color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  margin: 3px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: animarBola;
          animation-name: animarBola;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.bolas > div:nth-child(1) {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}

.bolas > div:nth-child(2) {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}

.bolas > div:nth-child(3) {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}

@-webkit-keyframes animarBola {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  16% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes animarBola {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  16% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/* end: Preloader */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

button {
  border: 0;
  font-family: "Maiden Orange", cursive;
}

button:focus {
  border: 0;
}

body {
  font-family: "Maiden Orange", cursive;
  background-color: #415a80;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: #415a80;
}

::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 8px;
}

#header {
  background: linear-gradient(-46deg, #415a80, #11294d, #415a80, #11294d);
  background-size: 400% 400%;
  position: relative;
  -webkit-animation: backgroundAnimation 8s ease-out infinite;
          animation: backgroundAnimation 8s ease-out infinite;
  width: 100%;
  position: fixed;
  z-index: 999999;
  padding: 13px;
  padding-bottom: 0;
  top: 0;
  left: 0;
}

@-webkit-keyframes backgroundAnimation {
  0% {
    background-position: 0% 80%;
  }
  50% {
    background-position: 80% 100%;
  }
  100% {
    background-position: 0% 98%;
  }
}

@keyframes backgroundAnimation {
  0% {
    background-position: 0% 80%;
  }
  50% {
    background-position: 80% 100%;
  }
  100% {
    background-position: 0% 98%;
  }
}

#nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 8vh;
  padding-top: 9px;
  padding-bottom: 18px;
  margin-bottom: 10px;
}

#logo {
  width: 70px;
  height: 70px;
}

a:hover {
  background: rgba(0, 0, 0, 0.05);
}

#btn-mobile {
  display: none;
}

#menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 3em;
  gap: 0.5rem;
  font-weight: 500;
}

#menu a {
  display: block;
  padding: 0.5rem;
  margin: 20px;
  background: -webkit-linear-gradient(#637bad, #ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.effect-one > a {
  position: relative;
}

.effect-one > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  margin: -5px 0;
  background-color: white;
  visibility: hidden;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.effect-one > a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

@media screen and (max-width: 730px) {
  #header {
    position: fixed;
  }
  #menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0px;
    background: #415a80;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
  }
  #nav.active #menu {
    height: calc(100vh - 70px);
    visibility: visible;
    overflow-y: auto;
  }
  #menu a {
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 2px solid white;
  }
  #btn-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
  }
  #hamburger {
    color: white;
    border-top: 2px solid;
    width: 20px;
  }
  #hamburger::after,
  #hamburger::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
  }
  #nav.active #hamburger {
    border-top-color: transparent;
  }
  #nav.active #hamburger::before {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  #nav.active #hamburger::after {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    top: -7px;
  }
}

#animacao-bolinha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#animacao-bolinha .container {
  width: 1000px;
  overflow: hidden;
  height: 5vh;
  margin: 2px;
}

.stars {
  position: relative;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  -webkit-box-shadow: 50px 30px white, 100px 80px white, 80px 120px white, 300px 20px white, 250px 130px white, 200px 50px white, 150px 100px white, 320px 100px white;
          box-shadow: 50px 30px white, 100px 80px white, 80px 120px white, 300px 20px white, 250px 130px white, 200px 50px white, 150px 100px white, 320px 100px white;
  -webkit-animation: anim-stars 6s linear infinite;
          animation: anim-stars 6s linear infinite;
}

.stars::after {
  content: " ";
  position: absolute;
  top: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  -webkit-box-shadow: 50px 30px white, 100px 80px white, 80px 120px white, 300px 20px white, 250px 130px white, 200px 50px white, 150px 100px white, 320px 100px white;
          box-shadow: 50px 30px white, 100px 80px white, 80px 120px white, 300px 20px white, 250px 130px white, 200px 50px white, 150px 100px white, 320px 100px white;
}

.stars2 {
  position: relative;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  -webkit-box-shadow: 15px 15px white, 125px 35px white, 50px 80px white, 10px 120px white, 275px 90px white, 230px 10px white, 120px 130px white, 300px 130px white, 220px 115px white;
          box-shadow: 15px 15px white, 125px 35px white, 50px 80px white, 10px 120px white, 275px 90px white, 230px 10px white, 120px 130px white, 300px 130px white, 220px 115px white;
  -webkit-animation: anim-stars 4s linear infinite;
          animation: anim-stars 4s linear infinite;
}

.stars2::after {
  content: " ";
  position: absolute;
  top: 2px;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  -webkit-box-shadow: 15px 15px white, 125px 35px white, 50px 80px white, 10px 120px white, 275px 90px white, 230px 10px white, 120px 130px white, 300px 130px white, 220px 115px white;
          box-shadow: 15px 15px white, 125px 35px white, 50px 80px white, 10px 120px white, 275px 90px white, 230px 10px white, 120px 130px white, 300px 130px white, 220px 115px white;
}

@-webkit-keyframes anim-stars {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
  }
}

@keyframes anim-stars {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
  }
}

:root {
  --bg-color: #415a80;
}

#introducao {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  overflow: hidden;
  margin-top: 120px;
  padding-bottom: 30px;
  color: #fff;
  background-color: var(--bg-color);
}

.H3 {
  font-size: 40px;
}

.H1 {
  font-size: 50px;
}

.P {
  font-size: 2.5rem;
  opacity: 0.6;
  font-weight: 500;
}

.ruivo {
  width: 30rem;
  height: 30rem;
}

.home-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.home-title span {
  position: relative;
  overflow: hidden;
  display: block;
  line-height: 1.2;
  background: -webkit-linear-gradient(#637BAD, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-title span::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  -webkit-animation: a-ltr-after 1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
          animation: a-ltr-after 1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
}

.home-title span::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  -webkit-animation: a-ltr-before 1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
          animation: a-ltr-before 1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.home-title span:nth-of-type(1)::before,
.home-title span:nth-of-type(1)::after {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.home-title span:nth-of-type(2)::before,
.home-title span:nth-of-type(2)::after {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes a-ltr-after {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}

@keyframes a-ltr-after {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}

@-webkit-keyframes a-ltr-before {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}

@keyframes a-ltr-before {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}

@media screen and (max-width: 650px) {
  #introducao {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 80px;
  }
  .ruivo {
    width: 25rem;
    height: 25rem;
  }
  .H3 {
    font-size: 30px;
  }
  .H1 {
    font-size: 40px;
  }
  .P {
    font-size: 2.0rem;
    font-weight: 500;
  }
}

.larguraMax {
  max-width: 1140px;
  margin: 0 auto;
}

#sobre {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#415a80), color-stop(#50668a), to(#415a80));
  background-image: linear-gradient(to bottom, #415a80, #50668a, #415a80);
}

.main-animacao {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 110px;
  margin-bottom: 100px;
}

.inform {
  width: 700px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-animacao .inform h2 {
  font-size: 38px;
  font-weight: 500;
  background: -webkit-linear-gradient(#637bad, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-animacao .inform p {
  font-size: 28px;
  text-align: center;
  padding: 0px 0px 20px;
  background: -webkit-linear-gradient(#9daed3, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-animacao .inform span {
  color: #415a80;
}

.button-sobre {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-animacao .ruivo {
  width: 30rem;
  height: 30rem;
}

@media screen and (max-width: 550px) {
  .main-animacao .inform {
    width: 340px;
    height: 590px;
  }
  .main-animacao .inform p {
    background: -webkit-linear-gradient(#fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .main-animacao .ruivo {
    width: 25rem;
    height: 25rem;
  }
  .ruivo {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .main-animacao .inform {
    width: 300px;
    height: 400px;
  }
  .main-animacao {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-animacao .inform {
    width: 90%;
    height: 70%;
  }
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #415a80;
}

.footer h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 500;
  background: -webkit-linear-gradient(#637bad, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -10px;
}

.social-buttons__button {
  margin: 10px 5px 0;
}

.social-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  outline: none;
  width: 70px;
  height: 70px;
  text-decoration: none;
  border-radius: 100%;
  background: #415a80;
  text-align: center;
}

.social-button::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  border-radius: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.social-button:focus, .social-button:hover {
  color: #fff;
}

.social-button:focus::after, .social-button:hover::after {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin-left: calc(-50% - 1px);
}

.social-button i,
.social-button svg {
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.social-button i {
  font-size: 28px;
}

.social-button svg {
  height: 40%;
  width: 40%;
}

.social-button--mail {
  color: #902222;
}

.social-button--mail::after {
  background: #902222;
}

.social-button--whatsapp {
  color: #3b9962;
}

.social-button--whatsapp::after {
  background: #3b9962;
}

.social-button--linkedin {
  color: #0077b5;
}

.social-button--linkedin::after {
  background: #0077b5;
}

.social-button--github {
  color: #6e5494;
}

.social-button--github::after {
  background: #6e5494;
}

.footer p {
  font-size: 2.6rem;
  background: -webkit-linear-gradient(#376ad8, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-rodape {
  opacity: 0.6;
}

@media screen and (max-width: 700px) {
  .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer p {
    color: #fff;
    background: -webkit-linear-gradient(#fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 10px;
    padding-right: 10px;
  }
}

section .larguraMaxforma {
  padding: 50px 50px;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

nav .informNav {
  font-size: 38px;
  font-weight: 500;
  background: -webkit-linear-gradient(#637bad, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.box {
  padding: 50px;
  margin: 6%;
  background: #415a80;
  width: 400px;
  -webkit-box-shadow: 0 2px 3px 0px rgba(255, 255, 255, 0.25);
          box-shadow: 0 2px 3px 0px rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

nav .box-wrap:hover .box {
  -webkit-filter: blur(3px);
          filter: blur(3px);
  opacity: 0.5;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-box-shadow: none;
          box-shadow: none;
}

nav .box-wrap:hover .box:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0px);
          filter: blur(0px);
  opacity: 1;
  -webkit-box-shadow: 0 8px 20px 0px #415a80;
          box-shadow: 0 8px 20px 0px #415a80;
}

nav .box-wrap p {
  font-size: 25px;
  text-align: center;
  background: -webkit-linear-gradient(#637bad, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.conatiner-button-projeto {
  position: relative;
  padding: 1em 1.5em;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  font-size: 18px;
  margin: 1em 0.8em;
}

.conatiner-button-projeto.type1 {
  color: #fff;
}

.conatiner-button-projeto.type1.type1::after, .conatiner-button-projeto.type1.type1::before {
  content: "";
  display: block;
  position: absolute;
  width: 20%;
  height: 20%;
  border: 2px solid;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  border-radius: 2px;
}

.conatiner-button-projeto.type1.type1::after {
  bottom: 0;
  right: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: #fff;
  border-right-color: #fff;
}

.conatiner-button-projeto.type1.type1::before {
  top: 0;
  left: 0;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-top-color: #fff;
  border-left-color: #fff;
}

.conatiner-button-projeto.type1.type1:hover:after, .conatiner-button-projeto.type1.type1:hover:before {
  width: 100%;
  height: 100%;
}

nav .repositorio {
  text-decoration: none;
  font-size: 25px;
  background: -webkit-linear-gradient(#637bad, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1100px) {
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .box-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .box {
    width: 300px;
    padding: 50px;
    margin-bottom: 20px;
  }
  nav .box-wrap p {
    font-size: 27px;
  }
  .conatiner-button-projeto {
    position: relative;
    padding: 1em 1.5em;
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    font-size: 18px;
    margin: 1em 0.8em;
  }
  .conatiner-button-projeto.type1 {
    color: #fff;
  }
  .conatiner-button-projeto.type1.type1::after, .conatiner-button-projeto.type1.type1::before {
    content: "";
    display: block;
    position: absolute;
    width: 20%;
    height: 20%;
    border: 2px solid;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    border-radius: 2px;
  }
  .conatiner-button-projeto.type1.type1::after {
    bottom: 0;
    right: 0;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: #fff;
    border-right-color: #fff;
  }
  .conatiner-button-projeto.type1.type1::before {
    top: 0;
    left: 0;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-top-color: #fff;
    border-left-color: #fff;
  }
  .conatiner-button-projeto.type1.type1:hover:after, .conatiner-button-projeto.type1.type1:hover:before {
    width: 100%;
    height: 100%;
  }
}

#conhecimento {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#415a80), color-stop(#4c658a), to(#415a80));
  background-image: linear-gradient(to bottom, #415a80, #4c658a, #415a80);
  color: #fff;
  margin-top: 70px;
  font-family: "Maiden Orange", cursive;
  padding-top: 20px;
}

@media screen and (min-width: 1000px) {
  #conheccimento {
    margin-top: 100px;
    padding-top: 30px;
  }
}

h1 {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 500;
  background: -webkit-linear-gradient(#637bad, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline {
  position: relative;
  padding: 1rem;
  margin: 0 auto;
  max-width: 1300px;
}

.timeline:before {
  content: "";
  position: absolute;
  height: 100%;
  border: 1px solid #e4dada;
  right: 40px;
  top: 0;
}

.timeline:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (min-width: 700px) {
  .timeline {
    padding: 2rem;
  }
  .timeline:before {
    left: calc(50% - 1px);
    right: auto;
  }
}

.timeline__item {
  padding: 1rem;
  border: 2px solid #e4dada;
  -o-border-image: linear-gradient(to right, skyblue 0%, #e4dada 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(skyblue), to(#e4dada));
     border-image: linear-gradient(to right, skyblue 0%, #e4dada 100%);
  border-image-slice: 1;
  position: relative;
  margin: 1rem 3rem 1rem 1rem;
  clear: both;
}

.timeline__item:after, .timeline__item:before {
  content: "";
  position: absolute;
}

.timeline__item:before {
  right: -10px;
  top: calc(50% - 5px);
  border-style: solid;
  border-color: #e4dada #e4dada transparent transparent;
  border-width: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (min-width: 700px) {
  .timeline__item {
    width: 44%;
    margin: 1rem;
  }
  .timeline__item:nth-of-type(2n) {
    float: right;
    margin: 1rem;
    -o-border-image: linear-gradient(to right, #e4dada 0%, skyblue 100%);
       border-image: -webkit-gradient(linear, left top, right top, from(#e4dada), to(skyblue));
       border-image: linear-gradient(to right, #e4dada 0%, skyblue 100%);
    border-image-slice: 1;
  }
  .timeline__item:nth-of-type(2n):before {
    right: auto;
    left: -10px;
    border-color: transparent transparent #e4dada #e4dada;
  }
}

.timeline__item--year {
  text-align: center;
  max-width: 150px;
  font-weight: 500;
  margin: 0 48px 0 auto;
  font-size: 1.8rem;
  background-color: #415a80;
  line-height: 1;
  -o-border-image: none;
     border-image: none;
  padding: 0.5rem 1rem 1rem;
}

.timeline__item--year:before {
  display: none;
}

@media screen and (min-width: 700px) {
  .timeline__item--year {
    text-align: center;
    margin: 0 auto;
  }
  .timeline__item--year:nth-of-type(2n) {
    float: none;
    margin: 0 auto;
    -o-border-image: none;
       border-image: none;
  }
  .timeline__item--year:nth-of-type(2n):before {
    display: none;
  }
}

.timeline__title {
  margin: 0;
  font-size: 2.4em;
  font-weight: 500;
  background: -webkit-linear-gradient(#fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
}

.timeline__blurb {
  line-height: 1.5;
  font-size: 1rem;
  margin: 0.5rem 0 0;
}

#conhecimento-tec {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#conhecimento-tec img {
  width: 60px;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
            transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
            transform: translateX(calc(-250px * 7));
  }
}

.slider {
  background: #415a80;
  height: 100px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  position: relative;
  width: 960px;
}

.slider::before, .slider::after {
  background: -webkit-gradient(linear, left top, right top, from(#415a80), to(rgba(168, 78, 78, 0)));
  background: linear-gradient(to right, #415a80 0%, rgba(168, 78, 78, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track {
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(250px * 14);
}

.slider .slide {
  height: 100px;
  width: 250px;
}

@media screen and (min-width: 600px) {
  #conhecimento-tec {
    height: 20vh;
  }
}

@media screen and (max-width: 600px) {
  #conhecimento-tec {
    height: 20vh;
  }
}
/*# sourceMappingURL=styled.css.map */