@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");
main {
  position: relative;
  overflow: hidden;
  scroll-behavior: smooth;
}

.penzaur-main {
  background: url(../../images/lps/feiras/background-penzaur.png) no-repeat;
  background-size: 120%;
  background-position: 0% 0%;
}

body {
  margin: 0;
  scroll-behavior: smooth;
}

/* Navbar template feiras - fundo branco, logo SAUR, âncoras */
.feiras-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.feiras-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.feiras-navbar__logo {
  display: block;
}
.feiras-navbar__logo img {
  height: 32px;
  width: auto;
  mix-blend-mode: multiply;
  display: block;
}
.feiras-navbar__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.feiras-navbar__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.feiras-navbar__links a {
  font-size: 15px;
  color: #444;
  font-weight: 500;
}
.feiras-navbar__links a:hover {
  color: #008740;
}
@media (max-width: 768px) {
  .feiras-navbar .container {
    flex-direction: column;
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .feiras-navbar__nav {
    width: 100%;
    justify-content: center;
  }
  .feiras-navbar__links {
    gap: 20px;
    justify-content: center;
  }
  .feiras-navbar__links a {
    font-size: 14px;
  }
}

/* Offset para âncoras não ficarem atrás do navbar */
#banner,
#destaques,
#produtos,
#products {
  scroll-margin-top: 70px;
}

#contato {
  scroll-margin-top: -90px;
}

* {
  font-family: "Lato", sans-serif !important;
  font-weight: normal;
}

.container {
  padding: 0 108px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.container-x {
  width: calc(100% - 316px);
  box-sizing: border-box;
}
.container-x.left {
  margin-left: auto;
}
.container-x.center {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container-x {
    width: 100%;
    padding: 0 24px;
  }
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

.modal {
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  background: rgba(6, 59, 30, 0.7);
}
.modal.open {
  display: block;
}
.modal .title-penzaur-modal {
  color: #750E14;
}
.modal .penzaur-link {
  color: #750e14 !important;
}
.modal__content {
  padding: 25px 38px 48px;
  background: white;
  box-shadow: 0 4px 200px rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 808px;
  /* overflow-y: auto; */
  max-height: 90%;
  width: 100%;
}

.modal__content-inner {
  overflow-y: auto;
  max-height: 80vh;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .modal__content-inner {
    margin-left: 0;
  }
}

@media (max-width: 1000px) {
  .modal__content {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .modal__content {
    padding: 24px;
    box-sizing: border-box;
    width: calc(100% - 48px);
    border-radius: 8px;
    max-height: calc(100% - 48px);
  }
}
.modal__content iframe {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  margin-bottom: 24px;
  display: block;
}

/* Iframe da modal do banner ocupa toda a largura */
#modal-banner .modal__content > iframe {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
}
@media (max-width: 768px) {
  .modal__content > iframe {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 0;
    border-radius: 8px;
  }
}
.modal__content h3 {
  font-size: 36px;
  color: black;
  font-weight: bold;
  margin-bottom: 16px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .modal__content > h3 {
    font-size: 24px;
    padding-top: 16px;
  }
}
.modal__content .link {
  font-size: 14px;
  font-weight: bold;
  color: #008740;
  display: flex;
  gap: 8px;
  margin: 5px 0;
}

.modal__content .description {
  font-size: 14px;
  font-weight: normal;
  color: #000000;
  margin: 5px 0;
}
@media (max-width: 768px) {
  .modal__content .link {
    display: block;
  }
}
.modal__content .link > a {
  width: 50%;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  text-overflow: ellipsis;
  color: blue;
}
@media (max-width: 768px) {
  .modal__content .link > a {
    width: 100%;
    margin-top: 8px;
  }
}
.modal__content .description br {
  content: "";
  display: block;
  margin: 32px 0;
}
.modal__content .close {
  top: 20px;
  width: 24px;
  right: 10px;
  height: 24px;
  cursor: pointer;
  position: absolute;
}
@media (max-width: 768px) {
  .modal__content .close {
    top: 14px;
    width: 30px;
    right: 0px;
    height: 30px;
  }
}
.modal__content .close:after, .modal__content .close:before {
  content: "";
  width: 1px;
  height: 24px;
  display: block;
  position: absolute;
  background: #063B1E;
  transform: rotate(135deg);
}
@media (max-width: 768px) {
  .modal__content .close:after, .modal__content .close:before {
    height: 20px;
    left: 10px;
  }
}
.modal__content .close:after {
  transform: rotate(45deg);
}
.modal__content .penzaur:after, .modal__content .penzaur:before {
  background: #750E14;
}

.header {
  background: white;
  box-shadow: 0px 4px 28px rgba(68, 68, 68, 0.1);
}
.header .navigation {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header .navigation {
    height: 56px;
    padding: 0;
  }
  .header .navigation > a {
    margin-right: 40px;
  }
  .header .navigation > a > img {
    width: 137px;
    height: 32px;
    object-fit: contain;
  }
}
.header .navigation div .logo1 {
  margin-right: 15px;
}
.header .navigation div .logo2 {
  margin-left: 15px;
}
.header .navigation div .logo2 img {
  height: 31px;
}
.header .navigation .menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  .header .navigation .menu-toggle {
    width: 24px;
    display: block;
  }
  .header .navigation .menu-toggle span {
    width: 24px;
    height: 2px;
    display: block;
    position: relative;
    background-color: #063B1E;
    transition: all 0.5s ease;
  }
  .header .navigation .menu-toggle span:after, .header .navigation .menu-toggle span:before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #063B1E;
    position: absolute;
    top: -7px;
    transition: all 0.5s ease;
  }
  .header .navigation .menu-toggle span:after {
    top: 7px;
  }
}
.header .navigation.active {
  border-radius: 0px;
}
.header .navigation.active .menu-toggle {
  width: 24px;
}
.header .navigation.active .menu-toggle > span {
  transform: rotate(45deg);
}
.header .navigation.active .menu-toggle > span:after {
  opacity: 0;
}
.header .navigation.active .menu-toggle > span:before {
  top: 0;
  transform: rotate(-90deg);
}
.header .navigation.active .menu {
  opacity: 1;
  z-index: 9;
}
.header .navigation .menu {
  display: flex;
  list-style: none;
  margin: 0;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  .header .navigation .menu {
    opacity: 0;
    left: 0;
    right: 0;
    top: 56px;
    padding: 20px 40px;
    margin: 0 auto;
    position: absolute;
    flex-direction: column;
    box-sizing: border-box;
    background-color: white;
    border-radius: 0 0 8px 8px;
    transition: opacity 0.3s ease-out;
  }
}
@media (max-width: 768px) {
  .header .navigation .menu > li {
    line-height: 40px;
  }
}
.header .navigation .menu > li:not(:last-of-type) {
  margin-right: 32px;
}
.header .navigation .menu > li > a {
  color: #000000;
  font-size: 1em;
}
@media (hover: hover) {
  .header .navigation .menu > li > a:hover {
    text-decoration: underline;
  }
}

