input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

p {
  margin: 0;
}

html,
body {
  font-family: "Tahoma", sans-serif;
  margin: 0;
  font-size: 14px;
  height: auto;
  overflow-y: hidden;
  overflow-x: hidden;
}
html.open,
body.open {
  overflow-y: hidden;
}
@media only screen and (max-width: 600px) {
  html,
body {
    font-size: 8px;
  }
}
@media only screen and (min-width: 600px) {
  html,
body {
    font-size: 9px;
  }
}
@media only screen and (min-width: 768px) {
  html,
body {
    font-size: 10px;
  }
}
@media only screen and (min-width: 992px) {
  html,
body {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1200px) {
  html,
body {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1920px) {
  html,
body {
    font-size: 14px;
  }
}
html a,
body a {
  text-decoration: none;
}

#app {
  height: auto;
  background-color: #fff;
  overflow: hidden;
}
#app > .container {
  padding: 0 130px;
}
#app > .container > div {
  max-width: 1920px;
  width: 100%;
  margin: auto;
}

.movement {
  position: relative;
  top: 70px;
  opacity: 0;
  transition: top 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0s, opacity 0.4s linear 0.1s;
}
.movement.placed {
  top: 0;
  opacity: 1;
}
.movement:nth-child(2) {
  transition: top 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0.2s, opacity 0.5s linear 0.2s;
}
.movement:nth-child(3) {
  transition: top 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0.3s, opacity 0.6s linear 0.3s;
}
.movement:nth-child(4) {
  transition: top 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0.4s, opacity 0.7s linear 0.4s;
}

.movement-delayed {
  position: relative;
  top: 70px;
  opacity: 0;
  transition: top 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0s, opacity 0.4s linear 0.1s;
}
.movement-delayed.placed {
  top: 0;
  opacity: 1;
}

.lateral {
  position: relative;
  left: -100px;
  opacity: 0;
  transition: left 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0s, opacity 0.4s linear 0.1s;
}
.lateral.placed {
  left: 0;
  opacity: 1;
}

.lateralR {
  position: relative;
  right: -100px;
  opacity: 0;
  transition: right 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0s, opacity 0.4s linear 0.1s;
}
.lateralR.placed {
  right: 0;
  opacity: 1;
}

#loading {
  background-color: #e6dbce;
  font-size: 32px;
  height: 100vh;
  width: 100vw;
  z-index: 100000000000000020000;
  position: fixed;
}
#loading.fadeout {
  animation: fadeout 0.5s forwards;
}

.loader {
  position: absolute;
  border: 6px solid #fff;
  border-top: 6px solid #91c569;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeout {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
a {
  text-decoration: none;
  color: #707070;
}

a {
  text-decoration: none;
  color: #4d901a;
}

.menu-container {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 9999;
  padding: 0;
  box-shadow: 0.0625rem 0rem 0.5625rem #000;
  top: 0;
}
.menu-container .menu {
  height: 5.625rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 8.125rem;
  background-color: #fff;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .menu-container .menu {
    margin: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .menu-container .menu {
    margin: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-container .menu {
    margin: 0 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .menu-container .menu {
    display: none;
  }
}
.menu-container .menu .brand {
  height: 100%;
  display: flex;
}
.menu-container .menu .brand a {
  display: flex;
  align-items: center;
  color: #707070;
}
.menu-container .menu .brand a img {
  width: 18.75rem;
}
@media only screen and (min-width: 992px) and (max-width: 1919px) {
  .menu-container .menu .brand a img {
    width: 18.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-container .menu .brand a img {
    width: 18.75rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .menu-container .menu .brand a img {
    width: 18.75rem;
  }
}
.menu-container .menu .menu-items {
  display: flex;
  flex-direction: row;
  max-width: 78.125rem;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) and (max-width: 1919px) {
  .menu-container .menu .menu-items {
    max-width: 63.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-container .menu .menu-items {
    max-width: 51.25rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .menu-container .menu .menu-items {
    max-width: 51.25rem;
  }
}
.menu-container .menu .menu-items .menu-item {
  height: 100%;
  margin: 0 1.25rem;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1919px) {
  .menu-container .menu .menu-items .menu-item {
    margin: 0 0.3125rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-container .menu .menu-items .menu-item {
    margin: 0 0.3125rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .menu-container .menu .menu-items .menu-item {
    margin: 0 0.3125rem;
  }
}
.menu-container .menu .menu-items .menu-item .menu-items-submenu {
  position: absolute;
  top: 5.625rem;
  width: 16.25rem;
  height: auto;
  background-color: #fff;
  margin-left: -1.25rem;
  display: none;
}
.menu-container .menu .menu-items .menu-item .menu-items-submenu .menu-item-submenu {
  height: 4.375rem;
  display: flex;
  align-items: center;
}
.menu-container .menu .menu-items .menu-item .menu-items-submenu .menu-item-submenu a {
  margin-left: 1.25rem;
  color: #91c569;
  font-weight: bold;
  transition: 0.5s;
}
.menu-container .menu .menu-items .menu-item .menu-items-submenu .menu-item-submenu a:hover {
  color: #fb6606;
}
.menu-container .menu .menu-items .menu-item a {
  font-size: 1.125rem;
  color: #91c569;
  font-weight: bold;
  transition: 0.5s;
}
.menu-container .menu .menu-items .menu-item a:hover {
  color: #fb6606;
}
@media only screen and (min-width: 992px) and (max-width: 1919px) {
  .menu-container .menu .menu-items .menu-item a {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-container .menu .menu-items .menu-item a {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .menu-container .menu .menu-items .menu-item a {
    font-size: 1rem;
  }
}
.menu-container .menu .menu-items .menu-item .cta-wrapper .cta {
  width: 16.25rem;
  height: 3.125rem;
  background-color: #91c569;
  border: 1px solid #91c569;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
@media only screen and (min-width: 992px) and (max-width: 1919px) {
  .menu-container .menu .menu-items .menu-item .cta-wrapper .cta {
    max-width: 16.25rem;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 0.3125rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-container .menu .menu-items .menu-item .cta-wrapper .cta {
    max-width: 16.25rem;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 0.3125rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .menu-container .menu .menu-items .menu-item .cta-wrapper .cta {
    max-width: 16.25rem;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 0.3125rem;
  }
}
.menu-container .menu .menu-items .menu-item .cta-wrapper .cta .txt {
  color: #fff;
  font-weight: bold;
  font-size: 0.9375rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1919px) {
  .menu-container .menu .menu-items .menu-item .cta-wrapper .cta .txt {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-container .menu .menu-items .menu-item .cta-wrapper .cta .txt {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .menu-container .menu .menu-items .menu-item .cta-wrapper .cta .txt {
    font-size: 0.875rem;
  }
}
.menu-container .menu .menu-items .menu-item .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.menu-container .menu .menu-items .menu-item .cta-wrapper .cta:hover .txt {
  color: #91c569;
}
.menu-container .menu-mobile {
  height: 5.625rem;
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 1.25rem;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .menu-container .menu-mobile {
    display: flex;
  }
}
.menu-container .menu-mobile .brand {
  height: 100%;
  display: flex;
}
.menu-container .menu-mobile .brand a {
  display: flex;
  align-items: center;
}
.menu-container .menu-mobile .brand a img {
  width: 14.375rem;
}
.menu-container .menu-mobile .menu-btn {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 10px 0;
  cursor: pointer;
}
.menu-container .menu-mobile .menu-btn div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.menu-container .menu-mobile .menu-btn div .line {
  width: 100%;
  height: 1px;
  background-color: #000;
}
.menu-container .menu-mobile .menu-items {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  position: absolute;
  top: 5.625rem;
  left: -100%;
  background-color: #fff;
  width: 100%;
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  z-index: -1;
}
.menu-container .menu-mobile .menu-items.open {
  left: 0%;
}
.menu-container .menu-mobile .menu-items .menu-item {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  height: 6.25rem;
  border-bottom: 1px solid #d9d9d9;
  justify-content: center;
}
.menu-container .menu-mobile .menu-items .menu-item:last-child {
  border-bottom: 0;
}
.menu-container .menu-mobile .menu-items .menu-item a {
  font-size: 1.625rem;
  margin: 10px 0;
  margin-left: 1.25rem;
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
  color: #91c569;
  font-weight: bold;
}
.menu-container .menu-mobile .menu-items .menu-item .cta-wrapper .cta {
  width: 20rem;
  height: 4.375rem;
  background-color: #91c569;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.3125rem;
  flex-wrap: wrap;
}
.menu-container .menu-mobile .menu-items .menu-item .cta-wrapper .cta .txt {
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  text-transform: uppercase;
}
.menu-container .menu-mobile .menu-items .menu-item .menu-items-submenu {
  position: absolute;
  top: 5.625rem;
  width: 16.25rem;
  height: auto;
  background-color: #fff;
  margin-left: -1.25rem;
  display: none;
}
.menu-container .menu-mobile .menu-items .menu-item .menu-items-submenu .menu-item-submenu {
  height: 4.375rem;
  display: flex;
  align-items: center;
}
.menu-container .menu-mobile .menu-items .menu-item .menu-items-submenu .menu-item-submenu a {
  margin-left: 1.25rem;
}

.banner {
  margin-top: 5.625rem;
  height: 30.625rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .banner {
    height: 11.875rem;
  }
}
.banner .images {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .images .image {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .images .image img {
  width: 100%;
  height: auto;
}

#footer {
  position: relative;
}
#footer.stikybottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
#footer .newsletter {
  height: 7.5rem;
  padding: 0 8.125rem;
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  #footer .newsletter {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #footer .newsletter {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #footer .newsletter {
    padding: 0 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #footer .newsletter {
    padding: 0 1.25rem;
  }
}
#footer .newsletter .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#footer .newsletter .content .copy {
  font-size: 1.75rem;
  color: #707070;
  font-weight: 400;
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #footer .newsletter .content .copy {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 600px) {
  #footer .newsletter .content .copy {
    font-size: 1.25rem;
  }
}
#footer .newsletter .content .form {
  display: flex;
  justify-content: space-between;
  max-width: 51.25rem;
  width: 100%;
}
#footer .newsletter .content .form .input {
  display: flex;
}
@media only screen and (max-width: 767px) {
  #footer .newsletter .content .form .input {
    width: 100%;
  }
}
#footer .newsletter .content .form .input input {
  width: 32.5rem;
  height: 3.75rem;
  border-radius: 0.625rem;
  border: none;
  font-size: 1.375rem;
  padding-left: 1.25rem;
}
@media only screen and (max-width: 767px) {
  #footer .newsletter .content .form .input input {
    width: 100%;
  }
}
#footer .newsletter .content .form .input input:focus {
  outline: none !important;
}
#footer .newsletter .content .form .input input.error::-webkit-input-placeholder {
  color: red;
}
#footer .newsletter .content .form .input input.error:focus {
  outline: none !important;
  border: 0.0625rem solid red;
  box-shadow: 0 0 0.625rem #719ece;
}
#footer .newsletter .content .form .cta-wrapper {
  width: 16.25rem;
  height: 4.0625rem;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 1.25rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media only screen and (max-width: 767px) {
  #footer .newsletter .content .form .cta-wrapper {
    width: 13.75rem;
  }
}
#footer .newsletter .content .form .cta-wrapper:focus {
  outline: none;
}
#footer .newsletter .content .form .cta-wrapper .cta {
  width: 16.25rem;
  height: 4.0625rem;
  background-color: #91c569;
  border: 1px solid #91c569;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
@media only screen and (max-width: 767px) {
  #footer .newsletter .content .form .cta-wrapper .cta {
    max-width: 9.375rem;
  }
}
#footer .newsletter .content .form .cta-wrapper .cta .txt {
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
}
#footer .newsletter .content .form .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
#footer .newsletter .content .form .cta-wrapper .cta:hover .txt {
  color: #91c569;
}

