:root {
  --blue-grey-50: #edeff1;
  --blue-grey-100: #d1d8db;
  --blue-grey-200: #b3bec4;
  --blue-grey-300: #94a3ad;
  --blue-grey-400: #667c89;
  --blue-grey-500: #596d79;
  --blue-grey-600: #495963;
  --blue-grey-700: #3a474e;
  --blue-grey-800: #283237;
  --primary: #5fb4f9;
  --primary-light: #d4e9fa;
  --primary-medium: #a1d5ff;
  --primary-dark: #367bf6;
  --secondary-light: #8455f6;
  --secondary-medium: #541dd9;
  --secondary-dark: #362451;
  --secondary-new: #57bec7;
  --white: #fff;
  --black: #000;
  --error: #e32d2d;
  --warning: #ebb300;
  --success: #a4dc02;
}

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

* {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

img,
picture,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition: none;
  }
}
body,
html {
  color: var(--blue-grey-600);
  font-family: "Nunito", system-ui;
  font-optical-sizing: auto;
  font-style: normal;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

header,
section,
footer {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.container {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1160px;
  padding: 0 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--blue-grey-800);
  display: block;
  line-height: 120%;
  width: 100%;
}

h1 {
  font-size: 60px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 52px;
}

h3 {
  font-size: 48px;
}
@media (max-width: 768px) {
  h3 {
    font-size: 40px;
  }
}

h4 {
  font-size: 32px;
}
@media (max-width: 768px) {
  h4 {
    font-size: 24px;
  }
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 16px;
}

.btn {
  align-items: center;
  background: var(--secondary-medium);
  border: 1px solid var(--secondary-medium);
  border-radius: 10px;
  color: var(--white);
  display: flex;
  justify-content: center;
  min-width: 140px;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 20px;
  text-align: center;
  transition: all linear 0.25;
}
.btn:hover {
  background: var(--secondary-light);
  border: 1px solid var(--secondary-light);
}
.btn:active {
  background: var(--secondary-dark);
  border: 1px solid var(--secondary-dark);
}
.btn.outline {
  background: none;
  color: var(--secondary-medium);
}
.btn.outline:hover {
  background: var(--blue-grey-50);
  border: 1px solid var(--secondary-medium);
  color: var(--secondary-medium);
}
.btn.outline:active {
  background: var(--secondary-dark);
  border: 1px solid var(--secondary-medium);
  color: var(--white);
}

header {
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(60px);
          backdrop-filter: blur(60px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  left: 0;
  padding: 16px 0;
  position: fixed;
  top: 0;
  transition: all linear 0.25s;
  width: 100%;
  z-index: 9;
}
header .container {
  justify-content: space-between;
}
header img {
  position: relative;
  z-index: 5;
}
header nav {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  transition: all linear 0.25s;
}
@media (max-width: 768px) {
  header nav {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    transform: translateX(-100vw);
    width: 100vw;
    z-index: 5;
  }
}
header nav ul {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
}
header nav ul li {
  display: block;
  margin: 0 0 0 20px;
}
@media (max-width: 768px) {
  header nav ul li {
    margin: 15px 0;
  }
}
header nav ul li a {
  color: var(--primary);
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin: 0 15px;
}
header nav ul li a:hover {
  color: var(--primary-dark);
}
header nav ul li a:active {
  color: var(--primary-medium);
}
header nav ul li a.btn {
  background: none;
  border-color: var(--primary);
  color: var(--primary);
}
header nav ul li a.btn:hover {
  background: var(--primary);
  color: var(--white);
}
header nav ul li a.btn:active {
  background: var(--primary-dark);
  color: var(--white);
}
@media (max-width: 768px) {
  header nav ul li a {
    font-size: 24px;
  }
}
header #menu-hamburguer {
  cursor: pointer;
  display: none;
  position: fixed;
  right: 21px;
  top: 30px;
  width: 30px;
  z-index: 5;
}
@media (max-width: 768px) {
  header #menu-hamburguer {
    display: block;
  }
}
header #menu-hamburguer span {
  background: var(--primary);
  display: block;
  height: 3px;
  transition: all linear 0.15s;
  width: 100%;
}
header #menu-hamburguer span:not(:first-child) {
  margin: 5px 0 0;
}
header.active {
  height: 100%;
}
header.active nav {
  transform: translateX(0vw);
}