footer {
  background: url("../assets/images/feiras/frame3.png") no-repeat;
  margin-top: -148px;
  background-size: cover;
}
@media (max-width: 768px) {
  footer {
    background: white;
    margin-top: 0;
  }
}
footer .content {
  display: flex;
  position: relative;
  gap: 20px;
  flex-wrap: wrap;
  padding: 212px 0 40px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .content {
    padding: 0 !important;
    flex-direction: column;
  }
}
footer .content:nth-of-type(2) {
  padding: 40px 0;
}
footer .content:nth-of-type(2):after {
  display: none;
}
footer .content:nth-of-type(3) {
  padding: 0;
  justify-content: end;
}
footer .content:nth-of-type(3):after {
  display: none;
}
footer .content:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: #c4c4c4;
}
footer .content .social {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  footer .content .social {
    padding: 0;
    width: 100%;
    margin-bottom: 60px;
    margin-top: 40px;
    justify-content: space-between;
  }
}
footer .content .social li {
  height: 32px;
}
footer .content .address {
  display: flex;
  gap: 45px;
}
@media (max-width: 768px) {
  footer .content .address {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 0;
  }
}
@media (max-width: 768px) {
  footer .content .address .item {
    margin-bottom: 40px;
  }
  footer .content .address .item:last-of-type {
    margin-bottom: 60px;
  }
}
footer .content .address .item > p {
  margin: 0;
  color: #008740;
  font-size: 14px;
  font-weight: bold;
}
footer .content .address .item > p:nth-of-type(2) {
  color: #444;
  font-weight: normal;
}
footer .content .address .item > p:nth-of-type(2) > a {
  color: #444;
  font-weight: normal;
  text-decoration: none;
  margin-bottom: 12px;
  display: inline-block;
}
footer .content .address .item > a {
  gap: 12px;
  color: #444;
  display: flex;
  font-size: 14px;
  position: relative;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s;
}
footer .content .address .item > a:hover {
  color: #008740;
}
footer .content .address .item > a:before {
  content: "";
  background: url("../assets/images/feiras/ico-pin.png") no-repeat;
  width: 15px;
  height: 21px;
}
footer .content .logos {
  gap: 40px;
  display: flex;
  align-items: center;
  background-color: #F6F4F5;
}
@media (max-width: 768px) {
  footer .content .logos {
    justify-content: space-between;
    background-color: white;
    margin-top: 60px;
  }
  footer .content .logos:last-of-type {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  footer .content .logos:nth-of-type(2) {
    margin-top: 40px;
  }
}
footer .content .logos > a {
  position: relative;
}
footer .content .logos > a img {
  mix-blend-mode: multiply;
}
footer .content .logos > a:first-of-type:after {
  content: "";
  height: 31px;
  width: 1px;
  background: #c4c4c4;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translate(-50%, -50%);
}
footer .content .copy {
  font-size: 14px;
  color: #444;
}
@media (max-width: 768px) {
  footer .content .copy {
    margin: 40px 0;
  }
}
footer .content .links {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  footer .content .links {
    gap: 48px;
  }
}
footer .content .links > a {
  font-size: 14px;
  color: #444;
  gap: 8px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  footer .content .dex {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

.banner {
  position: relative;
  background: url("../assets/images/feiras/background.png") no-repeat;
  height: 767px;
  margin-top: -30px;
}
@media (max-width: 768px) {
  .banner {
    margin-bottom: 0px;
    background: #008740;
    height: 712px;
    margin-top: -56px;
  }
}
.banner > svg {
  top: 0;
  display: none;
  position: absolute;
}
.banner > svg:nth-of-type(2) {
  top: inherit;
  bottom: -1px;
}
@media (max-width: 768px) {
  .banner > svg {
    display: block;
  }
}
.banner .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .banner .list {
    flex-direction: column;
    align-items: unset;
  }
}
.banner .item:first-child {
  width: 496px;
  margin-right: 221px;
  margin-top: 72px;
}
@media (max-width: 1024px) {
  .banner .item:first-child {
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .banner .item:first-child {
    width: 100%;
    margin-top: unset;
  }
}
.banner .item .img {
  width: 600px;
  /* height: 420px; */
  margin-top: 102px;
  filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.25));
}
@media (max-width: 768px) {
  .banner .item .img {
    margin-top: 60px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
  }
}
.banner .item .img:before {
  content: "";
  width: 83px;
  height: 58.86px;
  top: 50%;
  right: 50%;
  position: absolute;
  background: #FAFCF1;
  border-radius: 16px;
  transform: translate(50%, -50%);
  transition: all 0.3s;
  z-index: 2;
}
@media (max-width: 768px) {
  .banner .item .img:before {
    /* width: 43.16px; */
    /* height: 30.61px; */
    scale: .8;
    border-radius: 8px;
    right: 50%;
    top: 55%;
  }
  .banner .item .img:after {
    top: 56% !important;
    right: 52% !important;
  }
}
.banner .item .img:after {
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  right: 50%;
  position: absolute;
  border-radius: 16px;
  transform: translate(50%, -50%);
  border-left: 14px solid #008740;
  border-top: 7.5px solid transparent;
  border-bottom: 7.5px solid transparent;
  border-radius: 0;
  transition: all 0.3s;
  z-index: 3;
}
@media (hover: hover) {
  .banner .item .img:hover {
    cursor: pointer;
  }
  .banner .item .img:hover:before {
    background: #008740;
  }
  .banner .item .img:hover:after {
    border-left: 12px solid white;
  }
}
.banner .item .img > img {
  height: 336px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 32px;
  object-position: center;
}
@media (max-width: 1024px) {
  .banner .item .img > img {
    max-width: 67%;
  }
}
@media (max-width: 768px) {
  .banner .item .img > img {
    border-radius: 16px;
    max-width: 100%;
    width: 100%;
  }
}
.banner .item .title {
  color: white;
  font-size: 3.25rem;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .banner .item .title {
    font-size: 2rem;
    padding-top: 105px;
  }
}
.banner .item .description {
  color: white;
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 24px;
}
.banner .item .button {
  background: white;
  color: #063B1E;
  padding: 14px 24px;
  border-radius: 4px;
  border: 1px solid white;
  font-weight: 700;
  display: block;
  width: fit-content;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .banner .item .button {
    width: 100%;
    display: block;
    box-sizing: border-box;
    text-align: center;
    padding: 14px 0px;
  }
}
@media (hover: hover) {
  .banner .item .button:hover {
    background: #063B1E;
    border: 1px solid #063B1E;
    color: white;
  }
}

.products {
  overflow: hidden;
  position: relative;
  margin-bottom: 80px;
  /* margin-top: -450px; */
  background: url("../assets/images/feiras/background2.png") 100% no-repeat;
  background-size: contain;
  z-index: 1;
}
@media (max-width: 768px) {
  .products {
    z-index: 3;
    /* margin-top: 192px; */
    background: url("../../images/lps/feiras/products/background-mobile.png") right no-repeat;
    margin-bottom: 40px;
  }
}
.products .title {
  width: 392px;
  color: #000;
  padding-top: 15px;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 15px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .products .title {
    font-size: 24px;
    width: 80%;
    padding-top: 47px;
  }
}
.products .title:after {
  content: "";
  width: 44px;
  border: 3px solid #008740;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .products .title:after {
    top: 15px;
  }
}
.products .list .owl-stage {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .products .list .owl-stage {
    margin-bottom: 32px;
  }
}
.products .list .item {
  box-shadow: 0 4px 28px rgba(68, 68, 68, 0.1);
  border-radius: 32px;
}
@media (max-width: 768px) {
  .products .list .item {
    width: calc(100vw - 48px);
    margin: 0;
  }
}
.products .list .item .img {
  display: block;
  cursor: pointer;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.products .list .item .img:before {
  content: "";
  width: 47.42px;
  height: 31.59px;
  top: 50%;
  right: 50%;
  position: absolute;
  background: #FAFCF1;
  border-radius: 8px;
  transform: translate(50%, -50%);
  transition: all 0.3s;
  z-index: 2;
}
.products .list .item .img:after {
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  right: 50%;
  position: absolute;
  border-radius: 16px;
  transform: translate(50%, -50%);
  border-left: 14px solid #008740;
  border-top: 7.5px solid transparent;
  border-bottom: 7.5px solid transparent;
  border-radius: 0;
  transition: all 0.3s;
  z-index: 3;
}
.products .list .item .img > img {
  border-radius: 32px 32px 0 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
@media (hover: hover) {
  .products .list .item .img:hover:before {
    background: #008740;
  }
  .products .list .item .img:hover:after {
    border-left: 12px solid white;
  }
}
.products .list .item .content {
  height: 200px;
  background: white;
  padding: 16px 24px;
  box-sizing: border-box;
  border-radius: 0 0 32px 32px;
}
@media (max-width: 768px) {
  .products .list .item .content {
    padding: 20px;
    height: auto;
  }
}
.products .list .item .content > span {
  color: #008740;
  font-weight: 700;
  font-size: 13px;
}
.products .list .item .content > h3 {
  color: #063B1E;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: 40px;
}
@media (max-width: 768px) {
  .products .list .item .content > h3 {
    font-size: 20px;
    height: auto;
  }
}
.products .list .item .content .description {
  color: #3B2703;
  font-size: 14px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.products .list .item .content > a {
  font-size: 14px;
  color: #008740;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.products .list .item .content > a > img {
  width: 16px;
  height: 16px;
}
@media (hover: hover) {
  .products .list .item .content > a:hover {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .products .list .owl-controls {
    width: calc(100vw - 48px);
    text-align: center;
  }
}
.products .list .owl-dots {
  padding: 6px 8px;
  border-radius: 10px;
  background-color: #008740;
  display: inline-flex;
  gap: 8px;
  box-sizing: border-box;
}
.products .list .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #063B1E;
}
.products .list .owl-dots .owl-dot.active {
  background-color: white;
}
.products .owl-nav {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .products .owl-nav {
    display: none;
  }
}
.products .owl-nav .nav {
  width: 48px;
  height: 48px;
  position: relative;
  border-radius: 8px;
  background: #FAFCF1;
  box-shadow: 0 4px 28px rgba(68, 68, 68, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 170px;
}
.products .owl-nav .nav:after {
  content: "";
  width: 20px;
  height: 8px;
  display: block;
  background: url("../assets/images/feiras/ico-arrow.svg") no-repeat;
}
.products .owl-nav .nav--next {
  right: -70px;
}
.products .owl-nav .nav--prev {
  left: -70px;
}
.products .owl-nav .nav--prev:after {
  transform: rotate(180deg);
}
.products .owl-nav .disabled .nav {
  opacity: 0.4;
}

.feature {
  margin-top: -180px;
  position: relative;
  background: url("../assets/images/feiras/bg2.png") -487px no-repeat;
  background-size: cover;
  background-size: auto;
}
@media (max-width: 768px) {
  .feature {
    margin-top: 250px;
  }
}
.feature:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(174.8deg, #FFFFFF 9.76%, rgba(255, 255, 255, 0) 69.93%);
  display: block;
  position: absolute;
}
.feature:after {
  content: "";
  background: url("../assets/images/feiras/frame2.png") no-repeat;
  width: 510px;
  height: 498px;
  position: absolute;
  right: 150px;
  top: 150px;
  z-index: 1;
}
@media (max-width: 768px) {
  .feature:after {
    right: -24px;
    top: -137px;
    background: url("../../images/lps/feiras/frame-mobile.png") no-repeat;
    z-index: 2;
    width: 270px;
    height: 266px;
  }
}
.feature .loading {
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  text-align: center;
  z-index: 9;
  display: none;
}
.feature .loading > img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}
.feature .form-content {
  z-index: 2;
  /* padding-top: 62px; */
  position: relative;
}
@media (max-width: 768px) {
  .feature .form-content {
    padding-top: 40px;
  }
}
.feature .form-content:before {
  content: "";
  background: url("../assets/images/feiras/frame.png") top left no-repeat;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .feature .form-content:before {
    background: url("../../images/lps/feiras/form/frame-mobile.png") top left no-repeat;
    background-size: contain;
    z-index: 0;
  }
}
.feature .form-content .form {
  padding-top: 100px;
  position: relative;
  padding-bottom: 32px;
}
@media (max-width: 768px) {
  .feature .form-content .form {
    padding-top: 0px;
  }
}
.feature .form-content .form > h2 {
  color: white;
  font-size: 2.75rem;
  padding-top: 32px;
  position: relative;
  margin: 0;
}
@media (max-width: 768px) {
  .feature .form-content .form > h2 {
    font-size: 24px;
    padding-top: 28px;
  }
}
.feature .form-content .form > h2:after {
  content: "";
  width: 44px;
  border: 3px solid #FAFCF1;
  position: absolute;
  top: 0;
  left: 0;
}
.feature .form-content .form > p {
  color: white;
  font-size: 1rem;
  margin-bottom: 44px;
  width: 520px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .feature .form-content .form > p {
    width: 100%;
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.feature .form-content .form > form {
  width: 808px;
  padding: 32px;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: white;
  box-shadow: 0 4px 200px rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  border-top-left-radius: 0px;
}
@media (max-width: 768px) {
  .feature .form-content .form > form {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 28px rgba(68, 68, 68, 0.1);
    padding: 40px 20px;
    border-top-left-radius: 0px;
  }
}
.feature .form-content .form > form .form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .feature .form-content .form > form .form-row {
    flex-direction: column;
  }
}
.feature .form-content .form > form .form-row .form-group {
  flex: 0 0 50%;
  max-width: 360px;
  position: relative;
}
@media (max-width: 768px) {
  .feature .form-content .form > form .form-row .form-group {
    max-width: 100%;
  }
}
.feature .form-content .form > form .form-group {
  margin-top: 28px;
}
.feature .form-content .form > form .form-group.m-0 {
  margin-top: 0;
}
.feature .form-content .form > form .form-group.recaptcha {
  margin: 32px 0;
}
.feature .form-content .form > form .form-group .checkbox {
  gap: 1em;
  display: grid;
  cursor: pointer;
  font-size: 14px;
  margin-left: 2px;
  margin-bottom: 1em;
  place-items: center;
  place-content: baseline;
  grid-template-columns: 1em auto;
}
.feature .form-content .form > form .form-group .checkbox input[type=checkbox] {
  margin: 0;
  padding: 0;
  display: grid;
  width: 1.25em;
  height: 1.25em;
  cursor: pointer;
  appearance: none;
  border-radius: 4px;
  place-items: center;
  background-color: white;
  border: 1px solid #063B1E;
}
.feature .form-content .form > form .form-group .checkbox input[type=checkbox]:before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background-color: #008740;
  border-radius: 2px;
  transform: scale(0);
  transform-origin: center center;
  transition: 120ms transform ease-in-out;
}
.feature .form-content .form > form .form-group .checkbox input[type=checkbox]:checked:before {
  transform: scale(1);
}
.feature .form-content .form > form .form-group > label {
  display: block;
  color: #063B1E;
  font-weight: bold;
  margin-left: 12px;
  margin-bottom: 8px;
}
.feature .form-content .form > form .form-group > label > abbr {
  text-decoration: none;
}
.feature .form-content .form > form .form-group > button, .feature .form-content .form > form .form-group > input, .feature .form-content .form > form .form-group > select, .feature .form-content .form > form .form-group > textarea {
  border: 1px solid #063B1E;
  background: white;
  height: 48px;
  border-radius: 4px;
  padding: 12px;
  box-sizing: border-box;
  color: #008740;
  outline: none;
  width: 100%;
}
.feature .form-content .form > form .form-group > button::placeholder, .feature .form-content .form > form .form-group > input::placeholder, .feature .form-content .form > form .form-group > select::placeholder, .feature .form-content .form > form .form-group > textarea::placeholder {
  color: #008740;
}
.feature .form-content .form > form .form-group > textarea {
  height: auto;
}
.feature .form-content .form > form .form-group > select {
  cursor: pointer;
  appearance: none;
  background: url("../../images/lps/feiras/ico-arrow-down.svg") 97% center no-repeat;
}
.feature .form-content .form > form .form-group select > option {
  cursor: pointer;
}
.feature .form-content .form > form .form-group > button {
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 0;
  transition: all 0.3s;
}
@media (hover: hover) {
  .feature .form-content .form > form .form-group > button:hover {
    background: #008740;
    border: 1px solid #008740;
    color: white;
  }
}
.feature .form-content .form .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 0px;
  z-index: 3;
  left: 198px;
  width: 808px;
  margin: 0 auto;
}
.feature .form-content .form #li_visitante {
  border-top-left-radius: 24px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-right: 0;
  font-size: 16px;
  /* height: 29px; */
  width: 120px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 8px;
}
.feature .form-content .form #li_consultor {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-right: 0;
  font-size: 16px;
  /* height: 29px; */
  width: 160px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 8px;
}
.feature .form-content .form .form_ative {
  background-color: #FFFFFF;
  border-top-left-radius: 24px;
}
.feature .form-content .form .form_ative a {
  color: #063B1E;
  font-weight: 800;
  /* font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.01em; */
}
.feature .form-content .form .form_desative {
  border-top-right-radius: 16px;
  background-color: #063b1e;
}
.feature .form-content .form .form_desative a {
  color: #FFFFFF;
  font-weight: 800;
}
.feature .form-content .form #form2 {
  display: none;
}
.feature .form-content .form .menu li {
  display: inline-block;
  padding: 6px;
  border-radius: 2px;
  margin-right: 4px;
  border-bottom: 0;
  font-size: 24px;
  font-weight: 600;
}
.feature .form-content .politica_privacidade {
  font-weight: 700;
}
.feature .form-content .politica_privacidade a {
  font-weight: 700;
}