.footer {
  height: auto;
  padding: 0 8.125rem;
  background-color: #e6dbce;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .footer {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer {
    padding: 0 3.75rem;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding: 0 2.5rem;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 0 1.25rem;
    height: auto;
  }
}
.footer .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .content footer {
  margin: 3.125rem 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 600px) {
  .footer .content footer {
    flex-direction: row;
    height: auto;
    flex-wrap: wrap;
  }
}
.footer .content footer .section {
  width: 25%;
  margin-right: 1.25rem;
}
@media only screen and (max-width: 600px) {
  .footer .content footer .section {
    width: 47%;
  }
}
.footer .content footer .section > a img {
  width: 80%;
}
.footer .content footer .section > p {
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: bold;
  color: #000000;
}
.footer .content footer .section .links-site {
  padding: 0;
}
.footer .content footer .section .links-site .link {
  list-style: none;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.9375rem;
}
.footer .content footer .section .links-site .link a {
  color: #000000;
}
.footer .content footer .section .links-uteis {
  padding: 0;
}
.footer .content footer .section .links-uteis .link {
  list-style: none;
  font-size: 1rem;
  margin-bottom: 0.9375rem;
  cursor: pointer;
}
.footer .content footer .section > div p {
  color: #707070;
  font-size: 1rem;
}
.footer .content footer .section > div p span {
  font-weight: bold;
  display: inline-block;
  margin-top: 0.9375rem;
}

