@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;800&family=Roboto:wght@300;400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 13px;
  border-radius:50%;
}

/* Fundo da barra de rolagem */
::-webkit-scrollbar-track-piece {
  background-image: linear-gradient(to right top, #FFCCC7, #ABC8FF, #FACCD0, #ABFCF4);
  border-left: 1px solid #FFB6C1;
}

::-webkit-scrollbar-thumb{
  border-radius: 10px;
}

/* Cor do indicador de rolagem */
::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal {
  background-image: linear-gradient(to right bottom, #ABC8FF, #ABFCF4, #FFCCC7, #FACCD0);
}

/* Cor do indicador de rolagem - ao passar o mouse */
::-webkit-scrollbar-thumb:vertical:hover,
::-webkit-scrollbar-thumb:horizontal:hover {
  background-image: linear-gradient(to left bottom, #ff00e8, #ABFCF4);
}


body{
  overflow-x: hidden;
}
.toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #000 url("../Img/Menu.png");
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 1000;
}

.toggle.active {
  background: #000 url("../Img/Close.png");
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
}

section {
  padding: 100px;
  min-height: 100vh;
}

.banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.banner .imgSidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 100%;
}

.banner .imgSidebar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .contentBx,
.sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 500px);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
}

.logoText {
  position: absolute;
  top: 40px;
  left: 100px;
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #333;
  color: #fff;
  padding: 10px 20px 10px 20px;
}

.banner .contentBx h4 {
  margin-top: 20px;
  font-size: 1.5em;
  color: #333;
  font-weight: 300;
}

.banner .contentBx h4 span {
  color: rgba(2, 137, 195, 1);
  font-size: 1.5em;
  font-weight: 700;
}

.banner .contentBx .description-in {
  color: rgba(56, 56, 56, 1);
  font-weight: 400;
}

.banner .contentBx h2 {
  font-size: 3em;
  color: #333;
  line-height: 1em;
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 1.1em;
  margin: 20px 0;
  font-weight: 300;
}

h3 {
  color: rgba(140, 138, 138, 1);
  font-weight: 200;
  font-size: 16px;
}

.btn {
  background: rgba(2, 137, 195, 1);
  color: #fff;
  padding: 10px 30px;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
}

.btn:hover {
  background: #000;
  color: #fff;
}

.sidebar {
  position: fixed;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  padding: 40px;
  z-index: 100;
  right: -100%;
}

.sidebar.active {
  right: 0;
}

.sidebar,
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sidebar ul li {
  list-style: none;
}