.cards {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 768px) {
  .cards {
    padding: 60px 0;
  }
}
.cards .list {
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .cards .list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.cards .list > li {
  padding: 32px;
  border-radius: 32px;
  box-sizing: border-box;
  background-color: #008740;
  height: 240px;
  text-align: center;
}
@media (max-width: 768px) {
  .cards .list > li {
    display: flex;
    padding: 20px 28px;
    gap: 20px;
    border-radius: 16px;
    height: 152px;
    align-items: center;
  }
}
.cards .list > li > img {
  width: 60px;
  height: 60px;
  margin-bottom: 44px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .cards .list > li > img {
    margin-bottom: 0px;
  }
}
.cards .list > li > p {
  font-size: 1rem;
  color: white;
  text-align: left;
}
@media (max-width: 768px) {
  .cards .list > li > p {
    margin: 0;
    line-height: 24px;
  }
}

.banner_penzaur {
  margin-bottom: 60px;
  position: relative;
  background: url(../../images/lps/feiras/backgroundPzr.png) no-repeat;
  height: 810px;
  margin-top: -85px;
}
@media (max-width: 768px) {
  .banner_penzaur {
    background: url(../../images/lps/feiras/backgroundPzrMobile.png) no-repeat;
    margin-bottom: 0px;
    height: 116%;
    margin-top: -56px;
    background-size: 100%;
  }
}
.banner_penzaur > svg {
  top: 0;
  display: none;
  position: absolute;
}
.banner_penzaur > svg:nth-of-type(2) {
  top: inherit;
  bottom: -1px;
}
@media (max-width: 768px) {
  .banner_penzaur > svg {
    display: block;
  }
}
.banner_penzaur .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .banner_penzaur .list {
    flex-direction: column;
    align-items: unset;
  }
}
.banner_penzaur .item:first-child {
  width: 575px;
  margin-right: 190px;
  margin-top: 120px;
}
@media (max-width: 1024px) {
  .banner_penzaur .item:first-child {
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .banner_penzaur .item:first-child {
    width: 100%;
    margin-top: unset;
  }
}
.banner_penzaur .item .img {
  width: 600px;
  height: 420px;
  margin-top: 102px;
  filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.25));
}
@media (max-width: 768px) {
  .banner_penzaur .item .img {
    margin-top: 60px;
    width: 100%;
    height: 100%;
  }
}
.banner_penzaur .item .img:before {
  content: "";
  width: 83px;
  height: 58.86px;
  top: 50%;
  right: 75%;
  position: absolute;
  background: rgba(117, 14, 20, 0.72);
  border-radius: 16px;
  transform: translate(50%, -50%);
  transition: all 0.3s;
  z-index: 2;
}
@media (max-width: 768px) {
  .banner_penzaur .item .img:before {
    width: 43.16px;
    height: 30.61px;
    border-radius: 8px;
    right: 50%;
  }
}
.banner_penzaur .item .img:after {
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  right: 75%;
  position: absolute;
  border-radius: 16px;
  transform: translate(50%, -50%);
  border-left: 14px solid white;
  border-top: 7.5px solid transparent;
  border-bottom: 7.5px solid transparent;
  border-radius: 0;
  transition: all 0.3s;
  z-index: 3;
}
@media (max-width: 768px) {
  .banner_penzaur .item .img:after {
    right: 50%;
  }
}
@media (hover: hover) {
  .banner_penzaur .item .img:hover {
    cursor: pointer;
  }
  .banner_penzaur .item .img:hover:before {
    background: #750E14;
  }
  .banner_penzaur .item .img:hover:after {
    border-left: 12px solid white;
  }
}
.banner_penzaur .item .img > img {
  width: 600px;
  margin-left: -143px;
  height: 336px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 32px;
  object-position: center;
  margin-top: 55px;
}
@media (max-width: 1024px) {
  .banner_penzaur .item .img > img {
    max-width: 67%;
  }
}
@media (max-width: 768px) {
  .banner_penzaur .item .img > img {
    border-radius: 16px;
    max-width: 100%;
    margin-left: 0;
  }
}
.banner_penzaur .item .title {
  color: white;
  font-size: 3.25rem;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .banner_penzaur .item .title {
    font-size: 2rem;
    padding-top: 105px;
  }
}
.banner_penzaur .item .description {
  color: #FAFCF1;
  font-size: 24px;
  margin-bottom: 32px;
  line-height: 32px;
  width: 500px;
}
.banner_penzaur .item .button {
  background: #FAFCF1;
  color: #E30613;
  padding: 14px 24px;
  border-radius: 4px;
  border: 1px solid white;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .banner_penzaur .item .button {
    width: 100%;
    display: block;
    box-sizing: border-box;
    text-align: center;
    padding: 14px 0px;
  }
}
@media (hover: hover) {
  .banner_penzaur .item .button:hover {
    background: #063B1E;
    border: 1px solid #063B1E;
    color: white;
  }
}