.about-home {
  height: 43.75rem;
  display: flex;
  flex-direction: row;
  padding: 0 8.125rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .about-home {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-home {
    padding: 0 3.75rem;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-home {
    padding: 0 2.5rem;
    height: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about-home {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .about-home {
    padding: 0 1.25rem;
    height: auto;
  }
}
.about-home .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-home .content {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-home .content {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about-home .content {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 599px) {
  .about-home .content {
    margin: 0 auto;
  }
}
.about-home .content .row {
  height: 100%;
  display: flex;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .about-home .content .row {
    height: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-home .content .row {
    display: flex;
    height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-home .content .row {
    display: flex;
    height: 100%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about-home .content .row {
    display: flex;
    height: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .about-home .content .row {
    display: flex;
    height: 100%;
    flex-direction: column;
  }
}
.about-home .content .left {
  width: 38.9375rem;
  height: 33.6875rem;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-home .content .left {
    position: relative;
    width: 100%;
    margin: 2.5rem 2.5rem 2.5rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-home .content .left {
    position: relative;
    width: 100%;
    margin: 2.5rem 2.5rem 2.5rem 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about-home .content .left {
    position: relative;
    width: 100%;
    margin: 2.5rem 2.5rem 2.5rem 0;
  }
}
@media only screen and (max-width: 599px) {
  .about-home .content .left {
    position: relative;
    width: 100%;
    margin: 2.5rem 0rem 2.5rem 0;
    height: auto;    
    top: unset;
    height: auto;
    left: unset;
    transform: translateY(0);
  }
}
.about-home .content .left img {
  width: 100%;
  height: auto;
}
.about-home .content .right {
  position: absolute;
  width: 45rem;
  height: auto;
  background-color: #fafafa;
  border-radius: 0.625rem;
  box-shadow: 0.625rem 0.6875rem 1.0625rem rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  padding: 2.5rem 3.75rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .about-home .content .right {
    max-width: 37.5rem;
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-home .content .right {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin: 0;
    height: 100%;
    max-height: 18.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-home .content .right {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin: 0;
    height: 100%;
    max-height: 18.75rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about-home .content .right {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin: 0;
    height: 100%;
    max-height: 18.75rem;
  }
}
@media only screen and (max-width: 599px) {
  .about-home .content .right {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    /* top: 0; */
    margin: auto;
    margin-bottom: 2.5rem;
    height: auto;    
    top: unset;
    height: auto;
    left: unset;
    transform: translateY(0);
  }
}
.about-home .content .right .copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .about-home .content .right .copy {
    justify-content: center;
    align-items: center;
  }
}
.about-home .content .right .copy .title {
  font-size: 2rem;
  color: #707070;
  margin-bottom: 0.625rem;
  font-weight: 400;
}
.about-home .content .right .copy .text {
  font-size: 1rem;
  color: #707070;
  line-height: 1.5em;
}
@media only screen and (max-width: 599px) {
  .about-home .content .right .copy .text {
    line-height: 1.1em;
    text-align: center;
  }
}
.about-home .content .right .copy .cta-wrapper {
  width: 10.625rem;
  margin-top: 0.625rem;
  align-self: flex-end;
}
@media only screen and (max-width: 1199px) {
  .about-home .content .right .copy .cta-wrapper {
    align-self: flex-start;
  }
}
@media only screen and (max-width: 599px) {
  .about-home .content .right .copy .cta-wrapper {
    align-self: center;
  }
}
.about-home .content .right .copy .cta-wrapper .cta {
  width: 10.625rem;
  height: 3.125rem;
  border-radius: 0.625rem;
  background-color: #91c569;
  border: 1px solid #91c569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
.about-home .content .right .copy .cta-wrapper .cta .txt {
  font-size: 1rem;
  color: #fff;
}
.about-home .content .right .copy .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.about-home .content .right .copy .cta-wrapper .cta:hover .txt {
  color: #91c569;
}

.servicos-home {
  height: 37.5rem;
  display: flex;
  flex-direction: row;
  padding: 0 8.125rem;
  background-color: #fafafa;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .servicos-home {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .servicos-home {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .servicos-home {
    padding: 0 3.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .servicos-home {
    padding: 0 1.25rem;
    height: auto;
  }
}
.servicos-home .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .servicos-home .content {
    margin: 2.5rem auto;
  }
}
.servicos-home .content .title {
  font-size: 2rem;
  color: #707070;
  text-align: center;
  font-weight: 400;
}
.servicos-home .content .items {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 599px) {
  .servicos-home .content .items {
    flex-direction: column;
    align-items: center;
  }
}
.servicos-home .content .items .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26.25rem;
  height: auto;
  align-items: center;
}
@media only screen and (max-width: 1919px) {
  .servicos-home .content .items .item {
    align-items: center;
    width: 50%;
  }
}
@media only screen and (max-width: 599px) {
  .servicos-home .content .items .item {
    width: 100%;
    height: 100%;
    margin-bottom: 2.5rem;
  }
}
.servicos-home .content .items .item .subtitle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.servicos-home .content .items .item .subtitle .icon {
  width: 5.4375rem;
  height: 5.4375rem;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servicos-home .content .items .item .subtitle .icon img {
  height: 100%;
}
.servicos-home .content .items .item .subtitle .txt {
  font-size: 1.75rem;
  color: #707070;
  margin-bottom: 0.9375rem;
  font-weight: 400;
}
.servicos-home .content .items .item .copy {
  color: #707070;
  font-size: 1rem;
  line-height: 1.5em;
  height: 9.375rem;
  overflow: hidden;
  text-align: center;
  margin-bottom: 0.9375rem;
}
@media only screen and (max-width: 1919px) {
  .servicos-home .content .items .item .copy {
    text-align: center;
  }
}
@media only screen and (max-width: 599px) {
  .servicos-home .content .items .item .copy {
    height: 100%;
  }
}
.servicos-home .content .items .item .copy > p {
  margin: 0;
}
@media only screen and (max-width: 599px) {
  .servicos-home .content .items .item .cta-wrapper {
    margin-top: 1.25rem;
  }
}
.servicos-home .content .items .item .cta-wrapper .cta {
  width: 10.625rem;
  height: 3.125rem;
  background-color: #91c569;
  border: 1px solid #91c569;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  transition: 0.5s;
  cursor: pointer;
}
.servicos-home .content .items .item .cta-wrapper .cta .txt {
  color: #fff;
  font-size: 1rem;
}
.servicos-home .content .items .item .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.servicos-home .content .items .item .cta-wrapper .cta:hover .txt {
  color: #91c569;
}

.destaques {
  height: 37.5rem;
  height: auto;
  display: flex;
  flex-direction: row;
  padding: 0 8.125rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .destaques {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .destaques {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .destaques {
    padding: 0 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .destaques {
    padding: 0 1.25rem;
    height: auto;
  }
}
.destaques .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.destaques .content .row {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 600px) {
  .destaques .content .row {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.destaques .content .row .destaque {
  width: 25rem;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.625rem;
  margin-top: 2.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .destaques .content .row .destaque {
    width: 21.875rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .destaques .content .row .destaque {
    width: 21.875rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .destaques .content .row .destaque {
    width: 20.625rem;
  }
}
@media only screen and (max-width: 600px) {
  .destaques .content .row .destaque {
    width: 100%;
    background-color: #fff;
    margin-bottom: 2.5rem;
  }
}
.destaques .content .row .destaque .imagem {
  width: 100%;
  height: 17.75rem;
  background-color: #f3f3f3;
  border-radius: 0.625rem 0.625rem 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 600px) {
  .destaques .content .row .destaque .imagem {
    background-color: #fff;
    height: 100%;
  }
}
.destaques .content .row .destaque .imagem img {
  height: 100%;
  width: 100%;
  border-radius: 0.625rem 0.625rem 0 0;
}
.destaques .content .row .destaque .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 40%;
  width: 100%;
  background-color: #eaeaea;
  border-radius: 0 0 0.625rem 0.625rem;
}
.destaques .content .row .destaque .bottom .title {
  font-size: 1.125rem;
  padding: 0.9375rem;
}
.destaques .content .row .destaque .bottom a {
  padding: 0.625rem;
}
.destaques .content .row .destaque .bottom .cta-wrapper .cta {
  width: 16.25rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #91c569;
  border: 1px solid #91c569;
  border-radius: 0.625rem;
  transition: 0.5s;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .destaques .content .row .destaque .bottom .cta-wrapper .cta {
    width: 12.5rem;
  }
}
.destaques .content .row .destaque .bottom .cta-wrapper .cta .txt {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.destaques .content .row .destaque .bottom .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.destaques .content .row .destaque .bottom .cta-wrapper .cta:hover .txt {
  color: #91c569;
}

.contactos-home {
  height: 17.1875rem;
  display: flex;
  flex-direction: row;
  padding: 0 8.125rem;
  background-color: #f6f6f6;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .contactos-home {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contactos-home {
    padding: 0 3.75rem;
    height: 14.0625rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contactos-home {
    padding: 0 2.5rem;
    height: 14.0625rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .contactos-home {
    padding: 0 1.25rem;
    height: 14.0625rem;
  }
}
@media only screen and (max-width: 600px) {
  .contactos-home {
    padding: 0 1.25rem;
    height: 14.0625rem;
  }
}
.contactos-home .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin: 3.75rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contactos-home .content {
    margin: 2.5rem auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contactos-home .content {
    margin: 2.5rem auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .contactos-home .content {
    margin: 2.5rem auto;
  }
}
@media only screen and (max-width: 600px) {
  .contactos-home .content {
    margin: 2.5rem auto;
  }
}
.contactos-home .content .row {
  max-width: 55rem;
  width: 100%;
}
.contactos-home .content .row .title {
  font-size: 2rem;
  color: #707070;
  text-align: center;
  font-weight: 400;
}
@media only screen and (max-width: 600px) {
  .contactos-home .content .row .title {
    font-size: 1.75rem;
    margin-bottom: 0.625rem;
  }
}
.contactos-home .content .row.ctas {
  display: flex;
  justify-content: space-between;
  max-width: 43.75rem;
}
@media only screen and (max-width: 600px) {
  .contactos-home .content .row.ctas {
    max-width: 31.25rem;
  }
}
.contactos-home .content .row.ctas .cta-wrapper {
  width: 16.25rem;
  height: 3.75rem;
}
@media only screen and (max-width: 600px) {
  .contactos-home .content .row.ctas .cta-wrapper {
    width: 12.5rem;
    height: 3.75rem;
  }
}
.contactos-home .content .row.ctas .cta-wrapper .cta {
  width: 16.25rem;
  height: 3.75rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .contactos-home .content .row.ctas .cta-wrapper .cta {
    width: 12.5rem;
    height: 3.75rem;
  }
}
.contactos-home .content .row.ctas .cta-wrapper .cta.green {
  background-color: #91c569;
  border: 0.25rem solid #91c569;
}
.contactos-home .content .row.ctas .cta-wrapper .cta.green .txt {
  color: #fff;
}
.contactos-home .content .row.ctas .cta-wrapper .cta.green:hover {
  background-color: #fff;
  border: 0.25rem solid #91c569;
  transition: 0.5s;
}
.contactos-home .content .row.ctas .cta-wrapper .cta.green:hover .txt {
  color: #91c569;
}
.contactos-home .content .row.ctas .cta-wrapper .cta.white {
  background-color: #e6dbce;
  border: 0.25rem solid #e6dbce;
}
.contactos-home .content .row.ctas .cta-wrapper .cta.white .txt {
  color: #707070;
}
.contactos-home .content .row.ctas .cta-wrapper .cta.white:hover {
  background-color: #fff;
  border: 4px solid #e6dbce;
  transition: 0.5s;
}
.contactos-home .content .row.ctas .cta-wrapper .cta.white:hover .txt {
  color: #707070;
}
.contactos-home .content .row.ctas .cta-wrapper .cta .txt {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: bold;
}
@media only screen and (max-width: 600px) {
  .contactos-home .content .row.ctas .cta-wrapper .cta .txt {
    font-size: 1rem;
  }
}

.parceiros {
  height: 26.875rem;
  display: flex;
  flex-direction: row;
  padding: 0 8.125rem;
  background-color: #fff;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .parceiros {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .parceiros {
    padding: 0 3.75rem;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .parceiros {
    padding: 0 2.5rem;
    height: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .parceiros {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .parceiros {
    padding: 0 1.25rem;
    height: auto;
  }
}
.parceiros .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin: 3.125rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.parceiros .content .title {
  font-size: 2rem;
  color: #707070;
  text-align: center;
  margin-bottom: 1.875rem;
  font-weight: 400;
}
.parceiros .content .items {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 599px) {
  .parceiros .content .items {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.parceiros .content .items .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 14.0625rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .parceiros .content .items .item {
    height: 14.0625rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .parceiros .content .items .item {
    height: 14.0625rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .parceiros .content .items .item {
    height: 14.0625rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .parceiros .content .items .item {
    height: 14.0625rem;
  }
}
@media only screen and (max-width: 599px) {
  .parceiros .content .items .item {
    width: 40%;
    height: unset;
    margin-bottom: 2.5rem;
  }
}
.parceiros .content .items .item .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.parceiros .content .items .item .img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 600px) and (max-width: 1919px) {
  .parceiros .content .items .item .img {
    height: 100%;
    overflow: hidden;
  }
}
@media only screen and (max-width: 599px) {
  .parceiros .content .items .item .img {
    height: 100%;
    overflow: hidden;
  }
}
.parceiros .content .items .item .img img {
  height: 50%;
}
@media only screen and (min-width: 600px) and (max-width: 1919px) {
  .parceiros .content .items .item .img img {
    height: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .parceiros .content .items .item .img img {
    height: 100%;
    width: 100%;
  }
}
.parceiros .content .items .item .name .txt {
  font-size: 1.5625rem;
  color: #707070;
  text-align: center;
}

.associacoes {
  height: 26.875rem;
  display: flex;
  flex-direction: row;
  padding: 0 8.125rem;
  background-color: #fff;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .associacoes {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .associacoes {
    padding: 0 3.75rem;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .associacoes {
    padding: 0 2.5rem;
    height: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .associacoes {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .associacoes {
    padding: 0 1.25rem;
    height: auto;
  }
}
.associacoes .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin: 3.125rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.associacoes .content .title {
  font-size: 2rem;
  color: #707070;
  text-align: center;
  margin-bottom: 1.875rem;
  font-weight: 400;
}
.associacoes .content .items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 599px) {
  .associacoes .content .items {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.associacoes .content .items .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 11.25rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .associacoes .content .items .item {
    height: 11.25rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .associacoes .content .items .item {
    height: 11.25rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .associacoes .content .items .item {
    height: 11.25rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .associacoes .content .items .item {
    height: 11.25rem;
  }
}
@media only screen and (max-width: 599px) {
  .associacoes .content .items .item {
    width: 40%;
    height: unset;
    margin-bottom: 2.5rem;
  }
}
.associacoes .content .items .item .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.associacoes .content .items .item .img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 600px) and (max-width: 1919px) {
  .associacoes .content .items .item .img {
    height: 100%;
    overflow: hidden;
  }
}
@media only screen and (max-width: 599px) {
  .associacoes .content .items .item .img {
    height: 100%;
    overflow: hidden;
  }
}
.associacoes .content .items .item .img img {
  height: 80%;
}
@media only screen and (min-width: 600px) and (max-width: 1919px) {
  .associacoes .content .items .item .img img {
    height: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .associacoes .content .items .item .img img {
    height: 100%;
    width: 100%;
  }
}
.associacoes .content .items .item .name .txt {
  font-size: 1.5625rem;
  color: #707070;
  text-align: center;
}

.about {
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media only screen and (max-width: 599px) {
  .about {
    margin-top: 1.25rem;
  }
}
.about .row {
  height: auto;
  min-height: 45.625rem;
  padding: 0 8.125rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .about .row {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about .row {
    padding: 0 3.75rem;
    height: 39.375rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about .row {
    padding: 0 2.5rem;
    height: 39.375rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about .row {
    padding: 0 1.25rem;
    height: 39.375rem;
  }
}
@media only screen and (max-width: 599px) {
  .about .row {
    padding: 0 1.25rem;
    height: auto;
  }
}
.about .row:nth-child(odd) .wrapper {
  max-width: 93.75rem;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .about .row:nth-child(odd) .wrapper {
    display: flex;
    height: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about .row:nth-child(odd) .wrapper {
    display: flex;
    height: 100%;
    position: relative;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about .row:nth-child(odd) .wrapper {
    display: flex;
    height: 100%;
    position: relative;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about .row:nth-child(odd) .wrapper {
    display: flex;
    height: 100%;
    position: relative;
  }
}
@media only screen and (max-width: 599px) {
  .about .row:nth-child(odd) .wrapper {
    display: flex;
    height: 100%;
    flex-direction: column;
    position: relative;
  }
}
.about .row:nth-child(odd) .wrapper .left {
  width: 50rem;
  height: 32.1875rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about .row:nth-child(odd) .wrapper .left {
    position: relative;
    width: 100%;
    margin: 0 2.5rem 0 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about .row:nth-child(odd) .wrapper .left {
    position: relative;
    width: 100%;
    margin: 0 2.5rem 0 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about .row:nth-child(odd) .wrapper .left {
    position: relative;
    width: 100%;
    margin: 0 2.5rem 0 0;
  }
}
@media only screen and (max-width: 599px) {
  .about .row:nth-child(odd) .wrapper .left {
    position: relative;
    width: 100%;
    margin: 0 2.5rem 0 0;
    top: 0;
    transform: translateY(0);
  }
}
.about .row:nth-child(odd) .wrapper .left img {
  height: 100%;
}
.about .row:nth-child(odd) .wrapper .right {
  position: absolute;
  width: 43.75rem;
  height: auto;
  max-height: 43.75rem;
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0.625rem 0.6875rem 1.0625rem rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  padding: 2.5rem 3.75rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .about .row:nth-child(odd) .wrapper .right {
    max-width: 37.5rem;
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about .row:nth-child(odd) .wrapper .right {
    position: relative;
    width: 100%;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about .row:nth-child(odd) .wrapper .right {
    position: relative;
    width: 100%;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about .row:nth-child(odd) .wrapper .right {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }
}
@media only screen and (max-width: 599px) {
  .about .row:nth-child(odd) .wrapper .right {
    position: relative;
    width: 100%;
    height: auto;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin-bottom: 2.5rem;
    top: 0;
    transform: translateY(0);
  }
}
.about .row:nth-child(odd) .wrapper .right .copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .about .row:nth-child(odd) .wrapper .right .copy {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .about .row:nth-child(odd) .wrapper .right .copy {
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 599px) {
  .about .row:nth-child(odd) .wrapper .right .copy {
    justify-content: center;
    margin-top: 1.875rem;
  }
}
.about .row:nth-child(odd) .wrapper .right .copy .title {
  font-size: 2rem;
  color: #707070;
  margin-bottom: 0.625rem;
  font-weight: 400;
}
.about .row:nth-child(odd) .wrapper .right .copy .subtitle {
  font-size: 1rem;
  color: #707070;
  margin-top: 10px;
}
.about .row:nth-child(odd) .wrapper .right .copy .text {
  font-size: 1.125rem;
  color: #707070;
  line-height: 1.5em;
  margin: 0;
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about .row:nth-child(odd) .wrapper .right .copy .text {
    text-align: center;
  }
}
@media only screen and (max-width: 599px) {
  .about .row:nth-child(odd) .wrapper .right .copy .text {
    line-height: 1.1em;
    text-align: center;
  }
}
.about .row:nth-child(odd) .wrapper .right .copy .cta-wrapper {
  width: 10.625rem;
  margin-top: 0.625rem;
  align-self: flex-end;
}
@media only screen and (max-width: 767px) {
  .about .row:nth-child(odd) .wrapper .right .copy .cta-wrapper {
    align-self: center;
    margin-top: 1.875rem;
  }
}
.about .row:nth-child(odd) .wrapper .right .copy .cta-wrapper .cta {
  width: 10.625rem;
  height: 3.125rem;
  border-radius: 0.625rem;
  background-color: #91c569;
  border: 1px solid #91c569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
.about .row:nth-child(odd) .wrapper .right .copy .cta-wrapper .cta .txt {
  font-size: 1.25rem;
  color: #fff;
}
.about .row:nth-child(odd) .wrapper .right .copy .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.about .row:nth-child(odd) .wrapper .right .copy .cta-wrapper .cta:hover .txt {
  color: #91c569;
}
.about .row:nth-child(even) .wrapper {
  max-width: 93.75rem;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .about .row:nth-child(even) .wrapper {
    display: flex;
    height: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about .row:nth-child(even) .wrapper {
    display: flex;
    height: 100%;
    position: relative;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about .row:nth-child(even) .wrapper {
    display: flex;
    height: 100%;
    position: relative;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about .row:nth-child(even) .wrapper {
    display: flex;
    height: 100%;
    position: relative;
  }
}
@media only screen and (max-width: 599px) {
  .about .row:nth-child(even) .wrapper {
    display: flex;
    height: 100%;
    flex-direction: column;
    position: relative;
  }
}
.about .row:nth-child(even) .wrapper .left {
  position: absolute;
  width: 43.75rem;
  height: auto;
  max-height: 43.75rem;
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0.625rem 0.6875rem 1.0625rem rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding: 2.5rem 3.75rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .about .row:nth-child(even) .wrapper .left {
    max-width: 37.5rem;
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about .row:nth-child(even) .wrapper .left {
    position: relative;
    width: 100%;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about .row:nth-child(even) .wrapper .left {
    position: relative;
    width: 100%;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin: 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about .row:nth-child(even) .wrapper .left {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin: 0;
  }
}
@media only screen and (max-width: 599px) {
  .about .row:nth-child(even) .wrapper .left {
    position: relative;
    width: 100%;
    height: auto;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin: 0;
    margin-bottom: 2.5rem;
    top: 0;
    transform: translateY(0);
  }
}
.about .row:nth-child(even) .wrapper .left .copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .about .row:nth-child(even) .wrapper .left .copy {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .about .row:nth-child(even) .wrapper .left .copy {
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 599px) {
  .about .row:nth-child(even) .wrapper .left .copy {
    justify-content: center;
    margin-top: 1.875rem;
  }
}
.about .row:nth-child(even) .wrapper .left .copy .title {
  font-size: 2rem;
  color: #707070;
  margin-bottom: 0.625rem;
  font-weight: 400;
}
.about .row:nth-child(even) .wrapper .left .copy .subtitle {
  font-size: 1rem;
  color: #707070;
  margin-top: 10px;
}
.about .row:nth-child(even) .wrapper .left .copy .text {
  font-size: 1.125rem;
  color: #707070;
  line-height: 1.5em;
  margin-top: 0.625rem;
}
.about .row:nth-child(even) .wrapper .left .copy .text a {
  color: #91c569;
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about .row:nth-child(even) .wrapper .left .copy .text {
    text-align: center;
  }
}
@media only screen and (max-width: 599px) {
  .about .row:nth-child(even) .wrapper .left .copy .text {
    line-height: 1.1em;
    text-align: center;
  }
}
.about .row:nth-child(even) .wrapper .left .copy .cta-wrapper {
  width: 10.625rem;
  margin-top: 0.625rem;
  align-self: flex-end;
}
@media only screen and (max-width: 767px) {
  .about .row:nth-child(even) .wrapper .left .copy .cta-wrapper {
    align-self: center;
    margin-top: 1.875rem;
  }
}
.about .row:nth-child(even) .wrapper .left .copy .cta-wrapper .cta {
  width: 10.625rem;
  height: 3.125rem;
  border-radius: 0.625rem;
  background-color: #91c569;
  border: 1px solid #91c569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
.about .row:nth-child(even) .wrapper .left .copy .cta-wrapper .cta .txt {
  font-size: 1.25rem;
  color: #fff;
}
.about .row:nth-child(even) .wrapper .left .copy .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.about .row:nth-child(even) .wrapper .left .copy .cta-wrapper .cta:hover .txt {
  color: #91c569;
}
.about .row:nth-child(even) .wrapper .right {
  width: 50rem;
  height: 32.1875rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about .row:nth-child(even) .wrapper .right {
    position: relative;
    width: 100%;
    margin: 0 2.5rem 0 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about .row:nth-child(even) .wrapper .right {
    position: relative;
    width: 100%;
    margin: 0 2.5rem 0 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .about .row:nth-child(even) .wrapper .right {
    position: relative;
    width: 100%;
    margin: 0 2.5rem 0 0;
  }
}
@media only screen and (max-width: 599px) {
  .about .row:nth-child(even) .wrapper .right {
    position: relative;
    width: 100%;
    margin: 0 2.5rem 0 0;
    top: 0;
    transform: translateY(0);
  }
}
.about .row:nth-child(even) .wrapper .right img {
  height: 100%;
}

.equipa {
  height: 37.5rem;
  display: flex;
  flex-direction: row;
  padding: 0 8.125rem;
  background-color: #fafafa;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .equipa {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .equipa {
    padding: 0 3.75rem;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .equipa {
    padding: 0 2.5rem;
    height: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .equipa {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .equipa {
    padding: 0 1.25rem;
    height: auto;
  }
}
.equipa .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin: 3.75rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.equipa .content .title {
  font-size: 2rem;
  color: #707070;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .equipa .content .title {
    margin-bottom: 3.125rem;
  }
}
.equipa .content .members {
  height: 23.125rem;
  max-width: 75rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .equipa .content .members {
    height: auto;
  }
}
@media screen and (max-width: 465px) {
  .equipa .content .members {
    flex-direction: column;
    height: auto;
  }
}
.equipa .content .members .member {
  width: 33%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .equipa .content .members .member {
    margin-bottom: 3.125rem;
  }
}
.equipa .content .members .member .picture {
  width: 16.25rem;
  height: 18.4375rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.equipa .content .members .member .picture img {
  width: 100%;
}
.equipa .content .members .member .name {
  font-size: 1.125rem;
  margin-top: 0.9375rem;
}
.equipa .content .members .member .function {
  font-size: 0.875rem;
  text-align: center;
}
.equipa .content .members .member .function span {
  display: inline-block;
  height: 0;
}

.equipa-single {
  height: auto;
  display: flex;
  flex-direction: row;
  padding: 0 8.125rem;
  background-color: #fafafa;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .equipa-single {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .equipa-single {
    padding: 0 3.75rem;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .equipa-single {
    padding: 0 2.5rem;
    height: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .equipa-single {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .equipa-single {
    padding: 0 1.25rem;
    height: auto;
  }
}
.equipa-single .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  height: 100%;
  margin: 3.75rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.equipa-single .content .title {
  font-size: 2.5rem;
  color: #707070;
  margin-bottom: 3.125rem;
  font-weight: 400;
}
.equipa-single .content .members {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .equipa-single .content .members {
    height: auto;
  }
}
.equipa-single .content .members .member {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .equipa-single .content .members .member {
    flex-direction: column;
  }
}
.equipa-single .content .members .member .picture {
  width: 22.5rem;
  height: 24.6875rem;
  align-self: flex-start;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .equipa-single .content .members .member .picture {
    margin-bottom: 3.125rem;
    align-self: center;
  }
}
.equipa-single .content .members .member .picture img {
  width: 100%;
}
.equipa-single .content .members .member .copy {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-left: 3.125rem;
}
@media screen and (max-width: 599px) {
  .equipa-single .content .members .member .copy {
    margin-left: 0;
  }
}
.equipa-single .content .members .member .copy .name {
  font-size: 1.375rem;
  margin-top: 0.9375rem;
}
.equipa-single .content .members .member .copy .function {
  font-size: 1.1875rem;
}
.equipa-single .content .members .member .copy .see-more {
  font-size: 1.1875rem;
}
.equipa-single .content .members .member .copy .see-more > div {
  color: #91c569;
  font-weight: bold;
  margin: 1.5625rem 0;
  cursor: pointer;
}
.equipa-single .content .members .member .copy .see-more > p {
  display: none;
}
.equipa-single .content .members .member .copy .see-more > p.active {
  display: block;
}

.espaco {
  height: 46.25rem;
  display: flex;
  flex-direction: row;
  padding: 0 8.125rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .espaco {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .espaco {
    padding: 0 3.75rem;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .espaco {
    padding: 0 2.5rem;
    height: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .espaco {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .espaco {
    padding: 0 1.25rem;
    height: 50rem;
  }
}
.espaco .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin: 8.125rem auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .espaco .content {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .espaco .content {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .espaco .content {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 599px) {
  .espaco .content {
    margin: 0 auto;
  }
}
.espaco .content .row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1919px) {
  .espaco .content .row {
    display: flex;
    height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .espaco .content .row {
    display: flex;
    height: 100%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .espaco .content .row {
    display: flex;
    height: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .espaco .content .row {
    display: flex;
    height: 100%;
    flex-direction: column;
  }
}
.espaco .content .row .left {
  width: 38.125rem;
  height: 30.9375rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .espaco .content .row .left {
    position: relative;
    width: 100%;
    margin: 2.5rem 2.5rem 2.5rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .espaco .content .row .left {
    position: relative;
    width: 100%;
    margin: 2.5rem 2.5rem 2.5rem 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .espaco .content .row .left {
    position: relative;
    width: 100%;
    margin: 2.5rem 2.5rem 2.5rem 0;
  }
}
@media only screen and (max-width: 599px) {
  .espaco .content .row .left {
    position: relative;
    width: 100%;
    margin: 2.5rem 0rem 2.5rem 0;
  }
}
.espaco .content .row .left .pic {
  border-radius: 0.625rem;
  box-shadow: 0.375rem 0.375rem 0.375rem rgba(0, 0, 0, 0.1);
  position: relative;
  width: 48%;
  height: 50%;
  margin: 0.3125rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.espaco .content .row .left .pic img {
  height: 100%;
}
.espaco .content .row .right {
  position: absolute;
  width: 34.375rem;
  height: 100%;
  max-height: 11.5625rem;
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0.625rem 0.6875rem 1.0625rem rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
  padding: 4.0625rem 3.75rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .espaco .content .row .right {
    max-width: 37.5rem;
    width: 100%;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .espaco .content .row .right {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    top: 0;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .espaco .content .row .right {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    top: 0;
    margin: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .espaco .content .row .right {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    top: 0;
    margin: auto;
  }
}
@media only screen and (max-width: 599px) {
  .espaco .content .row .right {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    top: 0;
    margin: auto;
    margin-bottom: 2.5rem;
  }
}
.espaco .content .row .right .copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .espaco .content .row .right .copy {
    justify-content: center;
    align-items: center;
  }
}
.espaco .content .row .right .copy .title {
  font-size: 2rem;
  color: #707070;
  margin-bottom: 0.625rem;
  font-weight: 400;
}
.espaco .content .row .right .copy .text {
  font-size: 1.125rem;
  color: #707070;
  line-height: 1.5em;
}
@media only screen and (max-width: 599px) {
  .espaco .content .row .right .copy .text {
    line-height: 1.1em;
    text-align: center;
  }
}

/* SERVICOS */
.oferta {
  padding: 0 8.125rem;
  height: 21.875rem;
  background-color: #f6f6f6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .oferta {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .oferta {
    padding: 0 3.75rem;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .oferta {
    padding: 0 2.5rem;
    height: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .oferta {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .oferta {
    padding: 0 1.25rem;
    height: auto;
  }
}
.oferta .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .oferta .content {
    margin: 2.5rem 0;
  }
}
.oferta .content .title {
  font-size: 2rem;
  color: #707070;
  font-weight: 400;
}
.oferta .content .copy {
  font-size: 1.25rem;
  color: #707070;
  text-align: center;
  width: 100%;
  max-width: 68.75rem;
}

.servicos {
  height: 37.5rem;
  height: auto;
  display: flex;
  flex-direction: row;
  padding: 0 8.125rem;
  background-color: #fafafa;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .servicos {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .servicos {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .servicos {
    padding: 0 3.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .servicos {
    padding: 0 1.25rem;
    height: auto;
  }
}
.servicos .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .servicos .content {
    margin: 2.5rem auto;
  }
}
.servicos .content .title {
  font-size: 2rem;
  color: #707070;
  text-align: center;
  font-weight: 400;
}
.servicos .content .items {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 599px) {
  .servicos .content .items {
    flex-direction: column;
    align-items: center;
  }
}
.servicos .content .items .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26.25rem;
  height: auto;
  align-items: center;
}
@media only screen and (max-width: 1919px) {
  .servicos .content .items .item {
    align-items: center;
    width: 50%;
  }
}
@media only screen and (max-width: 599px) {
  .servicos .content .items .item {
    width: 100%;
    height: 100%;
    margin-bottom: 2.5rem;
  }
}
.servicos .content .items .item .subtitle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.servicos .content .items .item .subtitle .icon {
  width: 5.4375rem;
  height: 5.4375rem;
  width: 31.25rem;
  height: auto;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servicos .content .items .item .subtitle .icon img {
  width: 100%;
}
.servicos .content .items .item .subtitle .txt {
  font-size: 1.75rem;
  color: #707070;
  margin-bottom: 0.9375rem;
  font-weight: 400;
}
.servicos .content .items .item .copy {
  color: #707070;
  font-size: 1rem;
  line-height: 1.5em;
  height: 9.375rem;
  overflow: hidden;
  text-align: center;
  margin-bottom: 0.9375rem;
}
@media only screen and (max-width: 1919px) {
  .servicos .content .items .item .copy {
    text-align: center;
  }
}
@media only screen and (max-width: 599px) {
  .servicos .content .items .item .copy {
    height: 100%;
  }
}
.servicos .content .items .item .copy > p {
  margin: 0;
}
@media only screen and (max-width: 599px) {
  .servicos .content .items .item .cta-wrapper {
    margin-top: 1.25rem;
  }
}
.servicos .content .items .item .cta-wrapper .cta {
  width: 10.625rem;
  height: 3.125rem;
  background-color: #91c569;
  border: 1px solid #91c569;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  transition: 0.5s;
  cursor: pointer;
}
.servicos .content .items .item .cta-wrapper .cta .txt {
  color: #fff;
  font-size: 1rem;
}
.servicos .content .items .item .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.servicos .content .items .item .cta-wrapper .cta:hover .txt {
  color: #91c569;
}

.servicos-topicos {
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 0 8.125rem;
  align-items: center;
  margin-bottom: 3.125rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .servicos-topicos {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .servicos-topicos {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .servicos-topicos {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .servicos-topicos {
    padding: 0 1.25rem;
  }
}
@media only screen and (max-width: 599px) {
  .servicos-topicos {
    padding: 0 1.25rem;
  }
}
.servicos-topicos .lista {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 87.5rem;
  width: 100%;
  margin: auto;
}
@media only screen and (min-width: 992px) {
  .servicos-topicos .lista {
    margin: 0 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .servicos-topicos .lista {
    width: 100%;
  }
}
.servicos-topicos .lista h1 {
  text-align: center;
  margin: 4.375rem 0;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .servicos-topicos .lista h1 {
    margin: 1.875rem 0;
  }
}
.servicos-topicos .lista .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 106.25rem;
  /* margin-top: 4.375rem; */
  max-height: 25rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .servicos-topicos .lista .container {
    flex-direction: column;
    width: 100%;
    /* margin-top: 1.875rem; */
  }
}
.servicos-topicos .lista .container .item {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 3.75rem;
}
@media only screen and (max-width: 767px) {
  .servicos-topicos .lista .container .item {
    width: 100%;
  }
}
.servicos-topicos .lista .container .item .title {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .servicos-topicos .lista .container .item .title {
    text-align: center;
  }
}

.temas-lista {
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 0 8.125rem;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .temas-lista {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .temas-lista {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .temas-lista {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .temas-lista {
    padding: 0 1.25rem;
  }
}
@media only screen and (max-width: 599px) {
  .temas-lista {
    padding: 0 1.25rem;
  }
}
.temas-lista h1 {
  margin: 3.125rem 0;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .temas-lista h1 {
    margin: 1.875rem 0;
  }
}
.temas-lista .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 87.5rem;
  width: 100%;
  margin: auto;
  flex-direction: column;
  max-height: 37.5rem;
}
@media only screen and (min-width: 992px) {
  .temas-lista .container {
    margin: 0 1.25rem;
  }
}
.temas-lista .container .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 49%;
  height: 6.25rem;
}
@media only screen and (max-width: 767px) {
  .temas-lista .container .item {
    flex-direction: column;
    width: 100%;
    margin-top: 1.875rem;
  }
}
.temas-lista .container .item .title {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .temas-lista .container .item .title {
    text-align: center;
  }
}

.temas {
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 0 8.125rem;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .temas {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .temas {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .temas {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .temas {
    padding: 0 1.25rem;
  }
}
@media only screen and (max-width: 599px) {
  .temas {
    padding: 0 1.25rem;
  }
}
.temas .bg {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
}
.temas .tema {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 3.75rem;
}
@media only screen and (min-width: 992px) {
  .temas .tema {
    margin: 0 1.25rem;
    align-items: center;
  }
}
.temas .tema h1 {
  text-align: center;
  margin: 1.875rem 0;
}
.temas .tema .content {
  display: flex;
  flex-direction: row;
  margin-bottom: 3.125rem;
  max-width: 87.5rem;
}
@media only screen and (max-width: 1199px) {
  .temas .tema .content {
    flex-direction: column;
    align-items: center;
  }
}
.temas .tema .content > div {
  width: auto;
}
.temas .tema .content .left .imagem {
  width: 28.125rem;
}
.temas .tema .content .left .cta-wrapper {
  width: 100%;
  margin-top: 1.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .temas .tema .content .left .cta-wrapper {
    margin-top: 3.125rem;
  }
}
.temas .tema .content .left .cta-wrapper .cta {
  width: 16.25rem;
  height: 3.125rem;
  border-radius: 0.625rem;
  background-color: #91c569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
  border: 1px solid #91c569;
}
.temas .tema .content .left .cta-wrapper .cta .txt {
  font-size: 1.25rem;
  color: #fff;
}
.temas .tema .content .left .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.temas .tema .content .left .cta-wrapper .cta:hover .txt {
  color: #91c569;
}
.temas .tema .content .right {
  margin-left: 0.9375rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.temas .tema .content .right > div {
  flex: 1 1 auto;
  margin: 0.625rem 0;
}
.temas .tema .content .right > div .label {
  font-size: 1.25rem;
  font-weight: bold;
}
.temas .tema .content .right .cta-wrapper {
  width: 100%;
  margin-top: 0.625rem;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media only screen and (max-width: 1199px) {
  .temas .tema .content .right .cta-wrapper {
    margin-top: 3.125rem;
  }
}
.temas .tema .content .right .cta-wrapper .cta {
  width: 16.25rem;
  height: 3.125rem;
  border-radius: 0.625rem;
  background-color: #fb6606;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
  border: 1px solid #fb6606;
}
.temas .tema .content .right .cta-wrapper .cta .txt {
  font-size: 1.25rem;
  color: #fff;
}
.temas .tema .content .right .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #fb6606;
  transition: 0.5s;
}
.temas .tema .content .right .cta-wrapper .cta:hover .txt {
  color: #fb6606;
}
.temas .tema .content .modal {
  width: 56.25rem;
  height: auto;
  background-color: #fff;
  z-index: 99999999;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  border-radius: 0.625rem;
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.3);
  padding: 3.125rem;
  opacity: 0;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .temas .tema .content .modal {
    width: 85%;
  }
}
.temas .tema .content .modal .close-btn {
  border-radius: 50%;
  width: 3.375rem;
  height: 3.375rem;
  background-color: #91c569;
  border: 1px solid #91c569;
  position: absolute;
  right: 1.875rem;
  top: 1.875rem;
  cursor: pointer;
  transition: 0.5s;
}
.temas .tema .content .modal .close-btn:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.temas .tema .content .modal .close-btn:hover .icon > .line {
  background-color: #91c569;
}
.temas .tema .content .modal .close-btn .icon {
  height: 100%;
  width: 100%;
}
.temas .tema .content .modal .close-btn .icon > .line {
  height: 0.125rem;
  width: 1.25rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.temas .tema .content .modal .close-btn .icon > .line:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.temas .tema .content .modal .close-btn .icon > .line:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.temas .tema .content .modal .content-modal {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.temas .tema .content .modal .content-modal .title-modal {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 2.8125rem;
  max-width: 90%;
}
.temas .tema .content .modal .content-modal .form-group {
  height: 5rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.9375rem;
  justify-content: flex-end;
}
.temas .tema .content .modal .content-modal .form-group.captcha-submit {
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .temas .tema .content .modal .content-modal .form-group.captcha-submit {
    flex-direction: column;
    height: auto;
  }
}
.temas .tema .content .modal .content-modal .form-group label {
  width: 100%;
  margin-bottom: 0.625rem;
}
.temas .tema .content .modal .content-modal .form-group input {
  height: 100%;
  border: 0.0625rem solid #707070;
  border-radius: 0.625rem;
  font-size: 1.375rem;
}
.temas .tema .content .modal .content-modal .form-group .cta {
  width: 16.25rem;
  height: 3.125rem;
  background-color: #91c569;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 0.9375rem;
  text-transform: uppercase;
  align-self: flex-end;
  margin-top: 0.625rem;
  transition: 0.5s;
  border: 1px solid #91c569;
}
@media screen and (max-width: 599px) {
  .temas .tema .content .modal .content-modal .form-group .cta {
    align-self: flex-start;
  }
}
.temas .tema .content .modal .content-modal .form-group .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
  color: #91c569;
}
.temas .tema .content .modal .content-modal .form-group .cta:focus {
  outline: none;
}
.temas .tema .content .modal .content-modal .form-group .g-recaptcha {
  width: 304px;
  height: 78px;
}
@media only screen and (max-width: 767px) {
  .temas .tema .content .modal .content-modal .form-group .g-recaptcha {
    transform: translateX(-10%) scale(0.8);
  }
}
@media only screen and (max-width: 599px) {
  .temas .tema .content .modal .content-modal .form-group .g-recaptcha {
    transform: translateX(-15%) translateY(-5%) scale(0.7);
  }
}
.temas .tema .content .modal .content-modal .error {
  font-size: 1.25rem;
}
@media only screen and (max-width: 991px) {
  .temas .tema .content .modal .content-modal .error {
    text-align: right;
  }
}
@media only screen and (max-width: 599px) {
  .temas .tema .content .modal .content-modal .error {
    text-align: left;
  }
}

/* AGENDA */
.actividades {
  height: 37.5rem;
  height: auto;
  display: flex;
  flex-direction: row;
  padding: 0 8.125rem;
  background-color: #fafafa;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .actividades {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .actividades {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .actividades {
    padding: 0 3.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .actividades {
    padding: 0 1.25rem;
    height: auto;
  }
}
.actividades .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .actividades .content {
    margin: 2.5rem auto;
  }
}
.actividades .content .title {
  font-size: 2rem;
  color: #707070;
  text-align: center;
  font-weight: 400;
}
.actividades .content .items {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 599px) {
  .actividades .content .items {
    flex-direction: column;
    align-items: center;
  }
}
.actividades .content .items .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26.25rem;
  height: auto;
  align-items: center;
}
@media only screen and (max-width: 1919px) {
  .actividades .content .items .item {
    align-items: center;
    width: 50%;
  }
}
@media only screen and (max-width: 599px) {
  .actividades .content .items .item {
    width: 100%;
    height: 100%;
    margin-bottom: 2.5rem;
  }
}
.actividades .content .items .item .subtitle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.actividades .content .items .item .subtitle .icon {
  width: 5.4375rem;
  height: 5.4375rem;
  width: 31.25rem;
  height: 18.75rem;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.actividades .content .items .item .subtitle .icon img {
  width: 100%;
}
.actividades .content .items .item .subtitle .txt {
  font-size: 1.75rem;
  color: #707070;
  margin-bottom: 0.9375rem;
  font-weight: 400;
}
.actividades .content .items .item .copy {
  color: #707070;
  font-size: 1rem;
  line-height: 1.5em;
  height: 9.375rem;
  height: auto;
  overflow: hidden;
  text-align: center;
  margin-bottom: 0.9375rem;
}
@media only screen and (max-width: 1919px) {
  .actividades .content .items .item .copy {
    text-align: center;
  }
}
@media only screen and (max-width: 599px) {
  .actividades .content .items .item .copy {
    height: 100%;
  }
}
.actividades .content .items .item .copy > p {
  margin: 0;
}
@media only screen and (max-width: 599px) {
  .actividades .content .items .item .cta-wrapper {
    margin-top: 1.25rem;
  }
}
.actividades .content .items .item .cta-wrapper .cta {
  width: 10.625rem;
  height: 3.125rem;
  background-color: #91c569;
  border: 1px solid #91c569;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  transition: 0.5s;
  cursor: pointer;
}
.actividades .content .items .item .cta-wrapper .cta .txt {
  color: #fff;
  font-size: 1rem;
}
.actividades .content .items .item .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.actividades .content .items .item .cta-wrapper .cta:hover .txt {
  color: #91c569;
}

.actividades-pagina {
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 0 8.125rem;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .actividades-pagina {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .actividades-pagina {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .actividades-pagina {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .actividades-pagina {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .actividades-pagina {
    padding: 0 1.25rem;
    height: auto;
  }
}
.actividades-pagina .bg {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100vh;
  top: -80%;
  left: 0;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
}
.actividades-pagina .row {
  display: flex;
  flex-direction: column;
  margin: 0 3.75rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .actividades-pagina .row {
    margin: 0 3.75rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .actividades-pagina .row {
    margin: 0 2.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .actividades-pagina .row {
    margin: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .actividades-pagina .row {
    margin: 0 1.25rem;
  }
}
@media only screen and (max-width: 599px) {
  .actividades-pagina .row {
    margin: 0 1.25rem;
  }
}
.actividades-pagina .row.empty {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  height: auto;
}
.actividades-pagina .row h1 {
  text-align: center;
}
.actividades-pagina .row > .text {
  margin: 3.125rem 0;
}
.actividades-pagina .row .actividades {
  display: flex;
  justify-content: space-between;
  margin: 3.125rem 0;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  .actividades-pagina .row .actividades {
    flex-direction: column;
  }
}
.actividades-pagina .row .actividades .actividade {
  display: flex;
  background-color: #fafafa;
  padding: 2.1875rem;
  width: 100%;
  max-width: 45%;
  margin: 0 0.3125rem 0 0.3125rem;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .actividades-pagina .row .actividades .actividade {
    padding: 1.5625rem;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .actividades-pagina .row .actividades .actividade {
    padding: 0.9375rem;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .actividades-pagina .row .actividades .actividade {
    max-width: 93%;
  }
}
@media only screen and (max-width: 599px) {
  .actividades-pagina .row .actividades .actividade {
    max-width: 90%;
  }
}
.actividades-pagina .row .actividades .actividade .left .imagem {
  width: 15.625rem;
  height: 21.875rem;
  background-color: #cbcbcb;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.actividades-pagina .row .actividades .actividade .left .imagem img {
  height: 100%;
}
.actividades-pagina .row .actividades .actividade .right {
  width: 100%;
  max-width: 37.5rem;
  height: 100%;
  margin-left: 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .actividades-pagina .row .actividades .actividade .right {
    margin-left: 1.25rem;
  }
}
.actividades-pagina .row .actividades .actividade .right .titulo {
  margin-top: 0;
  margin-bottom: 0.625rem;
  font-size: 1.75rem;
  font-weight: 400;
}
.actividades-pagina .row .actividades .actividade .right .descricao {
  margin-top: 0.625rem;
}
.actividades-pagina .row .actividades .actividade .right .data-hora,
.actividades-pagina .row .actividades .actividade .right .preco,
.actividades-pagina .row .actividades .actividade .right .formador {
  margin-top: 0.625rem;
  font-weight: bold;
}
.actividades-pagina .row .actividades .actividade .right .data-hora > span,
.actividades-pagina .row .actividades .actividade .right .preco > span,
.actividades-pagina .row .actividades .actividade .right .formador > span {
  font-weight: normal;
}
.actividades-pagina .row .actividades .actividade .right .ctas {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.actividades-pagina .row .actividades .actividade .right .ctas .cta-wrapper {
  margin-bottom: 0.625rem;
  margin-right: 0.3125rem;
}
.actividades-pagina .row .actividades .actividade .right .ctas .cta-wrapper .cta {
  width: 13.125rem;
  height: 3.125rem;
  background-color: #91c569;
  border-radius: 0.625rem;
  border: 1px solid #91c569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
.actividades-pagina .row .actividades .actividade .right .ctas .cta-wrapper .cta .txt {
  color: #fff;
  font-weight: bold;
  font-size: 0.9375rem;
  text-transform: uppercase;
}
.actividades-pagina .row .actividades .actividade .right .ctas .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.actividades-pagina .row .actividades .actividade .right .ctas .cta-wrapper .cta:hover .txt {
  color: #91c569;
}
.actividades-pagina .row .actividades .actividade .modal-captcha {
  width: 56.25rem;
  height: auto;
  background-color: #fff;
  z-index: 99999999;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  border-radius: 0.625rem;
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.3);
  padding: 3.125rem;
  opacity: 0;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .actividades-pagina .row .actividades .actividade .modal-captcha {
    width: 85%;
  }
}
.actividades-pagina .row .actividades .actividade .modal-captcha .close-btn {
  border-radius: 50%;
  width: 3.375rem;
  height: 3.375rem;
  background-color: #91c569;
  border: 1px solid #91c569;
  position: absolute;
  right: 1.875rem;
  top: 1.875rem;
  cursor: pointer;
  transition: 0.5s;
}
.actividades-pagina .row .actividades .actividade .modal-captcha .close-btn:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.actividades-pagina .row .actividades .actividade .modal-captcha .close-btn:hover .icon > .line {
  background-color: #91c569;
}
.actividades-pagina .row .actividades .actividade .modal-captcha .close-btn .icon {
  height: 100%;
  width: 100%;
}
.actividades-pagina .row .actividades .actividade .modal-captcha .close-btn .icon > .line {
  height: 0.125rem;
  width: 1.25rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.actividades-pagina .row .actividades .actividade .modal-captcha .close-btn .icon > .line:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.actividades-pagina .row .actividades .actividade .modal-captcha .close-btn .icon > .line:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.actividades-pagina .row .actividades .actividade .modal-captcha .content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.actividades-pagina .row .actividades .actividade .modal-captcha .content .title-modal {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 3.4375rem;
  max-width: 90%;
}
.actividades-pagina .row .actividades .actividade .modal-captcha .content .form-group {
  height: 5rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.9375rem;
  justify-content: flex-end;
}
.actividades-pagina .row .actividades .actividade .modal-captcha .content .form-group.captcha-submit {
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .actividades-pagina .row .actividades .actividade .modal-captcha .content .form-group.captcha-submit {
    flex-direction: column;
    height: auto;
  }
}
.actividades-pagina .row .actividades .actividade .modal-captcha .content .form-group label {
  width: 100%;
  margin-bottom: 0.625rem;
}
.actividades-pagina .row .actividades .actividade .modal-captcha .content .form-group input {
  height: 100%;
  border: 0.0625rem solid #707070;
  border-radius: 0.625rem;
  font-size: 1.375rem;
}
.actividades-pagina .row .actividades .actividade .modal-captcha .content .form-group .cta {
  width: 16.25rem;
  height: 3.125rem;
  background-color: #91c569;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 0.9375rem;
  text-transform: uppercase;
  align-self: flex-end;
  margin-top: 0.625rem;
  transition: 0.5s;
  border: 1px solid #91c569;
}
@media screen and (max-width: 599px) {
  .actividades-pagina .row .actividades .actividade .modal-captcha .content .form-group .cta {
    align-self: flex-start;
  }
}
.actividades-pagina .row .actividades .actividade .modal-captcha .content .form-group .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
  color: #91c569;
}
.actividades-pagina .row .actividades .actividade .modal-captcha .content .form-group .cta:focus {
  outline: none;
}
.actividades-pagina .row .actividades .actividade .modal-captcha .content .form-group .g-recaptcha {
  width: 304px;
  height: 78px;
}
@media only screen and (max-width: 767px) {
  .actividades-pagina .row .actividades .actividade .modal-captcha .content .form-group .g-recaptcha {
    transform: translateX(-10%) scale(0.8);
  }
}
@media only screen and (max-width: 599px) {
  .actividades-pagina .row .actividades .actividade .modal-captcha .content .form-group .g-recaptcha {
    transform: translateX(-15%) translateY(-5%) scale(0.7);
  }
}
.actividades-pagina .row .actividades .actividade .modal-captcha .content .error {
  font-size: 1.25rem;
}
@media only screen and (max-width: 991px) {
  .actividades-pagina .row .actividades .actividade .modal-captcha .content .error {
    text-align: right;
  }
}
@media only screen and (max-width: 599px) {
  .actividades-pagina .row .actividades .actividade .modal-captcha .content .error {
    text-align: left;
  }
}

/* NOTICIAS */
.noticias-wrapper {
  background-color: #fff;
  height: auto;
  padding: 0 8.125rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .noticias-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .noticias-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .noticias-wrapper {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .noticias-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .noticias-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
.noticias-wrapper h1 {
  text-align: center;
}
.noticias-wrapper .noticias {
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 3.125rem auto;
  max-width: 87.5rem;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .noticias-wrapper .noticias {
    flex-direction: column;
    align-items: center;
  }
}
.noticias-wrapper .noticias .noticia {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 9.375rem;
}
@media only screen and (max-width: 767px) {
  .noticias-wrapper .noticias .noticia {
    flex-direction: column;
    align-items: center;
  }
}
.noticias-wrapper .noticias .noticia .img {
  width: 28.125rem;
  height: 18.75rem;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.noticias-wrapper .noticias .noticia .img img {
  width: 100%;
  height: auto;
}
.noticias-wrapper .noticias .noticia .info {
  display: flex;
  flex-direction: column;
  margin-left: 3.125rem;
  width: 60%;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .noticias-wrapper .noticias .noticia .info {
    margin-left: 0;
    align-items: center;
  }
}
.noticias-wrapper .noticias .noticia .info .title {
  font-size: 1.625rem;
  margin-top: 1.25rem;
}
.noticias-wrapper .noticias .noticia .info .content {
  font-size: 1rem;
  margin-top: 1.25rem;
  height: auto;
}
.noticias-wrapper .noticias .noticia .info .cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5625rem;
}
.noticias-wrapper .noticias .noticia .info .cta-wrapper .cta {
  width: 16.25rem;
  height: 3.125rem;
  background-color: #91c569;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
  border: 1px solid #91c569;
}
.noticias-wrapper .noticias .noticia .info .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.noticias-wrapper .noticias .noticia .info .cta-wrapper .cta:hover .txt {
  color: #91c569;
}
@media only screen and (min-width: 992px) and (max-width: 1919px) {
  .noticias-wrapper .noticias .noticia .info .cta-wrapper .cta {
    max-width: 16.25rem;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 0.3125rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .noticias-wrapper .noticias .noticia .info .cta-wrapper .cta {
    max-width: 16.25rem;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 0.3125rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .noticias-wrapper .noticias .noticia .info .cta-wrapper .cta {
    max-width: 16.25rem;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 0.3125rem;
  }
}
.noticias-wrapper .noticias .noticia .info .cta-wrapper .cta .txt {
  color: #fff;
  font-weight: bold;
  font-size: 0.9375rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1919px) {
  .noticias-wrapper .noticias .noticia .info .cta-wrapper .cta .txt {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .noticias-wrapper .noticias .noticia .info .cta-wrapper .cta .txt {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .noticias-wrapper .noticias .noticia .info .cta-wrapper .cta .txt {
    font-size: 0.875rem;
  }
}

/* ARTIGOS */
.artigos-wrapper {
  background-color: #fff;
  height: auto;
  padding: 0 390px;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .artigos-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .artigos-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .artigos-wrapper {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .artigos-wrapper {
    padding: 0 1.25rem;
  }
}
@media only screen and (max-width: 599px) {
  .artigos-wrapper {
    padding: 0 1.25rem;
  }
}
.artigos-wrapper h1 {
  text-align: center;
}
.artigos-wrapper .intro {
  text-align: center;
  font-weight: bold;
}
.artigos-wrapper .artigos {
  margin: auto;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin-top: 3.125rem;
  max-width: 87.5rem;
  width: 100%;
}
.artigos-wrapper .artigos .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 15%;
}
@media only screen and (max-width: 767px) {
  .artigos-wrapper .artigos .left {
    display: none;
  }
}
.artigos-wrapper .artigos .left .meses {
  width: 100%;
}
.artigos-wrapper .artigos .left .meses .mes {
  width: 100%;
  height: 3.125rem;
  background-color: #91c569;
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0.625rem;
  cursor: pointer;
}
.artigos-wrapper .artigos .left .meses .mes .text {
  color: #fff;
  font-size: 1.25rem;
  margin-left: 1.25rem;
}
.artigos-wrapper .artigos .right {
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .artigos-wrapper .artigos .right {
    width: 100%;
  }
}
.artigos-wrapper .artigos .right .ano-wrapper {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .artigos-wrapper .artigos .right .ano-wrapper {
    max-width: 100%;
  }
}
.artigos-wrapper .artigos .right .ano-wrapper .header {
  height: 3.125rem;
  background-color: #91c569;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0.625rem;
}
.artigos-wrapper .artigos .right .ano-wrapper .header .text {
  color: #fff;
  font-size: 1.25rem;
  margin-left: 1.25rem;
}
.artigos-wrapper .artigos .right .ano-wrapper .content {
  display: flex;
  margin: 2.5rem 0px;
}
.artigos-wrapper .artigos .right .ano-wrapper .content .imagem {
  width: 14.375rem;
  height: 18.75rem;
  background-color: #cbcbcb;
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic {
  margin: 0 0 1.25rem 0;
  overflow: hidden;
  border-bottom: 0.0625rem solid #707070;
  transition: max-height 2s;
  user-select: none;
  width: 100%;
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic:last-child {
  border: none;
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic.open {
  max-height: 37.5rem;
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .tp {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 599px) {
  .artigos-wrapper .artigos .right .ano-wrapper .content .topic .tp {
    justify-content: center;
  }
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .tp .text {
  font-size: 2rem;
  font-weight: bold;
  color: #91c569;
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy {
  margin: 1.25rem 0;
  font-size: 1rem;
  line-height: 1.875rem;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy {
    width: 100%;
  }
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text {
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 599px) {
  .artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text {
    flex-direction: column;
    align-items: center;
  }
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text .container {
  max-width: 50rem;
}
@media only screen and (max-width: 599px) {
  .artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text .container {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text .container > div {
    text-align: center;
  }
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text .container .title-topic {
  font-size: 1.375rem;
  font-weight: bold;
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text .container .copy-topic {
  margin-top: 0.625rem;
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text .container .edit-topic {
  margin-top: 0.625rem;
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text .container .date-topic {
  margin-top: 0.625rem;
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text a .cta-wrapper {
  width: 15rem;
  margin-top: 1.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text a .cta-wrapper {
    margin-top: 1.5625rem;
  }
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text a .cta-wrapper .cta {
  width: 15rem;
  height: 3.125rem;
  border-radius: 0.625rem;
  background-color: #91c569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
  border: 1px solid #91c569;
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text a .cta-wrapper .cta .txt {
  font-size: 1.25rem;
  color: #fff;
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text a .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.artigos-wrapper .artigos .right .ano-wrapper .content .topic .topic-content .copy .text a .cta-wrapper .cta:hover .txt {
  color: #91c569;
}

/* PRODUTOS */
.loja-wrapper {
  background-color: #fff;
  height: auto;
  padding: 0 390px;
  display: flex;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .loja-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .loja-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .loja-wrapper {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .loja-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .loja-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
.loja-wrapper .loja {
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 3.125rem auto;
  max-width: 87.5rem;
  width: 100%;
  flex-direction: column;
}
.loja-wrapper .loja .apresentacao .title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.loja-wrapper .loja .apresentacao .text {
  font-size: 1rem;
  margin-top: 1.25rem;
  background-color: #fafafa;
  border-radius: 0.625rem;
  box-shadow: 0.625rem 0.6875rem 1.0625rem rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
}
@media only screen and (max-width: 599px) {
  .loja-wrapper .loja .apresentacao .text {
    text-align: center;
  }
}
.loja-wrapper .loja .cheque-oferta {
  display: flex;
  flex-direction: column;
  margin-top: 4.375rem;
}
.loja-wrapper .loja .cheque-oferta .title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.125rem;
}
.loja-wrapper .loja .cheque-oferta .copy {
  display: flex;
  margin-top: 1.25rem;
}
@media only screen and (max-width: 599px) {
  .loja-wrapper .loja .cheque-oferta .copy {
    flex-direction: column;
    align-items: center;
  }
}
.loja-wrapper .loja .cheque-oferta .copy .imagem {
  width: 46.875rem;
  height: 18.75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loja-wrapper .loja .cheque-oferta .copy .imagem img {
  width: 100%;
}
.loja-wrapper .loja .cheque-oferta .copy .text {
  font-size: 1rem;
  width: 75%;
  margin-left: 3.125rem;
  background-color: #fafafa;
  border-radius: 0.625rem;
  box-shadow: 0.625rem 0.6875rem 1.0625rem rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
}
@media only screen and (max-width: 599px) {
  .loja-wrapper .loja .cheque-oferta .copy .text {
    margin: 0;
    width: 90%;
    margin-top: 1.25rem;
    text-align: center;
  }
}
.loja-wrapper .loja .livros {
  margin-top: 4.375rem;
}
.loja-wrapper .loja .livros .title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
}
.loja-wrapper .loja .livros .table {
  margin-top: 1.25rem;
  height: auto;
}
.loja-wrapper .loja .livros .table .header {
  display: flex;
  height: 3.125rem;
  align-items: center;
  justify-content: center;
}
.loja-wrapper .loja .livros .table .header .cell {
  width: 20%;
  text-align: center;
  border: 0.0625rem solid #91c569;
  height: 100%;
  background-color: #91c569;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
}
.loja-wrapper .loja .livros .table .lines {
  position: relative;
}
.loja-wrapper .loja .livros .table .lines .line {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}
.loja-wrapper .loja .livros .table .lines .line .tooltip {
  display: none;
  position: absolute;
  z-index: 999;
  background-color: #fff;
  width: 400px;
  left: 50%;
  top: 50%;
  border-radius: 10px;
  box-shadow: 0.625rem 0.6875rem 1.0625rem rgba(0, 0, 0, 0.1);
  padding: 20px;
  transform: translate(-50%, -50%);
}
.loja-wrapper .loja .livros .table .lines .line .tooltip.active {
  display: block;
}
.loja-wrapper .loja .livros .table .lines .line .cell {
  width: 20%;
  text-align: center;
  border: 0.0625rem solid #91c569;
  height: 11.25rem;
  background-color: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.loja-wrapper .loja .livros .table .lines .line .cell.titulo {
  cursor: pointer;
}
.loja-wrapper .loja .livros .table .lines .line .cell .img {
  height: 9.375rem;
  width: 8.75rem;
  margin: 0.9375rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loja-wrapper .loja .livros .table .lines .line .cell .img img {
  height: 100%;
}
.loja-wrapper .loja .mat-cursos {
  margin-top: 4.375rem;
}
.loja-wrapper .loja .mat-cursos .title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
}
.loja-wrapper .loja .mat-cursos .table {
  margin-top: 1.25rem;
  height: auto;
}
.loja-wrapper .loja .mat-cursos .table .header {
  display: flex;
  height: 3.125rem;
  align-items: center;
  justify-content: center;
}
.loja-wrapper .loja .mat-cursos .table .header .cell {
  width: 20%;
  text-align: center;
  border: 0.0625rem solid #91c569;
  height: 100%;
  background-color: #91c569;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
}
.loja-wrapper .loja .mat-cursos .table .lines {
  position: relative;
}
.loja-wrapper .loja .mat-cursos .table .lines .line {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}
.loja-wrapper .loja .mat-cursos .table .lines .line .tooltip {
  display: none;
  position: absolute;
  z-index: 999;
  background-color: #fff;
  width: 400px;
  left: 50%;
  top: 50%;
  border-radius: 10px;
  box-shadow: 0.625rem 0.6875rem 1.0625rem rgba(0, 0, 0, 0.1);
  padding: 20px;
  transform: translate(-50%, -50%);
}
.loja-wrapper .loja .mat-cursos .table .lines .line .tooltip.active {
  display: block;
}
.loja-wrapper .loja .mat-cursos .table .lines .line .cell {
  width: 20%;
  text-align: center;
  border: 0.0625rem solid #91c569;
  height: 11.25rem;
  background-color: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.loja-wrapper .loja .mat-cursos .table .lines .line .cell.titulo {
  cursor: pointer;
}
.loja-wrapper .loja .mat-cursos .table .lines .line .cell .img {
  height: 9.375rem;
  width: 8.75rem;
  margin: 0.9375rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loja-wrapper .loja .mat-cursos .table .lines .line .cell .img img {
  width: 100%;
}
.loja-wrapper .loja .cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.75rem;
}
.loja-wrapper .loja .cta-wrapper .cta {
  width: 16.25rem;
  height: 3.125rem;
  background-color: #91c569;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
  border: 1px solid #91c569;
}
.loja-wrapper .loja .cta-wrapper .cta:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
}
.loja-wrapper .loja .cta-wrapper .cta:hover .txt {
  color: #91c569;
}
@media only screen and (min-width: 992px) and (max-width: 1919px) {
  .loja-wrapper .loja .cta-wrapper .cta {
    max-width: 16.25rem;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 0.3125rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .loja-wrapper .loja .cta-wrapper .cta {
    max-width: 16.25rem;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 0.3125rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .loja-wrapper .loja .cta-wrapper .cta {
    max-width: 16.25rem;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 0.3125rem;
  }
}
.loja-wrapper .loja .cta-wrapper .cta .txt {
  color: #fff;
  font-weight: bold;
  font-size: 0.9375rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1919px) {
  .loja-wrapper .loja .cta-wrapper .cta .txt {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .loja-wrapper .loja .cta-wrapper .cta .txt {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .loja-wrapper .loja .cta-wrapper .cta .txt {
    font-size: 0.875rem;
  }
}

/* CONTACTOS */
.contactos {
  height: 56.25rem;
  display: flex;
  flex-direction: column;
  padding: 0 8.125rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .contactos {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contactos {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contactos {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .contactos {
    padding: 0 1.25rem;
  }
}
@media only screen and (max-width: 599px) {
  .contactos {
    padding: 0 1.25rem;
    height: auto;
  }
}
.contactos h1 {
  text-align: center;
  margin-top: 3.125rem;
}
.contactos .content {
  position: relative;
  max-width: 87.5rem;
  width: 100%;
  margin: 3.125rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contactos .content {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contactos .content {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .contactos .content {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 599px) {
  .contactos .content {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .contactos .content .row {
    display: flex;
    height: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contactos .content .row {
    display: flex;
    height: 100%;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contactos .content .row {
    display: flex;
    height: 100%;
    width: 100%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .contactos .content .row {
    display: flex;
    height: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .contactos .content .row {
    display: flex;
    height: 100%;
    flex-direction: column;
    width: 100%;
  }
}
.contactos .content .row .left {
  width: 54.6875rem;
  height: 40rem;
  background-color: transparent;
  left: 0;
  position: absolute;
  background-size: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contactos .content .row .left {
    position: relative;
    width: 100%;
    margin: 0 2.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contactos .content .row .left {
    position: relative;
    width: 100%;
    margin: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .contactos .content .row .left {
    position: relative;
    width: 100%;
    margin: 0 2.5rem;
  }
}
@media only screen and (max-width: 599px) {
  .contactos .content .row .left {
    position: relative;
    width: 100%;
    height: 50%;
  }
}
.contactos .content .row .right {
  position: absolute;
  width: 31.25rem;
  height: 31.25rem;
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0.625rem 0.6875rem 1.0625rem rgba(0, 0, 0, 0.1);
  top: 2.5rem;
  right: 0;
  padding: 2.1875rem 3.125rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .contactos .content .row .right {
    max-width: 37.5rem;
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contactos .content .row .right {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    top: 0;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contactos .content .row .right {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    top: 0;
    margin: 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .contactos .content .row .right {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    top: 0;
    margin: 0;
  }
}
@media only screen and (max-width: 599px) {
  .contactos .content .row .right {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    top: 0;
    margin: 0;
  }
}
.contactos .content .row .right .copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .contactos .content .row .right .copy {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 599px) {
  .contactos .content .row .right .copy {
    flex-direction: row;
    justify-content: space-around;
    margin: 3.125rem 0;
  }
}
.contactos .content .row .right .copy > div {
  margin-top: 1.25rem;
}
@media only screen and (max-width: 599px) {
  .contactos .content .row .right .copy > div {
    display: flex;
    flex-direction: column;
  }
}
.contactos .content .row .right .copy > div .title {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}
.contactos .content .row .right .copy > div .text {
  font-size: 1.125rem;
  color: #707070;
}
@media only screen and (max-width: 599px) {
  .contactos .content .row .right .copy > div .text {
    line-height: 1.1em;
  }
}
.contactos .content .row .right .copy > div .text .subtitle {
  font-weight: bold;
}
.contactos .content .row .right .copy > div .text .cont-txt {
  margin-bottom: 1.5625rem;
}

.formulario {
  padding: 0 8.125rem;
  height: 52.5rem;
  background-color: #fafafa;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .formulario {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .formulario {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .formulario {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .formulario {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .formulario {
    padding: 0 1.25rem;
    height: auto;
  }
}
.formulario .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 87.5rem;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .formulario .content {
    flex-direction: column;
    align-items: center;
  }
}
.formulario .content > div {
  width: 50%;
  height: 100%;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .formulario .content > div {
    justify-content: center;
    width: 100%;
  }
}
.formulario .content .left {
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .formulario .content .left {
    margin-top: 3.125rem;
  }
}
.formulario .content .left .plane {
  width: 20.625rem;
  height: 20.625rem;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .formulario .content .left .plane {
    width: 13.75rem;
    height: 13.75rem;
  }
}
.formulario .content .right {
  justify-content: flex-end;
}
.formulario .content .right .form-wrapper {
  width: 100%;
  margin: 3.75rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.formulario .content .right .form-wrapper .form-title {
  font-size: 2rem;
  color: #707070;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.formulario .content .right .form-wrapper .form {
  height: auto;
  display: flex;
  flex-direction: column;
}
.formulario .content .right .form-wrapper .form .form-group {
  width: 100%;
  height: 3.125rem;
  margin-bottom: 1.25rem;
}
.formulario .content .right .form-wrapper .form .form-group.textarea, .formulario .content .right .form-wrapper .form .form-group.cta {
  height: auto;
}
.formulario .content .right .form-wrapper .form .form-group input {
  width: 95%;
  height: 100%;
  border: 1px solid #707070;
  border-radius: 0.625rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 0 0.9375rem;
  font-size: 1.25rem;
}
.formulario .content .right .form-wrapper .form .form-group textarea {
  width: 95%;
  height: 12.5rem;
  border: 1px solid #707070;
  border-radius: 0.625rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 0.9375rem;
  font-size: 1.25rem;
}
.formulario .content .right .form-wrapper .form .form-group .submit-msg {
  width: 16.25rem;
  height: 3.75rem;
  border-radius: 0.625rem;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  background-color: #91c569;
  font-size: 1.25rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: 0.5s;
  border: 1px solid #91c569;
  cursor: pointer;
}
.formulario .content .right .form-wrapper .form .form-group .submit-msg:hover {
  background-color: #fff;
  border: 1px solid #91c569;
  transition: 0.5s;
  color: #91c569;
}
.formulario .content .right .form-wrapper .form .form-group .submit-msg:focus {
  outline: none;
}

/* PERGUNTAS FREQUENTES */
.perguntas-wrapper {
  background-color: #fff;
  height: auto;
  padding: 0 390px;
  display: flex;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .perguntas-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .perguntas-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .perguntas-wrapper {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .perguntas-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .perguntas-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
.perguntas-wrapper .perguntas {
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 3.125rem auto;
  max-width: 87.5rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .perguntas-wrapper .perguntas {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .perguntas-wrapper .perguntas > div {
    width: 100%;
  }
}
.perguntas-wrapper .perguntas .left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.perguntas-wrapper .perguntas .left .topics {
  width: 25rem;
}
@media only screen and (max-width: 767px) {
  .perguntas-wrapper .perguntas .left .topics {
    display: none;
  }
}
.perguntas-wrapper .perguntas .left .topics .topic {
  width: 100%;
  height: 3.125rem;
  background-color: #91c569;
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0.625rem;
  cursor: pointer;
}
.perguntas-wrapper .perguntas .left .topics .topic .text {
  color: #fff;
  font-size: 1.25rem;
  margin-left: 1.25rem;
}
.perguntas-wrapper .perguntas .left .icon-faqs {
  margin-top: 6.25rem;
}
@media only screen and (max-width: 767px) {
  .perguntas-wrapper .perguntas .left .icon-faqs {
    display: none;
  }
}
.perguntas-wrapper .perguntas .right .topic-wrapper {
  width: 50rem;
}
@media only screen and (max-width: 767px) {
  .perguntas-wrapper .perguntas .right .topic-wrapper {
    width: 100%;
  }
}
.perguntas-wrapper .perguntas .right .topic-wrapper .header {
  height: 3.125rem;
  background-color: #91c569;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0.625rem;
}
.perguntas-wrapper .perguntas .right .topic-wrapper .header .text {
  color: #fff;
  font-size: 1.25rem;
  margin-left: 1.25rem;
}
.perguntas-wrapper .perguntas .right .topic-wrapper .content {
  padding: 0 1.25rem;
}
.perguntas-wrapper .perguntas .right .topic-wrapper .content .question {
  margin: 1.25rem 0;
  overflow: hidden;
  border-bottom: 1px solid #707070;
  transition: max-height 2s;
  user-select: none;
  max-height: 37.5rem;
}
.perguntas-wrapper .perguntas .right .topic-wrapper .content .question:last-child {
  border: none;
}
.perguntas-wrapper .perguntas .right .topic-wrapper .content .question.open {
  max-height: 37.5rem;
}
.perguntas-wrapper .perguntas .right .topic-wrapper .content .question .quest {
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.perguntas-wrapper .perguntas .right .topic-wrapper .content .question .quest .text {
  font-size: 1.25rem;
}
.perguntas-wrapper .perguntas .right .topic-wrapper .content .question .quest .icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 0.0625rem solid #707070;
  display: flex;
  align-items: center;
  justify-content: center;
}
.perguntas-wrapper .perguntas .right .topic-wrapper .content .question .quest .icon .arrow {
  width: 0.29375rem;
  height: 0.451875rem;
  transform: rotate(90deg);
}
.perguntas-wrapper .perguntas .right .topic-wrapper .content .question .quest .icon .arrow.rotate {
  transform: rotate(-90deg);
}
.perguntas-wrapper .perguntas .right .topic-wrapper .content .question .answer {
  margin: 1.25rem 0;
  font-size: 1rem;
  line-height: 1.875rem;
  display: none;
}
.perguntas-wrapper .perguntas .right .topic-wrapper .content .question .answer .text {
  font-size: 1rem;
}

/* POLITICA DE PRIVACIDADE */
.politica-privacidade {
  background-color: #fff;
  height: auto;
  padding: 0 8.125rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .politica-privacidade {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .politica-privacidade {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .politica-privacidade {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .politica-privacidade {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .politica-privacidade {
    padding: 0 1.25rem;
    height: auto;
  }
}
.politica-privacidade .wrapper {
  margin: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  margin-top: 3.125rem;
  max-width: 87.5rem;
  width: 100%;
}
.politica-privacidade .wrapper h1 {
  text-align: center;
}
.politica-privacidade .wrapper .topicos {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
}
.politica-privacidade .wrapper .topicos .topico {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.125rem;
}
.politica-privacidade .wrapper .topicos .topico .title {
  font-size: 1.75rem;
  font-weight: bold;
}
.politica-privacidade .wrapper .topicos .topico .text {
  margin-top: 1.25rem;
}

/* MARCAR CONSULTA */
.formulario-consulta {
  padding: 0 8.125rem;
  height: 60.9375rem;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .formulario-consulta {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .formulario-consulta {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .formulario-consulta {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .formulario-consulta {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .formulario-consulta {
    padding: 0 1.25rem;
    height: auto;
  }
}
.formulario-consulta .copy {
  width: 100%;
  max-width: 87.5rem;
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
}
.formulario-consulta .copy .title {
  font-size: 2rem;
  color: #707070;
  margin-bottom: 1.25rem;
  text-align: center;
}
.formulario-consulta .copy .txt {
  line-height: 1.5em;
  font-size: 1rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .formulario-consulta .copy .txt {
    text-align: center;
  }
}
.formulario-consulta .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 87.5rem;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .formulario-consulta .content {
    flex-direction: column-reverse;
  }
}
.formulario-consulta .content > div {
  width: 50%;
  height: 100%;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .formulario-consulta .content > div {
    width: 100%;
  }
}
.formulario-consulta .content .left {
  justify-content: flex-end;
}
.formulario-consulta .content .left .form-wrapper {
  width: 100%;
  margin: 3.75rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .formulario-consulta .content .left .form-wrapper {
    margin: 1.875rem 0;
  }
}
.formulario-consulta .content .left .form-wrapper .form {
  height: 36.25rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .formulario-consulta .content .left .form-wrapper .form {
    height: auto;
  }
}
.formulario-consulta .content .left .form-wrapper .form .form-group {
  width: 100%;
  height: 3.125rem;
  margin-bottom: 1.25rem;
}
.formulario-consulta .content .left .form-wrapper .form .form-group.textarea, .formulario-consulta .content .left .form-wrapper .form .form-group.cta {
  height: auto;
}
.formulario-consulta .content .left .form-wrapper .form .form-group input {
  width: 95%;
  height: 100%;
  border: 1px solid #707070;
  border-radius: 0.625rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 0 0.9375rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .formulario-consulta .content .left .form-wrapper .form .form-group input {
    width: 97%;
    padding-right: 0;
  }
}
.formulario-consulta .content .left .form-wrapper .form .form-group input:focus {
  outline: none;
}
.formulario-consulta .content .left .form-wrapper .form .form-group select {
  width: 99.5%;
  height: 100%;
  border: 1px solid #707070;
  border-radius: 0.625rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 0 0.9375rem;
  font-size: 1rem;
  color: #707070;
}
@media screen and (max-width: 767px) {
  .formulario-consulta .content .left .form-wrapper .form .form-group select {
    width: 99.7%;
  }
}
.formulario-consulta .content .left .form-wrapper .form .form-group select:focus {
  outline: none;
}
.formulario-consulta .content .left .form-wrapper .form .form-group textarea {
  width: 95%;
  height: 12.5rem;
  border: 1px solid #707070;
  border-radius: 0.625rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 0.9375rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .formulario-consulta .content .left .form-wrapper .form .form-group textarea {
    width: 97%;
    padding-right: 0;
  }
}
.formulario-consulta .content .left .form-wrapper .form .form-group textarea:focus {
  outline: none;
}
.formulario-consulta .content .left .form-wrapper .form .form-group .submit-msg {
  width: 16.25rem;
  height: 3.75rem;
  border-radius: 0.625rem;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  background-color: #91c569;
  border: 1px solid #91c569;
  font-size: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  cursor: pointer;
  transition: 0.5s;
}
.formulario-consulta .content .left .form-wrapper .form .form-group .submit-msg:hover {
  transition: 0.5s;
  color: #91c569;
  border: 1px solid #91c569;
  background-color: #fff;
}
.formulario-consulta .content .left .form-wrapper .form .form-group .submit-msg:focus {
  outline: none;
}
.formulario-consulta .content .right {
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .formulario-consulta .content .right {
    justify-content: center;
    margin-top: 3.125rem;
  }
}
.formulario-consulta .content .right .calendar {
  width: 20.625rem;
  height: 20.625rem;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .formulario-consulta .content .right .calendar {
    width: 13.75rem;
    height: 13.75rem;
  }
}