#hero {
  align-items: center;
  background: url(../img/hero.png) 0 0 no-repeat;
  background-size: cover;
  min-height: 100vh;
  padding-top: 82px;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    min-height: auto;
    padding-bottom: 32px;
  }
}
#hero:before {
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  display: block;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
#hero .container {
  position: relative;
  z-index: 3;
}
#hero h1 {
  color: var(--white);
}
#hero h1 span {
  color: var(--primary);
}
#hero p {
  color: var(--white);
  font-size: 24px;
  margin: 16px 0 40px;
}
#hero .buttons {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  #hero .buttons {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 768px) {
  #hero .buttons .btn {
    width: 100%;
  }
}
#hero .buttons .btn.outline {
  background: none;
  border-color: var(--white);
  color: var(--white);
}
#hero .buttons .btn.outline:hover {
  background: var(--white);
  border-color: var(--secondary-medium);
  color: var(--secondary-medium);
}
#hero .bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 150px;
  width: 100%;
}
@media (max-width: 768px) {
  #hero .bottom {
    flex-direction: column;
    margin-top: 80px;
  }
}
#hero .bottom p {
  margin: 0;
  max-width: 490px;
  width: 100%;
}
#hero .bottom h3 {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-wrap: nowrap;
  width: auto;
}
@media (max-width: 768px) {
  #hero .bottom h3 {
    margin-top: 20px;
    width: 100%;
  }
}
#hero .bottom h3 span {
  color: var(--primary-medium);
  margin-left: 5px;
}

#solutions {
  background: var(--blue-grey-50);
  padding-top: 80px;
}
@media (max-width: 768px) {
  #solutions {
    padding-top: 60px;
  }
}
#solutions h5 {
  color: var(--blue-grey-400);
  margin-bottom: 24px;
  text-align: center;
}
#solutions .item {
  align-items: flex-start;
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: space-between;
  padding: 60px 0;
}
@media (max-width: 768px) {
  #solutions .item {
    align-items: center;
    flex-direction: column;
  }
}
#solutions .item .text {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
}
#solutions .item .text h1 {
  color: var(--primary-dark);
}
#solutions .item .text h4 {
  font-weight: normal;
}
@media (max-width: 768px) {
  #solutions .item .text .btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #solutions .item.right {
    flex-direction: column-reverse;
  }
}
#solutions .boxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(202px, 1fr));
  gap: 24px;
  margin: 20px 0;
  width: 100%;
}
#solutions .boxes > div {
  background-color: var(--primary-light);
  border-radius: 24px;
  display: block;
  padding: 24px;
}
@media (max-width: 768px) {
  #solutions .boxes > div {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
#solutions .boxes > div img {
  margin-bottom: 16px;
}
#solutions .boxes > div h5 {
  text-align: left;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  #solutions .boxes > div h5 {
    text-align: center;
  }
}

#advantages {
  padding: 60px 0;
}
#advantages .container {
  align-items: center;
  flex-wrap: nowrap;
  gap: 40px;
}
#advantages .img {
  display: block;
  height: 340px;
  position: relative;
  width: 270px;
}
#advantages .img img {
  display: block;
  height: 512px;
  left: -128px;
  max-width: 512px;
  position: absolute;
  top: -60px;
  width: 512px;
}
#advantages .text h4 {
  margin-bottom: 40px;
}
#advantages .text ul {
  display: grid;
  grid-template-columns: auto auto;
  gap: 30px;
}
@media (max-width: 768px) {
  #advantages .text ul {
    grid-template-columns: auto;
  }
}
#advantages .text ul li {
  align-items: center;
  display: flex;
  font-size: 24px;
  justify-content: flex-start;
}
#advantages .text ul li i {
  background: linear-gradient(to right, #367bf6, #5fb4f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  height: 40px;
  font-size: 35px;
  line-height: 40px;
  margin-right: 26px;
  width: 40px;
}