.products-penzaur {
  overflow: hidden;
  position: relative;
  margin-bottom: 80px;
  padding-top: 30px;
  margin-top: -200px;
  background: url(../../images/lps/feiras/products/fundo-direita-penzaur.png) 100% no-repeat;
  background-size: contain;
  z-index: 3;
}
@media (max-width: 768px) {
  .products-penzaur {
    z-index: 3;
    margin-top: 0;
    background: url("../../images/lps/feiras/products/background-penzaur-mobile.png") right no-repeat;
    margin-bottom: 40px;
    background-size: 367px;
  }
}
.products-penzaur .title {
  width: 392px;
  color: #750E14;
  padding-top: 15px;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .products-penzaur .title {
    font-size: 24px;
    width: 80%;
    padding-top: 47px;
  }
}
.products-penzaur .title:after {
  content: "";
  width: 44px;
  border: 3px solid #750E14;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .products-penzaur .title:after {
    top: 15px;
  }
}
.products-penzaur .list .owl-stage {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .products-penzaur .list .owl-stage {
    margin-bottom: 32px;
  }
}
.products-penzaur .list .item {
  box-shadow: 0 4px 28px rgba(68, 68, 68, 0.1);
  border-radius: 32px;
}
@media (max-width: 768px) {
  .products-penzaur .list .item {
    width: calc(100vw - 48px);
    margin: 0;
  }
}
.products-penzaur .list .item .img {
  display: block;
  cursor: pointer;
  position: relative;
}
.products-penzaur .list .item .img:before {
  content: "";
  width: 68px;
  height: 40px;
  top: 50%;
  right: 50%;
  position: absolute;
  background: rgba(117, 14, 20, 0.72);
  border-radius: 8px;
  transform: translate(50%, -50%);
  transition: all 0.3s;
  z-index: 2;
}
.products-penzaur .list .item .img:after {
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  right: 50%;
  position: absolute;
  border-radius: 16px;
  transform: translate(50%, -50%);
  border-left: 14px solid white;
  border-top: 7.5px solid transparent;
  border-bottom: 7.5px solid transparent;
  border-radius: 0;
  transition: all 0.3s;
  z-index: 3;
}
.products-penzaur .list .item .img > img {
  border-radius: 32px 32px 0 0;
  object-fit: cover;
}
@media (hover: hover) {
  .products-penzaur .list .item .img:hover:before {
    background: #750E14;
  }
  .products-penzaur .list .item .img:hover:after {
    border-left: 12px solid white;
  }
}
.products-penzaur .list .item .content {
  height: 200px;
  background: white;
  padding: 16px 24px;
  box-sizing: border-box;
  border-radius: 0 0 32px 32px;
}
@media (max-width: 768px) {
  .products-penzaur .list .item .content {
    padding: 20px;
    height: auto;
  }
}
.products-penzaur .list .item .content > span {
  color: #E30613;
  font-weight: 700;
  font-size: 13px;
}
.products-penzaur .list .item .content > h3 {
  color: #750E14;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: 40px;
}
@media (max-width: 768px) {
  .products-penzaur .list .item .content > h3 {
    font-size: 20px;
    height: auto;
  }
}
.products-penzaur .list .item .content .description {
  color: #3B2703;
  font-size: 14px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.products-penzaur .list .item .content > a {
  font-size: 14px;
  color: #E30613;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.products-penzaur .list .item .content > a > img {
  width: 16px;
  height: 16px;
}
@media (hover: hover) {
  .products-penzaur .list .item .content > a:hover {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .products-penzaur .list .owl-controls {
    width: calc(100vw - 48px);
    text-align: center;
  }
}
.products-penzaur .list .owl-dots {
  padding: 10px 12px;
  border-radius: 20px;
  background-color: #000000;
  display: inline-flex;
  gap: 8px;
  box-sizing: border-box;
}
.products-penzaur .list .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #444444;
}
.products-penzaur .list .owl-dots .owl-dot.active {
  background-color: #E30613;
}
.products-penzaur .owl-nav {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .products-penzaur .owl-nav {
    display: none;
  }
}
.products-penzaur .owl-nav .nav {
  width: 48px;
  height: 48px;
  position: relative;
  border-radius: 8px;
  background: #FAFCF1;
  box-shadow: 0 4px 28px rgba(68, 68, 68, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 170px;
}
.products-penzaur .owl-nav .nav:after {
  content: "";
  width: 20px;
  height: 14px;
  display: block;
  background: url("../../images/lps/feiras/ico-arrow-red.png") no-repeat;
}
.products-penzaur .owl-nav .nav--next {
  right: -70px;
}
.products-penzaur .owl-nav .nav--prev {
  left: -70px;
}
.products-penzaur .owl-nav .nav--prev:after {
  transform: rotate(180deg);
}
.products-penzaur .owl-nav .disabled .nav {
  opacity: 0.4;
}

.feature_penzaur {
  margin-top: -231px;
  position: relative;
  background: url(../../images/lps/feiras/background-esquerdo-penzaur.png) no-repeat;
  background-size: cover;
  background-size: auto;
}
@media (max-width: 768px) {
  .feature_penzaur {
    margin-top: -60px;
  }
}
.feature_penzaur .loading {
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  text-align: center;
  z-index: 9;
  display: none;
}
.feature_penzaur .loading > img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}
.feature_penzaur .form-content {
  z-index: 2;
  padding-top: 62px;
  position: relative;
}
@media (max-width: 768px) {
  .feature_penzaur .form-content {
    padding-top: 40px;
  }
}
.feature_penzaur .form-content .form {
  padding-top: 180px;
  position: relative;
}
@media (max-width: 768px) {
  .feature_penzaur .form-content .form {
    padding-top: 64px;
  }
}
.feature_penzaur .form-content .form > h2 {
  color: white;
  font-size: 2.75rem;
  padding-top: 32px;
  position: relative;
  margin: 0;
  margin: 0 auto;
  width: 800px;
}
@media (max-width: 768px) {
  .feature_penzaur .form-content .form > h2 {
    font-size: 24px;
    padding-top: 28px;
  }
}
.feature_penzaur .form-content .form > h2:after {
  content: "";
  width: 44px;
  border: 3px solid #FAFCF1;
  position: absolute;
  top: 0;
  left: 0;
}
.feature_penzaur .form-content .form > p {
  color: white;
  font-size: 1rem;
  margin-bottom: 44px;
  line-height: 24px;
  margin: 0 auto;
  width: 800px;
}
@media (max-width: 768px) {
  .feature_penzaur .form-content .form > p {
    width: 100%;
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.feature_penzaur .form-content .form > form {
  width: 808px;
  padding: 32px;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: white;
  box-shadow: 0 4px 200px rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  border-top-left-radius: 0px;
}
@media (max-width: 768px) {
  .feature_penzaur .form-content .form > form {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 28px rgba(68, 68, 68, 0.1);
    padding: 40px 20px;
    border-top-left-radius: 0px;
  }
}
.feature_penzaur .form-content .form > form .form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .feature_penzaur .form-content .form > form .form-row {
    flex-direction: column;
  }
}
.feature_penzaur .form-content .form > form .form-row .form-group {
  flex: 0 0 50%;
  max-width: 360px;
  position: relative;
}
@media (max-width: 768px) {
  .feature_penzaur .form-content .form > form .form-row .form-group {
    max-width: 100%;
  }
}
.feature_penzaur .form-content .form > form .form-group {
  margin-top: 28px;
}
.feature_penzaur .form-content .form > form .form-group.m-0 {
  margin-top: 0;
}
.feature_penzaur .form-content .form > form .form-group.recaptcha {
  margin: 32px 0;
}
.feature_penzaur .form-content .form > form .form-group .checkbox {
  gap: 1em;
  display: grid;
  cursor: pointer;
  font-size: 14px;
  margin-left: 2px;
  margin-bottom: 1em;
  place-items: center;
  place-content: baseline;
  grid-template-columns: 1em auto;
}
.feature_penzaur .form-content .form > form .form-group .checkbox input[type=checkbox] {
  margin: 0;
  padding: 0;
  display: grid;
  width: 1.25em;
  height: 1.25em;
  cursor: pointer;
  appearance: none;
  border-radius: 4px;
  place-items: center;
  background-color: white;
  border: 1px solid #444444;
}
.feature_penzaur .form-content .form > form .form-group .checkbox input[type=checkbox]:before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background-color: #750E14;
  border-radius: 2px;
  transform: scale(0);
  transform-origin: center center;
  transition: 120ms transform ease-in-out;
}
.feature_penzaur .form-content .form > form .form-group .checkbox input[type=checkbox]:checked:before {
  transform: scale(1);
}
.feature_penzaur .form-content .form > form .form-group > label {
  display: block;
  color: #750E14;
  font-weight: bold;
  margin-left: 12px;
  margin-bottom: 8px;
}
.feature_penzaur .form-content .form > form .form-group > label > abbr {
  text-decoration: none;
}
.feature_penzaur .form-content .form > form .form-group > button, .feature_penzaur .form-content .form > form .form-group > input, .feature_penzaur .form-content .form > form .form-group > select, .feature_penzaur .form-content .form > form .form-group > textarea {
  border: 1px solid #444444;
  background: white;
  height: 48px;
  border-radius: 4px;
  padding: 12px;
  box-sizing: border-box;
  color: #444444;
  outline: none;
  width: 100%;
}
.feature_penzaur .form-content .form > form .form-group > button::placeholder, .feature_penzaur .form-content .form > form .form-group > input::placeholder, .feature_penzaur .form-content .form > form .form-group > select::placeholder, .feature_penzaur .form-content .form > form .form-group > textarea::placeholder {
  color: #444444;
}
.feature_penzaur .form-content .form > form .form-group > textarea {
  height: auto;
}
.feature_penzaur .form-content .form > form .form-group > select {
  cursor: pointer;
  appearance: none;
  background: url("../../images/lps/feiras/ico-arrow-down-red.svg") 97% center no-repeat;
}
.feature_penzaur .form-content .form > form .form-group select > option {
  cursor: pointer;
}
.feature_penzaur .form-content .form > form .form-group > button {
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 0;
  transition: all 0.3s;
}
@media (hover: hover) {
  .feature_penzaur .form-content .form > form .form-group > button:hover {
    background: #750E14;
    border: 1px solid #750E14;
    color: white;
  }
}
.feature_penzaur .form-content .form .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 0px;
  z-index: 3;
  left: 198px;
  width: 808px;
  margin: 0 auto;
}
.feature_penzaur .form-content .form #li_visitante {
  border-top-left-radius: 24px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-right: 0;
  font-size: 16px;
  height: 29px;
  width: 120px;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 4px;
}
.feature_penzaur .form-content .form #li_consultor {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-right: 0;
  font-size: 16px;
  height: 29px;
  width: 160px;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 4px;
}
.feature_penzaur .form-content .form .form_ative {
  background-color: #FFFFFF;
  border-top-left-radius: 24px;
}
.feature_penzaur .form-content .form .form_ative a {
  color: #750E14;
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.01em;
}
.feature_penzaur .form-content .form .form_desative {
  border-top-right-radius: 16px;
  background-color: #E30613;
}
.feature_penzaur .form-content .form .form_desative a {
  color: #FFFFFF;
  font-weight: 800;
}
.feature_penzaur .form-content .form #form2 {
  display: none;
}
.feature_penzaur .form-content .form .menu li {
  display: inline-block;
  padding: 6px;
  border-radius: 2px;
  margin-right: 4px;
  border-bottom: 0;
  font-size: 24px;
  font-weight: 600;
}
.feature_penzaur .form-content .politica_privacidade {
  font-weight: 700;
}
.feature_penzaur .form-content .politica_privacidade a {
  font-weight: 700;
}

.cards-penzaur {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 768px) {
  .cards-penzaur {
    padding: 60px 0;
  }
}
.cards-penzaur .list {
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .cards-penzaur .list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.cards-penzaur .list > li {
  padding: 32px;
  border-radius: 32px;
  box-sizing: border-box;
  background-color: #750E14;
  height: 240px;
  text-align: center;
}
@media (max-width: 768px) {
  .cards-penzaur .list > li {
    display: flex;
    padding: 20px 28px;
    gap: 20px;
    border-radius: 16px;
    height: 152px;
    align-items: center;
  }
}
.cards-penzaur .list > li > img {
  width: 60px;
  height: 60px;
  margin-bottom: 44px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .cards-penzaur .list > li > img {
    margin-bottom: 0px;
  }
}
.cards-penzaur .list > li > p {
  font-size: 1rem;
  color: white;
  text-align: left;
}
@media (max-width: 768px) {
  .cards-penzaur .list > li > p {
    margin: 0;
    line-height: 24px;
  }
}

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