:root {
  --base-size: 10px;
  --primary-color: #044930;
  --secondary-color: #fec32c;
  --paragraph-color: #737B7D;
  --light-color: #3e836a;
}

.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;
}

.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: 2%;
}

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

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

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

.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: "Sarabun", sans-serif;
  color: var(--paragraph-color);
}

section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
section.slider__home {
  padding-top: 0;
}
section.cta__youtube .col-3 {
  padding-top: 8rem;
  row-gap: 4rem;
}
section.cta__youtube h2 {
  color: var(--paragraph-color);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
section.cta__youtube .btn {
  margin-bottom: 6rem;
}

p {
  font-size: 1.6rem;
  color: var(--paragraph-color);
  line-height: 1.4;
  margin-bottom: 1rem;
}

h2 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

h3 {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

h2.wp-block-heading {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

h3.wp-block-heading {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.wp-block-columns {
  margin: 4rem 0;
}

.wp-block-column {
  align-content: center;
}

.wrapper {
  background: url(../img/organic-form.png) no-repeat bottom right;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 3;
}
.header__links-services {
  background: var(--primary-color);
  padding-top: 5rem;
  padding-bottom: 8rem;
  display: none;
}
.header__links-services.active {
  display: block;
}
.header__links-services .container {
  flex-wrap: wrap;
  row-gap: 4rem;
}
.header__links-services__service h3 {
  font-size: 2rem;
  text-transform: uppercase;
  color: white;
}
.header__links-services__service p {
  color: var(--light-color);
}
.header__menu-links {
  font-size: 1.6rem;
  display: flex;
  column-gap: 1rem;
  align-items: center;
  font-family: "Sarabun", sans-serif;
  border: none;
  cursor: pointer;
  background: transparent;
}
.header__menu-links:hover div {
  row-gap: 4px;
}
.header__menu-links div {
  display: flex;
  flex-direction: column;
  row-gap: 3px;
}
.header__menu-links div span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--primary-color);
}
.header .header__intro {
  padding: 1.6rem 0;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
  border-radius: 0 0 16px 16px;
}
.header .header__intro .header__intro__logo .img-fluid {
  animation-name: widthAnimation;
  animation-duration: 1ms;
  animation-direction: normal;
  animation-timeline: scroll();
  animation-range: entry 0 exit 400px;
  max-width: 80%;
}
.header .header__intro .header__intro__ctas {
  display: flex;
  column-gap: 3rem;
}
.header .header__intro .header__intro__ctas a.btn.btn__secondary {
  margin-top: 0;
}
.header .header__intro .header__intro__ctas .header__intro__ctas__countries {
  list-style: none;
  display: flex;
  column-gap: 3rem;
  align-items: center;
}
.header .header__intro .header__intro__ctas .header__intro__ctas__countries li a {
  display: block;
  transition: all 0.2s ease;
}
.header .header__intro .header__intro__ctas .header__intro__ctas__countries li a:hover {
  opacity: 0.7;
  transition: all 0.2s ease;
}
.header .header__menu {
  padding: 2.5rem 0;
  border-bottom: 1px solid #eee;
}
.header .header__menu .header__menu__items ul {
  display: flex;
  column-gap: 3rem;
  list-style: none;
}
.header .header__menu .header__menu__items ul .menu-item-has-children {
  position: relative;
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
}
.header .header__menu .header__menu__items ul .menu-item-has-children:after {
  content: "";
  width: 15px;
  height: 7.5px;
  background: url(../img/icon-arrow.png) no-repeat center;
  background-size: contain;
  display: inline-block;
  transition: all 0.1s ease;
  transform-origin: center;
  transform: rotate(0deg);
}
.header .header__menu .header__menu__items ul .menu-item-has-children:hover:after {
  transform: rotate(180deg);
  transition: all 0.1s ease;
  transform-origin: center;
  width: 15px;
  height: 7.5px;
}
.header .header__menu .header__menu__items ul .menu-item-has-children .sub-menu {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px;
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  width: 42rem;
  background: white;
  border-radius: 16px;
  flex-direction: column;
  opacity: 0;
}
.header .header__menu .header__menu__items ul .menu-item-has-children .sub-menu li {
  padding: 1.25rem 2rem;
}
.header .header__menu .header__menu__items ul .menu-item-has-children .sub-menu li a {
  font-size: 1.6rem;
}
.header .header__menu .header__menu__items ul .menu-item-has-children .sub-menu li a:after {
  content: "";
  display: none;
}
.header .header__menu .header__menu__items ul .menu-item-has-children .sub-menu li a:hover {
  font-weight: 600;
  color: #444;
}
.header .header__menu .header__menu__items ul .menu-item-has-children:hover .sub-menu {
  display: flex;
  animation: fadeIn 0.5s forwards;
}
.header .header__menu .header__menu__items ul li.current_page_item a {
  color: var(--primary-color);
}
.header .header__menu .header__menu__items ul li.current_page_item a:after {
  background: var(--primary-color);
}
.header .header__menu .header__menu__items ul li a {
  font-size: 1.4rem;
  letter-spacing: 0.42px;
  font-weight: 500;
  color: var(--paragraph-color);
  text-decoration: none;
  display: block;
}
.header .header__menu .header__menu__items ul li a:after {
  content: "";
  margin-top: 2px;
  width: 0;
  height: 2px;
  display: block;
  background: var(--paragraph-color);
  transition: width 0.2s ease-out;
}
.header .header__menu .header__menu__items ul li a:hover:after {
  width: 100%;
  transition: width 0.2s ease-in;
}

.footer {
  padding-top: 4rem;
  padding-bottom: 6rem;
}
.footer p {
  font-size: 1.8rem;
  margin: 2.5rem 0 1.25rem;
}
.footer__social-links {
  list-style: none;
  display: flex;
  column-gap: 2rem;
  align-items: center;
}
.footer__social-links li a {
  transition: all 0.2s ease;
  transform: translateY(0);
  display: block;
}
.footer__social-links li a img {
  width: 25px;
}
.footer__social-links li a:hover {
  transform: translateY(-0.4rem);
  transition: all 0.2s ease;
}
.footer__menu__items ul {
  list-style: none;
}
.footer__menu__items ul li {
  margin-bottom: 2rem;
}
.footer__menu__items ul li a {
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--paragraph-color);
  display: inline-block;
  position: relative;
}
.footer__menu__items ul li a:after {
  content: "";
  display: block;
  margin-top: 0.75rem;
  width: 0%;
  height: 2px;
  background: var(--paragraph-color);
  transition: width 0.2s ease;
  position: absolute;
}
.footer__menu__items ul li a:hover:after {
  transition: width 0.2s ease;
  width: 100%;
}
.footer__menu__items ul li.menu-item-has-children > a:after {
  content: "";
  margin-left: 1rem;
  width: 15px;
  height: 7.5px;
  background: url(../img/icon-arrow.png) no-repeat center;
  background-size: contain;
  display: inline-block;
  transition: all 0.1s ease;
  transform-origin: center;
  transform: rotate(0deg);
}
.footer__menu__items ul li.menu-item-has-children:hover > a:after {
  transform: rotate(180deg);
  transition: all 0.1s ease;
  transform-origin: center;
  width: 15px;
  height: 7.5px;
}
.footer__menu__items ul.sub-menu {
  display: none;
  padding-top: 1.25rem;
  margin-left: 1.5rem;
}
.footer__menu__items ul.sub-menu.active {
  display: block;
}
.footer__menu__items ul.sub-menu li {
  margin-bottom: 1.25rem;
}
.footer__menu__items ul.sub-menu li a {
  font-size: 1.4rem;
}
.footer__menu__items ul.sub-menu li a:hover {
  color: black;
}
.footer__menu__items ul.sub-menu li a:after {
  content: none;
}
.footer__contacts h4 {
  font-size: 2rem;
  margin-bottom: 3rem;
}
.footer__contacts ul {
  list-style: none;
}
.footer__contacts ul li {
  font-size: 1.6rem;
  display: flex;
  column-gap: 2rem;
}
.footer__contacts ul li + li {
  margin-top: 2.5rem;
}
.footer__contacts ul li a {
  text-decoration: none;
  color: var(--paragraph-color);
  display: block;
}
.footer__contacts ul li.footer__contacts__phone:before {
  content: url(../img/icon-phone.png);
}
.footer__contacts ul li.footer__contacts__address:before {
  content: url(../img/icon-map.png);
}
.footer hr {
  height: 1px;
  display: block;
  background: var(--paragraph-color);
  width: 100%;
  border: none;
  opacity: 0.25;
  margin: 2rem 0;
}
.footer hr + p {
  font-size: 1.5rem;
  text-align: center;
}

.info__item {
  position: relative;
}
.info__item svg {
  width: 200px;
  height: 200px;
  overflow: visible;
}
.info__item svg circle.bg {
  fill: none;
  stroke: #f3f2f2;
  stroke-width: 8px;
}
.info__item svg circle.progress {
  fill: none;
  stroke-width: 8px;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  stroke: var(--secondary-color);
}
.info__item__text {
  position: absolute;
  top: 48px;
  left: 50%;
  width: 150px;
  margin-left: -75px;
  text-align: center;
}
.info__item__text strong {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--primary-color);
}