#tools {
  padding: 35px 0 100px;
}
#tools h5 {
  border-bottom: 4px solid var(--primary-medium);
  color: var(--blue-grey-400);
  display: block;
  margin-bottom: 24px;
  padding-bottom: 24px;
  text-align: center;
  width: 100%;
}
#tools .item {
  align-items: center;
  display: flex;
  gap: 70px;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  #tools .item {
    flex-direction: column;
  }
}
#tools .item .text {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#tools .item .text h1 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}
#tools .item .text p {
  display: block;
  margin-bottom: 24px;
}
#tools .item .text p span,
#tools .item .text p a {
  color: var(--blue-grey-600);
  font-weight: bold;
}
#tools .item .btn {
  margin-top: 14px;
}
@media (max-width: 768px) {
  #tools .item .btn {
    width: 100%;
  }
}
#tools .right {
  border-top: 1px solid var(--blue-grey-200);
  margin-top: 80px;
  padding-top: 80px;
}
@media (max-width: 768px) {
  #tools .right {
    flex-direction: column-reverse;
  }
}
#tools .right .img {
  display: block;
  min-width: 390px;
  position: relative;
}
#tools .right .img span {
  align-items: center;
  -webkit-backdrop-filter: blur(9.1056880951px);
          backdrop-filter: blur(9.1056880951px);
  background: var(--white);
  border-radius: 10px;
  border: 1.138px solid rgba(212, 233, 250, 0.5);
  bottom: -30px;
  box-shadow: 0px 18.211px 18.211px 0px rgba(0, 0, 0, 0.06);
  display: flex;
  height: 60px;
  justify-content: center;
  position: absolute;
  right: 0px;
  width: 60px;
}
#tools .line {
  align-items: center;
  display: flex;
  height: 60px;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  width: 100%;
}
#tools .line::before {
  background: linear-gradient(to right, #367bf6, #5fb4f9);
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  top: 28px;
  width: 100%;
}
#tools .line span {
  align-items: center;
  border-radius: 10px;
  border: 1.138px solid rgba(212, 233, 250, 0.5);
  background: var(--white);
  box-shadow: 0px 18.211px 18.211px 0px rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(9.1056880951px);
          backdrop-filter: blur(9.1056880951px);
  display: flex;
  height: 60px;
  justify-content: center;
  position: relative;
  width: 60px;
}

#about {
  background: rgba(212, 233, 250, 0.3);
  padding: 95px 0;
}
#about .container {
  align-items: center;
  justify-content: space-between;
}
#about .container .right {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 552px;
  width: 100%;
}
#about .container .right h3 {
  margin-bottom: 40px;
}
#about .container .right p {
  margin-bottom: 20px;
}
#about .container .right a {
  margin-top: 20px;
}
@media (max-width: 768px) {
  #about .container .right a {
    width: 100%;
  }
}

#transform {
  background: url(../img/bg-transform.jpg) center center no-repeat;
  padding: 70px 0;
  position: relative;
}
#transform:before {
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
#transform .container {
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
#transform .container h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}
#transform .container p {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 442px;
  width: 100%;
}

#carrer {
  padding: 70px 0;
}
#carrer .container {
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #carrer .container {
    gap: 32px;
  }
}
#carrer .container .left {
  max-width: 614px;
  width: 100%;
}
#carrer .container .left h3 {
  margin-bottom: 30px;
}
#carrer .container .left p {
  font-size: 16px;
  margin-bottom: 20px;
}
#carrer .container .left .buttons {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  #carrer .container .left .buttons {
    flex-direction: column;
  }
  #carrer .container .left .buttons a {
    width: 100%;
  }
}

