: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: #00bf62;
  --primary-light: #cdffe6;
  --primary-medium: #44d48e;
  --primary-dark: #008c48;
  --primary-dark2: #00381d;
  --primary-dark3: #005f31;
  --secondary-light: #fbdd59;
  --secondary-medium: #bfa844;
  --secondary-dark: #4d431b;
  --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-light);
  border: 1px solid var(--secondary-light);
  border-radius: 10px;
  color: var(--blue-grey-800);
  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.25s;
}
.btn:hover {
  background: var(--secondary-medium);
  border: 1px solid var(--secondary-medium);
}
.btn:active {
  background: var(--secondary-dark);
  border: 1px solid var(--secondary-dark);
  color: var(--white);
}
.btn.outline {
  background: none;
  border-color: var(--primary-medium);
  color: var(--primary-dark);
}
.btn.outline:hover {
  background: var(--blue-grey-50);
  border: 1px solid var(--primary-medium);
  color: var(--primary-medium);
}
.btn.outline:active {
  background: var(--primary-dark);
  border: 1px solid var(--primary-medium);
  color: var(--white);
}

header {
  background: var(--white);
  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 .logo {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
header .logo img {
  display: block;
  height: 48px;
  position: relative;
  z-index: 5;
}
header .logo span {
  color: var(--blue-grey-800);
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-left: 16px;
}
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-dark);
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin: 0 5px;
}
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-dark);
}
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);
}

main {
  display: block;
  margin-top: 80px;
}

#hero {
  background: url(../img/bg-hero.png) 0 0 no-repeat;
  background-size: cover;
  min-height: 720px;
  overflow: visible;
  padding-top: 80px;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    min-height: auto;
    padding: 40px 0 230px;
  }
}
#hero .container {
  position: relative;
  z-index: 3;
}
#hero h1 {
  color: var(--primary-light);
  font-size: 80px;
  font-weight: 100;
  margin-bottom: 16px;
  max-width: 860px;
  width: 100%;
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 48px;
  }
}
#hero h5 {
  color: var(--primary-light);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  max-width: 750px;
  width: 100%;
}
@media (max-width: 768px) {
  #hero h5 {
    font-size: 18px;
    font-weight: 400;
  }
}
#hero .buttons {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
}
@media (max-width: 768px) {
  #hero .buttons .btn {
    width: 100%;
  }
}
#hero .buttons .btn.outline {
  background: none;
  border-color: var(--primary-light);
  color: var(--white);
}
#hero .buttons .btn.outline:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}
#hero .effect {
  background: url(../img/bg-effect.png) right 0 no-repeat;
  bottom: -60px;
  display: block;
  height: 352px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  #hero .effect {
    align-items: center;
    background: var(--white);
    border-radius: 50%;
    bottom: -190px;
    display: flex;
    height: 380px;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
  }
}
#hero .effect:before {
  background: var(--white);
  bottom: 0;
  content: "";
  height: 64px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media (max-width: 768px) {
  #hero .effect:before {
    display: none;
  }
}
#hero .effect img {
  bottom: -156px;
  display: block;
  height: 466px;
  right: 192px;
  position: absolute;
  width: 466px;
}
@media (max-width: 768px) {
  #hero .effect img {
    height: 340px;
    margin: 0 0 -10px -10px;
    position: static;
    width: 340px;
  }
}

#solutions {
  padding: 75px 0 80px;
}
@media (max-width: 768px) {
  #solutions {
    padding: 230px 0 40px;
  }
}
#solutions .container {
  gap: 60px;
}
@media (max-width: 768px) {
  #solutions .container {
    gap: 40px;
  }
}
#solutions h4 {
  font-weight: 400;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  #solutions h4 {
    font-size: 32px;
  }
}
#solutions h5 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
#solutions p {
  color: var(--black);
}
#solutions .top {
  width: 50%;
}
@media (max-width: 768px) {
  #solutions .top {
    width: 100%;
  }
}
#solutions .row {
  align-self: center;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  #solutions .row {
    flex-direction: column;
  }
}
#solutions .row div {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#services {
  background: linear-gradient(to right, var(--primary-medium) 0%, var(--primary-medium) 30%, rgba(205, 255, 230, 0.5) 30%, rgba(205, 255, 230, 0.5) 100%);
  padding: 60px 0;
}
@media (max-width: 768px) {
  #services {
    background: linear-gradient(to top, var(--primary-medium) 0%, var(--primary-medium) 30%, rgba(205, 255, 230, 0.5) 30%, rgba(205, 255, 230, 0.5) 100%);
    padding: 40px 0;
  }
}
#services .container {
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  #services .container {
    flex-direction: column-reverse;
  }
}
#services .right {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#services .right h2 {
  color: var(--blue-grey-600);
  font-weight: 700;
}
@media (max-width: 768px) {
  #services .right h2 {
    font-size: 40px;
  }
}
#services .right h4 {
  font-weight: 400;
}
#services .right h5 {
  color: var(--primary-dark);
  font-weight: 600;
}
#services .right p {
  color: var(--black);
}
@media (max-width: 768px) {
  #services .right .btn {
    width: 100%;
  }
}

