: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: 45px;
  font-weight: 600;
  line-height: 45px;
  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: 46px;
  font-weight: 600;
  line-height: 46px;
  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: 26px;
  font-weight: 600;
  line-height: 28px;
  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: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #ffffffb2;
  max-width: 90%;
}
.servicos h2 {
  font-size: 46px;
  font-weight: 600;
  line-height: 46px;
  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: 30px;
  font-weight: 600;
  line-height: 35px;
  color: var(--green);
  margin: 40px 0;
}
/* Reset global (* { padding:0 }) sobrescreve Bootstrap — grid e btn-group dos planos */
.planos #landing-plans-grid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1rem;
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
}
.planos #landing-plans-grid > [class*="col-"] {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.planos .lp-billing-toggle .btn-group {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: stretch;
}
.planos .lp-billing-toggle .btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.planos .lp-billing-toggle .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid var(--green);
  color: var(--green);
  background-color: var(--white);
}
.planos .lp-billing-toggle .btn-check:checked + .btn {
  background-color: var(--green);
  color: var(--white);
}
.planos .lp-billing-toggle label.btn:first-of-type {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.planos .lp-billing-toggle label.btn:last-of-type {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.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: 30px;
  font-weight: 600;
  line-height: 35px;
  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;
  }
}

.cadastro-lojista .checkout-form,
.lp-login-dialog .checkout-form {
  max-width: 500px;
  margin: 0 auto;
}

.checkout-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.checkout-form input,
.checkout-form select {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.5px;
  padding: 10px 20px;
  border-radius: 22px;
  border: 2px solid rgba(238, 238, 238, 1);
  width: 100%;
}

.checkout-form input[type="checkbox"],
.checkout-form .form-check-input[type="checkbox"] {
  width: 42px;
  height: 22px;
  padding: 0;
  margin-right: 10px;
  border-radius: 4px;
  border: 1px solid rgba(238, 238, 238, 1);
}

.checkout-form .btn-comprar {
  background-color: #1db770;
  border: none;
  outline: none;
  line-height: normal;
  padding: 10px 30px;
  text-align: center;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
}

.checkout-form .btn-comprar:hover {
  background-color: #1aa463;
}

.checkout-form .btn-comprar:disabled {
  background-color: #1db770 !important;
  opacity: 1;
}

.checkout-form .btn-comprar .spinner-border {
  vertical-align: middle;
  margin-right: 8px;
}

.checkout-form .error-message {
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

.checkout-form .is-invalid {
  border-color: #dc3545 !important;
}

.lp-login-overlay {
  position: fixed;
  inset: 0;
  z-index: 1055;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lp-login-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

body.lp-login-open {
  overflow: hidden;
}

.lp-login-dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}

.lp-login-card {
  position: relative;
  margin: 0 auto;
}

.lp-login-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.25rem;
  color: var(--dark-grey);
}

.lp-login-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: var(--dark-grey);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lp-login-close:hover {
  background: rgba(0, 0, 0, 0.12);
}