#cases {
  background: rgba(237, 239, 241, 0.5);
  overflow: visible;
  padding: 80px 0;
}
#cases .top {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 82px;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  #cases .top {
    flex-direction: column;
  }
}
#cases .top div {
  display: block;
  min-width: 165px;
}
#cases .top div h2 {
  font-weight: 400;
  margin-bottom: 26px;
}
#cases .top div p {
  color: var(--blue-grey-600);
  display: block;
  font-size: 18px;
  line-height: 18px;
}
#cases .top ul {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 0;
  justify-content: flex-start;
}
#cases .top ul li {
  color: var(--blue-grey-600);
  display: block;
  font-size: 18px;
  max-width: 340px;
  width: 100%;
}
#cases .top img {
  position: absolute;
  right: -70px;
  top: -70px;
}
@media (max-width: 768px) {
  #cases .top img {
    align-self: center;
    position: static;
  }
}
#cases .comments {
  align-items: flex-start;
  display: flex;
  gap: 95px;
  justify-content: space-between;
  margin-bottom: 45px;
  width: 100%;
}
@media (max-width: 768px) {
  #cases .comments {
    align-items: center;
    flex-direction: column;
  }
}
#cases .comments .comments-container {
  display: block;
  max-width: 553px;
  position: relative;
  width: 100%;
}
#cases .comments .comments-container .slick-prev,
#cases .comments .comments-container .slick-next {
  height: 24px;
  top: 0;
  right: 0;
  transform: translate(0, 0);
  width: 24px;
  z-index: 2;
}
#cases .comments .comments-container .slick-prev:before,
#cases .comments .comments-container .slick-next:before {
  color: var(--blue-grey-200);
  font-size: 24px;
}
#cases .comments .comments-container .slick-prev:hover:before,
#cases .comments .comments-container .slick-next:hover:before {
  color: var(--primary);
}
#cases .comments .comments-container .slick-prev {
  left: auto;
  right: 30px;
}
#cases .comments .comments-container div h5 {
  color: var(--blue-grey-800);
  font-weight: 600;
  margin-bottom: 20px;
}
#cases .comments .comments-container div p {
  color: var(--blue-grey-400);
  display: block;
  font-size: 20px;
  margin-bottom: 40px;
}
#cases .comments .comments-container div .user {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  padding-bottom: 10px;
}
#cases .comments .comments-container div .user .photo {
  display: block;
  height: 72px;
  margin-right: 25px;
  width: 72px;
}
#cases .comments .comments-container div .user .photo img {
  border-radius: 50%;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
  display: block;
  height: 72px;
  width: 72px;
}
#cases .comments .comments-container div .user p {
  align-items: flex-start;
  color: var(--blue-grey-800);
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-weight: 600;
  justify-content: flex-start;
  margin: 0;
}
#cases .comments .comments-container div .user p small {
  font-size: 14px;
}
#cases .rate {
  align-items: center;
  border-radius: 9.106px;
  border: 1.138px solid rgba(212, 233, 250, 0.5);
  background: linear-gradient(95deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.64) 100%);
  bottom: -78px;
  box-shadow: 0px 18.211px 18.211px 0px rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(9.1056880951px);
          backdrop-filter: blur(9.1056880951px);
  display: flex;
  height: 155px;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  padding: 24px;
  position: absolute;
  text-align: center;
  width: 275px;
}
#cases .rate .star {
  align-items: center;
  display: flex;
  justify-content: center;
}
#cases .rate .star i {
  color: var(--warning);
  margin-left: 10px;
}
#cases .rate p {
  font-size: 13px;
}
#cases .rate img {
  display: block;
  width: 55px;
}