#squads {
  padding: 60px 0;
}
#squads .container {
  align-items: center;
  flex-direction: column;
}
#squads .top {
  align-items: center;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  margin-bottom: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  #squads .top {
    flex-direction: column;
  }
}
#squads .top div h3 {
  color: var(--blue-grey-600);
  margin-bottom: 16px;
}
#squads .top div p {
  color: var(--blue-grey-600);
  line-height: 24px;
}
#squads .top .buttons {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  #squads .top .buttons {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  #squads .top .buttons .btn {
    width: 100%;
  }
}
#squads h4 {
  color: var(--blue-grey-800);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
  text-align: center;
}
#squads .desc {
  color: var(--blue-grey-600);
  display: block;
  max-width: 780px;
  margin-bottom: 24px;
  text-align: center;
  width: 100%;
}
#squads .row {
  align-items: center;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  #squads .row {
    align-items: flex-start;
    flex-direction: column;
  }
}
#squads .row h3 {
  color: var(--primary-light);
  display: contents;
  font-weight: 700;
}
#squads .row span {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  text-align: left;
}
#squads .row span img {
  display: block;
  margin-right: 12px;
}
#squads .row span p {
  color: var(--blue-grey-600);
  font-size: 17px;
  max-width: 285px;
  width: 100%;
}
@media (max-width: 768px) {
  #squads .row span p {
    max-width: 100%;
  }
}

#execution {
  background-color: var(--blue-grey-50);
  background-image: url(../img/bg-execution.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}
#execution .container {
  align-items: center;
  flex-direction: column;
}
#execution .top {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
  padding: 24px;
  width: 100%;
}
#execution .top h3 {
  text-align: center;
}
#execution h4 {
  color: var(--blue-grey-800);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
  text-align: center;
}
#execution .desc {
  color: var(--blue-grey-600);
  display: block;
  max-width: 780px;
  margin-bottom: 24px;
  text-align: center;
  width: 100%;
}
#execution .row {
  align-items: center;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  #execution .row {
    align-items: flex-start;
    flex-direction: column;
  }
}
#execution .row h3 {
  color: var(--primary-light);
  display: contents;
  font-weight: 700;
}
#execution .row span {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  text-align: left;
}
#execution .row span img {
  display: block;
  margin-right: 12px;
}
#execution .row span p {
  color: var(--blue-grey-600);
  font-size: 20px;
  max-width: 285px;
  width: 100%;
}
@media (max-width: 768px) {
  #execution .row span p {
    max-width: 100%;
  }
}

#artificial {
  padding: 60px 0;
}
#artificial .top {
  align-items: center;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  margin-bottom: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  #artificial .top {
    flex-direction: column;
  }
}
#artificial .top span h3 {
  color: var(--blue-grey-600);
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  #artificial .top span h3 {
    font-size: 32px;
  }
}
#artificial .top span p {
  color: var(--blue-grey-600);
  line-height: 24px;
}
#artificial h4 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}
#artificial .row {
  align-items: center;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  #artificial .row {
    align-items: flex-start;
    flex-direction: column;
  }
}
#artificial .row span {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  text-align: left;
}
#artificial .row span img {
  display: block;
  margin-right: 12px;
}
#artificial .row span p {
  color: var(--blue-grey-600);
  font-size: 18px;
  line-height: 120%;
  max-width: 285px;
  width: 100%;
}
@media (max-width: 768px) {
  #artificial .row span p {
    max-width: 100%;
  }
}

#training {
  background-color: var(--blue-grey-800);
  background-image: url(../img/bg-training.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}
