@charset "UTF-8";
/* Animações de Fade-In */
@keyframes fadeInLeft {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInTop {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    /* Começa menor */
    opacity: 0;
  }
  to {
    transform: scale(1);
    /* Termina no tamanho normal */
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes flipIn {
  0% {
    transform: rotate3d(-1, 1, 0, -80deg);
    opacity: 0;
  }
  100% {
    transform: rotate3d(1, 1, 0, 0deg);
    opacity: 1;
  }
}
@keyframes loopScale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/* Aplicando as animações nas classes de animação */
.fadeInLeft.show-animate {
  animation: fadeInLeft 1s ease-out forwards;
}

.fadeInRight.show-animate {
  animation: fadeInRight 1s ease-out forwards;
}

.fadeInTop.show-animate {
  animation: fadeInTop 1s ease-out forwards;
}

.fadeInBottom.show-animate {
  animation: fadeInBottom 1s ease-out forwards;
}

.zoomIn.show-animate {
  animation: zoomIn 1s ease-out forwards;
}

/* Ajustes gerais para tornar os elementos invisíveis até a animação */
.fade-left,
.fade-right,
.fade-top,
.fade-bottom,
.zoomIn {
  opacity: 0;
}

/* Classe que ativa a animação */
.show-animate {
  opacity: 1;
}

.bg-green {
  background: linear-gradient(30deg, #4d963d, #95b844);
}

.bg-cinza {
  background: #f5f5f5;
}

.bg-dark1 {
  background: #94b843;
}

.bg-dark2 {
  background: linear-gradient(30deg, #4d963d, #95b844);
}

.swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

body {
  overflow-x: hidden !important;
}

section {
  overflow-x: hidden;
}

.section-padding {
  padding: 65px 0;
}

.sticky-div {
  position: sticky;
  top: 130px;
  z-index: 4;
}

.overflow-unset {
  overflow: unset !important;
}

.moreText {
  display: none;
}

.go-top-btn {
  background: #94b843;
  height: 55px;
  width: 55px;
  right: 15px;
  bottom: 10px;
  position: fixed;
  z-index: 10;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2);
  color: #1f1f1f;
  text-decoration: none;
  transition: all 0.4s;
  display: none;
  cursor: pointer;
}
.go-top-btn i {
  display: block;
  line-height: 52px;
  color: #fff;
}

.sticky-div {
  position: sticky !important;
  top: 130px;
  z-index: 4;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #4e963e #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 11px;
}

*::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: #4e963e;
  border-radius: 10px;
  border: 3px solid #ffffff;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #1b5e1f;
}

h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 1rem;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  color: #171717;
}

a {
  color: #171717;
  text-decoration: none;
  transition: 0.4s ease;
}

p {
  color: #171717;
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 22px;
}

.section-title h1,
.section-title h2 {
  font-size: 3em;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.section-title span {
  text-transform: uppercase;
  font-size: 0.9em;
  display: block;
}

.int-typography h2,
.int-typography h3,
.int-typography h4 {
  margin-bottom: 10px;
}
.int-typography ul {
  margin-bottom: 10px;
}
.int-typography ul li {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 5px;
  font-size: 1em;
}

.divider {
  background: #4e963e;
  -webkit-mask-image: url(../img/logo/divider.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(../img/logo/divider.svg);
  mask-position: center center;
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 55px;
  height: 25px;
}

.title-area2 {
  position: relative;
  margin-top: 15px;
  margin-bottom: 30px;
}
.title-area2.white h2,
.title-area2.white h3,
.title-area2.white .title {
  color: #fff;
}
.title-area2.white p {
  color: #fff;
}
.title-area2.white span,
.title-area2.white .subtitle {
  color: #fff;
}
.title-area2.white span::before,
.title-area2.white .subtitle::before {
  filter: brightness(100) saturate(0);
}
.title-area2 span,
.title-area2 .subtitle {
  position: relative;
  display: block;
  max-width: fit-content;
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.2em;
  padding: 8px 15px;
  padding-left: 65px;
  margin-bottom: 20px;
  border-radius: 2px;
}
.title-area2 span::before,
.title-area2 .subtitle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 50px;
  height: 3px;
  background: #94b843;
  opacity: 0.8;
}
.title-area2 h2,
.title-area2 h3,
.title-area2 .title {
  color: #171717;
  font-size: 2.4rem;
  line-height: 2.6rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: -0.25em;
}
.title-area2 h2 b,
.title-area2 h3 b,
.title-area2 .title b {
  font-weight: 600;
}
.title-area2 h2 b.tam2,
.title-area2 h3 b.tam2,
.title-area2 .title b.tam2 {
  font-size: 1.8rem;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-area2 h2,
  .title-area2 h3,
  .title-area2 .title {
    font-size: 2.2rem;
    line-height: 2.4rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .title-area2 h2,
  .title-area2 h3,
  .title-area2 .title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}
.title-area2 p {
  margin-top: 20px;
  color: #171717;
}
.title-area2 .shape {
  height: 30px;
  width: 200px;
  position: relative;
  margin-top: 10px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-area2 .shape {
    width: 200px;
  }
}
.title-area2 .shape::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  background-image: url(../img/banners/divider-shape2.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.title-area2.text-center {
  text-align: center;
}
.title-area2.text-center span,
.title-area2.text-center .subtitle {
  left: 50%;
  transform: translateX(-50%);
}
.title-area2.text-center .shape {
  margin: 0 auto;
}
.title-area2.dark h2,
.title-area2.dark h3,
.title-area2.dark .title {
  color: #fff;
}

header .top_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(30deg, #162a11, #203b19, #162a11);
  padding: 5px 0;
  position: relative;
  height: 15px;
  overflow: hidden;
}
@media (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px) {
  header .top_menu {
    padding: 5px 70px;
  }
}
header .top_menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .top_menu {
    display: none;
  }
}
header .top_menu .container-fluid {
  position: relative;
  z-index: 2;
}
header .top_menu .container-fluid .row {
  align-items: center;
}
header .top_menu .header-social {
  display: flex;
  gap: 6px;
  align-items: center;
}
header .top_menu .header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 2px;
  background: #94b843;
  color: rgb(255, 255, 255);
  font-size: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
header .top_menu .header-social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
header .top_menu .header-social a:hover {
  background: #94b843;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}
header .top_menu .header-social a:hover i {
  color: #fff;
}
header .top_menu .header-social a:hover::before {
  left: 100%;
}
header .top_menu .header-social a i {
  font-size: 14px;
  line-height: normal;
  position: relative;
  z-index: 1;
  color: #fff;
}
header .top_menu .contact-menu {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
header .top_menu .contact-menu .dn_btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 2px 10px;
  border-radius: 2px;
  background: #94b843;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
header .top_menu .contact-menu .dn_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  transition: width 0.3s ease;
}
header .top_menu .contact-menu .dn_btn:hover {
  color: #fff;
  background: #4e963e;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
header .top_menu .contact-menu .dn_btn:hover::before {
  width: 100%;
}
header .top_menu .contact-menu .dn_btn:hover i {
  color: #162a11;
}
header .top_menu .contact-menu .dn_btn i {
  font-size: 16px;
  color: #162a11;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .top_menu .contact-menu .dn_btn {
    font-size: 11px;
    gap: 4px;
    padding: 3px 8px;
  }
}
header .header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header .header-area.sticky {
  background: #94b843;
  backdrop-filter: blur(15px);
  animation: remove-top 0.8s ease-in-out;
}
@keyframes remove-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
header .header-area.sticky .nav-branding {
  color: #000;
}
header .header-area.sticky .nav-menu .menu li a {
  color: #fff;
}
header .header-area.sticky .top_menu {
  display: none;
}
header .header-area .header-main {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  min-height: 110px;
  height: auto;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  gap: 0.5rem 1rem;
}
@media (max-width: 991px) {
  header .header-area .header-main {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    grid-template-areas: "burger logo whatsapp" "search search search";
    align-items: center;
    padding: 12px 16px 14px;
    min-height: auto;
    row-gap: 12px;
    column-gap: 10px;
  }
}
@media (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px) {
  header .header-area .header-main {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .header-area .header-main {
    background: #fff;
  }
}
header .header-area .header-main .header-logo {
  text-decoration: none;
}
@media (max-width: 991px) {
  header .header-area .header-main .header-logo {
    grid-area: logo;
    justify-self: center;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .open-nav-menu {
    grid-area: burger;
    margin: 0;
  }
}
header .header-area .header-main .header-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #94b843;
  color: #fff;
  font-size: 1.35rem;
  text-decoration: none;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  header .header-area .header-main .header-whatsapp-btn {
    grid-area: whatsapp;
    justify-self: end;
  }
}
header .header-area .header-main .header-whatsapp-btn:hover {
  color: #fff;
}
header .header-area .header-main .header-product-search {
  position: relative;
  flex: 0 1 auto;
  width: min(340px, 38vw);
  max-width: 340px;
  min-width: 200px;
  margin: 0;
}
@media (max-width: 991px) {
  header .header-area .header-main .header-product-search--desktop {
    display: none !important;
  }
}
header .header-area .header-main .header-product-search--mobile {
  display: none;
}
@media (max-width: 991px) {
  header .header-area .header-main .header-product-search--mobile {
    display: block;
    grid-area: search;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
  }
}
header .header-area .header-main .header-product-search .input-group {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(13, 90, 40, 0.06);
}
header .header-area .header-main .header-product-search .form-control {
  font-size: 13px;
  padding: 0.35rem 0.5rem;
  min-height: 34px;
}
@media (max-width: 991px) {
  header .header-area .header-main .header-product-search .form-control {
    min-height: 40px;
    font-size: 14px;
  }
}
header .header-area .header-main .header-product-search .input-group-text {
  padding: 0 0.55rem;
  font-size: 0.8rem;
}
header .header-area .header-main .header-product-search__empty {
  font-size: 11px;
  line-height: 1.2;
  color: #5c6d63;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 2px;
  white-space: nowrap;
  z-index: 2;
}
header .header-area .header-main .header-product-search__results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 1005;
  max-height: 280px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e6ebea;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(13, 90, 40, 0.12);
}
header .header-area .header-main .header-product-search__results a {
  display: block;
  padding: 0.5rem 0.65rem;
  font-size: 12px;
  line-height: 1.35;
  color: #1a2e24;
  text-decoration: none;
  border-bottom: 1px solid #f0f3f1;
}
header .header-area .header-main .header-product-search__results a:hover, header .header-area .header-main .header-product-search__results a:focus {
  background: rgba(148, 184, 67, 0.08);
  color: #94b843;
}
header .header-area .header-main .header-product-search__results a:last-child {
  border-bottom: none;
}
header .header-area .header-main .logo {
  padding: 0 15px;
  width: 180px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .logo {
    width: 170px;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .logo {
    width: 140px;
    padding: 0;
  }
}
header .header-area .header-main .logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
header .header-area .header-main .nav-menu {
  padding: 0 15px;
}
@media (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px), only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    gap: 0.5rem 0.75rem;
    min-width: 0;
  }
}
@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu {
    order: 0;
  }
  header .header-area .header-main .nav-menu .header-product-search--desktop {
    order: 1;
  }
  header .header-area .header-main .nav-menu .contact-btn {
    order: 2;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu .menu-item {
    margin-left: 10px;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item:first-child {
  margin-left: 0;
}
header .header-area .header-main .nav-menu .menu .menu-item > a {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  letter-spacing: 0.1rem;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    font-size: 16px;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item > a .plus {
  display: inline-block;
  height: 10px;
  width: 10px;
  position: relative;
  margin-left: 3px;
  pointer-events: none;
}
header .header-area .header-main .nav-menu .menu .menu-item > a .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background: #94b843;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
header .header-area .header-main .nav-menu .menu .menu-item > a::after {
  content: "";
  display: block;
  margin: auto;
  height: 3px;
  width: 0;
  position: relative;
  top: 1px;
  background: transparent;
  transition: all 0.3s;
}
header .header-area .header-main .nav-menu .menu .menu-item > a:hover {
  color: #94b843;
}
header .header-area .header-main .nav-menu .menu .menu-item > a:hover .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a:hover .plus:after {
  background-color: #94b843;
}
header .header-area .header-main .nav-menu .menu .menu-item > a:hover::after, header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav::after {
  width: 100%;
  background: #94b843;
}
@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .menu-item > a.nav-link[href*="javascript:void"] {
    cursor: default;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 250px;
  max-height: none;
  overflow: visible;
  position: absolute;
  left: 0;
  top: 100%;
  background: #1b5e1f;
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-top: 3px solid #94b843;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
}
@media (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px), only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
    top: 100%;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item {
  display: block;
  margin: 0 20px;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  transition: all 0.4s ease;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a:hover {
  color: #f1f1f1;
  padding-left: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a:hover {
    color: #4e963e;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a::after {
  display: none;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item .sub-menu .menu-item a {
  font-size: 12px;
  white-space: normal;
  word-break: break-word;
}
@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .has-children:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  header .header-area .header-main .nav-menu .menu .has-children:hover > a .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  header .header-area .header-main .nav-menu .menu {
    /* Submenu de 2o nivel abre na lateral esquerda */
  }
  header .header-area .header-main .nav-menu .menu .sub-menu .has-children > .sub-menu {
    top: -14px;
    left: auto;
    right: calc(100% + 8px);
    transform: translateY(0);
    opacity: 0;
    visibility: hidden;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  header .header-area .header-main .nav-menu .menu .sub-menu .has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}
header .header-area .header-main .nav-menu .contact-btn {
  display: flex;
  align-items: center;
}
header .header-area .header-main .nav-menu .contact-btn .btn-one {
  padding: 16px 40px;
  margin: 0 5px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
}
header .header-area .header-main .nav-menu .contact-btn .btn-one spam {
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px), only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .contact-btn {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100vh;
    top: 0;
    overflow-y: auto;
    background-color: #161616;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  header .header-area .header-main .nav-menu .menu .menu-item {
    display: block;
    margin: 0;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    color: #ffffff;
    padding: 10px 15px;
    border-bottom: 1px solid #333333;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
    background-color: #ffffff;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a::after {
    display: none;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a:hover {
    color: #4e963e;
  }
  header .header-area .header-main .nav-menu .menu .menu-item:first-child a {
    border-top: 1px solid #333333;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
}
@media only screen and (max-width: 991px) and (min-width: 1200px) and (max-width: 1440px), only screen and (max-width: 991px) and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
    height: auto;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item {
    margin-left: 0;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a {
    padding: 12px 25px;
    color: #ffffff;
    border-bottom: 1px solid #333333;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a:hover {
    padding-left: 25px;
  }
  header .header-area .header-main .nav-menu .menu .has-children a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .header-area .header-main .nav-menu .menu .has-children.active > a .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  header .header-area .header-main .nav-menu .menu .menu-item--mobile-category-link > .sub-menu {
    display: none !important;
  }
}
header .header-area .header-main .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header .header-area .header-main .open-nav-menu span {
  display: block;
  height: 4px;
  width: 40px;
  background-color: #4e963e;
  position: relative;
}
header .header-area .header-main .open-nav-menu span::after, header .header-area .header-main .open-nav-menu span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4e963e;
  box-sizing: border-box;
}
header .header-area .header-main .open-nav-menu span::before {
  top: -9px;
}
header .header-area .header-main .open-nav-menu span::after {
  top: 9px;
}
@media (max-width: 991px) {
  header .header-area .header-main .open-nav-menu {
    display: flex;
  }
}
header .header-area .header-main .close-nav-menu {
  font-size: 30px;
  background-color: transparent;
  color: #94b843;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
}
header .header-area .header-main .close-nav-menu img {
  width: 16px;
}
@media (max-width: 991px) {
  header .header-area .header-main .close-nav-menu {
    display: flex;
  }
}
header .header-area .header-main .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  header .header-area .header-main .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  header .header-area .header-main .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
}
header .header-area .contact-btn .btn-main {
  padding: 18px 30px;
}

.padding-banner {
  padding-top: 136px;
}
@media (max-width: 991px) {
  .padding-banner {
    padding-top: 148px;
  }
}

@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 {
    top: 8px;
    left: calc(100% + 21px);
    opacity: 0;
    visibility: hidden;
    width: 250px;
  }
  header .header-area .header-main .nav-menu .menu .menu-item.has-children-2:hover .sub-menu-2 {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 992px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 .menu-item a {
    padding: 12px 45px;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 .menu-item a:hover {
    padding-left: 45px;
  }
}
.footer-area {
  background: #162a11;
  padding: 65px 0 0;
}
.footer-area .footer-top {
  border-bottom: 1px solid #ccc;
}
@media (max-width: 991px) {
  .footer-area .footer-top .single-footer-caption {
    margin-bottom: 70px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-logo {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: start;
  border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-area .footer-top .single-footer-caption .footer-logo {
    justify-content: center;
  }
}
.footer-area .footer-top .single-footer-caption .footer-logo img {
  object-fit: contain;
  width: 250px;
  height: auto;
  padding: 10px 0;
  border-radius: 10px;
}
.footer-area .footer-top .single-footer-caption .footer-pera .info1 {
  font-size: 1rem;
  line-height: 1.4rem;
  margin-bottom: 30px;
  font-weight: 400;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-tittle span {
  color: #94b843;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  margin-bottom: 35px;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li {
  color: #fff;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a {
  color: #868c98;
  font-weight: 300;
  transition: 0.4s ease;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a:hover {
  color: #94b843;
  padding-left: 5px;
}
.footer-area .footer-top .single-footer-caption .footer-cap {
  margin-bottom: 30px;
}
.footer-area .footer-top .single-footer-caption .footer-cap span {
  color: #1b5e1f;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  display: block;
}
.footer-area .footer-top .single-footer-caption .footer-cap p {
  color: #fff;
  font-size: 16px;
}
.footer-area .footer-top .single-footer-caption .footer-cap a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
  transition: 0.4s ease;
}
.footer-area .footer-top .single-footer-caption .footer-cap a:hover {
  color: #94b843;
  padding-left: 5px;
}
.footer-area .footer-top .single-footer-caption .footer-cap a i {
  margin-right: 2px;
}
.footer-area .footer-bottom {
  padding-bottom: 20px;
  padding-top: 30px;
}
.footer-area .footer-bottom img {
  filter: brightness(10);
  width: 125px;
  height: 52px;
}
.footer-area .footer-bottom .footer-copy-right p {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 12px;
}

.social_links {
  padding: 20px 0;
  height: 100%;
  display: flex;
  align-items: end;
}
@media (max-width: 991px) {
  .social_links {
    margin: 30px 0 40px;
  }
}
.social_links ul li {
  display: inline-block;
}
.social_links ul li a {
  font-size: 26px;
  color: #C3B2F0;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  line-height: 40px !important;
  color: #fff;
  line-height: 41px !important;
  transition: 0.4s ease;
}
.social_links ul li a:hover {
  background: #94b843;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mob-center {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mob-center {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .mob-center {
    text-align: center;
  }
}

.slider-area {
  background-image: url(../img/banners/hero-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 140px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area {
    margin-top: 90px;
  }
}
.slider-area .slider-height {
  height: 320px;
  background-size: cover;
}
.slider-area .slider-height .hero-cap h1 {
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .slider-height .hero-cap h1 {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-area .slider-height .hero-cap h1 {
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .slider-area .slider-height .hero-cap h1 {
    font-size: 35px;
    text-align: center;
  }
}
.slider-area .slider-height .hero-cap .ajust-link {
  color: #fff;
  font-weight: 500;
}
.slider-area .slider-height .hero-cap .ajust-link:hover {
  color: #94b843;
}
.slider-area .slider-height .hero-cap .divider {
  margin: 0 auto;
  background: #94b843;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area .slider-height .hero-cap .divider {
    margin: 0 auto;
  }
}
.slider-area .slider-height .hero-cap .color-w {
  color: #94b843;
  text-align: center;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area .slider-height .hero-cap .color-w {
    text-align: center;
  }
}
.slider-area .hero-overly {
  position: relative;
  z-index: 1;
}
.slider-area .hero-overly::before {
  position: absolute;
  content: "";
  background: rgba(15, 15, 15, 0.4);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-repeat: no-repeat;
}

.blog-area {
  padding: 65px 0;
  overflow-y: hidden;
}
.blog-area .home-blog-single {
  transition: 0.4s ease;
}
.blog-area .home-blog-single .blog-img-cap .blog-img {
  overflow: hidden;
  position: relative;
  height: 190px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.blog-area .home-blog-single .blog-img-cap .blog-img img {
  width: 100%;
  max-width: 100%;
  height: 344px;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s ease-out 0s;
  border-radius: 8px 8px 0 0;
}
.blog-area .home-blog-single .blog-img-cap ul {
  background: #f3f3f3;
}
.blog-area .home-blog-single .blog-img-cap ul li {
  background: #94b843;
  display: inline-block;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #787878;
  padding: 20px 30px 20px 120px;
  margin-right: 50px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding: 20px 30px 20px 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding-top: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding-top: 20px;
    padding-left: 20px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap {
  background: #f3f3f3;
  padding: 20px 20px 20px 30px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 0 8px 8px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
  color: #191d34;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap .more-btn {
  position: relative;
  padding-left: 50px;
}
.blog-area .home-blog-single .blog-img-cap .blog-cap .more-btn::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: #000000;
}
.blog-area .home-blog-single:hover {
  box-shadow: 0px 22px 57px 0px rgba(34, 41, 72, 0.05);
}
.blog-area .home-blog-single:hover .blog-img img {
  transform: scale(1.1);
}

.brands-area {
  background: #4e963e;
  padding: 40px 0 !important;
}
.brands-area .title {
  font-size: 2rem !important;
  line-height: 2.2rem !important;
  color: #000;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .brands-area .title {
    font-size: 1.8rem !important;
    line-height: 2rem !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .brands-area .title {
    font-size: 1.8rem !important;
    line-height: 2rem !important;
    margin-bottom: 20px;
  }
}
.brands-area .desc {
  margin-top: 15px;
  font-size: 1rem;
  color: #fff;
}
.brands-area .item-brand {
  width: 100%;
  height: 150px;
  border-radius: 5px;
  padding: 10px;
  background: #fff;
}
.brands-area .item-brand img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

button.btn-main {
  border: none;
}

.btn-main {
  background: #1b5e1f;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 13px 20px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  border-radius: 5px;
  -moz-user-select: none;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.4s linear;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-main::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #4e963e;
  border-radius: 5px;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.btn-main:hover {
  color: #fff;
}
.btn-main:hover:after {
  left: 0;
  width: 100%;
}
.btn-main:active {
  top: 2px;
}

.btn-one {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  border: 0;
  text-transform: capitalize;
  z-index: 1;
  width: fit-content;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  border-radius: 2px;
  text-transform: uppercase;
  background: #4e963e;
  color: #fff;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn-one {
    font-size: 14px;
    padding: 18px 45px;
  }
}
.btn-one.radius {
  border-radius: 999px;
}
.btn-one i {
  font-size: 20px;
  margin-right: 10px;
}
.btn-one::before, .btn-one::after {
  background-color: #1b5e1f;
}
.btn-one::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 0;
  content: "";
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  z-index: -1;
}
.btn-one:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 51%;
  height: 0;
  content: "";
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  z-index: -1;
}
.btn-one:hover {
  transform: scale(1.02);
}
.btn-one:hover::before, .btn-one:hover::after {
  height: 100%;
}
.btn-one.color2 {
  background: #4e963e !important;
  color: #162a11 !important;
}
.btn-one.color2:hover {
  color: #fff !important;
}
.btn-one.color2::before, .btn-one.color2::after {
  background-color: #162a11 !important;
}
.btn-one.color3 {
  background: #94b843 !important;
  color: #fff !important;
}
.btn-one.color3::before, .btn-one.color3::after {
  background-color: #1b5e1f !important;
}
.btn-one.color4 {
  background: #162a11 !important;
  color: #fff !important;
}
.btn-one.color4::before, .btn-one.color4::after {
  background-color: #4e963e !important;
}

/* From Uiverse.io by behroz_7659 */
.btn-two {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: center;
  width: fit-content;
  min-width: 180px;
  gap: 15px;
  padding: 12px 18px;
  padding-right: 16px;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: #4e963e;
  color: #fff;
}
.btn-two span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
}
.btn-two i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 8px;
  border-radius: 5px;
  width: 34px;
  height: 34px;
  color: #000;
  z-index: 1;
  transition: all 0.3s ease;
}
.btn-two i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 5px;
  z-index: -2;
  transition: all 0.3s ease;
}
.btn-two:hover {
  transform: scale(1.05);
  background: #1b5e1f;
}
.btn-two:hover span {
  color: #fff;
}
.btn-two:hover i::after {
  transform: rotate(45deg) scale(0.9);
}
.btn-two.color2 {
  background: #94b843;
  color: #fff;
}
.btn-two.color2 span {
  color: #fff;
}
.btn-two.color2:hover {
  background: #1b5e1f;
  color: #fff;
}
.btn-two.color2:hover i {
  color: #000;
}
.btn-two.color2:hover i::after {
  background: #fff;
}
.btn-two.color3 {
  background: #1b5e1f;
  color: #fff;
}
.btn-two.color3 span {
  color: #fff;
}
.btn-two.color3:hover {
  background: #94b843;
  color: #fff;
}
.btn-two.color3:hover i {
  color: #1b5e1f;
}
.btn-two.color3:hover i::after {
  background: #fff;
}
.btn-two.outline {
  background: transparent;
  border: 2px solid #4e963e;
  color: #fff;
}
.btn-two.outline span {
  color: #1b5e1f;
}
.btn-two.outline i {
  color: #fff;
}
.btn-two.outline i::after {
  background: #4e963e;
}
.btn-two.outline:hover {
  background: #1b5e1f;
  color: #fff;
}
.btn-two.outline:hover span {
  color: #fff;
}
.btn-two.outline:hover i {
  color: #1b5e1f;
}
.btn-two.outline:hover i::after {
  background: #fff;
}
.btn-two.outline2 {
  background: transparent;
  border: 2px solid #fff;
  color: #4e963e;
}
.btn-two.outline2 span {
  color: #fff;
}
.btn-two.outline2 i {
  color: #4e963e;
}
.btn-two.outline2 i::after {
  background: #fff;
}
.btn-two.outline2:hover {
  background: #fff;
  color: #4e963e;
}
.btn-two.outline2:hover span {
  color: #4e963e;
}
.btn-two.outline2:hover i {
  color: #fff;
}
.btn-two.outline2:hover i::after {
  background: #4e963e;
}

.card-two {
  overflow: hidden;
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}
.card-two.has-desc .card-prod-content {
  min-height: 200px;
}
.card-two.has-desc .card-prod-content h2,
.card-two.has-desc .card-prod-content h3 {
  margin-bottom: 10px;
  min-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-two.has-desc .card-prod-content h2,
  .card-two.has-desc .card-prod-content h3 {
    min-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-two.has-desc .card-prod-content h2,
  .card-two.has-desc .card-prod-content h3 {
    min-height: 45px;
  }
}
.card-two:hover {
  transform: translateY(-5px);
}
.card-two:hover .card-prod-content {
  background-image: linear-gradient(60deg, #4e963e 0%, #4e963e 99%);
}
.card-two:hover .card-prod-content::before {
  background-color: #94b843;
  height: 70%;
}
.card-two:hover .cart-img img {
  transform: scale(1.02);
}
.card-two:hover .btn-a {
  background-color: #fff;
}
.card-two:hover .btn-a i {
  color: #1b5e1f;
}
.card-two .cart-img {
  overflow: hidden;
  width: 100%;
  height: 290px;
  background-color: #f6f6f6;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-two .cart-img {
    height: 220px;
  }
}
@media (max-width: 575px) {
  .card-two .cart-img {
    height: 250px;
  }
}
@media (max-width: 320px) {
  .card-two .cart-img {
    height: 250px;
  }
}
.card-two .cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
  background-color: #fff;
}
.card-two .cart-img img.obj-contain {
  object-fit: contain;
}
.card-two .card-prod-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(90deg, #1b5e1f 0%, #1b5e1f 99%);
  position: relative;
  padding: 30px 25px 30px;
  transition: 0.5s ease;
  min-height: 140px;
}
.card-two .card-prod-content::before {
  position: absolute;
  height: 60%;
  width: 6px;
  background: #1b5e1f;
  content: "";
  left: 0;
  transition: 0.3s;
}
.card-two .card-prod-content h2,
.card-two .card-prod-content h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 700;
  margin-right: 10px;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s ease;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-two .card-prod-content h2,
  .card-two .card-prod-content h3 {
    font-size: 16px;
    margin-right: 10px;
  }
}
@media (max-width: 575px) {
  .card-two .card-prod-content h2,
  .card-two .card-prod-content h3 {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .card-two .card-prod-content h2,
  .card-two .card-prod-content h3 {
    font-size: 16px;
  }
}
.card-two .card-prod-content p {
  font-size: 14px;
  color: #fff;
  width: 95%;
  overflow: hidden;
  text-align: left;
  hyphens: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card-two .card-prod-content .btn-a {
  height: 50px;
  width: 50px;
  border: 2px solid #fff;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 50%;
  text-align: center;
}
@media (max-width: 575px) {
  .card-two .card-prod-content .btn-a {
    height: 45px;
    width: 45px;
  }
}

.testimonial-block-one {
  margin: 15px 10px;
}
.testimonial-block-one .inner-box {
  position: relative;
  display: block;
}
.testimonial-block-one .inner-box .text-box {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 20px;
  padding: 40px 40px 33px 40px;
  margin-bottom: 40px;
}
.testimonial-block-one .inner-box .text-box::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 24px;
  height: 16px;
  left: 68px;
  bottom: -15px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
}
.testimonial-block-one .inner-box .rating {
  margin-bottom: 10px;
}
.testimonial-block-one .inner-box .rating i {
  position: relative;
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 5px;
  font-size: 16px;
  color: #FF8A00;
}
.testimonial-block-one .inner-box .author-box {
  position: relative;
  display: block;
  padding: 14px 0px 14px 100px;
}
.testimonial-block-one .inner-box .author-box .author-thumb {
  position: absolute;
  background: #fff;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  z-index: 1;
}
.testimonial-block-one .inner-box .author-box .author-thumb::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -3px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #1b5e1f;
  z-index: -1;
}
.testimonial-block-one .inner-box .author-box .author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-block-one .inner-box .author-box p {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.testimonial-block-one .inner-box .author-box .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.card-04 {
  position: relative;
  z-index: 1;
  background: linear-gradient(30deg, #fff, #f5f5f5);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 12px;
  border-radius: 2px;
  border: 1px solid #ddd;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  margin: 15px 0;
}
.card-04 .tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4e963e;
  padding: 2px 18px;
  border-radius: 60px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.card-04 .image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-top-right-radius: 15px;
  background: #fff;
}
.card-04 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.card-04 .image img.obj-contain {
  object-fit: contain;
}
.card-04 .box-content {
  border-top: 1px solid #94b843;
  padding: 0px 15px 15px;
}
.card-04 .box-content .box-title {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin-bottom: 20px;
}
.card-04 .box-content .box-title .icon {
  max-width: 68px;
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 184, 67, 0.2);
  border-radius: 0px 0px 8px 8px;
  font-size: 40px;
  transition: all 0.4s ease-in-out;
}
.card-04 .box-content .box-title .icon i {
  color: #94b843;
}
.card-04 .box-content .box-title .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.card-04 .box-content .box-title .title,
.card-04 .box-content .box-title h2,
.card-04 .box-content .box-title h3 {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-transform: capitalize;
  padding-top: 10px;
  min-height: 85px;
  margin: 0;
  color: #1b5e1f;
}
.card-04 .box-content .desc,
.card-04 .box-content p {
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
  color: #5E5B5B;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 162.5%;
}
.card-04 .box-content .box-btns {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(213, 213, 213, 0.5);
  margin-top: 18px;
  padding: 10px 0;
}
.card-04 .box-content .box-btns .btn-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #4e963e;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 156.25%;
  text-transform: capitalize;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.card-04 .box-content .box-btns .btn-link i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #94b843;
  color: #fff;
  font-size: 20px;
  transform: rotate(-30deg);
  transition: all 0.4s ease-in-out;
}
.card-04:hover {
  background: rgba(27, 94, 31, 0.1);
}
.card-04:hover .box-content .box-title .icon {
  background: #94b843;
}
.card-04:hover .box-content .box-title .icon i {
  color: #000;
}
.card-04:hover .box-content .box-title .icon img {
  filter: brightness(0) invert(1);
}
.card-04:hover .box-content .box-title .title,
.card-04:hover .box-content .box-title h2,
.card-04:hover .box-content .box-title h3 {
  color: #1b5e1f;
}
.card-04:hover .box-content .desc,
.card-04:hover .box-content p {
  color: #162a11;
}
.card-04:hover .box-content .box-btns .btn-link {
  color: #1b5e1f;
}
.card-04:hover .box-content .box-btns .btn-link i {
  color: #fff;
  transform: rotate(0deg);
}

.cta-area {
  background-image: url(../img/banners/cta-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1000px rgba(21, 22, 22, 0.35);
  padding: 100px 0;
}
.cta-area .cta-caption h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-caption h2 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-caption h2 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-area .cta-caption h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.cta-area .cta-caption p {
  color: #fff;
  font-size: 18px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-area .cta-caption p {
    text-align: center;
  }
}
.cta-area .btn-main {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #94b843;
}
.cta-area .btn-main::after {
  background: #4e963e;
  border-radius: 50%;
}
.cta-area .btn-main i {
  font-size: 2.6rem;
}

@media (min-width: 992px) {
  .menu-sidebar {
    display: flex;
    justify-content: end;
  }
}

.accordion {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .accordion {
    width: 95%;
  }
}
.accordion .accordion-item {
  border: none;
}
.accordion .accordion-item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #4e963e;
}
.accordion .accordion-item button[aria-expanded=true] .icon {
  color: #4e963e;
}
@media (max-width: 991px) {
  .accordion {
    padding: 0 20px;
  }
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #161616;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  transition: 0.4s ease;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #4e963e;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #4e963e;
  border: 1px solid #4e963e;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  font-weight: 600;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  color: #94b843;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #1b5e1f;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 100%;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
@media (max-width: 991px) {
  .accordion button[aria-expanded=true] + .accordion-content {
    overflow-y: scroll;
  }
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p,
.accordion .accordion-content li {
  font-size: 0.9rem;
  font-weight: 300;
  margin: 2em 0;
}
.accordion .accordion-content p a:hover,
.accordion .accordion-content li a:hover {
  color: #4e963e;
  padding-left: 5px;
}
@media (max-width: 991px) {
  .accordion .accordion-content p {
    font-weight: 600;
    color: #94b843;
    padding-bottom: 5px;
    border-bottom: 1px solid #e5e5e5;
  }
}

.home-form {
  border-top: 3px solid color-mix(in srgb, #1b5e1f, #fff 65%);
  padding: 65px 0;
}
.home-form form,
.home-form input,
.home-form label,
.home-form p,
.home-form textarea {
  color: #000 !important;
}
.home-form .contact-card .fa-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #94b843;
  padding: 10px;
  width: 55px;
  height: 55px;
  text-align: center;
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}
.home-form .contact-card .fa-contact i {
  font-size: 25px;
  color: #fff;
}
.home-form .contact-card .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-form .contact-card .content p {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 5px 0;
}
.home-form .contact-card .content p a {
  color: #000;
}
.home-form .contact-card .content p a:hover {
  color: #4e963e;
}

.form-contact label {
  font-size: 14px;
}
.form-contact .form-group {
  margin-bottom: 15px;
}
.form-contact .form-contact__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.form-contact .form-contact__cta .btn-main,
.form-contact .form-contact__cta .whats-form {
  text-align: center;
}
.form-contact .form-contact__cta .whats-form {
  margin-left: 0;
}
.form-contact .form-contact__cta--prod {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.form-contact .form-contact__cta--prod .btn-main,
.form-contact .form-contact__cta--prod .whats-form {
  width: 100%;
  max-width: none;
  margin-left: 0;
}
.form-contact .form-control {
  border: 1px solid #e5e6e9;
  border-radius: 0px;
  height: 48px;
  padding-left: 18px;
  font-size: 13px;
  background: transparent;
  width: 100%;
}
.form-contact .form-control:focus {
  outline: 0;
  box-shadow: none;
}
.form-contact .form-control::placeholder {
  font-weight: 300;
  color: #999999;
}
.form-contact textarea {
  border-radius: 0px;
  height: 100% !important;
  padding-top: 20px;
}
.form-contact button {
  border: none;
}

#form-prod-int {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
}

.h3-form {
  font-size: 20px;
  color: #94b843;
}
.h3-form i {
  color: #4e963e;
  font-size: 18px;
  position: relative;
  top: 5px;
}

.whats-form {
  background: #22ba59;
  margin-left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.form-contact__cta .whats-form {
  margin-left: 0;
}
.whats-form::after {
  background-color: #01a43d;
}

@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*=============*/
.whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 75px;
  right: 15px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  animation: sweep 1.5s ease-in-out;
  display: flex;
  justify-content: center;
}

.whatsapp-icon {
  margin-top: 13px;
}

.contact-section {
  padding: 65px 0 0;
}
.contact-section .info-container {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  position: relative;
  padding: 20px;
  border-radius: 8px;
}
.contact-section .info-container .contact-info {
  display: flex;
}
.contact-section .info-container .contact-info:not(:last-child) {
  margin-bottom: 35px;
}
.contact-section .info-container .contact-info h3 {
  font-size: 1.1em;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}
.contact-section .info-container .contact-info h3 a:hover {
  color: #4e963e;
}
.contact-section .info-container .contact-info p {
  color: #383838;
  margin-bottom: 0;
}
.contact-section .info-container .contact-info .icon {
  color: #1b5e1f;
  margin-right: 10px;
  font-size: 1.6em;
  min-width: 35px;
}
.contact-section .info-container::after {
  content: "";
  position: absolute;
  display: block;
  height: 115%;
  width: 85%;
  border-radius: 0%;
  left: -30px;
  top: -20px;
  z-index: -2;
  border-radius: 8px;
  opacity: 0.8;
  border: 3px solid color-mix(in srgb, #94b843, #fff 40%);
  background: #94b843;
}
.contact-section .btn-contact {
  display: flex;
}
@media (max-width: 576px) {
  .contact-section .btn-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .contact-section .btn-contact .btn-main {
    margin-left: 0;
    width: 80%;
  }
}

.slider-area.slider-area--hero-overlap {
  overflow: visible;
}
@media (min-width: 992px) {
  .slider-area.slider-area--hero-overlap {
    margin-bottom: clamp(6.25rem, 6.25vw + 7vh, 11rem);
  }
}
@media (max-width: 991px) {
  .slider-area.slider-area--hero-overlap {
    margin-bottom: 0;
  }
  .slider-area.slider-area--hero-overlap .slider-height {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: auto;
    height: auto;
    padding: 1.5rem 0 1.25rem;
  }
  .slider-area.slider-area--hero-overlap .hero-cap--overlap {
    transform: none;
    padding-bottom: 0;
    width: 100%;
    text-align: center;
  }
  .slider-area.slider-area--hero-overlap .hero-cap--overlap h1,
  .slider-area.slider-area--hero-overlap .hero-cap--overlap .color-w,
  .slider-area.slider-area--hero-overlap .hero-cap--overlap .color-w a {
    text-align: center;
  }
  .slider-area.slider-area--hero-overlap .hero-cap--overlap .divider {
    margin-left: auto;
    margin-right: auto;
  }
  .slider-area.slider-area--hero-overlap .hero-cap--overlap .color-w {
    justify-content: center;
  }
  .slider-area.slider-area--hero-overlap .hero-overlap-form-desktop {
    display: none !important;
  }
}
.slider-area.slider-area--hero-overlap .slider-height > .container.position-relative {
  z-index: 25;
  isolation: isolate;
  flex: 0 0 auto;
  width: 100%;
}
.slider-area.slider-area--hero-overlap .slider-height {
  height: auto;
}
@media (min-width: 992px) {
  .slider-area.slider-area--hero-overlap .slider-height {
    flex-direction: column;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: clamp(420px, 48vh, 620px);
    padding-top: clamp(1.25rem, 3vh, 2rem);
    padding-bottom: 1rem;
  }
}
.slider-area.slider-area--hero-overlap .hero-cap--overlap {
  padding-top: 0;
  padding-bottom: 0.5rem;
  transform: none;
  text-align: center;
  width: 100%;
}
.slider-area.slider-area--hero-overlap .hero-cap--overlap h1,
.slider-area.slider-area--hero-overlap .hero-cap--overlap .color-w,
.slider-area.slider-area--hero-overlap .hero-cap--overlap .color-w a {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65), 0 0 2px rgba(0, 0, 0, 0.8);
  text-align: center;
}
.slider-area.slider-area--hero-overlap .hero-cap--overlap h1 {
  margin-left: auto;
  margin-right: auto;
}
.slider-area.slider-area--hero-overlap .hero-cap--overlap .divider {
  margin-left: auto;
  margin-right: auto;
}
.slider-area.slider-area--hero-overlap .hero-cap--overlap .color-w {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 0.35rem;
}
@media (min-width: 992px) {
  .slider-area.slider-area--hero-overlap .hero-cap--overlap {
    margin-top: 0;
    padding-bottom: 0.25rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area.slider-area--hero-overlap .hero-cap--overlap h1 {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .slider-area.slider-area--hero-overlap .hero-overlap-form-desktop {
    width: 100%;
    margin-top: auto;
  }
}

.contact-overlap-anchor--standalone {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  z-index: 1;
  pointer-events: auto;
  margin-top: 0;
}

.pecas-mobile-form-section {
  background: linear-gradient(180deg, #fafcfb 0%, #f1f4f2 100%);
  border-top: 1px solid #e4e8e6;
}
.pecas-mobile-form-section .contact-overlap-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.contact-overlap-anchor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(calc(45% + 0.85rem));
  z-index: 4;
  pointer-events: none;
}
.contact-overlap-anchor .container {
  pointer-events: auto;
}
@media (max-width: 991px) {
  .contact-overlap-anchor {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    z-index: 6;
    width: 100%;
    max-width: 100%;
    margin-top: 0.5rem;
    pointer-events: auto;
  }
}

.contact-overlap-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 100%;
}
.contact-overlap-card__info {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-overlap-card__info {
    padding: 1.75rem 1.5rem;
  }
}
.contact-overlap-card__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.contact-overlap-card__subtitle {
  font-size: 1rem;
  color: #555;
  margin: 0 0 1.25rem;
}
.contact-overlap-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: #333;
}
.contact-overlap-card__item a {
  color: #1a1a1a;
  text-decoration: none;
}
.contact-overlap-card__item a:hover {
  color: #4e963e;
}
.contact-overlap-card__item--address {
  align-items: flex-start;
}
.contact-overlap-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, #1b5e1f 12%, #fff);
  color: #1b5e1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.contact-overlap-card__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 1.25rem;
}
.contact-overlap-card__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1b5e1f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.contact-overlap-card__social a:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  color: #fff;
}
.contact-overlap-card__social-wa {
  background: #25d366 !important;
}
.contact-overlap-card__social-wa:hover {
  color: #fff !important;
}
.contact-overlap-card__form {
  background: #fff;
}
.contact-overlap-card__form-panel {
  background: #f4f5f7;
  height: 100%;
  padding: 2rem 2rem 1.75rem;
  border-left: 1px solid #e8e8e8;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-overlap-card__form-panel {
    border-left: none;
    border-top: 1px solid #e8e8e8;
    border-radius: 0 0 16px 16px;
    padding: 1.75rem 1.5rem 1.5rem;
  }
}

.form-contact--overlap .form-control,
.form-contact--overlap select.form-control {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  min-height: 46px;
  font-size: 0.95rem;
}
.form-contact--overlap textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-overlap-form__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
}

.contact-overlap-form__submit {
  width: 100%;
  margin-left: 0 !important;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  border-radius: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.contact-overlap-form__whatsapp {
  width: 100%;
  margin-left: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent !important;
  color: #4e963e !important;
  border: 2px solid #4e963e !important;
  border-radius: 8px;
}
.contact-overlap-form__whatsapp span {
  color: inherit;
  text-align: center;
}
.contact-overlap-form__whatsapp:hover {
  background: #4e963e !important;
  color: #fff !important;
}

.section-padding.section-after-hero-overlap {
  padding-top: clamp(2.75rem, 6vw, 5rem);
  margin-top: 0;
  padding-bottom: 55px;
}

/* Bloco de texto SEO: dentro da mesma section do catálogo, sempre abaixo dos cards */
.pecas-after-form-section {
  width: 100%;
  clear: both;
  padding-top: clamp(0.65rem, 1.5vw + 0.5vh, 1.15rem);
  margin-top: 0;
  padding-bottom: 28px;
  border-top: 1px solid transparent;
}

.section-padding.pt-0.section-after-hero-overlap-cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 0;
  margin-top: 0;
  /* Sobrescreve o padding-bottom 65px do .section-padding — evita vão enorme antes da intro */
  padding-bottom: clamp(1rem, 2.5vw, 1.75rem);
}
@media (min-width: 992px) {
  .section-padding.pt-0.section-after-hero-overlap-cards > .container {
    margin-top: clamp(3.5rem, 8vw + 7vh, 7.5rem);
  }
}
@media (max-width: 991px) {
  .section-padding.pt-0.section-after-hero-overlap-cards > .container {
    margin-top: 0;
  }
}

.pecas-page-intro-wrap {
  margin-top: 0;
}

.pecas-page-intro {
  padding: 0 0.25rem;
}
@media (min-width: 992px) {
  .pecas-page-intro {
    padding: 0 0.5rem;
  }
}
.pecas-page-intro h2 {
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.65rem;
}
.pecas-page-intro h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  margin: 1.1rem 0 0.45rem;
}
.pecas-page-intro p,
.pecas-page-intro li {
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
  margin: 0 0 0.65rem;
}
.pecas-page-intro ul {
  margin: 0.35rem 0 0.75rem;
  padding-left: 1.25rem;
}
.pecas-page-intro .faq-list .faq-answer p {
  margin-bottom: 0.5rem;
}

.category-cards.section-after-hero-overlap-cards .ecommerce-list-header {
  max-width: 100%;
}

.banner-full {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  margin-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full {
    margin-top: 100px;
  }
}
@media (max-width: 575px) {
  .banner-full {
    margin-top: 100px;
  }
}
.banner-full .swiper-slide.swiper-slide-active .fadeUp {
  opacity: 0;
  animation: fadeup 1.2s cubic-bezier(0.25, 0.26, 0.25, 0.94) 0.9s 1 normal forwards;
}
.banner-full .swiper-slide.swiper-slide-active .text1 {
  opacity: 0;
  animation: fadeup 1.3s cubic-bezier(0.25, 0.26, 0.25, 0.94) 0.9s 1 normal forwards;
}
.banner-full .swiper-slide.swiper-slide-active .flipIn {
  opacity: 0;
  animation: flipIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}
.banner-full .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 50px;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .controls {
    bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .controls {
    width: 80%;
    bottom: 10px;
  }
}
.banner-full .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
  top: 50% !important;
  transform: translateY(-50%);
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom {
  display: block;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  cursor: pointer;
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(10, 120, 8, 0.4);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom:not(:last-child) {
  margin-right: 5px;
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom svg {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom--active svg {
  display: block;
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom--active svg circle {
  stroke-dasharray: 56.5563;
  stroke-dashoffset: 56.5563;
  animation: BulletProgress calc(var(--delay) * 1ms) linear forwards;
  stroke: #2f4300;
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom--active::before {
  background-color: #2f4300;
}
@keyframes BulletProgress {
  to {
    stroke-dashoffset: 0;
  }
}
.banner-full .swiper-pagination .swiper--pause .swiper-pagination-bullet-custom--active svg circle {
  animation: none;
}
.banner-full .swiper-buttons {
  color: #94b843;
  height: 50px;
  width: 50px;
  transition: 0.3s ease;
  display: flex;
  border-radius: 50%;
  margin-top: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .swiper-buttons {
    display: flex;
    height: 40px;
    width: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .swiper-buttons {
    display: flex;
    height: 45px;
    width: 45px;
  }
}
@media (max-width: 575px) {
  .banner-full .swiper-buttons {
    display: flex;
    height: 45px;
    width: 45px;
  }
}
.banner-full .swiper-buttons.swiper-button-prev, .banner-full .swiper-buttons.swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
}
.banner-full .swiper-buttons.swiper-button-prev {
  left: 15px;
}
.banner-full .swiper-buttons.swiper-button-next {
  right: 15px;
}
.banner-full .swiper-buttons i {
  font-size: 1.5rem;
  color: #1b5e1f;
  transition: 0.3s ease;
}
.banner-full .swiper-buttons svg {
  width: 50px;
  height: 50px;
}
.banner-full .swiper-buttons svg path {
  stroke: #2f4300;
}
.banner-full .swiper-buttons::before, .banner-full .swiper-buttons::after {
  content: "";
  color: #4e963e;
  font-size: 25px;
  font-weight: 600;
  display: none;
}
.banner-full .swiper-buttons:hover {
  transform: scale(1.1) translateY(-50%);
}
.banner-full .swiper-buttons:hover i {
  transform: scale(1.05);
}
.banner-full .swiper-buttons:hover::before, .banner-full .swiper-buttons:hover::after {
  color: #4e963e;
}
.banner-full .banner-main {
  position: relative !important;
  width: 100%;
  height: 4520px;
  overflow: hidden;
}
@media (min-width: 1441px) {
  .banner-full .banner-main {
    height: 520px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .banner-full .banner-main {
    height: 420px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main {
    height: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main {
    height: 940px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main {
    height: 720px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main {
    height: 540px;
  }
}
.banner-full .banner-main .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 5px;
}
.banner-full .banner-main .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}
.banner-full .banner-main .content-area {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}
.banner-full .banner-main .content-area .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner-full .banner-main .content-area .bg .image-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.5);
  animation: loopScale 8s ease-in 0s infinite alternate forwards;
}
.banner-full .banner-main .content-area .bg .shape {
  position: absolute;
  width: 100%;
  height: 90%;
  left: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.banner-full .banner-main .content-area .bg .shape img {
  width: 115%;
  height: 100%;
  object-position: left bottom;
  margin-left: -30px;
  opacity: 1;
}
.banner-full .banner-main .content-area .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 100%;
    padding: 0px 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 100%;
    padding: 10px 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 99%;
    padding: 5px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 100%;
    padding: 5px;
  }
}
.banner-full .banner-main .content-area .content .text {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: left;
  margin: 5px 0;
  width: 40vw;
  margin-left: 12vw;
}
.banner-full .banner-main .content-area .content .text.margin-none {
  margin-left: 0 !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text {
    width: 50vw;
    margin-left: 8vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text {
    width: 90vw;
    top: -240px;
    margin-left: 3vw;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text {
    width: 80vw;
    top: -175px;
    margin-left: 8vw;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text {
    width: 98vw;
    top: -105px;
    margin-left: 2vw;
  }
}
.banner-full .banner-main .content-area .content .text h1,
.banner-full .banner-main .content-area .content .text h2,
.banner-full .banner-main .content-area .content .text span {
  display: flow;
  flex-wrap: wrap;
  justify-content: start;
  color: #4e963e;
  font-size: 2.8rem;
  line-height: 3rem;
  text-shadow: 2px 2px 50px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 2.4rem;
    line-height: 2.5rem;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 1.8rem;
    line-height: 2rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin-bottom: 10px;
  }
}
.banner-full .banner-main .content-area .content .text h1 b,
.banner-full .banner-main .content-area .content .text h2 b,
.banner-full .banner-main .content-area .content .text span b {
  font-weight: 700;
  color: #162a11;
}
.banner-full .banner-main .content-area .content .text p {
  font-size: 1.2rem;
  font-weight: 1.2rem;
  font-weight: 300;
  color: #000;
  margin: 15px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 0.8rem;
    line-height: 1.1rem;
    margin-top: 5px;
  }
}
.banner-full .banner-main .content-area .content .text .text2 {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text .text2 {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text .text2 {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text .text2 {
    font-size: 0.9rem;
    line-height: 1.1rem;
    margin-bottom: 10px;
  }
}
.banner-full .banner-main .content-area .content .text .btn-one,
.banner-full .banner-main .content-area .content .text .btn-two {
  width: fit-content;
  min-width: auto;
  padding: 6px 8px;
  padding-left: 18px;
}
.banner-full .banner-main .content-area .content .text .btn-one span,
.banner-full .banner-main .content-area .content .text .btn-two span {
  font-size: 0.8rem;
  line-height: normal;
  margin: 0;
  color: #fff;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text .btn-one,
  .banner-full .banner-main .content-area .content .text .btn-two {
    padding: 5px 10px;
    font-size: 14px;
    margin-top: 5px;
  }
  .banner-full .banner-main .content-area .content .text .btn-one span,
  .banner-full .banner-main .content-area .content .text .btn-two span {
    font-size: 0.8rem;
    line-height: 1rem;
  }
  .banner-full .banner-main .content-area .content .text .btn-one i,
  .banner-full .banner-main .content-area .content .text .btn-two i {
    width: 18px;
    height: 18px;
  }
}
.banner-full .banner-main .content-area .content .text .btn-one i,
.banner-full .banner-main .content-area .content .text .btn-two i {
  width: 30px;
  height: 30px;
}
.banner-full .banner-main .content-area .content .image-banner {
  width: 100%;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid rgba(249, 249, 249, 0.6);
  box-shadow: 8px 8px 45px -5px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 100%;
    height: 360px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 100%;
    height: 330px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 95%;
    height: 260px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .image-banner {
    margin: 30px 10px;
    width: 90%;
    height: 240px;
  }
}
.banner-full .banner-main .content-area .content .image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
}
.banner-full .banner-main .content-area .content .image-banner img.obj-contain {
  object-fit: contain;
}
.banner-full .banner-thumb {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-thumb {
    display: none;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-thumb {
    display: none;
  }
}
.banner-full .banner-thumb .swiper-wrapper {
  display: flex;
  justify-content: center;
}
.banner-full .banner-thumb .img-thumb {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition: 0.5s ease;
  box-shadow: 0 3px 20px -5px rgba(0, 0, 0, 0.6);
  opacity: 0.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
.banner-full .banner-thumb .img-thumb.swiper-slide-thumb-active {
  transform: scale(1.4);
  opacity: 1;
  border: 2px solid #1b5e1f;
  box-shadow: 0 3px 25px -5px rgba(0, 0, 0, 0.6);
}
.banner-full .banner-thumb .img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-about {
  overflow: hidden;
  position: relative;
  background: #fff;
}
.section-about.bg-dark1 .text-content .desc p, .section-about.bg-dark2 .text-content .desc p {
  color: #fff !important;
}
.section-about.bg-dark1 .about-thumbnail .thumbnail::before, .section-about.bg-dark2 .about-thumbnail .thumbnail::before {
  border: 2px solid #162a11;
}
.section-about.bg-dark1 .about-thumbnail .thumbnail::after, .section-about.bg-dark2 .about-thumbnail .thumbnail::after {
  background: #162a11;
}
.section-about .about-content {
  padding: 0 10px;
}
.section-about .about-content p {
  text-align: justify;
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  color: #000;
  margin: 5px 0;
}
.section-about .about-content .text-content .desc {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-about .about-content .text-content .desc {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-about .about-content .text-content .desc {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .section-about .about-content .text-content .desc {
    width: 100%;
  }
}
.section-about .about-content .text-content .desc p {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #000;
  margin: 8px 0;
}
.section-about .about-content .text-content .desc p b {
  color: #4e963e;
  font-weight: 600;
}
.section-about .about-content .text-content .box-text-destaque p {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  text-align: left;
  color: #000;
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .about-content .text-content .box-text-destaque p {
    font-size: 22px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .about-content .text-content .box-text-destaque p {
    font-size: 20px;
    line-height: 24px;
  }
}
.section-about .about-content .text-content .box-text-destaque p b {
  color: #162a11;
  font-weight: 600;
}
.section-about .about-content .text-content .box-text-destaque.white p {
  color: #fff !important;
}
.section-about .about-img {
  padding-left: 20px;
  top: 0px;
  position: relative;
  width: 100%;
  float: right;
  height: fit-content;
  transform: perspective(1000px) rotateY(0deg);
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .about-img {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .about-img {
    padding-left: 0;
  }
}
.section-about .about-img .box-image1,
.section-about .about-img .box-image2 {
  width: 100%;
  height: 550px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .about-img .box-image1,
  .section-about .about-img .box-image2 {
    height: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-about .about-img .box-image1,
  .section-about .about-img .box-image2 {
    height: 500px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .about-img .box-image1,
  .section-about .about-img .box-image2 {
    height: auto;
  }
}
.section-about .about-img .box-image2 {
  height: 285px;
  margin-bottom: 10px;
}
.section-about .about-img .box-image2:nth-child(2) {
  margin-bottom: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .about-img .box-image2 {
    height: 290px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .about-img .box-image2 {
    display: none;
  }
}
.section-about .about-img .box-image1 {
  margin-top: 0px;
}
.section-about .about-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.section-category {
  position: relative;
  padding: 40px 0;
  background: #1b5e1f;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-category .title-area2 h2,
  .section-category .title-area2 h3,
  .section-category .title-area2 .title {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-category .title-area2 h2,
  .section-category .title-area2 h3,
  .section-category .title-area2 .title {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}
.section-category.bg-image {
  z-index: 1;
}
.section-category.bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/elements/bg-section-cat.webp");
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
}
@media (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px) {
  .section-category .ajust-padding {
    padding-left: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-category .ajust-padding {
    padding-left: 40px;
  }
}
.section-category .card-promo {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0px 20px;
  min-height: 350px;
  overflow: hidden;
  background-image: url(../img/gallery/bg-academia.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border-radius: 10px 10px 10px 10px;
  z-index: 1;
}
.section-category .card-promo .title-card .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
  border-radius: 60px;
  border: 1px solid #fff;
  padding: 2px 18px;
  color: #fff;
}
.section-category .card-promo .title-card h2,
.section-category .card-promo .title-card h3 {
  font-size: 2.2rem;
  line-height: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #fff;
}
.section-category .card-promo .title-card p {
  font-size: 0.9rem;
  line-height: 1.2rem;
  font-weight: 400;
  margin: 0;
  color: #fff;
}
.section-category .card-promo .title-card a,
.section-category .card-promo .title-card .btn-one {
  padding: 8px 20px;
  min-width: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  background: #1b5e1f;
}
.section-category .card-promo.color2::after {
  background: #1b5e1f;
  opacity: 0.9;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-category .card-promo {
    display: flex;
    flex-direction: column;
    padding: 0 0;
    padding-bottom: 0;
  }
}
.section-category .card-promo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-30deg, #1b5e1f 0%, #94b843 90%);
  opacity: 0.9;
  z-index: -1;
}
.section-category .card-promo .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 55%;
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-category .card-promo .content {
    width: 45%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-category .card-promo .content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px;
    right: 0;
  }
}
.section-category .card-promo .box-image {
  display: flex;
  align-items: end;
  position: absolute;
  overflow: hidden;
  right: 0px;
  bottom: 0px;
  width: 45%;
  height: 100%;
  transition: 0.3s ease;
}
@media (min-width: 1441px) {
  .section-category .card-promo .box-image {
    width: 50%;
    height: 100%;
    right: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-category .card-promo .box-image {
    width: 50%;
    height: 98%;
    right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-category .card-promo .box-image {
    width: 45%;
    height: 110%;
    right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-category .card-promo .box-image {
    position: relative;
    width: 100%;
    height: 300px;
    right: 0;
  }
}
.section-category .card-promo .box-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(5px 12px 5px rgba(0, 0, 0, 0.3));
  transition: 0.3s ease;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-category .card-promo .box-image img {
    object-position: center;
  }
}
.section-category .card-promo:hover .box-image img {
  transform: scale(1.05);
}
.section-category .cardsPromoSwiper {
  position: relative;
  padding-bottom: 0;
  margin-bottom: 0;
  position: relative;
}
.section-category .cardsPromoSwiper .swiper-wrapper {
  margin-bottom: 5px;
  padding-bottom: 0;
}
.section-category .cardsPromoSwiper .swiper-slide {
  height: auto;
  margin-bottom: 0;
  padding-bottom: 0;
}
.section-category .cardsPromoSwiper .swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  width: 100%;
  height: 20px !important;
  z-index: 1;
  height: auto;
  transition: all 0.4s ease;
}
.section-category .cardsPromoSwiper .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 25px;
  height: 8px;
  margin: 0 5px !important;
  border-radius: 50px;
  opacity: 1;
  border: 1px solid #94b843;
  transition: all 0.4s ease;
  background-color: transparent;
}
.section-category .cardsPromoSwiper .swiper-pagination .swiper-pagination-bullet:hover {
  background: rgba(148, 184, 67, 0.6);
  transform: scale(1.2);
}
.section-category .cardsPromoSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  height: 8px;
  border-radius: 50px;
  background: #94b843;
  transform: scale(1);
  box-shadow: 0 2px 6px rgba(148, 184, 67, 0.5);
}
.section-category .cardsPromoSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
  transform: scale(1.1);
  background: #1b5e1f;
}

.box-cards-mission {
  margin-top: 90px;
}
.box-cards-mission .card-mission {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  height: 100%;
  background-color: #f1f1f1;
  border-radius: 5px;
  box-shadow: 0px 4px 25px -5px rgba(23, 37, 57, 0.2);
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .box-cards-mission .card-mission {
    height: auto;
    margin: 40px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .box-cards-mission .card-mission {
    height: auto;
    margin: 40px 0;
  }
}
@media (max-width: 575px) {
  .box-cards-mission .card-mission {
    height: auto;
    margin: 40px 0;
  }
}
.box-cards-mission .card-mission:hover {
  transform: scale(1.02);
}
.box-cards-mission .card-mission::after {
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translate(-50%, -50%);
  content: "";
  height: 115px;
  width: 115px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}
.box-cards-mission .card-mission .icon {
  height: 88px;
  width: 88px;
  border-radius: 50px;
  background: #94b843;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.2s ease-in-out;
}
.box-cards-mission .card-mission .icon i {
  font-size: 40px;
  color: #fff;
}
.box-cards-mission .card-mission .content {
  text-align: center;
  margin-top: 40px;
  padding: 45px 15px;
}
.box-cards-mission .card-mission .content .title {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 700;
  color: #1a1a1a;
}
.box-cards-mission .card-mission .content .desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  color: #1a1a1a;
}

.section-products {
  position: relative;
  overflow-x: hidden;
}
.section-products.bg-green-light {
  background: rgba(148, 184, 67, 0.2);
}
.section-products .text-content {
  margin-bottom: 15px;
}
.section-products .text-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}
@media (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-products .box-btn {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-products .box-btn .btn-one {
    width: 100%;
    padding: 18px 30px;
  }
}
.section-products .productSwiper {
  position: relative;
}
.section-products .productSwiper .box-controls {
  position: relative;
  width: fit-content;
  height: 60px;
  margin: 0 auto;
  padding: 0 80px;
  margin-top: 10px;
}
.section-products .productSwiper .swiper-scrollbar {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin-top: 5px;
  height: 5px;
  width: 70%;
  background: rgba(27, 94, 31, 0.8);
}
.section-products .productSwiper .swiper-scrollbar .swiper-scrollbar-drag {
  background: #94b843;
}
.section-products .productSwiper .swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: 50% !important;
  top: 50% !important;
  transform: translateY(-50%) translateX(-50%) !important;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  width: fit-content;
  height: 20px !important;
  z-index: 1;
  height: auto;
  transition: all 0.4s ease;
}
.section-products .productSwiper .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 25px;
  height: 8px;
  margin: 0 5px !important;
  border-radius: 50px;
  opacity: 1;
  border: 1px solid #94b843;
  transition: all 0.4s ease;
  background-color: transparent;
}
.section-products .productSwiper .swiper-pagination .swiper-pagination-bullet:hover {
  background: rgba(148, 184, 67, 0.6);
  transform: scale(1.2);
}
.section-products .productSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  height: 8px;
  border-radius: 50px;
  background: #94b843;
  transform: scale(1);
  box-shadow: 0 2px 6px rgba(148, 184, 67, 0.5);
}
.section-products .productSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
  transform: scale(1.1);
  background: #1b5e1f;
}
.section-products .productSwiper .navs {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media (min-width: 1441px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-products .productSwiper .navs {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-products .productSwiper .navs {
    width: 100%;
  }
}
.section-products .productSwiper .navs .swiper-button-next,
.section-products .productSwiper .navs .swiper-button-prev {
  position: absolute;
  width: 45px;
  height: 45px;
  top: 50%;
  bottom: auto;
  margin: 0;
  transform: translateY(-50%);
}
.section-products .productSwiper .navs .swiper-button-next::after,
.section-products .productSwiper .navs .swiper-button-prev::after {
  font-size: 20px;
  color: #94b843;
  font-weight: 600;
}

@media (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ajust-section-pt {
    padding-top: 190px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ajust-section-pt {
    padding-top: 160px !important;
  }
}

.section-mercado-livre {
  position: relative;
}
.section-mercado-livre .box-wrapper {
  position: relative;
  background: #f4f4f4;
  border-radius: 20px;
}
.section-mercado-livre .box-wrapper::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  width: 70%;
  height: 8px;
  background: #000;
  opacity: 0.8;
  filter: blur(12px);
  z-index: -1;
}
.section-mercado-livre .content .desc {
  max-width: 100%;
}
.section-mercado-livre .content .btn-two {
  min-width: fit-content;
}
.section-mercado-livre .box-image1 {
  width: 100%;
  height: 100%;
  padding-top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-mercado-livre .box-image1 {
    height: 400px;
  }
}
.section-mercado-livre .box-image1 img {
  width: 100%;
  height: 450px !important;
  object-fit: contain;
  object-position: center;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 55px;
  width: 55px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 55px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  font-size: 20px;
  color: #a81818;
  font-weight: 600;
}

.section-feedbacks {
  background-image: url(../img/banners/bg-feedbacks.png);
  background-position: top center;
  background-size: 1500px;
  background-repeat: repeat-x;
  background-color: #fff;
}
.section-feedbacks .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #4e963e;
  padding: 50px 30px;
  border-radius: 30px;
  margin-bottom: 70px;
  min-height: 450px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-feedbacks .content {
    margin-bottom: 20px;
  }
}
.section-feedbacks .content .title span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  font-size: 24px;
  font-weight: 600;
  padding: 8px 10px;
  color: #fff;
  background: rgba(27, 94, 31, 0.2);
  border-radius: 100px;
  margin-bottom: 15px;
}
.section-feedbacks .content .title span i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 20px;
  background: #4e963e;
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
  border-radius: 50%;
}
.section-feedbacks .content .title span i::before {
  margin-top: 3px;
}
.section-feedbacks .content .title h2,
.section-feedbacks .content .title h3 {
  font-size: 2.6rem;
  line-height: 2.8rem;
  margin-bottom: 15px;
  color: #fff;
}
.section-feedbacks .content .title h2 b,
.section-feedbacks .content .title h3 b {
  color: #94b843;
}
.section-feedbacks .content .text {
  margin-bottom: 40px;
}
.section-feedbacks .content .text p {
  color: #fff;
  font-size: 16px;
}
.section-feedbacks .content .btn-testi {
  width: fit-content;
  padding: 10px 25px;
  background: #fff;
  color: #4e963e;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  border-radius: 5px;
}
.section-feedbacks .content .btn-testi:hover {
  background: #1b5e1f;
  color: #fff;
}
.section-feedbacks .feedbackSwiper {
  padding: 10px;
}
.section-feedbacks .feedbackSwiper .controls {
  position: relative;
  bottom: 20px;
  width: 150px;
  margin: 0 auto;
  margin-top: 20px;
  height: 60px;
}
.section-feedbacks .feedbackSwiper .controls .swiper-button-prev,
.section-feedbacks .feedbackSwiper .controls .swiper-button-next {
  top: auto;
  bottom: 5px;
  transform: none;
}

.products-tabs-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}
.products-tabs-wrapper .products-tabs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
  padding: 0 15px;
  position: relative;
}
@media (max-width: 575px) {
  .products-tabs-wrapper .products-tabs-nav {
    gap: 10px;
    margin-bottom: 30px;
  }
}
.products-tabs-wrapper .products-tabs-nav::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(78, 150, 62, 0.3) 50%, transparent 100%);
}
@media (max-width: 575px) {
  .products-tabs-wrapper .products-tabs-nav::after {
    width: 95%;
  }
}
.products-tabs-wrapper .products-tabs-nav .tab-btn {
  position: relative;
  padding: 15px 35px;
  background: transparent;
  border: 2px solid rgba(78, 150, 62, 0.3);
  border-radius: 5px;
  color: #1b5e1f;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .products-tabs-wrapper .products-tabs-nav .tab-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .products-tabs-wrapper .products-tabs-nav .tab-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .products-tabs-wrapper .products-tabs-nav .tab-btn {
    padding: 10px 20px;
    font-size: 13px;
    flex: 1;
    min-width: calc(50% - 5px);
  }
}
.products-tabs-wrapper .products-tabs-nav .tab-btn span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}
.products-tabs-wrapper .products-tabs-nav .tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4e963e 0%, #1b5e1f 100%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.products-tabs-wrapper .products-tabs-nav .tab-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 3px;
  background: #94b843;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.products-tabs-wrapper .products-tabs-nav .tab-btn:hover {
  border-color: #4e963e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(78, 150, 62, 0.2);
}
.products-tabs-wrapper .products-tabs-nav .tab-btn:hover span {
  color: #fff;
}
.products-tabs-wrapper .products-tabs-nav .tab-btn:hover::before {
  left: 0;
}
.products-tabs-wrapper .products-tabs-nav .tab-btn.active {
  background: linear-gradient(135deg, #4e963e 0%, #1b5e1f 100%);
  border-color: #1b5e1f;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(78, 150, 62, 0.3);
}
.products-tabs-wrapper .products-tabs-nav .tab-btn.active span {
  color: #fff;
}
.products-tabs-wrapper .products-tabs-nav .tab-btn.active::before {
  left: 0;
}
.products-tabs-wrapper .products-tabs-nav .tab-btn.active::after {
  transform: translateX(-50%) scaleX(1);
}
.products-tabs-wrapper .products-tabs-nav .tab-btn.active:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(78, 150, 62, 0.4);
}
.products-tabs-wrapper .products-tabs-content {
  position: relative;
  min-height: 400px;
}
.products-tabs-wrapper .products-tabs-content .tab-pane {
  display: none;
  animation: fadeInUp 0.5s ease-out;
  opacity: 0;
}
.products-tabs-wrapper .products-tabs-content .tab-pane.active {
  display: block;
  opacity: 1;
  animation: fadeInUp 0.5s ease-out forwards;
}
.products-tabs-wrapper .products-tabs-content .tab-pane .row {
  justify-content: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.divider-element1 {
  position: relative;
  width: 100%;
  height: 40px;
  margin-bottom: -40px;
}
.divider-element1.bottom-flip-y {
  transform: scaleY(-1);
  margin-top: -40px;
}
.divider-element1.color2::before {
  background: #1b5e1f;
}
.divider-element1.color3::before {
  background: #94b843;
}
.divider-element1.color4::before {
  background: #162a11;
}
.divider-element1::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4e963e;
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: 600px;
  mask-image: url("../img/banners/divider-grama.webp");
  mask-position: bottom;
  mask-repeat: repeat-x;
  mask-size: 600px;
}

@media (min-width: 768px) {
  .int-page-1 .ajust-float {
    width: 55%;
    float: left;
    margin-right: 20px;
  }
}
.int-page-1 .ajust-float img {
  border-radius: 5px;
  min-height: 400px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .int-page-1 .padding-lg-right {
    padding-right: 5%;
  }
}
.int-page-1 .swiper-button-prev,
.int-page-1 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-1 .swiper-button-prev::after,
.int-page-1 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}
.int-page-1 p {
  text-align: justify;
  hyphens: auto;
  word-break: break-word;
}
.int-page-1 .boxExpand {
  margin: 10px 0;
  padding: 10px 0;
}
.int-page-1 .boxExpand #contentExpand {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
}
.int-page-1 .boxExpand #contentExpand ul li {
  list-style-position: inside;
}
.int-page-1 .boxExpand #contentExpand.expanded {
  max-height: 5000px;
}
.int-page-1 .boxExpand #contentExpand.expanded::before {
  display: none;
}
.int-page-1 .boxExpand #contentExpand::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 2;
  background: linear-gradient(to top, #ffffff 20%, rgba(0, 0, 0, 0) 100%);
}
.int-page-1 .boxExpand .btn-expand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  top: 0px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  z-index: 2;
  border: none;
  outline: none;
  transition: 0.3s ease;
  background: transparent;
}
.int-page-1 .boxExpand .btn-expand i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4e963e;
  bottom: 0px;
  font-size: 40px;
  transition: 0.3s ease;
}