/* novo */
.solutions__container {
  flex-wrap: wrap;
  column-gap: 2%;
  row-gap: 3rem;
}

.solutions__single a {
  text-decoration: none;
  display: block;
  border: 1px solid #ddd;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.3s ease;
}
.solutions__single a img {
  width: 100%;
  height: auto;
}
.solutions__single a h3 {
  font-size: 2.2rem;
  color: var(--primary-color);
  padding: 2rem 1.5rem;
  min-height: 123px;
}
.solutions__single a span {
  font-size: 12px;
  color: var(--paragraph-color);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 1.5rem 3.5rem;
  display: block;
  letter-spacing: -1px;
}
.solutions__single a:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
  transition: 0.3s ease;
}

.hero__content {
  background: var(--primary-color);
  padding: 5rem;
  border-radius: 3rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.hero__content h2, .hero__content p {
  color: white;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.features .container {
  column-gap: 2rem;
}
.features__item {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  align-items: center;
  text-align: center;
  flex: 1 0 0;
}
.features__item p {
  font-size: 1.8rem;
  line-height: 1.3;
}

.cta-form__content {
  color: white;
  background: var(--primary-color);
  border-radius: 30px;
}
.cta-form__content img {
  transform: translate(70px, -50px);
  border-radius: 24px;
}
.cta-form__content h2 {
  color: white;
}

.clients__logos {
  flex-wrap: wrap;
  row-gap: 3rem;
  column-gap: 2%;
  align-items: center;
}
.clients__logos img {
  max-width: 125px;
}

.home-blog {
  background: var(--primary-color);
}
.home-blog a {
  text-decoration: none;
}
.home-blog a img {
  height: auto;
  margin-bottom: 2rem;
  border-radius: 1rem;
}
.home-blog h2, .home-blog h3 {
  color: white;
}
.home-blog h3 {
  margin-bottom: 1rem;
}
.home-blog p {
  color: white;
}

.form__bg {
  background: url(../img/bg-form.jpg) no-repeat top center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  border-radius: 3rem;
}
.form__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.form__bg .col-6 {
  padding: 4rem 6rem;
  position: relative;
  z-index: 1;
}
.form__bg .col-6 h2, .form__bg .col-6 p {
  color: white;
}
.form__bg .col-6 p {
  margin: 0;
}
.form__bg .col-6 form {
  background: var(--primary-color);
  padding: 3rem;
  border-radius: 3rem;
}
.form__bg .col-6 form .input-combo {
  margin-bottom: 1rem;
}
.form__bg .col-6 form .input-combo .wpcf7-list-item {
  margin: 0;
}
.form__bg .col-6 form input[type=checkbox] {
  padding: 1rem;
  width: 16px;
  height: 16px;
  margin-right: 0.75rem;
  vertical-align: baseline;
}
.form__bg .col-6 form input[type=text], .form__bg .col-6 form input[type=email], .form__bg .col-6 form input[type=tel], .form__bg .col-6 form textarea, .form__bg .col-6 form label {
  display: block;
  font-size: 1.6rem;
  font-family: "Sarabun", sans-serif;
}
.form__bg .col-6 form input[type=text], .form__bg .col-6 form input[type=email], .form__bg .col-6 form input[type=tel], .form__bg .col-6 form textarea {
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  width: 100%;
}
.form__bg .col-6 form label {
  color: white;
  margin-bottom: 0.75rem;
}
.form__bg .col-6 form textarea {
  height: 9rem;
}
.form__bg .col-6 form #data-confirm {
  display: inline !important;
  width: initial !important;
  margin-right: 1rem;
}
.form__bg .col-6 form #data-confirm + label {
  display: inline !important;
  width: initial !important;
}
.form__bg .col-6 form p {
  font-size: 1.25rem;
  margin: 1rem 0;
}