#customers {
  padding: 135px 0 60px;
}
#customers h2 {
  color: var(--blue-grey-800);
  text-align: center;
}
#customers h5 {
  color: var(--blue-grey-600);
  text-align: center;
}
#customers .logos {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
#customers .logos .logos-track {
  animation: scroll 40s linear infinite;
  display: flex;
  gap: 60px;
  width: 6300px;
}
#customers .logos span {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 120px;
  transition: all linear 0.25s;
  width: 180px;
}
#customers .logos span:nth-child(1) {
  background-image: url(../img/logos/solides-off.png);
}
#customers .logos span:nth-child(1):hover {
  background-image: url(../img/logos/solides.png);
}
#customers .logos span:nth-child(2) {
  background-image: url(../img/logos/track-off.png);
}
#customers .logos span:nth-child(2):hover {
  background-image: url(../img/logos/track.png);
}
#customers .logos span:nth-child(3) {
  background-image: url(../img/logos/ambipar-off.png);
}
#customers .logos span:nth-child(3):hover {
  background-image: url(../img/logos/ambipar.png);
}
#customers .logos span:nth-child(4) {
  background-image: url(../img/logos/locaweb-off.png);
}
#customers .logos span:nth-child(4):hover {
  background-image: url(../img/logos/locaweb.png);
}
#customers .logos span:nth-child(5) {
  background-image: url(../img/logos/vindi-off.png);
}
#customers .logos span:nth-child(5):hover {
  background-image: url(../img/logos/vindi.png);
}
#customers .logos span:nth-child(6) {
  background-image: url(../img/logos/voltalia-off.png);
}
#customers .logos span:nth-child(6):hover {
  background-image: url(../img/logos/voltalia.png);
}
#customers .logos span:nth-child(7) {
  background-image: url(../img/logos/taua-off.png);
}
#customers .logos span:nth-child(7):hover {
  background-image: url(../img/logos/taua.png);
}
#customers .logos span:nth-child(8) {
  background-image: url(../img/logos/raro-off.png);
}
#customers .logos span:nth-child(8):hover {
  background-image: url(../img/logos/raro.png);
}
#customers .logos span:nth-child(9) {
  background-image: url(../img/logos/bamaq-off.png);
}
#customers .logos span:nth-child(9):hover {
  background-image: url(../img/logos/bamaq.png);
}
#customers .logos span:nth-child(10) {
  background-image: url(../img/logos/meu-tudo-off.png);
}
#customers .logos span:nth-child(10):hover {
  background-image: url(../img/logos/meu-tudo.png);
}
#customers .logos span:nth-child(11) {
  background-image: url(../img/logos/clara-net-off.png);
}
#customers .logos span:nth-child(11):hover {
  background-image: url(../img/logos/clara-net.png);
}
#customers .logos span:nth-child(12) {
  background-image: url(../img/logos/butantan-off.png);
}
#customers .logos span:nth-child(12):hover {
  background-image: url(../img/logos/butantan.png);
}
#customers .logos span:nth-child(13) {
  background-image: url(../img/logos/sympla-off.png);
}
#customers .logos span:nth-child(13):hover {
  background-image: url(../img/logos/sympla.png);
}
#customers .logos span:nth-child(14) {
  background-image: url(../img/logos/superlogica-off.png);
}
#customers .logos span:nth-child(14):hover {
  background-image: url(../img/logos/superlogica.png);
}
#customers .logos span:nth-child(15) {
  background-image: url(../img/logos/solides-off.png);
}
#customers .logos span:nth-child(15):hover {
  background-image: url(../img/logos/solides.png);
}
#customers .logos span:nth-child(16) {
  background-image: url(../img/logos/track-off.png);
}
#customers .logos span:nth-child(16):hover {
  background-image: url(../img/logos/track.png);
}
#customers .logos span:nth-child(17) {
  background-image: url(../img/logos/ambipar-off.png);
}
#customers .logos span:nth-child(17):hover {
  background-image: url(../img/logos/ambipar.png);
}
#customers .logos span:nth-child(18) {
  background-image: url(../img/logos/locaweb-off.png);
}
#customers .logos span:nth-child(18):hover {
  background-image: url(../img/logos/locaweb.png);
}
#customers .logos span:nth-child(19) {
  background-image: url(../img/logos/vindi-off.png);
}
#customers .logos span:nth-child(19):hover {
  background-image: url(../img/logos/vindi.png);
}
#customers .logos span:nth-child(20) {
  background-image: url(../img/logos/voltalia-off.png);
}
#customers .logos span:nth-child(20):hover {
  background-image: url(../img/logos/voltalia.png);
}
#customers .logos span:nth-child(21) {
  background-image: url(../img/logos/taua-off.png);
}
#customers .logos span:nth-child(21):hover {
  background-image: url(../img/logos/taua.png);
}
#customers .logos span:nth-child(22) {
  background-image: url(../img/logos/raro-off.png);
}
#customers .logos span:nth-child(22):hover {
  background-image: url(../img/logos/raro.png);
}
#customers .logos span:nth-child(23) {
  background-image: url(../img/logos/bamaq-off.png);
}
#customers .logos span:nth-child(23):hover {
  background-image: url(../img/logos/bamaq.png);
}
#customers .logos span:nth-child(24) {
  background-image: url(../img/logos/meu-tudo-off.png);
}
#customers .logos span:nth-child(24):hover {
  background-image: url(../img/logos/meu-tudo.png);
}
#customers .logos span:nth-child(25) {
  background-image: url(../img/logos/clara-net-off.png);
}
#customers .logos span:nth-child(25):hover {
  background-image: url(../img/logos/clara-net.png);
}
#customers .logos span:nth-child(26) {
  background-image: url(../img/logos/butantan-off.png);
}
#customers .logos span:nth-child(26):hover {
  background-image: url(../img/logos/butantan.png);
}
#customers .logos span:nth-child(27) {
  background-image: url(../img/logos/sympla-off.png);
}
#customers .logos span:nth-child(27):hover {
  background-image: url(../img/logos/sympla.png);
}
#customers .logos span:nth-child(28) {
  background-image: url(../img/logos/superlogica-off.png);
}
#customers .logos span:nth-child(28):hover {
  background-image: url(../img/logos/superlogica.png);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2520px);
  }
}