#training .container {
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
#training h5 {
  color: var(--primary-medium);
  font-weight: 600;
  text-align: center;
}
#training .boxes {
  align-items: center;
  display: flex;
  gap: 25px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #training .boxes {
    flex-direction: column;
    width: 100%;
  }
}
#training .boxes p {
  align-items: center;
  background: var(--blue-grey-50);
  border-radius: 40px;
  box-shadow: 4px 8px 16px 0px rgba(0, 0, 0, 0.4);
  color: var(--primary-dark);
  display: flex;
  font-family: Nunito;
  font-size: 32px;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  line-height: 150%;
  padding: 24px;
}
@media (max-width: 768px) {
  #training .boxes p {
    font-size: 24px;
    width: 100%;
  }
}
#training .desc {
  color: var(--blue-grey-200);
  display: block;
  max-width: 780px;
  text-align: center;
  width: 100%;
}
#training .row {
  align-items: center;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  #training .row {
    flex-direction: column;
  }
}
#training .row h3 {
  color: var(--primary-light);
  display: contents;
  font-weight: 700;
}
#training .row span {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  text-align: left;
}
@media (max-width: 768px) {
  #training .row span {
    width: 100%;
  }
}
#training .row span img {
  display: block;
  margin-right: 12px;
}
#training .row span p {
  color: var(--blue-grey-200);
  font-size: 20px;
  max-width: 285px;
  width: 100%;
}
@media (max-width: 768px) {
  #training .row span p {
    max-width: 100%;
  }
}

#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: 5400px;
}
#customers .logos span {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 120px;
  transition: all linear 0.25s;
  width: 180px;
}
#customers .logos span:nth-child(1) {
  background-image: url(../img/logos/nomade-off.png);
}
#customers .logos span:nth-child(1):hover {
  background-image: url(../img/logos/nomade.png);
}
#customers .logos span:nth-child(2) {
  background-image: url(../img/logos/usp-off.png);
}
#customers .logos span:nth-child(2):hover {
  background-image: url(../img/logos/usp.png);
}
#customers .logos span:nth-child(3) {
  background-image: url(../img/logos/petronas-off.png);
}
#customers .logos span:nth-child(3):hover {
  background-image: url(../img/logos/petronas.png);
}
#customers .logos span:nth-child(4) {
  background-image: url(../img/logos/gol-off.png);
}
#customers .logos span:nth-child(4):hover {
  background-image: url(../img/logos/gol.png);
}
#customers .logos span:nth-child(5) {
  background-image: url(../img/logos/claro-off.png);
}
#customers .logos span:nth-child(5):hover {
  background-image: url(../img/logos/claro.png);
}
#customers .logos span:nth-child(6) {
  background-image: url(../img/logos/kimberly-off.png);
}
#customers .logos span:nth-child(6):hover {
  background-image: url(../img/logos/kimberly.png);
}
#customers .logos span:nth-child(7) {
  background-image: url(../img/logos/omo-off.png);
}
#customers .logos span:nth-child(7):hover {
  background-image: url(../img/logos/omo.png);
}
#customers .logos span:nth-child(8) {
  background-image: url(../img/logos/ufmg-off.png);
}
#customers .logos span:nth-child(8):hover {
  background-image: url(../img/logos/ufmg.png);
}
#customers .logos span:nth-child(9) {
  background-image: url(../img/logos/locaweb-off.png);
}
#customers .logos span:nth-child(9):hover {
  background-image: url(../img/logos/locaweb.png);
}
#customers .logos span:nth-child(10) {
  background-image: url(../img/logos/wake-off.png);
}
#customers .logos span:nth-child(10):hover {
  background-image: url(../img/logos/wake.png);
}
#customers .logos span:nth-child(11) {
  background-image: url(../img/logos/gol-off.png);
}
#customers .logos span:nth-child(11):hover {
  background-image: url(../img/logos/gol.png);
}
#customers .logos span:nth-child(12) {
  background-image: url(../img/logos/nomade-off.png);
}
#customers .logos span:nth-child(12):hover {
  background-image: url(../img/logos/nomade.png);
}
#customers .logos span:nth-child(13) {
  background-image: url(../img/logos/usp-off.png);
}
#customers .logos span:nth-child(13):hover {
  background-image: url(../img/logos/usp.png);
}
#customers .logos span:nth-child(14) {
  background-image: url(../img/logos/petronas-off.png);
}
#customers .logos span:nth-child(14):hover {
  background-image: url(../img/logos/petronas.png);
}
#customers .logos span:nth-child(15) {
  background-image: url(../img/logos/gol-off.png);
}
#customers .logos span:nth-child(15):hover {
  background-image: url(../img/logos/gol.png);
}
#customers .logos span:nth-child(16) {
  background-image: url(../img/logos/claro-off.png);
}
#customers .logos span:nth-child(16):hover {
  background-image: url(../img/logos/claro.png);
}
#customers .logos span:nth-child(17) {
  background-image: url(../img/logos/kimberly-off.png);
}
#customers .logos span:nth-child(17):hover {
  background-image: url(../img/logos/kimberly.png);
}
#customers .logos span:nth-child(18) {
  background-image: url(../img/logos/omo-off.png);
}
#customers .logos span:nth-child(18):hover {
  background-image: url(../img/logos/omo.png);
}
#customers .logos span:nth-child(19) {
  background-image: url(../img/logos/ufmg-off.png);
}
#customers .logos span:nth-child(19):hover {
  background-image: url(../img/logos/ufmg.png);
}
#customers .logos span:nth-child(20) {
  background-image: url(../img/logos/locaweb-off.png);
}
#customers .logos span:nth-child(20):hover {
  background-image: url(../img/logos/locaweb.png);
}
#customers .logos span:nth-child(21) {
  background-image: url(../img/logos/wake-off.png);
}
#customers .logos span:nth-child(21):hover {
  background-image: url(../img/logos/wake.png);
}
#customers .logos span:nth-child(22) {
  background-image: url(../img/logos/gol-off.png);
}
#customers .logos span:nth-child(22):hover {
  background-image: url(../img/logos/gol.png);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1980px);
  }
}