.channels__container {
  flex-wrap: wrap;
  column-gap: 2%;
}
.channels h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.channels__single {
  border: 1px solid #59b224;
  padding: 4rem 2rem;
  font-size: 1.8rem;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  color: var(--paragraph-color);
  font-weight: 600;
}
.channels__single svg {
  stroke: var(--primary-color);
}
.channels__single strong, .channels__single span {
  display: block;
  margin-top: 1rem;
}
.channels__single strong {
  font-size: 2.5rem;
  font-weight: 600;
}
.channels__single span {
  font-size: 1.6rem;
  font-weight: 400;
}

.join-us {
  margin-top: 8rem;
}
.join-us__single {
  border-radius: 20px;
  padding: 4rem 2rem;
  min-height: 231px;
}
.join-us__single--adm h2, .join-us__single--adm p, .join-us__single--opr h2, .join-us__single--opr p {
  color: white;
}
.join-us__single--adm h2, .join-us__single--opr h2 {
  font-size: 3rem;
}
.join-us__single--adm .col-6 + .col-6, .join-us__single--opr .col-6 + .col-6 {
  position: relative;
}
.join-us__single--adm .col-6 + .col-6 img, .join-us__single--opr .col-6 + .col-6 img {
  position: absolute;
  bottom: -40px;
  right: 10px;
}
.join-us__single--adm {
  background: var(--primary-color);
}
.join-us__single--opr {
  background: var(--secondary-color);
}