#contact {
  background: url(../img/bg-contact.jpg) lightgray 50%/cover no-repeat;
  padding: 90px 0;
}
#contact::before {
  background: linear-gradient(179deg, #00c8cc -3.72%, #008487 106.5%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  width: 100%;
}
#contact .container {
  gap: 32px;
  justify-content: space-between;
  z-index: 2;
}
#contact .container .left {
  align-items: flex-start;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  max-width: 664px;
  width: 100%;
}
#contact .container .left h3,
#contact .container .left h6 {
  color: var(--white);
}
#contact .container .left ul {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}
#contact .container .left ul li {
  display: flex;
  width: 100%;
}
#contact .container .left ul li i {
  margin-right: 24px;
}
#contact .container .left ul li a {
  color: var(--white);
}
#contact .container form {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 360px;
  width: 100%;
}
@media (max-width: 768px) {
  #contact .container form {
    max-width: 100%;
  }
}
#contact .container form input,
#contact .container form textarea {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--blue-grey-200);
  color: var(--blue-grey-800);
  display: block;
  font-size: 16px;
  outline: none;
  padding: 10px 20px;
  width: 100%;
}
#contact .container form input::-moz-placeholder, #contact .container form textarea::-moz-placeholder {
  color: var(--blue-grey-500);
}
#contact .container form input::placeholder,
#contact .container form textarea::placeholder {
  color: var(--blue-grey-500);
}
#contact .container form input:focus,
#contact .container form textarea:focus {
  border: 1px solid var(--blue-grey-800);
}
#contact .container form textarea {
  height: 100px;
}
#contact .container form .form-bottom {
  display: block;
  width: 100%;
}
#contact .container form .form-bottom button {
  align-items: center;
  background: none;
  border-radius: 10px;
  border: 1px solid var(--white);
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  padding: 15px 20px;
  transition: all linear 0.25;
  width: 100%;
}
#contact .container form .form-bottom button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
#contact .container form .form-bottom button .loading {
  display: none;
  height: 30px;
  margin-left: 5px;
}
#contact .container form .form-bottom button .loading img {
  height: 100%;
}
#contact .container form .form-bottom #retornoHTML {
  color: var(--white);
  display: block;
  margin-top: 10px;
  text-align: center;
}