.sidebar ul li,
a {
  color: #fff;
  text-decoration: none;
  font-size: 2em;
  margin: 10px 0;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sidebar ul li,
a:hover {
  color: #00bcd4;
}

.sci,
ul {
  position: absolute;
  left: 100px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sci li {
  margin-left: 10px;
  list-style: none;
}

.sci li img {
  width: 50px;
  height: 50px;
  transform: scale(0.5);
  opacity: 0.7;
}

.sci li img:hover {
  opacity: 1;
}

.title {
  width: 100%;
  text-align: center;
}

.title .abt {
  position: relative;
  background: -webkit-linear-gradient(
    rgba(27, 210, 222, 1),
    rgba(5, 121, 186, 0.9)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 1px;
}

.title p {
  max-width: 700px;
  display: inline-block;
}

.title .abt::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 70px;
  height: 4px;
  background: rgba(56, 56, 56, 1);
}

.title.white h2 {
  color: #fff;
}

.title.white p {
  font-weight: 400;
  color: rgba(158, 158, 158, 1);
}

.title.title.white h2::before {
  background: #fff;
  width: 60px;
}

.about {
  background: #000;
}

.about .content {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.about .content .textBx {
  min-width: 49%;
  width: 49%;
}

.about .content .textBx p {
  letter-spacing: 1px;
  color: rgba(158, 158, 158, 1);
}

.about .content .textBx p span {
  color: rgba(157, 255, 243, 1);
}

.about .content .textBx::after {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  margin-top: 3%;
  margin-left: 20.8%;
  width: 560px;
  height: 1px;
  background: rgba(56, 56, 56, 1);
}

.about .content .imgBx {
  margin-left: 40px;
}

.about .content .imgBx img {
  max-width: 100%;
}

.services::after {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  margin-top: 3%;
  margin-left: 43%;
  width: 1050px;
  height: 1px;
  background: rgba(232, 232, 232, 1);
}

.services .title p {
  color: rgba(56, 56, 56, 1);
}

.services .content {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.services .content h2 {
  text-transform: uppercase;
  color: #fff;
}

.services .content .servicesBx {
  padding: 40px 20px;
  max-width: 320px;
  width: 100%;
  margin: 20px;
  transition: 0.5s;
  text-align: center;
  background: #000;
  opacity: 0.7;
  transform: scale(1);
  transition: 1.1s;
}

.services .content .servicesBx:hover {
  background: #000;
  opacity: 1;
  transform: scale(1.1);
  animation: scalar .5 linear forwards;
}

@keyframes scalar{
  to{
    transform: rotate(10deg);
  }
}

.services .content .servicesBx img {
  max-width: 80px;
  transition: 0.5s;
}

.services .content .servicesBx .es6,
.services .content .servicesBx .redux{
  width: 35px;
  height: 35px;
}

.services .content .servicesBx:hover img {
  filter: invert(1);
}

.services .content .servicesBx h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  transition: 0.5s;
}

.services .content .servicesBx h2::after {
  content: "";
  transform: translateX(-50%);
  justify-items: center;
  align-items: center;
  margin-left: 50%;
  width: 100px;
  height: 1px;
  display: block;
  background: rgba(25, 25, 25, 1);
}

.services .content .servicesBx:hover h2 {
  color: #fff;
}

.services .content .servicesBx p {
  color: rgba(140, 138, 138, 1);
  margin-top: 7%;
  padding: 5px 0;
  transition: 0.5s;
}

.services .content .servicesBx p::before {
  content: "";
  transform: translateX(-50%);
  margin-top: 5%;
  margin-bottom: 7px;
  margin-left: 50%;
  width: 120px;
  height: 1px;
  display: block;
  background: rgba(25, 25, 25, 1);
}

.services .content .servicesBx:hover p {
  color: #fff;
}

.work .content {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.work .content .workBx {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 90vh;
  margin: 10px;
  transition: 0.5s;
  text-align: center;
}

.work .content .workBx .imgBx,
.work .content .workBx .textBx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work .content .workBx .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: center;
}

.work .content .workBx .textBx {
  background: #000;
  opacity: 0;
  transition: 0.5s;
  display: flex;
  justify-items: center;
  text-align: center;
}

.work .content .workBx:hover .textBx {
  opacity: 1;
}

.work .content .workBx .textBx h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1em;
}

.work .content .workBx .textBx h3 a img {
  height: 16px;
  width: 16px;
  display: inline-block;
  margin-bottom: -2.8px;
}

.contact {
  background: #000;
  display: wrap;
}

.contact h2 {
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.contact p {
  color: rgba(97, 96, 96, 1);
  font-size: 16px;
}

.contact .img {
  margin-bottom: -3px;
}

.contact .auto-layout {
  width: 260px;
  height: 80px;
  background: rgba(56, 56, 56, 1);
}

.contact .contact-me h2,
.contact .social-networks h2,
.contact .location h2 {
  color: rgba(210, 210, 210, 1);
}

.contact {
  display: flex;
  flex-wrap: wrap;
}

.contact .contact-me,
.contact .social-networks,
.contact .location{
  flex: 1 1 150px;
}

.contact .social-networks .social-medias p a {
  font-size: 14px;
  text-transform: none;
  color: rgba(151, 149, 149, 1);
}

.contact .social-networks .social-medias p a:hover {
  color: #fff;
}

.copyright {
  color: rgba(96, 96, 96, 1);
  background: #111;
  text-align: center;
}

.copyright p {
  margin: 0;
  font-size: 16px;
}

@media (max-width: 991px) {
  .banner .imgSidebar {
    display: none;
  }

  .banner .contentBx,
  .sidebar {
    width: 100%;
    padding: 40px;
  }

  .logoText {
    left: 40px;
  }

  .toggle {
    right: 40px;
  }

  .sci {
    left: 40px;
  }

  section {
    padding: 40px;
  }

  .about .content {
    flex-direction: column;
  }

  .about .content .textBx {
    min-width: 100%;
    width: 100%;
  }

  .about .content {
    margin-top: 0;
  }

  .about .content .imgBx {
    margin-left: 0;
  }

  .services .content .servicesBx {
    padding: 30px 20px;
    max-width: 340px;
    margin: 10px;
  }

  .contact .contactForm {
    width: 100%;
  }

  .contactForm .row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .contact .contactForm .row .col150 {
    width: 100%;
  }

  .sidebar ul li,
  a {
    font-size: 1.5em;
  }

  .work .content .workBx{
    padding: 0 10px;
    display: grid;
  }
}

@media (max-width: 500px) {
  .services .content .servicesBx{
    max-width: 100%;
    width: 100vw;
    margin: 10px 0;
  }

  .work .content .workBx{
    max-width: 100%;
    max-height: 100%;
    height: 30vh;
    width: 100% !important;
  }

  .about .content .textBx::after {
    width: 200px;
    margin-top: -10px;
    margin-left: 37%;
  }

  .services .content .servicesBx h2::after,
  .services .content .servicesBx p::before {
    margin-left: 50%;
  }

}
