html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

h1, a {
  font-family: 'Margem-medium';
}

h2 {
  font-family: 'Margem-regular';
  font-size: 3rem;
}

p {
  font-family: 'Source Sans Pro';
}



@media (max-width: 767.98px) {
  h2 {
    font-size: 2rem;
    line-height: 2rem;
  }
}










.text-underline, .text-underline:hover {
  text-decoration: underline;
}

.text-bold-600 {
  font-weight: 600;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}






.zoom {
  transition: ease .4s;
}

.zoom:hover {
  transform: scale(1.1);
}






a.lp-cta {
  border-radius: 12px;
  background-color: #DD303E;
  color: #fff;
  width: fit-content;
  padding: 20px 30px;
}


.cta-efeito {
  transition: .3s ease;
}

.cta-efeito:hover {
  text-decoration: none;
  opacity: .9;
}


.loader {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid #0057FF;
  border-right-color: #DD303E;
  animation: loading 1s infinite linear;
  margin: 10px auto;
  flex: none;
}
@keyframes loading {to{transform: rotate(1turn)}}
