* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Verdana, sans-serif;
}

body {
  background-color: #FFF;
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes terminal {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes terminal {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes sendContact {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  25% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes sendContact {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  25% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes slide-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
}

@keyframes slide-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
}

@-webkit-keyframes initMobile {
  0% {
    left: 5px;
  }
  25% {
    left: 0px;
  }
  75% {
    left: 5px;
  }
  100% {
    left: 0px;
  }
}

@keyframes initMobile {
  0% {
    left: 5px;
  }
  25% {
    left: 0px;
  }
  75% {
    left: 5px;
  }
  100% {
    left: 0px;
  }
}

.projects {
  width: 90%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  row-gap: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 600px) {
  .projects {
    width: 100%;
  }
}

.projects div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
  width: 100%;
  overflow: hidden;
}

.projects div .cardProject {
  position: relative;
  width: 30vw;
  height: 30vh;
  cursor: pointer;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
  overflow: hidden;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

.projects div .cardProject:hover img {
  -webkit-filter: none;
          filter: none;
  background: rgba(0, 0, 0, 0.428);
}

.projects div .cardProject img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-filter .6s ease-in-out;
  transition: -webkit-filter .6s ease-in-out;
  transition: filter .6s ease-in-out;
  transition: filter .6s ease-in-out, -webkit-filter .6s ease-in-out;
}

.infoProject {
  position: absolute;
  z-index: 30;
  background: #FFF;
  width: 100%;
  height: 99vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 0;
  -webkit-animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (max-width: 600px) {
  .infoProject {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.infoProject #close {
  width: 3vw;
  position: absolute;
  right: 0;
  top: 2rem;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .infoProject #close {
    width: 6vw;
    right: 1rem;
  }
}

@media (max-width: 600px) {
  .infoProject #close {
    width: 10vw;
    top: 6rem;
  }
}

.infoProject #leftInfo {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  border-left: 1px solid rgba(151, 151, 151, 0.587);
  height: 90%;
  width: 33%;
}

@media (max-width: 1000px) {
  .infoProject #leftInfo {
    width: 40%;
  }
}

@media (max-width: 600px) {
  .infoProject #leftInfo {
    border: none;
    width: 95%;
    height: auto;
    margin-top: 20%;
  }
}

.infoProject #leftInfo h1 {
  text-align: center;
}

@media (max-width: 600px) {
  .infoProject #leftInfo h1 {
    font-size: 24px;
  }
}

.infoProject #leftInfo #description {
  display: block;
  width: 70%;
  text-align: center;
}

@media (max-width: 600px) {
  .infoProject #leftInfo #description {
    font-size: 16px;
  }
}

.infoProject #leftInfo .techsInfo {
  width: 100%;
  margin-top: 2.5rem;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}

@media (max-width: 600px) {
  .infoProject #leftInfo .techsInfo {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.infoProject #leftInfo .techsInfo img {
  width: 2.5vw;
}

@media (max-width: 1000px) {
  .infoProject #leftInfo .techsInfo img {
    width: 5vw;
  }
}

@media (max-width: 600px) {
  .infoProject #leftInfo .techsInfo img {
    width: 8vw;
  }
}

.infoProject #c-carrousel {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) {
  .infoProject #c-carrousel {
    width: 60%;
  }
}

@media (max-width: 600px) {
  .infoProject #c-carrousel {
    width: 100%;
  }
}

.infoProject #c-carrousel #screenDesktop {
  position: relative;
  top: 2rem;
  height: 50%;
}

@media (max-width: 600px) {
  .infoProject #c-carrousel #screenDesktop {
    height: auto;
    margin: auto;
    display: block;
    width: 95%;
    top: 0;
  }
}

@media (max-width: 1000px) {
  .infoProject #c-carrousel #screenDesktop {
    height: auto;
    width: 80%;
  }
}

.infoProject #c-carrousel div {
  margin-top: 1rem;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
  height: 50%;
  width: 80%;
}

@media (max-width: 600px) {
  .infoProject #c-carrousel div {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.infoProject #c-carrousel div .screenMobile {
  height: 70%;
}

@media (max-width: 1000px) {
  .infoProject #c-carrousel div .screenMobile {
    height: auto;
    width: 30%;
  }
}

@media (max-width: 600px) {
  .infoProject #c-carrousel div .screenMobile {
    height: auto;
    width: 30%;
    top: 0;
  }
}

