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


html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  
    font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  overflow-x: hidden;
}

main {
  flex: 1;
}

.btn {
  border: none;
  padding: 12px 70px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  max-width: 390px;
}


.btn-primary {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #27cd67 0%, #22b359 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(39, 205, 103, 0.3);
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 205, 103, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

footer {
  background-color: #0b2c61;
  padding: 25px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/*ANIMAÇOES*/
.animate {
  opacity: 0;
  transform: translateY(30px);
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.fade-up {
  transform: translateY(40px);
}

.animate.is-visible {
  opacity: 1;
  transform: translate(0);
  transition: all 0.8s ease;
}


.form-hubspot{
	width: 90%;
    margin: 0 auto;
    max-width: 660px;
    padding: 5rem;
}