footer {
  background: var(--blue-grey-700);
  padding: 50px 0 0;
}
footer h4 {
  color: var(--white);
}
footer .links {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  footer .links {
    flex-direction: column;
  }
}
footer ul {
  display: block;
  width: 265px;
}
footer ul li {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}
footer ul li i {
  color: var(--secondary-new);
  display: block;
  margin-right: 10px;
  min-height: 16px;
  min-width: 16px;
}
footer ul li a,
footer ul li p {
  color: var(--white);
  font-size: 16px;
}
footer ul li a:hover {
  color: var(--primary);
}
footer ul li a:active {
  color: var(--primary-dark);
}
footer .last p {
  color: var(--blue-grey-300);
  font-size: 12px;
}
footer .last a {
  font-size: 14px;
}
footer .copy {
  align-items: center;
  background: var(--blue-grey-800);
  display: flex;
  color: var(--blue-grey-200);
  font-size: 12px;
  height: 32px;
  justify-content: center;
  line-height: 18px;
  margin-top: 50px;
  text-align: center;
  width: 100%;
}

#main-about {
  background-color: var(--blue-grey-50);
  background-image: url(../img/main-about.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  #main-about {
    background-image: url(../img/main-about-mobile.png);
  }
}
#main-about #about-us {
  margin-bottom: 60px;
}
#main-about #about-us .title {
  margin: 165px 0 80px;
  text-align: center;
  width: 100%;
}
#main-about #about-us .title p {
  color: var(--white);
}
#main-about #about-us .title h3 {
  color: var(--primary);
}
#main-about .content {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
@media (max-width: 768px) {
  #main-about .content {
    flex-direction: column-reverse;
  }
}
#main-about .content .box {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  #main-about .content .box {
    padding: 20px;
  }
}
#main-about .content .left {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: flex-start;
  max-width: 360px;
  width: 100%;
}
@media (max-width: 768px) {
  #main-about .content .left {
    max-width: 100%;
  }
}
#main-about .content .left ul {
  display: block;
  width: 100%;
}
#main-about .content .left ul li {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}
#main-about .content .left ul li i {
  color: var(--secondary-new);
  display: block;
  margin-right: 10px;
  min-height: 16px;
  min-width: 16px;
}
#main-about .content .left ul li a,
#main-about .content .left ul li p {
  color: var(--blue-grey-600);
  font-size: 16px;
}
#main-about .content .right {
  width: 100%;
}
#main-about .content .right .box {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
}
#main-about .content .right h4 {
  color: var(--primary-dark);
}
#main-about .content .right .btn {
  margin: 0 auto;
}

#main-hire {
  background-color: var(--blue-grey-50);
  background-image: url(../img/contratar.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  #main-hire {
    background-image: url(../img/contratar-mobile.png);
  }
}
#main-hire #hire .container {
  flex-direction: column;
}
#main-hire #hire .title {
  margin: 165px auto 80px;
  max-width: 625px;
  text-align: center;
  width: 100%;
}
#main-hire #hire .title p {
  color: var(--white);
}
#main-hire #hire .title h3 {
  color: var(--primary);
}
#main-hire #hire .box {
  background-color: var(--white);
  border-radius: 20px;
  display: block;
  justify-content: flex-start;
  margin: 0 auto 80px;
  max-width: 552px;
  padding: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  #main-hire #hire .box {
    padding: 20px;
  }
}
#main-hire #hire .box form {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: flex-start;
  width: 100%;
}
#main-hire #hire .box form .two-columns {
  align-items: flex-start;
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  width: 100%;
}
#main-hire #hire .box form input,
#main-hire #hire .box form textarea {
  align-items: center;
  border: 1px solid var(--blue-grey-200);
  border-radius: 10px;
  color: var(--blue-grey-600);
  display: flex;
  font-size: 16px;
  height: 40px;
  padding: 10px 20px;
  width: 100%;
}
#main-hire #hire .box form textarea {
  height: 160px;
}
#main-hire #hire .box form .form-bottom {
  display: block;
  width: 100%;
}
#main-hire #hire .box form .form-bottom button {
  width: 100%;
}
#main-hire #hire .box form .form-bottom button .loading {
  display: none;
  height: 30px;
  margin-left: 5px;
}
#main-hire #hire .box form .form-bottom button .loading img {
  height: 100%;
}
#main-hire #hire .box form .form-bottom #retornoHTML {
  color: var(--blue-grey-600);
  display: block;
  margin-top: 10px;
  text-align: center;
}/*# sourceMappingURL=styles.css.map */