.infoProject #linkRepo {
  position: absolute;
  right: 0;
  top: 10%;
}

@media (max-width: 1000px) {
  .infoProject #linkRepo {
    right: 1rem;
  }
}

@media (max-width: 600px) {
  .infoProject #linkRepo {
    top: 12rem;
  }
}

.infoProject #linkRepo img {
  width: 3vw;
}

@media (max-width: 1000px) {
  .infoProject #linkRepo img {
    width: 6vw;
  }
}

@media (max-width: 600px) {
  .infoProject #linkRepo img {
    width: 10vw;
  }
}

.projectOut {
  -webkit-animation: slide-out-right 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: slide-out-right 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.social-menu {
  position: fixed;
  overflow: visible;
  background: #FFF;
  z-index: 100;
  height: 100vh;
  width: 5%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  -webkit-animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-transition: left 1s;
  transition: left 1s;
}

@media (max-width: 1000px) {
  .social-menu {
    width: 10vw;
  }
}

@media (max-width: 600px) {
  .social-menu {
    width: 25vw;
    height: 100%;
    left: -100%;
  }
}

.social-menu #topPage {
  height: 100%;
}

.social-menu #topPage nav {
  width: 100%;
  position: relative;
  z-index: 1;
  height: 50%;
  top: 2rem;
}

.social-menu #topPage nav ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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;
  gap: 2rem;
}

.social-menu #topPage nav ul .effectMenu {
  overflow: hidden;
}

.social-menu #topPage nav ul .effectMenu:after {
  content: " ";
  position: absolute;
  right: 0;
  bottom: -200%;
  height: 100%;
  -webkit-transition: bottom 0.8s;
  transition: bottom 0.8s;
  border: 1px solid #3344a0;
}

.social-menu #topPage nav ul .effectMenu:hover:after {
  bottom: 0;
}

.social-menu #topPage nav ul li {
  list-style: none;
  width: 100%;
  position: relative;
  height: 5vh;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

@media (max-width: 600px) {
  .social-menu #topPage nav ul li {
    height: 8vh;
  }
}

.social-menu #topPage nav ul li a img {
  display: block;
  width: 2vw;
  margin: auto;
  -webkit-transition: -webkit-transform .8s;
  transition: -webkit-transform .8s;
  transition: transform .8s;
  transition: transform .8s, -webkit-transform .8s;
}

@media (max-width: 1000px) {
  .social-menu #topPage nav ul li a img {
    width: 4vw;
  }
}

@media (max-width: 600px) {
  .social-menu #topPage nav ul li a img {
    width: 7vw;
  }
}

.social-menu #topPage nav ul li a:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.social-menu #bottomPage {
  position: relative;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -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;
  gap: 0;
}

.social-menu #bottomPage #logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -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;
  gap: 0;
  width: 100%;
  height: 25%;
}

.social-menu #bottomPage #logo img {
  display: block;
  width: 100%;
}

.social-menu #bottomPage .send {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
  cursor: pointer;
  height: 10%;
  width: 100%;
}

.social-menu #bottomPage .send #send {
  display: block;
  margin: auto;
  width: 40%;
  -webkit-transition: -webkit-transform 1.2s;
  transition: -webkit-transform 1.2s;
  transition: transform 1.2s;
  transition: transform 1.2s, -webkit-transform 1.2s;
}

@media (max-width: 1000px) {
  .social-menu #bottomPage .send #send {
    width: 5vw;
  }
}

@media (max-width: 600px) {
  .social-menu #bottomPage .send #send {
    width: 8vw;
  }
}

.social-menu #bottomPage .send:hover {
  -webkit-animation: sendContact 2s;
          animation: sendContact 2s;
}

.socialMedia {
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 5vw;
  width: 0;
  overflow: hidden;
  padding: 1rem 0 1rem 0;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  -webkit-transition: all 1s;
  transition: all 1s;
}

@media (max-width: 1000px) {
  .socialMedia {
    left: 9.5vw;
    gap: .5rem;
  }
}

@media (max-width: 600px) {
  .socialMedia {
    left: 25vw;
    gap: .8rem;
  }
}

@media (max-width: 280px) {
  .socialMedia {
    left: 24.5vw;
    gap: .5rem;
  }
}

.socialMedia a img {
  width: 2.5vw;
  -webkit-transition: -webkit-transform .8s;
  transition: -webkit-transform .8s;
  transition: transform .8s;
  transition: transform .8s, -webkit-transform .8s;
}