#contact {
  background: url(../img/bg-contact.jpg) lightgray 50%/cover no-repeat;
  padding: 90px 0;
}
#contact .container {
  flex-wrap: nowrap;
  gap: 54px;
  justify-content: space-between;
  z-index: 2;
}
#contact .container .left {
  align-items: flex-start;
  color: var(--white);
  background: rgba(40, 50, 55, 0.5);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 648px;
  padding: 24px 40px;
  width: 100%;
}
#contact .container .left h3,
#contact .container .left h4,
#contact .container .left h6 {
  color: var(--primary-light);
}
#contact .container .left h3 {
  font-size: 36px;
  line-height: 42px;
}
#contact .container .left h4 {
  font-size: 24px;
  line-height: 28px;
}
#contact .container .left ul {
  align-items: center;
  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 {
  color: var(--secondary-light);
  margin-right: 14px;
}
#contact .container .left ul li a {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}
#contact .container form {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 478px;
  width: 100%;
}
@media (max-width: 768px) {
  #contact .container form {
    max-width: 100%;
  }
}
#contact .container form .row {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  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: var(--secondary-light);
  border: none;
  border-radius: 10px;
  color: var(--blue-grey-800);
  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: var(--secondary-medium);
}
#contact .container form .form-bottom button:active {
  background-color: var(--secondary-dark);
  color: var(--white);
}
#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-bottom: 10px;
  text-align: center;
}
#contact .container form .form-bottom .loading {
  color: var(--white);
  display: none;
  margin-bottom: 10px;
  text-align: center;
}

footer {
  background: var(--primary-dark3);
  padding: 50px 0 0;
}
footer .container {
  align-items: center;
  justify-content: space-between;
}
footer .left {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: flex-start;
}
footer .left img {
  display: block;
  height: 48px;
  width: 48px;
}
footer .left h5 {
  color: var(--primary-light);
}
footer ul {
  display: block;
  width: 265px;
}
footer ul li {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}
footer ul li svg {
  color: rgba(251, 221, 89, 0.25);
  display: block;
  height: 18px;
  margin-right: 10px;
  width: 12px;
}
footer ul li a,
footer ul li p {
  align-items: center;
  color: var(--white);
  display: flex;
  font-size: 16px;
  justify-content: flex-start;
}
footer ul li a:hover {
  color: var(--secondary-light);
}
footer ul li a:hover svg {
  color: var(--secondary-light);
}
footer .right p {
  color: var(--white);
  font-size: 12px;
}
footer .right a {
  font-size: 14px;
}
footer .social {
  align-items: center;
  border-top: 1px solid var(--primary);
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 40px;
  padding-top: 16px;
  width: 100%;
}
@media (max-width: 768px) {
  footer .social {
    flex-direction: column;
  }
}
footer .social a {
  align-items: center;
  color: var(--white);
  display: flex;
  justify-content: flex-start;
}
footer .social a img {
  display: block;
  margin-right: 5px;
}
footer .copy {
  align-items: center;
  background: var(--primary-dark2);
  display: flex;
  color: var(--primary-dark);
  font-size: 12px;
  height: 32px;
  justify-content: center;
  line-height: 18px;
  margin-top: 16px;
  text-align: center;
  width: 100%;
}/*# sourceMappingURL=styles.css.map */