:root {
  --green: #1db770;
  --yellow: #fbc61d;
  --dark-green: #327a41;
  --white: #fff;
  --light-grey: #f2f2f2;
  --dark-grey: #252525;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Thin 100 */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

/* ExtraLight 200 */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}

/* Light 300 */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

/* Regular 400 */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

/* Medium 500 */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

/* SemiBold 600 */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

/* Bold 700 */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

/* ExtraBold 800 */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}

/* Black 900 */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--white);
  color: var(--dark-grey);
  width: 100vw;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin-bottom: 0 !important;
}
img {
  max-width: 100%;
}
.header {
  background-image: url("../images/hero-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 98%;
  border-radius: 0 0 90px 0;
}
.navbar-nav {
  gap: 54px;
}
.navbar-nav.login {
  gap: 16px;
}
.navbar-brand {
  margin-right: 46px;
}
.navbar-brand img {
  width: 250px;
}
.nav-link {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  white-space: nowrap;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: all ease-in-out 0.5s;
  &:hover {
    color: var(--white);
    border-bottom: 1px solid var(--white);
  }
}
.nav-login {
  display: flex;
  gap: 10px;
  align-items: center;
  /* margin-left: 100px; */
}
.nav-demonstracao {
  padding: 22px 30px 22px 30px !important;
  border-radius: 90px;
  border: 1px solid var(--white);
}
.hero {
  /* padding-top: 119px; */
  padding-bottom: 145px;
}
.hero h1 {
  padding-top: 119px;
  font-size: 65px;
  font-weight: 600;
  line-height: 65px;
  color: var(--white);
  padding-bottom: 38px;
}
.hero p {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: #affed9;
}
.hero-img {
  position: absolute;
  top: 0;
  width: 702px;
  max-width: 702px;
  margin-bottom: -50px;
}
.demonstracao-btn {
  background: linear-gradient(90deg, #fbc61d, #f4f818);
  padding: 22px 30px 22px 30px;
  max-width: 304px;
  border-radius: 90px;
  border: 1px solid #1db770;
  box-shadow: 0px 10px 27.8px 0px #128b53;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  color: var(--dark-green);
}
.subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #aaaaaa;
}
.mb-29 {
  margin-bottom: 29px !important;
}
.quem-somos h2 {
  font-size: 65px;
  font-weight: 600;
  line-height: 65px;
  color: var(--green);
}
.quem-somos p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #3b3b3b;
  max-width: 561px;
}
.diferenciais {
  background-image: url("../images/diferenciais-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  max-width: 98%;
  /* height: 345px; */
  min-height: fit-content;
  margin-left: 0;
  position: relative;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 217px;
    height: 300px;
    background-image: url("../images/detalhes.svg");
    background-size: contain;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
  }
}
.diferenciais h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  color: var(--white);
  margin-bottom: 21px;
  position: relative;
  z-index: 2;
  &::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: -10px;
    left: -40px;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background-color: #15a462;
  }
}
.diferenciais p {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: #ffffffb2;
}
.servicos h2 {
  font-size: 65px;
  font-weight: 600;
  line-height: 65px;
  color: var(--green);
}
.servicos p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #3b3b3b;
}
.servicos .card {
  border-radius: 10px;
  border: 1px solid #c1c1c1;
  height: 464px;
  padding: 32px 25px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 13px;
  overflow: hidden;
  z-index: 1;
}
.servicos .card .card-background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: filter 0.5s ease, transform 0.5s ease;
  z-index: -1;
}
.servicos .card-1 .card-background {
  background-image: url("../images/card-1-bg.jpg");
}
.servicos .card-2 .card-background {
  background-image: url("../images/card-2-bg.jpg");
}
.servicos .card-3 .card-background {
  background-image: url("../images/card-3-bg.jpg");
}
.servicos .card-1:hover .card-background,
.servicos .card-2:hover .card-background,
.servicos .card-3:hover .card-background {
  filter: brightness(0.7);
  transform: scale(1.2);
}
.servicos .card i {
  position: absolute;
  top: 32px;
  right: 25px;
  padding: 15.5px 14px;
  border-radius: 50%;
  color: var(--white);
  border: 2px solid var(--white);
  display: inline-flex;
  justify-content: center;
  background: transparent;
  &::before {
    width: 18px;
    height: 15px;
  }
}
.servicos .card .line-yellow {
  max-width: 116px;
  height: 3px;
}
.servicos .card h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  color: var(--white);
}
.servicos .card p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: var(--white);
  padding-right: 25px;
  position: absolute;
  bottom: -50px;
  opacity: 0;
}
.integracoes {
  background-color: #1db7700d;
}
.integracoes .container {
  border-radius: 20px;
  border: 1px solid #d4d4d4;
  background-color: var(--white);
}
.integracoes h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 65px;
  color: var(--green);
  margin-bottom: 0 !important;
}
.integracoes img {
  margin: auto;
  display: block;
  max-width: 200px;
  filter: grayscale(100%);
}
.planos h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 65px;
  color: var(--green);
}
.planos .card {
  height: 100%;
  border-radius: 10px;
  border: 1px solid #d4d4d4;
  background-color: #f9f9f9;
  overflow: hidden;
}
.planos .card .card-header {
  background-color: var(--white);
  padding: 23px 31px;
  height: 151px;
}
.planos .card .card-header h4 {
  font-size: 35px;
  font-weight: 600;
  line-height: 52.5px;
  color: var(--dark-grey);
}
.planos .card .card-header span {
  font-size: 13px;
  font-weight: 600;
  line-height: 19.5px;
  color: var(--white);
  background-color: var(--green);
  border-radius: 90px;
  padding: 5px 20px;
}
.planos .card .card-header p {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #25252599;
}
.planos .card .card-body {
  padding: 23px 31px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.planos .card .card-body h4 {
  font-size: 50px;
  font-weight: 600;
  line-height: 75px;
  color: var(--dark-grey);
}
.planos .card .card-body span {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  color: #2525254d;
}
.plano-btn {
  padding: 22px 30px;
  background-color: var(--green);
  border-radius: 90px;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--white);
  text-align: center;
}
.planos .card .card-body ul {
  list-style-type: none;
}
.planos .card .card-body li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  color: var(--dark-grey);
  margin-bottom: 21px;
}
.color-dark-green {
  color: var(--dark-green) !important;
}
.border-green {
  border: 1px solid var(--green) !important;
}
.body-green {
  background-color: #1db7701a !important;
}
.cta-demonstracao {
  border-radius: 20px;
  border: 1px solid #d4d4d4;
  background-color: var(--green);
  position: relative;
  z-index: 1;
  &::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 255px;
    height: 189px;
    z-index: -1;
    background-image: url("../images/cta-demonstracao.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.cta-demonstracao h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
  color: var(--white);
}
.cta-demonstracao p {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: #affed9;
}
footer {
  background-color: var(--green);
}
footer p {
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  opacity: 0.6;
  color: var(--white);
}
footer .social-btn {
  font-size: 30px;
  font-weight: 400;
  line-height: 70px;
  color: var(--white);
}
footer .line-yellow {
  height: 3px;
}

/* media query */
@media (min-width: 1400px) {
  .container {
    max-width: 1500px;
  }
}
@media (max-width: 1400px) {
  .hero-img {
    position: relative;
    width: 500px;
    margin-bottom: 0px;
  }
  .servicos .card h3 {
    font-size: 23px;
  }
  .servicos .card p {
    line-height: 23px;
  }
}
@media (max-width: 1199px) {
  .hero-img {
    width: 100%;
  }
  .navbar-brand {
    margin-right: 10px;
  }
}
@media (max-width: 991px) {
  .hero h1 {
    padding-top: 40px;
  }
  .hero {
    padding-bottom: 0px;
  }
  .navbar-nav {
    gap: 0.5rem;
  }
}
