@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  color: #475467;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #101828;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1140px;
  padding: 0 20px;
}

.bf-header {
  background-color: #0a3632;
  color: #fff;
  text-align: center;
}
.bf-header span {
  display: block;
  padding: 20px 0;
}

header {
  background-color: #0a3632;
  padding: 20px 0;
  font-size: 15px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .menu {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 20px;
}
header .menu li {
  list-style: none;
  line-height: 1;
  margin: 0;
  padding: 0;
}
header .menu li a {
  text-decoration: none;
  line-height: 1;
  margin: 0;
  padding: 0;
  color: #fff;
}
header .buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .buttons .btn-register {
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  background-color: #0a3632;
  border: 1px solid #114f49;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-block;
}
@media (max-width: 768px) {
  header .buttons .btn-register {
    border: 1px solid #114f49;
  }
}
header .buttons .btn-login {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 500;
  color: #0a3632;
  background-color: #a0e35d;
  padding: 8px 16px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  header .buttons .btn-login {
    display: none;
  }
}
@media (max-width: 768px) {
  header .menu {
    display: none;
  }
}

.cta-default {
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  background-color: #a0e35d;
  color: #0a3632;
  padding: 16px 22px;
  border-radius: 10px;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}

.hero {
  background-color: #0a3632;
  display: flex;
  align-items: center;
  position: relative;
  padding: 90px 0 60px;
}
.hero .background-light {
  z-index: 1;
  opacity: 0.1;
  filter: blur(5px);
  background-image: radial-gradient(circle, #fff, rgba(255, 255, 255, 0) 67%);
  position: absolute;
  inset: 0%;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero .hero-content span {
  font-size: 11px;
  background-color: #0c4741;
  font-weight: 600;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  border-radius: 8px;
  line-height: 1;
  margin-bottom: 20px;
  color: #a0e35d;
}
.hero .hero-content span i {
  font-size: 16px;
  margin-top: -1px;
}
@media (max-width: 768px) {
  .hero .hero-content span {
    margin-top: 20px;
  }
}
.hero .hero-content .logoHero {
  margin-bottom: 40px;
}
.hero .hero-content .womanHero {
  max-width: 85%;
  display: flex;
  justify-self: end;
}
@media (max-width: 768px) {
  .hero .hero-content .womanHero {
    justify-self: center;
  }
}
.hero .hero-content h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.hero .hero-content p {
  color: #fff;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 30px;
}
.hero .hero-content a {
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  padding: 16px 22px;
  border-radius: 10px;
  font-weight: 500;
}
.hero .hero-content .buttons-hero {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero .hero-content .cta-demo {
  color: #0a3632;
  background-color: #fff;
}
.hero .hero-content .cta-button {
  background-color: #a0e35d;
  color: #0a3632;
}
@media (max-width: 768px) {
  .hero .hero-content {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .hero .hero-content h1 {
    font-size: 28px;
    letter-spacing: -0.3px;
  }
  .hero .hero-content p {
    font-size: 16px;
  }
  .hero .hero-content .buttons-hero {
    justify-content: center;
    flex-direction: column;
  }
  .hero .hero-content .buttons-hero a {
    width: 100%;
  }
}

.tuto-home {
  background-color: #f1fbe6;
  padding: 60px 0;
}
.tuto-home .tuto-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: center;
}
.tuto-home .tuto-content .tuto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #0a3632;
  font-weight: 500;
}
.tuto-home .tuto-content .tuto-item i {
  font-size: 40px;
}
@media (max-width: 768px) {
  .tuto-home .tuto-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .tuto-home {
    padding: 40px 0;
  }
}

.img-section {
  width: 100%;
}
.img-section img {
  border-radius: 12px;
}

.beneficios {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.beneficios h2 {
  letter-spacing: -1px;
  font-weight: 600;
}
.beneficios .beneficio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.beneficios .beneficio .lead {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}
.beneficios .beneficio h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 18px;
}
.beneficios .beneficio h4 i {
  font-size: 22px;
}
@media (max-width: 768px) {
  .beneficios .beneficio {
    grid-template-columns: 1fr;
  }
}

.funcionalidades {
  padding: 80px 0;
}

.switcher {
  margin-bottom: 20px;
}

.switch {
  cursor: pointer;
  font-weight: bold;
  color: #4caf50;
}

.planos {
  padding: 80px 0;
  background-color: #f1fbe6;
}
@media (max-width: 768px) {
  .planos #start {
    margin-bottom: 30px;
  }
}
.planos .container {
  max-width: 850px;
}
.planos .container .plano {
  background-color: #fff;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #0a3632;
}
.planos .container .plano .heading-plan {
  background-color: #0a3632;
  border-radius: 10px 10px 0 0;
  border: 1px solid #0a3632;
  padding: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.planos .container .plano .heading-plan span {
  position: absolute;
  top: -14px;
  right: -20px;
  color: #0a3632;
  font-size: 12px;
  text-align: center;
  background-color: #a0e35d;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .planos .container .plano .heading-plan span {
    top: -10px;
    right: -10px;
  }
}
.planos .container .plano h3 {
  margin-top: 0;
  margin-bottom: 0;
  color: #a0e35d;
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 600;
}
.planos .container .plano .price {
  margin-top: 30px;
  margin-bottom: 25px;
  font-size: 2.5rem;
  color: #101828;
  font-weight: 600;
  letter-spacing: -1px;
}
.planos .container .plano .price span {
  font-size: 1rem;
  color: #475467;
  font-weight: 400;
  letter-spacing: 0;
  display: block;
}
.planos .container .plano .price small {
  font-size: 1rem;
  color: #475467;
  font-weight: 400;
  letter-spacing: 0;
}
.planos .container .plano ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
  margin-top: 25px;
}
.planos .container .plano ul li {
  margin-bottom: 10px;
}
.planos .container-plans {
  max-width: 850px;
}
@media (max-width: 768px) {
  .planos .lead {
    font-size: 16px;
    line-height: 1;
  }
}

.plano .cta-button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

.depoimentos {
  background-color: #0a3632;
  padding: 80px 0;
}
.depoimentos .container {
  max-width: 850px;
}
@media (max-width: 768px) {
  .depoimentos .lead {
    font-size: 16px;
    line-height: 1;
  }
}
.depoimentos .title-section {
  text-align: center;
  margin-bottom: 60px;
}
.depoimentos .title-section h2 {
  color: #fff;
}
.depoimentos .title-section p {
  color: #fff;
}
.depoimentos .depoimento {
  background-color: #f1fbe6;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}
.depoimentos .depoimento h4 {
  margin-bottom: 0;
}
.depoimentos .depoimento i {
  color: #a0e35d;
}
.depoimentos .depoimento img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .depoimentos .depoimento {
    padding: 20px;
  }
  .depoimentos .depoimento p {
    font-size: 16px;
    line-height: 2;
  }
}

.faq {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .faq .lead {
    font-size: 16px;
    line-height: 1;
  }
}
.faq h2 {
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: -1px;
}
.faq .pergunta {
  margin-bottom: 30px;
}
.faq .pergunta h5 {
  font-weight: 600;
}
.faq a {
  text-decoration: none;
  color: #0a3632;
  background-color: #a0e35d;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  padding: 16px 22px;
  border-radius: 10px;
}

footer {
  padding: 60px 0px;
  background-color: #f1fbe6;
  font-size: 14px;
}
footer p {
  margin-bottom: 10px;
}
footer .menus-footer {
  display: flex;
  gap: 120px;
}
@media (max-width: 768px) {
  footer .menus-footer {
    flex-direction: column;
    text-align: center;
    gap: 0px;
  }
}
@media (max-width: 768px) {
  footer .text-end {
    text-align: center !important;
    margin-bottom: 20px;
  }
}
footer .footer-links {
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}
footer .footer-links p {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 15px;
  color: #0a3632;
}
footer .footer-links li {
  list-style: none;
}
footer .footer-links li a {
  text-decoration: none;
  color: #0a3632;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
}
footer .social-icons-footer {
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 20px;
  margin-top: 20px;
}
footer .social-icons-footer li {
  list-style: none;
}
footer .social-icons-footer li a {
  font-size: 20px;
  color: #0a3632;
}
footer .footer-heart {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
footer .footer-heart i {
  margin-bottom: -2px;
  font-size: 16px;
}

.title-page {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
}

.changelog-page {
  margin-bottom: 80px;
}
.changelog-page ul {
  padding: 0;
  margin: 0;
  margin-bottom: 40px;
}
.changelog-page ul h4 {
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  font-weight: 600;
  font-size: 20px;
}
.changelog-page ul li {
  margin-left: 20px;
}/*# sourceMappingURL=landing.css.map */