.int-page-2 .prodintSwiper {
  height: 400px;
}
.int-page-2 .swiper-button-prev,
.int-page-2 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-2 .swiper-button-prev::after,
.int-page-2 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}
.int-page-2 .img-text {
  position: relative;
  background-image: url(../img/gallery/about.webp);
}
.int-page-2 .img-text::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #454545, rgba(255, 255, 255, 0));
  z-index: 0;
}
.int-page-2 .img-text .content-padding {
  padding: 32px;
  z-index: 1;
}
.int-page-2 .img-text .content-padding h2,
.int-page-2 .img-text .content-padding p {
  color: #FFF;
}
.int-page-2 .buttons .btn-main {
  width: 100%;
  text-align: center;
  margin-left: 0;
}

.int-page-3 .title-text01 {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  padding: 10px;
}
.int-page-3 .title-text01 .title {
  position: relative;
}
.int-page-3 .title-text01 .title .sub-bg {
  position: absolute;
  top: -40px;
  left: -40px;
  font-size: 100px;
  font-weight: 600;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #4e963e;
  opacity: 0.2;
}
.int-page-3 .title-text01 .title h1,
.int-page-3 .title-text01 .title h2,
.int-page-3 .title-text01 .title h3 {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 10px 0;
  background: -webkit-linear-gradient(#4e963e, #1b5e1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.int-page-3 .box-navfeatures .custom-nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  border: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .custom-nav {
    margin-bottom: 15px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style {
    width: 48%;
    margin: 5px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: 0 0;
  border: none;
  border-radius: 10px;
  background-color: #f5f5f5;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  padding: 10px 30px;
  width: 100%;
  color: #000000;
  cursor: pointer;
  border: 1px solid #d8d8d8;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 15px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    margin: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 20px;
  }
}
@media (max-width: 575px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 20px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon i {
  font-size: 30px;
  color: #4e963e;
  background: linear-gradient(120deg, #1b5e1f 45%, #4e963e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon i {
    font-size: 25px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link.active {
  color: #ffffff;
  background: linear-gradient(130deg, #1b5e1f 60%, #4e963e 100%);
  border-color: #dee2e6;
  border: 0;
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link.active img {
  filter: brightness(600%) saturate(0);
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link.active i {
  color: #fff;
  background: linear-gradient(120deg, #fff 45%, #eee 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.int-page-3 .box-navfeatures .tab-content .tab-pane {
  display: none;
  padding: 5px;
}
.int-page-3 .box-navfeatures .tab-content .tab-pane.active {
  display: flex;
  animation: zoomIn 1s ease 0s 1 normal forwards;
}
.int-page-3 .box-navfeatures .tab-content .box-img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #e8e8e8;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .tab-content .box-img {
    height: 400px;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .int-page-3 .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
@media (max-width: 320px) {
  .int-page-3 .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding-left: 18px;
  color: #1a1a1a;
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 2px;
  height: 15px;
  background: #94b843;
  transform: translateY(-50%) skew(-10deg);
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 2px;
  height: 15px;
  background: #94b843;
  transform: translateY(-50%) skew(-10deg);
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle span {
  font-weight: 500;
  color: #4e963e;
}
.int-page-3 .box-navfeatures .tab-content .box-text .title {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
  color: #1b5e1f;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .tab-content .box-text .subtitle {
    font-size: 16px;
  }
  .int-page-3 .box-navfeatures .tab-content .box-text .title {
    font-size: 25px;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-text .desc p {
  text-align: justify;
  font-size: 16px;
  margin: 5px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .tab-content .box-text .desc p {
    font-size: 14px;
    line-height: 25px;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-text .list {
  margin: 10px 0;
}
.int-page-3 .box-navfeatures .tab-content .box-text .list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 5px 0;
}
.int-page-3 .box-navfeatures .tab-content .box-text .list li i {
  margin-right: 5px;
  font-size: 20px;
  background-color: #fff;
  color: #4e963e;
}
.int-page-3 .box-navfeatures .tab-content .box-text .btn-four {
  margin-top: 10px;
  padding: 8px 20px;
}
.int-page-3 .section-title02 {
  position: relative;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  z-index: 1;
}
.int-page-3 .section-title02 .icon {
  width: 120px;
  opacity: 1;
  z-index: -1;
}
.int-page-3 .section-title02 .subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #1b5e1f;
  background: linear-gradient(90deg, #4e963e 45%, #1b5e1f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
@media (max-width: 575px) {
  .int-page-3 .section-title02 .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .int-page-3 .section-title02 .subtitle {
    font-size: 16px;
  }
}
.int-page-3 .section-title02 .title {
  font-size: 45px;
  font-weight: 800;
  color: #2c2b2b;
  text-align: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .int-page-3 .section-title02 .title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .int-page-3 .section-title02 .title {
    font-size: 30px;
  }
}
@media (max-width: 320px) {
  .int-page-3 .section-title02 .title {
    font-size: 22px;
  }
}
.int-page-3 .section-title02 .title.color-gradint {
  background: linear-gradient(90deg, #4e963e 45%, #1b5e1f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.int-page-3 .section-title02 .desc {
  margin: 5px 0;
}
.int-page-3 .section-title02 .desc p {
  text-align: center;
  font-size: 16px;
  color: #1a1a1a;
  margin: 0;
}
.int-page-3 .style-img01 {
  position: relative;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border: 1px solid #4e963e;
  text-align: center;
  padding: 20px 20px;
  border-radius: 10px;
  height: 415px;
  width: 90%;
}
.int-page-3 .style-img01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80%;
  width: 60px;
  height: 70%;
  background: #4e963e;
  background: linear-gradient(180deg, #4e963e 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
.int-page-3 .style-img01::after {
  content: "";
  position: absolute;
  bottom: -3%;
  left: -3%;
  width: 250px;
  height: 80%;
  border-radius: 5%;
  transform: rotate(0deg);
  background: radial-gradient(farthest-side at -33.33% 50%, rgba(0, 0, 0, 0) 52%, #1b5e1f 54% 57%, rgba(0, 0, 0, 0) 59%) 0 40px, radial-gradient(farthest-side at 50% 133.33%, rgba(0, 0, 0, 0) 52%, #1b5e1f 54% 57%, rgba(0, 0, 0, 0) 59%) 40px 0, radial-gradient(farthest-side at 133.33% 50%, rgba(0, 0, 0, 0) 52%, #1b5e1f 54% 57%, rgba(0, 0, 0, 0) 59%), radial-gradient(farthest-side at 50% -33.33%, rgba(0, 0, 0, 0) 52%, #1b5e1f 54% 57%, rgba(0, 0, 0, 0) 59%), #fefeff;
  background-size: 17.1416327405px 80px, 80px 17.1416327405px;
  opacity: 0.5;
  z-index: -1;
}
.int-page-3 .style-img01 img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -5%;
  width: 110%;
  height: 90%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.int-page-4 .box-img {
  margin-bottom: 20px;
  height: 450px;
}
.int-page-4 .box-img .prodintSwiper {
  width: 100%;
  height: 100%;
}
.int-page-4 .service-content .titles1 {
  font-size: 26px;
  margin: 15px 0;
  color: #1b5e1f;
}
.int-page-4 .service-content .titles2 {
  color: #1b5e1f;
  font-size: 24px;
  margin: 15px 0;
}
.int-page-4 .service-content p {
  font-size: 16px;
  text-align: justify;
  color: #000;
}
.int-page-4 .service-details-card {
  padding: 20px;
  box-shadow: 0px 8px 30px rgba(106, 106, 106, 0.1019607843);
  display: flex;
  align-items: start;
  border-left: 5px solid #4e963e;
  margin: 20px 0;
}
.int-page-4 .service-details-card .icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background-color: #f2f2f2;
  font-size: 35px;
  color: #4e963e;
}
.int-page-4 .service-details-card .details {
  margin-left: 20px;
}
.int-page-4 .service-details-card .details h2,
.int-page-4 .service-details-card .details h3 {
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-bottom: 10px;
}
.int-page-4 .service-details-card .details p {
  font-size: 16px;
  color: #000;
}
.int-page-4 .sidebar02 .box-categoria {
  padding: 20px 30px;
  margin-bottom: 10px;
  background-color: rgba(238, 238, 238, 0.9333333333);
}
.int-page-4 .sidebar02 .box-categoria .cat-title {
  font-size: 30px;
  font-weight: 600;
  margin: 15px 0;
}
.int-page-4 .sidebar02 .box-categoria ul {
  margin-bottom: 10px;
}
.int-page-4 .sidebar02 .box-categoria ul li {
  padding: 18px 25px;
  list-style: none;
  background: #fff;
  margin-top: 15px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  overflow: hidden;
  transition: 0.3s ease;
}
.int-page-4 .sidebar02 .box-categoria ul li a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  color: #000;
}
.int-page-4 .sidebar02 .box-categoria ul li:hover {
  transform: scale(1.03);
  background: #4e963e;
}
.int-page-4 .sidebar02 .box-categoria ul li:hover a {
  color: #fff;
}
.int-page-4 .sidebar02 .sidebar-cta {
  position: relative;
  padding: 20px 30px;
  margin: 20px 0;
  height: 450px;
}
.int-page-4 .sidebar02 .sidebar-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 1;
}
.int-page-4 .sidebar02 .sidebar-cta img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  z-index: 2;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #4e963e;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner h2,
.int-page-4 .sidebar02 .sidebar-cta .content-inner h3 {
  color: #fff;
  font-size: 26px;
  margin: 15px 0;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner a {
  padding: 15px 30px;
  background-color: #4e963e;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner a:hover {
  background-color: #fff;
  color: #4e963e;
}
.int-page-4 .swiper-button-prev,
.int-page-4 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-4 .swiper-button-prev::after,
.int-page-4 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}

.seo-content {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.seo-content.seo-content--align-category-grid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .seo-content {
    padding: 22px;
  }
}
.seo-content h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}
.seo-content h3 {
  margin: 26px 0 14px;
  font-size: 1.35rem;
}
.seo-content p,
.seo-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}
.seo-content ul {
  padding-left: 20px;
}

@media (max-width: 767px) {
  .seo-content.seo-content--align-category-grid {
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 0;
    padding-right: 0;
  }
}
.seo-collapse {
  display: flex;
  flex-direction: column;
}
.seo-collapse__toggle {
  margin: 18px auto 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #4e963e;
  color: #4e963e;
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.seo-collapse__toggle:hover {
  background: #4e963e;
  color: #fff;
}
.seo-collapse__actions {
  text-align: center;
}
.seo-collapse__content[hidden] {
  display: none;
}

.faq-list details {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: #fafafa;
}
.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  float: right;
  font-weight: 700;
}
.faq-list details[open] summary::after {
  content: "-";
}
.faq-list .faq-answer {
  margin-top: 12px;
}

.category-cards h3 {
  margin-bottom: 18px;
}

.category-cards .row > [class*=col-] {
  display: flex;
}
.category-cards a {
  display: flex;
  width: 100%;
}
.category-cards .card-two {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.category-cards .card-two .cart-img {
  flex-shrink: 0;
}
.category-cards .card-two .card-prod-content {
  min-height: 170px;
  align-items: flex-start;
  gap: 10px;
}
.category-cards .card-two .card-prod-content .card-prod-text {
  flex: 1;
  min-width: 0;
}
.category-cards .card-two .card-prod-content h2,
.category-cards .card-two .card-prod-content h3 {
  font-size: 1rem;
  line-height: 1.3;
  margin-right: 0;
  text-transform: none;
}
.category-cards .card-two .card-prod-content .btn-a {
  flex-shrink: 0;
  margin-left: auto;
}

.ecommerce-sidebar__card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.ecommerce-sidebar__tag {
  display: inline-flex;
  background: #e9f9ef;
  color: #1d8c45;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.ecommerce-sidebar__title {
  margin: 14px 0 10px;
  font-size: 20px;
  line-height: 1.35;
}
.ecommerce-sidebar__price {
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  margin: 0 0 8px;
  color: #002f6c;
}
.ecommerce-sidebar__installments {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 14px;
}
.ecommerce-sidebar__trust {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.ecommerce-sidebar__trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #313131;
}
.ecommerce-sidebar__trust i {
  color: #1b5e1f;
}
.ecommerce-sidebar__benefits {
  padding-left: 18px;
  margin: 0 0 20px;
}
.ecommerce-sidebar__benefits li {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}
.ecommerce-sidebar__cta {
  width: 100%;
  margin-left: 0;
  text-align: center;
}
.ecommerce-sidebar__secondary {
  margin-top: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #1c1c1c;
  font-weight: 600;
  padding: 10px 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.ecommerce-sidebar__secondary:hover {
  color: #0d6a2f;
  border-color: #0d6a2f;
}

.ecommerce-list-header {
  margin-bottom: 18px;
}
.ecommerce-list-header__label {
  margin: 0 0 8px;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf8ee;
  color: #1b5e1f;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.ecommerce-list-header__desc {
  color: #5e5e5e;
  margin: 8px 0 0;
}

.ecommerce-product-search {
  max-width: 520px;
}
.ecommerce-product-search.header-product-search {
  max-width: 340px;
}
@media (max-width: 991px) {
  .ecommerce-product-search.header-product-search {
    max-width: 100%;
  }
}
.ecommerce-product-search.header-product-search .input-group {
  border-radius: 8px;
}
.ecommerce-product-search .input-group {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #e6ebea;
  background: linear-gradient(#fff, #fafcfb);
  box-shadow: 0 4px 16px rgba(13, 90, 40, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.22s ease;
}
.ecommerce-product-search .input-group:focus-within {
  border-color: rgba(148, 184, 67, 0.45);
  box-shadow: 0 6px 22px rgba(148, 184, 67, 0.14);
}
.ecommerce-product-search .input-group-text {
  padding: 0 1rem;
  border: none;
  background: linear-gradient(145deg, rgba(27, 94, 31, 0.18) 0%, rgba(148, 184, 67, 0.08) 100%);
  color: #94b843;
  box-shadow: none;
}
.ecommerce-product-search .input-group-text i {
  font-size: 1rem;
}
.ecommerce-product-search .form-control {
  border: none;
  padding: 0.75rem 0.85rem;
  font-size: 15px;
  background: transparent;
  box-shadow: none;
}
.ecommerce-product-search .form-control:focus {
  box-shadow: none;
}
.ecommerce-product-search .form-control::placeholder {
  color: #8a9590;
}
.ecommerce-product-search [data-product-search-empty] {
  padding: 0.35rem 0.25rem;
  color: #5c6d63;
}

.category-cards--ecommerce .col-lg-3,
.category-cards--ecommerce .col-md-6 {
  display: flex;
}
.category-cards--ecommerce .col-lg-3 > .card-two,
.category-cards--ecommerce .col-md-6 > .card-two {
  width: 100%;
}
.category-cards--ecommerce .card-two {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.category-cards--ecommerce .card-two:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}
.category-cards--ecommerce .card-two:hover .card-prod-content {
  background: #fff;
}
.category-cards--ecommerce .card-two:hover .btn-a--half {
  background: #0f8f3a;
  border-color: #0f8f3a;
  color: #fff;
}
.category-cards--ecommerce .card-two:hover .btn-a--half i {
  color: #fff;
}
.category-cards--ecommerce .card-two:hover .ecommerce-btn-buy {
  filter: brightness(1.05);
}
.category-cards--ecommerce .card-two .card-two__media-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.category-cards--ecommerce .card-two .card-prod-head-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.category-cards--ecommerce .card-two .card-prod-head-link:hover .ecommerce-card-price {
  color: #0c6b30;
}
.category-cards--ecommerce .card-two .card-prod-content {
  flex: 1;
  display: flex;
  min-height: 140px;
  padding: 16px 14px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.category-cards--ecommerce .card-two .card-prod-content::before {
  display: none;
}
.category-cards--ecommerce .card-two .card-prod-content .card-prod-text {
  min-width: 0;
  width: 100%;
}
.category-cards--ecommerce .card-two .card-prod-content h2,
.category-cards--ecommerce .card-two .card-prod-content h3 {
  color: #1a1a1a;
  text-transform: none;
  font-size: 14px;
  line-height: 1.3;
  margin-right: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.category-cards--ecommerce .card-two .card-prod-content .ecommerce-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}
.category-cards--ecommerce .card-two .card-prod-content .btn-a--half {
  min-width: 0;
  width: 100%;
  height: 36px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  padding: 0 8px;
  background: #1b5e1f;
  border: 1px solid #1b5e1f;
  color: #fff;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.category-cards--ecommerce .card-two .card-prod-content .ecommerce-btn-buy {
  min-width: 0;
  width: 100%;
  height: 36px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  padding: 0 8px;
  background: #25d366;
  border: 1px solid #20bd5a;
  color: #fff;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.category-cards--ecommerce .card-two .card-prod-content .ecommerce-card-price {
  color: #0f8f3a;
}

.ecommerce-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: #0f8f3a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 10px;
}

.ecommerce-card-price {
  margin: 8px 0 0;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0f8f3a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.int-page-1 .col-lg-8.padding-lg-right {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}
.int-page-1 .col-lg-8.padding-lg-right h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.3;
  margin-bottom: 18px !important;
}
.int-page-1 .col-lg-8.padding-lg-right > p:first-of-type {
  background: #f8fafc;
  border-left: 4px solid #1b5e1f;
  border-radius: 6px;
  padding: 16px;
}
.int-page-1 .col-lg-8.padding-lg-right .btn-main {
  margin-top: 10px;
}
.int-page-1 .ajust-float {
  width: 100%;
  float: none;
  margin-right: 0;
}
.int-page-1 .ajust-float img {
  min-height: unset;
  max-height: 380px;
  object-fit: contain;
}
.int-page-1 .prodintSwiper {
  border: 1px solid #ebebeb;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.int-page-1 .prodintSwiper .swiper-slide {
  background: #fff;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

@media (max-width: 991px) {
  .int-page-1 .col-lg-8.padding-lg-right {
    padding: 18px;
  }
  .int-page-1 .prodintSwiper .swiper-slide {
    min-height: 300px;
  }
}
.map-site ul li {
  margin-bottom: 10px;
}
.map-site ul li i {
  color: #1b5e1f;
}
.map-site ul li a {
  color: #000;
  text-transform: uppercase;
  font-size: 0.9em;
}
.map-site ul li a:hover {
  color: #4e963e;
  padding-left: 5px;
}

.politica-de-privacidade h2 {
  margin-top: 15px;
}

.lgpd {
  position: fixed;
  bottom: 4%;
  left: 2%;
  max-width: 360px;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 9999;
}
.lgpd .title {
  font-weight: 600;
  color: rgb(31, 41, 55);
}
.lgpd .description {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(75, 85, 99);
}
.lgpd .description a {
  color: rgb(59, 130, 246);
}
.lgpd .description a:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.lgpd .actions {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  flex-shrink: 0;
}
.lgpd .actions .pref {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(31, 41, 55);
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background-color: transparent;
}
.lgpd .actions .pref:hover {
  color: rgb(156, 163, 175);
}
.lgpd .actions .pref:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.lgpd .actions .accept {
  font-size: 0.75rem;
  line-height: 1rem;
  background-color: rgb(17, 24, 39);
  font-weight: 500;
  border-radius: 0.5rem;
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  cursor: pointer;
  border: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.lgpd .actions .accept:hover {
  background-color: rgb(55, 65, 81);
}
.lgpd .actions .accept:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

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