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

html {
  font-size: 62.5%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  background: #fff;
  color: #214c6e;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.page-padding {
  padding: 15rem 0 6rem 0;
}
@media (max-width: 991px) {
  .page-padding {
    padding: 6rem 0 6rem 0;
  }
}

.title {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

@keyframes scaleUpScaleDown {
  0% {
    transform: translateZ(-1px) scale(1);
  }
  80% {
    transform: translateZ(-1px) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translateZ(-1px) scale(1.5);
    opacity: 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  font-weight: 900;
  padding: 0.8rem 2rem;
  line-height: 1;
  border-radius: 0;
  transition: all 0.2s;
}
.btn i {
  font-size: 2.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.btn img {
  width: 4rem;
}
.btn--white {
  color: #fff !important;
}
.btn--white:hover {
  color: #fff;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.btn--bg-orange {
  background-color: #ec9b5a;
}
.btn--bg-orange:hover {
  background-color: #e0721a;
}
.btn--bg-gray {
  background-color: #eeeeee;
}
.btn--bg-gray:hover {
  background-color: #c8c8c8;
}
.btn--bg-green-whatsapp {
  background-color: #119d9d;
}
.btn--bg-green-whatsapp:hover {
  background-color: #0a5858;
}
.btn--bg-purple {
  background-color: #975ab8;
}
.btn--bg-purple:hover {
  background-color: #7d439c;
}
.btn--bg-blue {
  background-color: #214c6e;
}
.btn--bg-blue:hover {
  background-color: #153147;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.social__item {
  color: #fff;
}

.form-group {
  margin-bottom: 1.6rem;
}
.form-group label {
  font-weight: 700;
}
.form-group input:not([type=file], [type=submit]),
.form-group textarea {
  padding: 1.2rem 1.2rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid #25292b;
  color: #292929;
}
.form-group input:not([type=file], [type=submit])::placeholder,
.form-group textarea::placeholder {
  color: #adafb0;
}
.form-group input:not([type=file], [type=submit]):focus,
.form-group textarea:focus {
  outline: 0;
  border-bottom: 1px solid #9fc49b;
}

.form-submit {
  position: relative;
  text-align: center;
}
.form-submit .btn {
  min-width: 12rem;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.fixed-whatsapp {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
  text-decoration: none;
}
.fixed-whatsapp i {
  font-size: 2.8rem;
  color: #fff;
}
.fixed-whatsapp::after {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #128c7e;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.faq-item {
  border-radius: 1.6rem;
  padding: 2rem;
  height: max-content;
  overflow: hidden;
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  transform-style: preserve-3d;
}
.faq-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff, #4fbcca);
  transform: translateY(0%);
  transition: all 0.2s ease-in;
  z-index: -1;
}
.faq-item:has(.faq-item__question.collapsed) {
  border: 1px solid #214c6e;
}
.faq-item:has(.faq-item__question.collapsed)::before {
  transform: translateY(100%);
}
.faq-item:not(:last-child) {
  margin-bottom: 2rem;
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.faq-item__question button {
  background-color: transparent;
  border: none;
  font-size: 1.4rem;
  background-color: #119d9d;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 4px;
  transition: all 0.2s;
  flex: 0 0 2.4rem;
}
.faq-item__question button i {
  transition: all 0.2s ease-in;
  color: #fff;
}
.faq-item__question button.collapsed {
  background-color: #214c6e;
}
.faq-item__question button.collapsed i::before {
  content: "+";
}
.faq-item__answer {
  padding-top: 2rem;
}
.faq-item__answer p {
  margin: 0;
}

.gradient-bg {
  display: inline-block;
  position: relative;
  padding: 0rem 0.4rem 0rem 0.4rem;
  transform-style: preserve-3d;
  font-weight: 700;
}
.gradient-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(0, -50%) translateZ(-1px);
  border-radius: 9999px;
}
.gradient-bg--blue::before {
  background: linear-gradient(to right, #4fbcca, transparent);
}
.gradient-bg--yellow::before {
  background: linear-gradient(to right, #fcd594, transparent);
}

h1.gradient-bg,
h2.gradient-bg,
h3.gradient-bg {
  padding: 0.4rem 1rem 0.4rem 1.2rem;
}

.header {
  background: #fff;
  position: fixed;
  left: 0;
  right: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
@media (max-width: 991px) {
  .header {
    padding: 0.2rem;
  }
}
.header-nav {
  padding: 3rem;
}
@media (max-width: 991px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30rem;
    max-width: 90%;
    overflow: auto;
    background-color: #fff;
    z-index: 99999;
    transform: translate(100%);
    transition: all 0.2s ease-in;
  }
  .header-nav.opened {
    transform: translate(0%);
  }
}
.header-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .header-nav ul {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.header-nav ul li a {
  color: #214c6e;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s ease-in;
  text-decoration: none;
}
.header-nav ul li a.active {
  font-weight: 900;
}
.header-nav ul li a:hover {
  transform: scale(1.1);
}
.header-nav__btn {
  height: 6.7rem;
  position: relative;
  left: 0;
  color: #214c6e;
  cursor: pointer;
  width: max-content;
  display: none;
  gap: 0.2rem;
  align-items: center;
}
@media (max-width: 991px) {
  .header-nav__btn {
    display: flex;
    height: 100%;
  }
}
.header-nav__btn > span {
  text-transform: uppercase;
  transition: all 0.2s;
}
.header-nav__icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}
.header-nav__icon-bar {
  position: absolute;
  width: 80%;
  height: 0.4rem;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #214c6e;
  border-radius: 5px;
  transition: all 0.1s;
}
.header-nav__icon-bar--1 {
  top: 8px;
}
.header-nav__icon-bar--2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-nav__icon-bar--3 {
  bottom: 8px;
}
.header-nav__icon.opened + span {
  font-size: 1.6rem;
}
.header-nav__icon.opened .header-nav__icon-bar {
  height: 0.2rem;
}
.header-nav__icon.opened .header-nav__icon-bar--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #214c6e;
}
.header-nav__icon.opened .header-nav__icon-bar--2 {
  opacity: 0;
  visibility: hidden;
}
.header-nav__icon.opened .header-nav__icon-bar--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #214c6e;
}
.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(25, 25, 25, 0.5);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease-in;
}
.header .overlay.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  z-index: 9999;
}

.breadcrumb {
  margin-top: 5rem;
  color: #898989;
  font-size: 1.4rem;
}
.breadcrumb-item a {
  color: #898989;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #898989;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f0da" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #454545;
}

.faq {
  padding: 4rem 0 6rem;
  background: url("../images/faq-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.faq-header {
  text-align: center;
}
.faq-header h2 {
  text-align: center;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .faq-header h2 {
    font-size: 2.8rem;
  }
}
.faq-items {
  width: 90rem;
  max-width: 100%;
  margin: auto;
}
.faq-items:not(:last-child) {
  margin-bottom: 2rem;
}
.faq-cta {
  text-align: center;
  margin-top: 4rem;
}

body .home {
  padding-top: 8.559rem;
}
@media (max-width: 991px) {
  body .home {
    padding-top: 4.5rem;
  }
}
body .home section {
  scroll-margin-top: 8.5rem;
}
@media (max-width: 991px) {
  body .home section {
    scroll-margin-top: 4.5rem;
  }
}
body .home .banner img {
  width: 100%;
}
body .home .conceito {
  padding: 4rem 0;
}
body .home .conceito-content h1 {
  font-weight: 700;
  color: #214c6e;
  margin-bottom: 2rem;
  font-size: 2.8rem;
}
body .home .conceito-content h2 {
  font-weight: 700;
  color: #214c6e;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}
body .home .conceito-content h3 {
  font-weight: 800;
  color: #214c6e;
  margin-bottom: 2rem;
  font-size: 2rem;
}
body .home .conceito-content p {
  color: #214c6e;
}
body .home .conceito-content ul li::marker {
  color: #214c6e;
}
body .home .conceito-content ul li p {
  margin-bottom: 0;
}
body .home .dificuldades-header {
  margin-bottom: 2rem;
}
body .home .dificuldades-header .title {
  font-weight: 700;
  color: #214c6e;
  margin-bottom: 2rem;
  font-size: 2.8rem;
}
body .home .dificuldades-header p {
  font-weight: 700;
}
body .home .dificuldades-items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 100%;
  margin: auto;
  padding: 4rem 0;
}
body .home .dificuldades-item {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 575px) {
  body .home .dificuldades-item {
    flex-direction: column;
    align-items: center;
  }
}
body .home .dificuldades-item__image {
  flex: 0 0 20%;
}
body .home .dificuldades-item__image img {
  width: 100%;
  position: sticky;
  top: 0;
}
body .home .dificuldades-item__text {
  flex: 1;
  align-items: flex-start;
}
@media (max-width: 575px) {
  body .home .dificuldades-item__text {
    text-align: center;
  }
}
body .home .dificuldades-item__text h3 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 2rem;
}
body .home .dificuldades-item__text ul {
  margin-bottom: 2rem;
  font-weight: 500;
  padding: 0;
}
body .home .dificuldades-item__text ul li:not(:last-child) {
  margin-bottom: 2rem;
}
body .home .dificuldades-footer {
  margin-top: 3.2rem;
  font-weight: 700;
}
body .home .solucoes {
  padding: 4rem 0;
  background: url("../images/solucoes-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
body .home .solucoes-header .title {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 4rem;
}
body .home .solucoes-items {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  max-width: 100%;
  margin: auto;
  padding: 4rem 0;
}
body .home .solucoes-item {
  display: flex;
  gap: 4rem;
}
@media (max-width: 575px) {
  body .home .solucoes-item {
    flex-direction: column;
    align-items: center;
  }
}
body .home .solucoes-item__image {
  flex: 0 0 25%;
}
body .home .solucoes-item__image img {
  width: 100%;
  position: sticky;
  top: 9rem;
}
body .home .solucoes-item__text {
  flex: 1;
  align-items: flex-start;
}
body .home .solucoes-item__text h3 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
body .home .solucoes-item__text ul li::marker {
  color: #214c6e;
}
body .home .solucoes-item__text ul li p {
  margin-bottom: 0;
}
body .home .solucoes-item__text ul.list-padding {
  padding-left: 4rem;
}
@media (max-width: 575px) {
  body .home .solucoes-item__text-cta {
    text-align: center;
  }
}
body .home .solucoes-item__text-cta .btn {
  font-size: 1.4rem;
}
body .home .beneficios {
  padding: 4rem 0;
}
body .home .beneficios-content * {
  line-height: 1.7;
}
body .home .beneficios-content li {
  margin-bottom: 1rem;
}
body .home .beneficios-content h3 {
  font-weight: 700;
}
body .home .beneficios-content strong {
  font-weight: 800;
}
body .home .beneficios-cta {
  text-align: center;
  margin: 4rem 0;
}
body .home .banner-interno {
  margin: 4rem 0;
}
body .home .banner-interno img {
  width: 100%;
}
body .home .sobre {
  padding: 4rem 0;
}
body .home .sobre-header {
  text-align: center;
}
body .home .sobre-header .title {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  display: inline-block;
  background: linear-gradient(to right, #4fbcca, transparent, #4fbcca);
  padding: 0.4rem 6rem;
  border-radius: 9999px;
}
body .home .sobre-header p {
  text-align: left;
}
body .home .sobre-text {
  padding-right: 2rem;
}
body .home .sobre-text h3 {
  font-weight: 700;
}
body .home .sobre-text .btn {
  min-height: 5rem;
  margin-top: 2rem;
}
body .home .sobre-right-box {
  width: 30rem;
  max-width: 100%;
  margin: auto;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
body .home .sobre-image {
  margin-bottom: auto;
  margin-top: 7rem;
  width: 30rem;
  max-width: 100%;
}
body .home .sobre-image img {
  width: 100%;
}
body .home .sobre-cta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
@media (max-width: 575px) {
  body .home .sobre-cta {
    flex-direction: column;
    gap: 2rem;
  }
}
body .home .sobre-cta .btn {
  width: 30rem;
  max-width: 100%;
  font-size: 1.3rem;
  height: 4.8rem;
  border-radius: 1.2rem;
}
@media (max-width: 575px) {
  body .home .sobre-cta .btn {
    width: 100%;
  }
}
body .home .sobre-mvv {
  padding: 6rem 0 4rem;
}
body .home .sobre-mvv h3,
body .home .sobre-mvv h4 {
  font-weight: 700;
}
body .home .sobre-mvv h4 {
  font-size: 1.6rem;
}
body .home .sobre-mvv p {
  margin-bottom: 2.4rem;
}

.page-404 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 2rem;
}
.page-404 .container {
  width: 80rem;
}
.page-404-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #214c6e;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.page-404-main * {
  max-width: 100%;
}
.page-404-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  color: #fff;
}
.page-404-main h1 span {
  font-size: 8rem;
  display: block;
  color: #fff;
}
.page-404-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.page-404-main p {
  color: #fff;
}
.page-404-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
  margin-bottom: 2rem;
}

.container {
  max-width: 1170px;
}

/*# sourceMappingURL=main.css.map */
