@charset "UTF-8";
:root {
  --base-size: 10px;
  --primary-color: #52a926;
  --secondary-color: #00443e;
  --terciary-color: #eec13f;
  --text-color: #515151;
}

.img-fluid {
  display: block;
  max-width: 100%;
}

.d-flex {
  display: flex;
}

.text-align-center {
  text-align: center;
}

.flex-wrap-wrap {
  flex-wrap: wrap;
}

.flex-direction-column {
  flex-direction: column;
}

.justify-content-sb {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.row-gap-1 {
  row-gap: 1rem;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  column-gap: 4%;
}

.col-2 {
  flex-basis: 16.6666666667%;
}

.col-3 {
  flex-basis: 24%;
}

.col-4 {
  flex-basis: 30.6666666667%;
}

.col-5 {
  flex-basis: 40.6666666667%;
}

.col-6 {
  flex-basis: 48%;
}

.col-7 {
  flex-basis: 57.3333333333%;
}

.col-8 {
  flex-basis: 65.6666666667%;
}

.col-9 {
  flex-basis: 74%;
}

.col-12 {
  flex-basis: 100%;
}

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

html {
  font-size: var(--base-size);
  scroll-behavior: smooth;
}

body {
  background: white;
  font-family: "Montserrat", sans-serif;
  color: black;
}

.container {
  display: flex;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

h1 {
  font-size: 4.4rem;
}

h2 {
  font-size: 3.6rem;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}
h2 strong {
  font-weight: 700;
}

h3 {
  font-size: 2.4rem;
}

p {
  font-size: 1.8rem;
  line-height: 1.5;
}
p + p {
  margin-top: 1.5rem;
}

.header {
  padding: 2rem 0;
}
.header__logo img {
  max-width: 200px;
}
.header__menu ul {
  display: flex;
  list-style: none;
  column-gap: 2rem;
}
.header__menu__link {
  font-size: 1.6rem;
  text-decoration: none;
  color: #666;
  font-weight: 500;
}
.header__menu__link:hover {
  text-decoration: underline solid 2px;
}

section {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
section.about {
  background: #fdf9ec;
}
section.solutions {
  background: #f7f7f7;
}
section.solutions .container > .container {
  margin-bottom: 5rem;
}
section.solutions h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
section .how-it-works ol {
  list-style: none;
}
section .how-it-works__item {
  max-width: 500px;
  border-radius: 16px;
  padding: 3rem 6rem;
  background: #FDF9EC;
  background: linear-gradient(315deg, rgb(255, 255, 255) 0%, rgb(255, 241, 215) 100%);
  margin: 6rem auto;
  display: flex;
  column-gap: 3rem;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
section .how-it-works__item__number {
  color: var(--primary-color);
  font-size: 6rem;
  font-weight: 400;
}
section .how-it-works__item__symbol {
  position: absolute;
  top: -30px;
  margin-left: -30px;
  left: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border-radius: 50%;
}
section .how-it-works__item__title {
  font-weight: 600;
  color: #666;
  text-align: right;
}
section.advantages {
  background: var(--primary-color);
  color: white;
}
section.advantages h2 {
  color: white;
}
section.contact {
  background: url(../img/bg-contato.jpg) no-repeat center;
  background-size: cover;
  color: white;
}
section.contact .wpcf7 {
  flex-basis: 48%;
}
section.contact .wpcf7 .container {
  padding: 0;
}
section.contact .wpcf7 input[type=checkbox] + .wpcf7-list-item-label {
  font-size: 1.2rem;
}
section.contact .wpcf7 .btn.btn__secondary {
  margin-top: 0.75rem;
}
section.contact form.container {
  row-gap: 1.25rem;
}
section.contact form fieldset {
  font-size: 3rem;
  border: none;
  margin-bottom: 2rem;
}
section.contact form input:not([type=button], [type=submit], [type=checkbox], [type=radio]), section.contact form textarea {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  padding: 1rem;
  border-radius: 6px;
  border: none;
}
section.contact form textarea {
  resize: none;
  height: 12rem;
}
section.contact form label:has(input[type=radio], input[type=checkbox]) {
  font-size: 1.6rem;
  margin-right: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  cursor: pointer;
}
section.contact form label:has(input[type=radio], input[type=checkbox]) > input {
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  vertical-align: sub;
}
section.contact form label + p {
  margin-top: 0.5rem;
  font-size: 1.25rem;
}
section.infos .infos__item {
  border: 1px solid var(--primary-color);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  min-height: 257px;
}
section.infos .infos__item img {
  max-width: 50px;
}
section.infos .infos__item h3 {
  color: var(--secondary-color);
  margin: 2rem 0;
  font-weight: 600;
}
section.infos .infos__item a {
  font-size: 1.4rem;
  color: #666;
  font-weight: 500;
  text-decoration: none;
  display: block;
}
section.infos .infos__item a + a {
  margin-top: 0.75rem;
}

main.main {
  padding: 10rem 0;
  background: url(../img/banner-principal.jpg) no-repeat top center;
  background-size: cover;
}
main.main h1 {
  color: white;
  font-weight: 500;
  line-height: 1.3;
}

.hero {
  padding: 6rem;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.hero:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
  content: "";
  display: block;
}
.hero--step-by-step {
  background: url(../img/bg-passo-passo.jpg) no-repeat center;
}
.hero--step-by-step h2 {
  color: white;
  font-weight: 600;
  text-align: center;
}
.hero--step-by-step h2, .hero--step-by-step .btn {
  position: relative;
  z-index: 1;
}

.footer {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fdf9ec;
}
.footer__footer-logo {
  max-width: 150px;
  margin-bottom: 2rem;
}
.footer__footer-logo + p {
  font-size: 1.5rem;
}
.footer__footer-socials {
  list-style: none;
  display: flex;
  column-gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: center;
}
.footer__footer-socials svg {
  max-width: 25px;
}
.footer ul[id^=menu-menu-footer-] {
  list-style: none;
  text-transform: uppercase;
  color: #666;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
.footer ul[id^=menu-menu-footer-] li ul.sub-menu {
  list-style: none;
  padding-left: 2rem;
  display: none;
  position: relative;
  padding-top: 2rem;
  row-gap: 1.5rem;
  flex-direction: column;
}
.footer ul[id^=menu-menu-footer-] li ul.sub-menu li:before {
  content: "→";
  margin-right: 1rem;
}
.footer ul[id^=menu-menu-footer-] li:hover ul.sub-menu {
  display: flex;
}
.footer ul[id^=menu-menu-footer-] a {
  text-decoration: none;
  color: #666;
}
.footer ul[id^=menu-menu-footer-] a:hover, .footer ul[id^=menu-menu-footer-] a:focus {
  text-decoration: underline;
}
.footer h3 {
  margin-bottom: 2rem;
}
.footer a.link {
  display: flex;
  column-gap: 1rem;
  text-decoration: none;
  font-size: 1.5rem;
  text-decoration: none;
  color: #666;
  font-weight: 500;
}
.footer a.link + a.link {
  margin-top: 1rem;
}
.footer a.link:hover {
  text-decoration: underline;
}
.footer a.link.link--whatsapp:before {
  content: url(../img/icon-whatsapp.svg);
  width: 20px;
  height: 20px;
}
.footer a.link.link--telephone:before {
  content: url(../img/icon-phone.svg);
  width: 20px;
  height: 20px;
}
.footer a.link.link--email:before {
  content: url(../img/icon-email2.svg);
  width: 20px;
  height: 20px;
}
.footer a.link.link--address:before {
  content: url(../img/icon-pin.svg);
  width: 20px;
  height: 20px;
}
.footer hr {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.footer hr + p {
  font-size: 1.25rem;
  text-align: center;
}

.btn {
  display: inline-block;
  font-size: 1.6rem;
  border-radius: 6px;
  padding: 1.25rem 3rem;
  margin-top: 3rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn__primary {
  background: var(--terciary-color);
  color: var(--text-color);
}
.btn__secondary {
  background: var(--primary-color);
  color: white;
}

@media screen and (max-width: 959px) {
  :root {
    --base-size: 8px;
  }
  .btn {
    font-size: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .about .container, .solutions .container, .advantages .container {
    flex-direction: column;
    row-gap: 3rem;
    text-align: center;
  }
  .about .container img, .solutions .container img, .advantages .container img {
    margin-left: auto;
    margin-right: auto;
  }
  .about img, .advantages img {
    max-width: 250px;
  }
  .contact .container {
    flex-direction: column;
    row-gap: 4rem;
  }
  .contact .container form {
    padding: 0;
  }
  .contact .container form input:not([type=button], [type=checkbox], [type=radio]), .contact .container form textarea {
    padding: 1.5rem;
  }
  .infos .container {
    flex-direction: column;
    row-gap: 3rem;
  }
  .infos__item {
    min-height: initial !important;
  }
  .infos__item a {
    font-size: 2rem !important;
    overflow-wrap: break-word;
  }
  .infos__item img {
    max-width: 30px !important;
  }
  .footer .container {
    flex-direction: column;
    row-gap: 6rem;
  }
  .footer__footer-logo {
    margin-bottom: 4rem;
  }
  .footer__footer-logo + p {
    font-size: 1.75rem;
  }
  .footer__footer-socials {
    margin-bottom: 4rem;
  }
  .footer ul[id^=menu-menu-footer-] {
    row-gap: 1.75rem;
    font-size: 1.75rem;
  }
  .footer ul[id^=menu-menu-footer-] li ul.sub-menu {
    display: flex;
  }
  .footer h3 {
    margin-bottom: 3rem;
  }
  .footer a.link {
    font-size: 2rem;
    overflow-wrap: break-word;
  }
  .footer a.link + a.link {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  section.video .container {
    flex-direction: column;
  }
  header.header {
    position: relative;
  }
  .header__menu {
    display: none;
    flex-direction: column;
    row-gap: 2rem;
    width: 100%;
    height: 100vh;
    background: #fdf9ec;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .header__menu.open {
    display: flex;
  }
  .header__menu ul {
    flex-direction: column;
    row-gap: 2rem;
  }
  .header__menu__link {
    font-size: 3rem;
  }
  .mobile-menu {
    display: flex;
    padding: 1rem;
    flex-direction: column;
    row-gap: 5px;
    transition: all 0.1s ease;
    cursor: pointer;
    position: relative;
    z-index: 3;
  }
  .mobile-menu span {
    height: 2px;
    width: 30px;
    background: #666;
    opacity: 1;
    transition: all 0.2s ease;
  }
  .mobile-menu.open span:nth-child(1) {
    transform: rotate(35deg) translate(6px, 6px);
    transition: all 0.2s ease;
  }
  .mobile-menu.open span:nth-child(2) {
    opacity: 0;
    transition: all 0.2s ease;
  }
  .mobile-menu.open span:nth-child(3) {
    transform: rotate(-35deg) translate(5px, -3px);
    transition: all 0.2s ease;
  }
}
@media screen and (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn {
  animation: fadeIn 0.8s ease forwards;
}