.intro-page {
  width: 100%;
  padding-top: 14rem;
  padding-bottom: 14rem;
  background-size: contain;
}
.intro-page__solution {
  padding: 8rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.intro-page__solution::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
.intro-page__solution h1 {
  position: relative;
  z-index: 1;
}
.intro-page span, .intro-page h1 {
  color: white;
}
.intro-page h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin: 1.5rem 0 0;
}
.intro-page span {
  display: block;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 7px;
}
.intro-page--trabalhe-conosco {
  background: url(../img/homem-com-celular-ao-ouvido-enquanto-segura-e-observa-folhas.jpg) no-repeat top center;
}
.intro-page--contato {
  background: url(../img/homem-com-celular-ao-ouvido-olhando-para-cima-com-ceu-azul.jpg) no-repeat top center;
}
.intro-page--sobre-nos {
  background: url(../img/homem-jovem-e-homem-idoso-se-cumprimentam-em-plantacao.jpg) no-repeat top center;
}
.intro-page--solucoes {
  background: url(../img/foto-aerea-colheitadeiras-em-plantacao.jpg) no-repeat top center;
}
.intro-page--inovacao {
  background: url(../img/homem-e-mulher-com-notebook-conversando-em-um-campo.jpg) no-repeat top center;
}
.intro-page--onde-encontrar {
  background: url(../img/mapa-brasil-3d-entre-terra-e-plantacao.jpg) no-repeat top center;
}
.intro-page--sustentabilidade {
  background: url(../img/homem-plantando-muda-terra.jpg) no-repeat top center;
}

.interactive-map__state {
  display: none;
}
.interactive-map__state.active {
  display: block;
  animation: fadeInDefault 1s ease forwards;
}
.interactive-map ul.interactive-map__cities-list {
  list-style: none;
}
.interactive-map li.interactive-map__city {
  margin-bottom: 2rem;
}
.interactive-map h3.interactive-map__state-selected {
  color: black;
  border-left: 5px solid var(--secondary-color);
  padding-left: 1rem;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}