@media (max-width: 1000px) {
  .socialMedia a img {
    width: 6vw;
  }
}

@media (max-width: 600px) {
  .socialMedia a img {
    width: 8vw;
  }
}

@media (max-width: 280px) {
  .socialMedia a img {
    width: 10vw;
  }
}

.socialMedia a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.inPage {
  border-right: 6px solid #3344a0;
  border-radius: 4px;
  -webkit-box-shadow: 10px 5px 20px -6px #666666;
          box-shadow: 10px 5px 20px -6px #666666;
}

#pushMenu {
  position: absolute;
  z-index: 300;
  width: 10vw;
  top: 2rem;
  left: 0;
  -webkit-transition: left 1s, -webkit-transform 1s;
  transition: left 1s, -webkit-transform 1s;
  transition: left 1s, transform 1s;
  transition: left 1s, transform 1s, -webkit-transform 1s;
  -webkit-animation: initMobile 1.5s 2s;
          animation: initMobile 1.5s 2s;
  display: none;
}

@media (max-width: 600px) {
  #pushMenu {
    display: block;
  }
}

#pushMenu img {
  width: 100%;
}

.conteiner {
  position: absolute;
  overflow-X: hidden;
  right: 0;
  bottom: 0;
  width: 95vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

@media (max-width: 600px) {
  .conteiner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.conteiner .profile {
  position: relative;
  width: 30%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
  -webkit-animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (max-width: 1000px) {
  .conteiner .profile {
    width: 40%;
  }
}

@media (max-width: 600px) {
  .conteiner .profile {
    width: 100%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.conteiner .profile img {
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 600px) {
  .conteiner .profile img {
    position: relative;
    -webkit-clip-path: none;
            clip-path: none;
    height: auto;
    width: 40vw;
    border-radius: 100%;
  }
}

.conteiner .conteudo {
  width: 70%;
  height: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

@media (max-width: 1000px) {
  .conteiner .conteudo {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .conteiner .conteudo {
    width: 100%;
    height: auto;
    margin-top: 2rem;
  }
}

.conteiner .conteudo h1 {
  text-align: center;
  font-size: 35px;
  display: block;
  width: 50%;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

@media (max-width: 600px) {
  .conteiner .conteudo h1 {
    font-size: 20px;
  }
}

.conteiner .conteudo #pointer {
  display: block;
  height: 2.3rem;
  background-color: #000;
  width: .5rem;
  -webkit-animation: terminal 2s infinite;
          animation: terminal 2s infinite;
  margin-left: .5rem;
}

@media (max-width: 600px) {
  .conteiner .conteudo #pointer {
    height: 1.5rem;
    width: .2rem;
  }
}

.conteiner .conteudo h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 3rem;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
}

@media (max-width: 600px) {
  .conteiner .conteudo h3 {
    font-size: 16px;
    margin-bottom: 1rem;
  }
}

.conteiner .conteudo p {
  font-size: 14px;
  font-weight: bold;
  text-align: justify;
  padding: 0 16px;
}

@media (max-width: 1500px) {
  .conteiner .conteudo p {
    font-size: 12px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .conteiner .conteudo p {
    padding: 0 32px;
  }
}

.conteiner hr {
  margin-top: 20px;
  width: 80%;
  height: 3px;
  background-color: #000;
}

.conteiner .techs {
  margin-top: 1rem;
  width: 100%;
  height: 8vw;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}

@media (max-width: 600px) {
  .conteiner .techs {
    gap: .5rem;
  }
}

.conteiner .techs img {
  height: 30%;
  margin: auto 0;
  display: block;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: height 1.2s, -webkit-filter 2.5s;
  transition: height 1.2s, -webkit-filter 2.5s;
  transition: filter 2.5s, height 1.2s;
  transition: filter 2.5s, height 1.2s, -webkit-filter 2.5s;
}

@media (max-width: 1000px) {
  .conteiner .techs img {
    height: 50%;
  }
}

@media (max-width: 600px) {
  .conteiner .techs img {
    height: 80%;
  }
}

@media (max-width: 600px) {
  .conteiner .techs img {
    height: 100%;
  }
}

.conteiner .techs img:hover {
  height: 100%;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

@media (max-width: 600px) {
  .conteiner .techs img:hover {
    height: 150%;
  }
}
/*# sourceMappingURL=main.css.map */