.interactive-map h4.interactive-map__city__name {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.interactive-map p {
  margin-bottom: 0;
}
.interactive-map__single-map svg {
  pointer-events: all;
}
.interactive-map__single-map path {
  fill: #eaeaea !important;
  stroke: white !important;
  stroke-width: 1px !important;
  position: relative;
}
.interactive-map__single-map path:hover {
  fill: #044930 !important;
  stroke: #ffffff !important;
  stroke-width: 3px !important;
  transition: fill 0.4s !important;
  cursor: pointer;
}

.blog h1 {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 6rem;
}
.blog__posts-container > .container {
  flex-wrap: wrap;
  row-gap: 4rem;
}
.blog__post-single a {
  text-decoration: none;
}
.blog__post-single a h2 {
  font-size: 2.3rem;
  margin: 1rem 0 1rem;
}
.blog__post-single a img {
  border-radius: 10px;
  height: auto;
}

.single-post__container a {
  color: var(--secondary-color);
}
.single-post__container h1 {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  margin-top: 4rem;
}
.single-post__container h2 {
  font-size: 2.4rem;
  color: var(--paragraph-color);
  margin: 2rem 0 1rem;
  padding-top: 2rem;
}
.single-post__container h3.wp-block-heading {
  font-size: 2rem;
  color: var(--paragraph-color);
}
.single-post__container img.wp-post-image {
  border-radius: 30px;
  margin-bottom: 2rem;
}
.single-post__container p, .single-post__container ol li, .single-post__container ul li {
  font-size: 1.8rem;
  line-height: 1.5;
}
.single-post__container p {
  margin-bottom: 1.5rem;
}
.single-post__container em {
  background: #eee;
  color: black;
  padding: 2rem;
  border-radius: 4px;
  display: block;
  margin-bottom: 2rem;
}
.single-post__container ol, .single-post__container ul {
  list-style-position: inside;
  margin: 3rem 0;
}
.single-post__container ol li, .single-post__container ul li {
  font-weight: 600;
}

.split-infos img.img-fluid {
  border-radius: 10px;
}

.post-type-archive-solucoes .solutions__single img {
  width: 100%;
  height: auto;
}

#form-contact-page form {
  display: flex;
  column-gap: 2%;
  row-gap: 2rem;
  flex-wrap: wrap;
}
#form-contact-page form div.input-combo {
  flex-basis: 49%;
}
#form-contact-page form div.input-combo label, #form-contact-page form div.input-combo input[type=text], #form-contact-page form div.input-combo input[type=email], #form-contact-page form div.input-combo input[type=tel], #form-contact-page form div.input-combo textarea {
  display: block;
  font-size: 1.6rem;
}
#form-contact-page form div.input-combo input[type=text], #form-contact-page form div.input-combo input[type=email], #form-contact-page form div.input-combo input[type=tel], #form-contact-page form div.input-combo textarea {
  padding: 0.75rem 2rem;
  width: 100%;
  border-radius: 8px;
  font-family: "Sarabun", sans-serif;
}
#form-contact-page form div.input-combo label {
  margin-bottom: 0.75rem;
}
#form-contact-page form div.input-combo input[type=submit].btn.btn__white {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: white;
  transition: all 0.2s ease;
}
#form-contact-page form div.input-combo input[type=submit].btn.btn__white:hover, #form-contact-page form div.input-combo input[type=submit].btn.btn__white:focus {
  background: transparent;
  color: white;
  transition: all 0.2s ease;
}
#form-contact-page {
  margin-top: 3rem;
}

.about__card {
  padding: 3rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 3rem;
  min-height: 332px;
}
.about__card h3 {
  color: var(--paragraph-color);
  margin: 1.5rem 0;
}

.portal-genesis {
  background: var(--primary-color);
  color: white;
  border-radius: 20px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.portal-genesis__card {
  padding: 4rem;
  border: 1px solid white;
  border-radius: 6px;
  text-align: center;
  min-height: 226px;
}
.portal-genesis h2 {
  margin-top: 3rem;
}
.portal-genesis h2, .portal-genesis p {
  color: white;
}
.portal-genesis img {
  margin-bottom: 1.5rem;
}

section.splide {
  padding-top: 0;
}

.splide__arrow {
  margin-top: -1em;
}

.carousel__item {
  padding: 8rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 316px;
  display: flex;
  align-items: center;
}
.carousel__item a {
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.carousel__item a:hover h2 {
  color: white;
  transition: color 0.2s ease;
}
.carousel__item:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.4);
}
.carousel__item h2 {
  font-size: 5rem;
  line-height: 1.3;
  color: #c1c0bb;
  transition: all 0.2s ease;
  margin-bottom: 0;
}

.solucoes-template-default .post .container {
  flex-direction: column;
}

.inovacao {
  background: #041958;
  padding: 8rem 0;
}
.inovacao .container {
  column-gap: 4%;
}
.inovacao h1 {
  color: white;
  margin: 1.4rem 0 3rem;
  font-size: 3rem;
}
.inovacao h1 + img {
  border-radius: 16px;
  max-width: 450px;
}
.inovacao form h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2rem;
}
.inovacao form fieldset {
  border: none;
  padding: 0;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.inovacao form fieldset .wpcf7-list-item {
  display: block;
  margin-bottom: 1rem;
}
.inovacao form legend {
  color: #92a0c9;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.inovacao form input[type=text], .inovacao form input[type=email], .inovacao form input[type=tel], .inovacao form textarea {
  padding: 1.25rem;
  background: white;
  font-family: "Sarabun", sans-serif;
  width: 100%;
  display: block;
  border: none;
  outline: none;
  border-radius: 8px;
  max-width: 400px;
  font-size: 1.75rem;
}
.inovacao form label {
  font-size: 1.75rem;
  color: white;
  cursor: pointer;
}
.inovacao form label input[type=radio], .inovacao form label input[type=checkbox] {
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  vertical-align: sub;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.load {
  background: var(--primary-color);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.load img {
  display: block;
  max-width: 40px;
  height: auto;
}

.hide {
  display: none;
}

.stateName {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  color: white;
  z-index: 4;
  pointer-events: none;
}

.btn, .wp-block-button__link {
  font-weight: bold;
  font-size: 1.6rem;
  background: gray;
  padding: 1.125rem 4rem;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  border: 1px solid gray;
  width: fit-content;
  margin-top: 1rem;
  display: inline-block;
}
.btn.btn__primary, .btn.wp-element-button, .wp-block-button__link.btn__primary, .wp-block-button__link.wp-element-button {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.2s linear;
}
.btn.btn__primary:hover, .btn.wp-element-button:hover, .wp-block-button__link.btn__primary:hover, .wp-block-button__link.wp-element-button:hover {
  background: white;
  color: black;
  transition: all 0.2s linear;
  cursor: pointer;
}
.btn.btn__secondary, .wp-block-button__link.btn__secondary {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transition: all 0.2s linear;
}
.btn.btn__secondary:hover, .wp-block-button__link.btn__secondary:hover {
  background: white;
  color: var(--secondary-color);
  transition: all 0.2s linear;
}
.btn.btn__neutral, .wp-block-button__link.btn__neutral {
  background: transparent;
  font-size: 1.25rem;
  padding: 1rem 1.5rem;
  margin: 1rem 1rem 0 0;
}
.btn.btn__neutral--gray, .wp-block-button__link.btn__neutral--gray {
  border-color: var(--paragraph-color);
  color: var(--paragraph-color);
}
.btn.btn__neutral--gray:hover, .wp-block-button__link.btn__neutral--gray:hover {
  background: var(--paragraph-color);
  color: white;
}
.btn.btn__white, .wp-block-button__link.btn__white {
  background: white;
  color: var(--paragraph-color);
  border: none;
  transition: all 0.2s linear;
}
.btn.btn__white:hover, .btn.btn__white:focus, .wp-block-button__link.btn__white:hover, .wp-block-button__link.btn__white:focus {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  transition: all 0.2s linear;
  cursor: pointer;
}
.btn.btn__ghost, .wp-block-button__link.btn__ghost {
  font-size: 1.4rem;
  background: transparent;
  border: 1px solid white;
  padding: 0.8rem 2rem;
}
.btn.btn__ghost:hover, .wp-block-button__link.btn__ghost:hover {
  background: white;
  color: var(--primary-color);
}

@media screen and (max-width: 959px) {
  :root {
    --base-size: 8px;
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .header .header__intro {
    border-radius: 0;
  }
  .header .header__intro .header__intro__ctas {
    display: none;
  }
  .header .header__intro button.header__intro__button-menu {
    background: transparent;
    padding: 1rem;
    border: none;
    cursor: pointer;
  }
  .header .header__intro button.header__intro__button-menu span {
    display: block;
    background: var(--paragraph-color);
    width: 30px;
    height: 2px;
    border-radius: 10px;
    transition: all 0.2s ease;
  }
  .header .header__intro button.header__intro__button-menu span + span {
    margin-top: 0.5rem;
  }
  .header .header__intro button.header__intro__button-menu__active {
    z-index: 6;
  }
  .header .header__intro button.header__intro__button-menu__active span:first-child {
    transform-origin: 0 0;
    transform: rotate(30deg) translateY(-5px);
    transition: all 0.2s ease;
  }
  .header .header__intro button.header__intro__button-menu__active span:nth-child(2) {
    transform-origin: 15px 3px;
    transform: translateY(-4px) rotate(-30deg);
    transition: all 0.2s ease;
  }
  .header .header__intro button.header__intro__button-menu__active span:last-child {
    display: none;
  }
  .header .header__menu {
    display: none;
  }
  .header .header__menu--active {
    display: flex;
    width: 100%;
    height: 100vh;
    background: white;
    top: 0;
    left: 0;
    position: absolute;
  }
  .header .header__menu--active .container {
    width: 100%;
  }
  .header .header__menu__items:before {
    content: url(../img/simbolo-genesis-verde-pequeno.png);
    display: block;
    margin-bottom: 4rem;
  }
  .header .header__menu__items ul {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2rem;
  }
  .header .header__menu__items ul li.menu-item-has-children:after {
    content: none !important;
  }
  .header .header__menu__items ul li.menu-item-has-children ul.sub-menu {
    display: none !important;
  }
  .header .header__menu__items ul li a {
    font-size: 2.5rem !important;
  }
  section.splide {
    padding-bottom: 0;
  }
  .carousel__item {
    padding: 10rem 0;
    min-height: initial;
  }
  .carousel__item .container .col-7 {
    flex-basis: 100%;
  }
  .carousel__item .container .col-7 h2 {
    font-size: 3rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .main {
    padding: 6rem 0;
    min-height: 40rem;
  }
  .main .container {
    flex-direction: column;
    row-gap: 4rem;
  }
  .main .main__title__info {
    font-size: 1.5rem;
  }
  .main .main__title-main {
    font-size: 3rem;
  }
  .home .info {
    padding-top: 0;
  }
  .info .container {
    flex-direction: column;
    row-gap: 4rem;
  }
  .info__item {
    align-self: center;
  }
  .info__item__text {
    top: 68px;
  }
  .cta__youtube .container {
    flex-direction: column;
    justify-content: center;
    row-gap: 6rem;
  }
  .cta__youtube .container div[class^=col-] {
    align-items: center;
  }
  .cta__youtube .container .col-3 {
    display: none;
  }
  .cta__youtube .container img {
    max-width: 150px;
  }
  .solutions .container {
    flex-direction: column;
    row-gap: 3rem;
  }
  .solutions__container .solutions__single {
    flex-basis: 100%;
  }
  .solutions__container .solutions__single a img {
    width: 100%;
    height: auto;
  }
  .solutions__container .solutions__single a h3 {
    min-height: initial;
  }
  .map .container {
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
  .features .container {
    flex-wrap: wrap;
    column-gap: 2%;
    row-gap: 3rem;
  }
  .features .container .features__item {
    flex-basis: 33%;
  }
  .cta-form__content {
    flex-direction: column;
    row-gap: 3rem;
    padding: 3rem 2rem;
  }
  .cta-form__content .col-6 img {
    transform: translate(0, 0);
  }
  .home-blog .container {
    flex-direction: column;
    row-gap: 3rem;
  }
  .home-blog .container + .container {
    margin-top: 4rem;
  }
  .form .container .form__bg {
    flex-direction: column;
    row-gap: 4rem;
  }
  .form .container .form__bg .col-6 {
    padding: 2rem 2rem 0;
  }
  .form .container .form__bg .col-6 + .col-6 {
    padding-top: 0;
    padding-bottom: 6rem;
  }
  .channels__container {
    flex-direction: column;
    row-gap: 2rem;
  }
  .channels__container h2 {
    margin: 0;
  }
  .section + .section {
    padding-top: 0;
  }
  .section.intro {
    padding-bottom: 4rem;
  }
  .section.intro .container {
    flex-direction: column-reverse;
    row-gap: 3rem;
  }
  .section.relatorio .container {
    flex-direction: column;
    row-gap: 3rem;
  }
  .section span.section__title-info {
    font-size: 1.75rem;
  }
  .section h2.section__title-main {
    font-size: 2.5rem;
  }
  .section p {
    font-size: 1.5rem;
  }
  .section .btn {
    width: auto;
    text-align: center;
  }
  .footer .container {
    flex-direction: column;
    row-gap: 4rem;
  }
  .footer .container + .container {
    row-gap: 1rem;
  }
  .footer p {
    font-size: 2rem;
  }
  .footer .footer__menu__items {
    margin: 3rem 0;
  }
  .footer .footer__menu__items ul {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
  }
  .footer .footer__menu__items ul.sub-menu {
    display: none;
  }
  .footer .footer__menu__items ul li {
    margin-bottom: 0;
  }
  .footer .footer__menu__items ul li ul.sub-menu.active {
    display: block;
  }
  .footer .footer__menu__items ul li a {
    font-size: 2rem;
  }
  .footer hr + p {
    margin-top: 0;
  }
  .footer__contacts ul li {
    font-size: 2rem;
  }
  .intro-page {
    position: relative;
  }
  .intro-page:after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    position: absolute;
  }
  .intro-page .container {
    flex-direction: column;
  }
  .intro-page .container div {
    position: relative;
    z-index: 2;
  }
  .split-infos .container {
    flex-direction: column;
    row-gap: 3rem;
  }
  .split-infos + .split-infos {
    padding-top: 0;
  }
  .about .container {
    flex-direction: column;
    row-gap: 3rem;
  }
  .about .container .about__card {
    min-height: initial;
  }
  .single-solucoes .post {
    padding: 4rem 0;
  }
  .single-solucoes .post .wp-block-columns {
    margin: 0;
  }
  .single-solucoes .post .wp-block-columns + .wp-block-columns {
    margin-top: 2rem;
  }
  .single-solucoes .post .wp-block-columns .wp-block-column p {
    font-size: 2rem;
  }
  .portal-genesis {
    flex-direction: column;
    row-gap: 3rem;
    margin: 0 2rem;
  }
  .portal-genesis__card {
    min-height: initial;
  }
  .page .split-infos p {
    font-size: 2rem;
  }
  .interactive-map .container {
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
  .blog h1 {
    margin: 4rem 0 2rem;
  }
  .blog__posts-container {
    margin-bottom: 6rem;
  }
  .blog__posts-container .container {
    flex-direction: column;
    row-gap: 5rem;
  }
  .single-post .container .single-post__container {
    width: 100%;
    flex-basis: 100%;
  }
  .single-post .container .single-post__container h1 {
    font-size: 3rem;
  }
  .single-post .container .single-post__container img.wp-post-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  #form-contact-page form {
    flex-direction: column;
  }
  .error404 .split-infos .container {
    flex-direction: column-reverse;
  }
  .join-us .container {
    flex-direction: column;
    row-gap: 3rem;
  }
  .join-us .container .join-us__single {
    align-items: center;
  }
  .join-us .container .join-us__single .col-6 img {
    top: -126px;
    right: -20px;
    max-width: 200px;
  }
  .inovacao .container {
    flex-direction: column;
  }
  .inovacao .container h1 + img {
    margin-bottom: 4rem;
    border-radius: 10px;
    max-width: 100%;
  }
  .inovacao .container form h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 4rem;
  }
  .inovacao .container form fieldset {
    row-gap: 2rem;
    margin-bottom: 4rem;
  }
  .inovacao .container form fieldset legend {
    font-size: 2.5rem;
    margin-bottom: 1.7rem;
  }
  .inovacao .container form fieldset .wpcf7-list-item {
    display: block;
    margin-bottom: 1rem;
  }
  .inovacao .container form input[type=text], .inovacao .container form input[type=tel], .inovacao .container form input[type=email], .inovacao .container form textarea {
    font-size: 2rem;
  }
  .inovacao .container form label {
    font-size: 2rem;
  }
  .inovacao .container form input.btn.btn__primary {
    font-size: 2.25rem;
    color: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
  }
}
@media screen and (min-width: 960px) {
  button.header__intro__button-menu {
    display: none;
  }
  .splide__pagination {
    display: none;
  }
  .inovacao {
    position: relative;
  }
  .inovacao h1 + img {
    position: sticky;
    top: 200px;
    left: 0;
  }
}
@media screen and (max-width: 448px) {
  .join-us .join-us__single {
    flex-direction: column;
    min-height: initial;
  }
  .join-us .join-us__single .col-6 + .col-6 {
    display: none;
  }
}
@keyframes widthAnimation {
  0% {
    max-width: 100%;
  }
  100% {
    max-width: 80%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0rem);
  }
}
@keyframes fadeInDefault {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.fade-in-default {
  animation: fadeInDefault 1s ease forwards;
}

.fade-in-down {
  animation: fadeIn 1.5s ease forwards;
}

.up {
  animation: 0.5s up ease-out forwards;
}