@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
@media (max-width: 575px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 100vw;
}
main > div:first-child {
  position: relative;
  z-index: 1;
  flex: 1;
}

.page-padding {
  padding: 15rem 0 6rem 0;
}
@media (max-width: 991px) {
  .page-padding {
    padding: 6rem 0 6rem 0;
  }
}

.title {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.title-secondary {
  display: inline-block;
  color: #fff;
  background-color: #70f0aa;
  padding: 0rem 0.8rem;
  border-radius: 4px;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.title-primary {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.4rem;
}

.subtitle {
  margin: 2rem 0;
}

@keyframes scaleUpScaleDown {
  0% {
    transform: translateZ(-1px) scale(1);
  }
  80% {
    transform: translateZ(-1px) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translateZ(-1px) scale(1.5);
    opacity: 0;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1.2rem 2.8rem;
  line-height: 1;
  border-radius: 5rem;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn i {
  font-size: 1.4rem;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background-color: #4AB978;
  color: #fff;
  box-shadow: 0 4px 12px rgba(74, 185, 120, 0.15);
}
.btn--primary:hover {
  background-color: #3ea46a;
  color: #fff;
  box-shadow: 0 6px 16px rgba(74, 185, 120, 0.3);
}
.btn--secondary {
  background-color: #6EB4AB;
  color: #fff;
  box-shadow: 0 4px 12px rgba(110, 180, 171, 0.15);
}
.btn--secondary:hover {
  background-color: #5ba39a;
  color: #fff;
  box-shadow: 0 6px 16px rgba(110, 180, 171, 0.3);
}
.btn--whatsapp {
  background-color: #05a73b;
  color: #fff;
  box-shadow: 0 4px 12px rgba(5, 167, 59, 0.15);
}
.btn--whatsapp:hover {
  background-color: #128c7e;
  color: #fff;
  box-shadow: 0 6px 16px rgba(5, 167, 59, 0.3);
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.social__item {
  color: #fff;
}

.form-group {
  margin-bottom: 1.6rem;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
}
.form-group--column {
  flex-direction: column;
  align-items: center;
}
.form-group label {
  font-weight: 700;
  color: #76461b;
  text-transform: uppercase;
}
.form-group input:not([type=file], [type=submit]),
.form-group textarea {
  padding: 1.2rem 1.2rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid #25292b;
  color: #292929;
  background-color: rgba(248, 217, 167, 0.52);
  border: 2px solid #fff;
  border-radius: 20px;
}
.form-group input:not([type=file], [type=submit])::placeholder,
.form-group textarea::placeholder {
  color: #adafb0;
}
.form-group input:not([type=file], [type=submit]):focus,
.form-group textarea:focus {
  outline: 0;
  border: 2px solid #f2f2f2;
}
.form-group .wpcf7-form-control-wrap {
  flex: 1;
  width: 100%;
}

.form-submit {
  position: relative;
  text-align: center;
}
.form-submit .btn {
  min-width: 12rem;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.fixed-whatsapp {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #05a73b;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
}
.fixed-whatsapp i {
  font-size: 2.8rem;
  color: #fff;
}
.fixed-whatsapp::after {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #128c7e;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.faq-item {
  background-color: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  padding: 2.5rem 3.5rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(40, 98, 93, 0.02);
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}
.faq-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: #28625D;
  gap: 2rem;
  outline: none;
}
.faq-item__header:focus {
  outline: none;
  box-shadow: none;
}
.faq-item__question {
  font-size: 1.8rem;
  font-weight: 700;
  color: #28625D;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.faq-item__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-item__icon {
  font-size: 1.6rem;
  color: #4AB978;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item__header:not(.collapsed) .faq-item__icon {
  transform: rotate(-180deg);
}
.faq-item__answer {
  padding-top: 1.8rem;
  font-size: 1.45rem;
  line-height: 1.65;
  color: #5a6260;
  margin-bottom: 0;
}
.faq-item__answer p {
  margin-bottom: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.faq-item__answer p:not(:last-child) {
  margin-bottom: 1.2rem;
}
@media (max-width: 575px) {
  .faq-item {
    padding: 2rem;
    border-radius: 1.2rem;
  }
  .faq-item__question {
    font-size: 1.5rem;
  }
  .faq-item__answer {
    font-size: 1.35rem;
    padding-top: 1.2rem;
  }
  .faq-item__icon {
    font-size: 1.3rem;
  }
}

.card-product {
  background-color: #28625D;
  border-radius: 2.4rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.card-product__img-box {
  background-color: #fff;
  height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(40, 98, 93, 0.05);
}
@media (max-width: 575px) {
  .card-product__img-box {
    height: 20rem;
    padding: 2rem;
  }
}
.card-product__img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-product:hover .card-product__img {
  transform: scale(1.06);
}
.card-product__info-box {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (max-width: 575px) {
  .card-product__info-box {
    padding: 2.5rem 2rem;
  }
}
.card-product__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4AB978;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}
@media (max-width: 575px) {
  .card-product__title {
    font-size: 1.6rem;
  }
}
.card-product__desc {
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  flex-grow: 1;
}
@media (max-width: 575px) {
  .card-product__desc {
    margin-bottom: 2rem;
  }
}
.card-product__btn {
  align-self: flex-start;
  border-radius: 0.8rem;
}

.segment-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  background-color: #fff;
  border-radius: 2rem;
  padding: 3rem 3.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.segment-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.6rem;
  background-color: transparent;
  border-radius: 2rem 0 0 2rem;
  transition: background-color 0.3s ease;
}
.segment-card--truck::before {
  background-color: #4AB978;
}
.segment-card--pool::before {
  background-color: #28625D;
}
.segment-card--industrial::before {
  background-color: #3fc2b1;
}
.segment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}
.segment-card__icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.segment-card__icon {
  font-size: 2.4rem;
  color: #28625D;
}
.segment-card__info {
  flex: 1;
}
.segment-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #28625D;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.segment-card__desc {
  font-size: 1.45rem;
  color: #5a6260;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .segment-card {
    padding: 2.5rem;
    gap: 1.8rem;
  }
  .segment-card__icon {
    font-size: 2rem;
  }
  .segment-card__title {
    font-size: 1.6rem;
  }
  .segment-card__desc {
    font-size: 1.35rem;
  }
}

.testimonial-card {
  background-color: #fff;
  border-radius: 1.8rem;
  border: 1px solid rgba(40, 98, 93, 0.08);
  padding: 3.5rem 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: rgba(40, 98, 93, 0.15);
}
.testimonial-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  width: 100%;
}
.testimonial-card__profile {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.testimonial-card__avatar-wrapper {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.testimonial-card__avatar-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.testimonial-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #28625D;
  margin: 0;
  line-height: 1.2;
}
.testimonial-card__time {
  font-size: 1.2rem;
  color: #95959f;
  font-weight: 500;
}
.testimonial-card__google-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__stars {
  display: flex;
  gap: 0.4rem;
  color: #f6c86a;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.testimonial-card__text {
  font-size: 1.4rem;
  line-height: 1.65;
  color: #4a5250;
  font-weight: 500;
  margin: 0;
  flex-grow: 1;
}
@media (max-width: 575px) {
  .testimonial-card {
    padding: 2.5rem 2.2rem;
  }
  .testimonial-card__name {
    font-size: 1.4rem;
  }
  .testimonial-card__text {
    font-size: 1.35rem;
  }
}

.footer {
  background: linear-gradient(135deg, #3FC2B1 0%, #215A55 100%);
  padding: 7rem 0 3rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 5rem;
}
@media (max-width: 1199px) {
  .footer__content {
    gap: 2.5rem;
  }
}
@media (max-width: 991px) {
  .footer__content {
    flex-wrap: wrap;
    gap: 3.5rem;
  }
}
@media (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    gap: 4rem;
  }
}
.footer__column {
  flex: 1;
  min-width: 14rem;
}
.footer__column--brand {
  flex: 1.5;
  min-width: 24rem;
}
@media (max-width: 991px) {
  .footer__column--brand {
    flex: 1 1 100%;
  }
}
.footer__column--newsletter {
  flex: 1.5;
  min-width: 26rem;
}
@media (max-width: 991px) {
  .footer__column--newsletter {
    flex: 1 1 100%;
    margin-top: 1.5rem;
  }
}
.footer__logo {
  margin-bottom: 2rem;
  display: flex;
}
.footer__logo img {
  height: 3.2rem;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer__desc {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  max-width: 32rem;
  margin-bottom: 0;
}
.footer__social {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .footer__social {
    margin-top: 1.8rem;
  }
}
.footer__social-link {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
}
.footer__social-link:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.05);
}
.footer__social-link--instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(214, 36, 159, 0.35);
}
.footer__social-link--whatsapp:hover {
  background-color: #05a73b;
  border-color: #05a73b;
  box-shadow: 0 6px 15px rgba(5, 167, 59, 0.35);
}
.footer__title {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .footer__title {
    margin-bottom: 1.8rem;
  }
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer__link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 400;
}
.footer__link:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer__newsletter-text {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  margin-bottom: 2rem;
  max-width: 36rem;
}
.footer__newsletter-form,
.footer .wpcf7-form {
  width: 100%;
  max-width: 36rem;
  position: relative;
}
.footer__newsletter-form p,
.footer .wpcf7-form p {
  margin: 0;
  padding: 0;
}
.footer__newsletter-form br,
.footer .wpcf7-form br {
  display: none;
}
.footer__newsletter-form .wpcf7-spinner,
.footer .wpcf7-form .wpcf7-spinner {
  position: absolute;
  right: -3.5rem;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
@media (max-width: 991px) {
  .footer__newsletter-form .wpcf7-spinner,
  .footer .wpcf7-form .wpcf7-spinner {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -3.5rem;
    transform: translateX(-50%);
  }
}
.footer__newsletter-input-group {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  padding: 0.4rem;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
  position: relative;
}
.footer__newsletter-input-group:focus-within {
  background-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.footer__newsletter-input-group .wpcf7-form-control-wrap {
  flex: 1;
  display: block;
  position: relative;
}
.footer__newsletter-input-group .wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 1.2rem;
  font-size: 1.2rem;
  color: #f6264d;
  font-weight: 500;
  display: block;
  width: 100%;
  text-align: left;
}
.footer__newsletter-input {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.2rem;
  color: #fff;
  font-size: 1.4rem;
  outline: none;
}
.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer__newsletter-submit {
  background-color: #4AB978;
  border: none;
  border-radius: 0.6rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}
.footer__newsletter-submit i {
  font-size: 1.4rem;
}
.footer__newsletter-submit:hover {
  background-color: #3ea46a;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(74, 185, 120, 0.3);
}
.footer .wpcf7-response-output {
  margin: 2rem 0 0 0 !important;
  padding: 1.2rem 1.6rem !important;
  border-radius: 0.8rem !important;
  font-size: 1.35rem !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  border: 2px solid transparent !important;
}
.footer .wpcf7-response-output.wpcf7-validation-errors, .footer .wpcf7-response-output.wpcf7-aborted, .footer .wpcf7-response-output.wpcf7-spam, .footer .wpcf7-response-output.wpcf7-mail-sent-ng {
  border-color: #df2830 !important;
  background-color: rgba(223, 40, 48, 0.15) !important;
  color: #f6264d !important;
}
.footer .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #4AB978 !important;
  background-color: rgba(74, 185, 120, 0.15) !important;
  color: #70f0aa !important;
}
.footer__divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin: 4rem 0 3rem;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.3rem;
}
@media (max-width: 991px) {
  .footer__bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}
.footer__copy {
  margin-bottom: 0;
}
.footer__info {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 767px) {
  .footer__info {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.footer__cnpj {
  display: inline-block;
}
.footer__author {
  display: inline-block;
}

.header {
  background-color: #fff;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  padding: 2.2rem 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
body.admin-bar .header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}
@media (max-width: 600px) {
  body.admin-bar .header {
    top: 0;
  }
}
@media (max-width: 991px) {
  .header {
    padding: 1.5rem 0;
  }
}
.header.scrolled {
  padding: 1.4rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header--intern {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo a {
  display: inline-flex;
}
.header__logo img {
  height: 3.2rem;
  width: auto;
  transition: height 0.3s ease;
}
@media (max-width: 991px) {
  .header__logo img {
    height: 2.8rem;
  }
}
@media (max-width: 991px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 28rem;
    max-width: 85%;
    overflow-y: auto;
    background-color: #fff;
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    padding: 8rem 2.4rem 4rem;
  }
  .header-nav.opened {
    transform: translateX(0);
  }
}
.header-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 991px) {
  .header-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .header-nav__item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .header-nav__item--button {
    margin-top: 1.5rem;
  }
}
.header-nav__link {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
  transition: color 0.25s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding: 0.5rem 0;
}
@media (max-width: 991px) {
  .header-nav__link {
    color: #292929;
    font-size: 1.6rem;
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9e9e9;
  }
}
.header-nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #28625D;
  transition: width 0.25s ease, left 0.25s ease;
}
@media (max-width: 991px) {
  .header-nav__link::after {
    display: none;
  }
}
.header-nav__link:hover {
  color: #28625D;
}
.header-nav__link:hover::after {
  width: 100%;
  left: 0;
}
.header-nav__link.active {
  color: #28625D;
  font-weight: 600;
}
.header-nav__link.active::after {
  width: 100%;
  left: 0;
}
.header-nav__link--button {
  background-color: #4AB978;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 5rem;
  font-weight: 600;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(74, 185, 120, 0.15);
}
@media (max-width: 991px) {
  .header-nav__link--button {
    display: block;
    text-align: center;
    background-color: #4AB978;
    color: #fff;
    border-radius: 5rem;
    padding: 1.2rem;
    border-bottom: none;
  }
}
.header-nav__link--button::after {
  display: none;
}
.header-nav__link--button:hover {
  background-color: #3ea46a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 185, 120, 0.25);
}
@media (max-width: 991px) {
  .header-nav__link--button:hover {
    transform: none;
  }
}
.header-nav__link--button.active {
  color: #fff;
  background-color: #3ea46a;
}
.header-nav__link--button.active::after {
  display: none;
}
.header-nav__link--social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.75);
  padding: 0.5rem;
  transition: color 0.25s ease, transform 0.25s ease;
}
@media (max-width: 991px) {
  .header-nav__link--social {
    color: #28625D;
    font-size: 2.2rem;
    padding: 1rem 0;
    display: inline-flex;
    border-bottom: none;
    justify-content: flex-start;
    width: auto;
    margin-top: 1rem;
  }
}
.header-nav__link--social::after {
  display: none;
}
.header-nav__link--social:hover {
  color: #E1306C;
  transform: translateY(-2px);
}
@media (max-width: 991px) {
  .header-nav__link--social:hover {
    transform: none;
  }
}
.header-nav__btn {
  position: relative;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}
@media (max-width: 991px) {
  .header-nav__btn {
    display: flex;
  }
}
.header-nav__icon {
  position: relative;
  width: 2.6rem;
  height: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header-nav__icon-bar {
  width: 100%;
  height: 3px;
  background-color: #28625D;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  position: absolute;
  left: 0;
}
.header-nav__icon-bar--1 {
  top: 0;
}
.header-nav__icon-bar--2 {
  top: 50%;
  transform: translateY(-50%);
}
.header-nav__icon-bar--3 {
  bottom: 0;
}
.header-nav__icon.opened .header-nav__icon-bar--1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header-nav__icon.opened .header-nav__icon-bar--2 {
  opacity: 0;
}
.header-nav__icon.opened .header-nav__icon-bar--3 {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header .overlay.show {
  opacity: 1;
  visibility: visible;
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
  aspect-ratio: 1920/800;
  min-height: 50rem;
}
.banner-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.banner-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.banner-item__text {
  width: 40rem;
  max-width: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 25rem;
}
@media (max-width: 991px) {
  .banner-item__text {
    padding-bottom: 20%;
  }
}
.banner-item__text h2 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 100%;
  margin-bottom: 2rem;
}
.banner-item__text p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .banner-item__text p {
    font-size: 1.6rem;
  }
}
@media (max-width: 991px) {
  .banner-item__text p {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .banner-item__text p {
    font-size: 1rem;
  }
}
.banner-item__text .btn {
  font-size: 1.8rem;
}
.banner .owl-carousel {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.banner .owl-dots {
  position: absolute;
  left: 66.67%;
  bottom: 1rem;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .banner .owl-dots {
    bottom: 0;
  }
}
.banner .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.banner .owl-dots .owl-dot:hover span {
  background-color: #fff;
}
.banner .owl-dots .owl-dot.active span {
  background-color: #fff;
}
.banner .owl-prev,
.banner .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner .owl-prev {
  left: 2%;
}
.banner .owl-next {
  right: 2%;
}
.banner .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.banner .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #70f0aa !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.banner .owl-nav [class*=owl-]:hover {
  background-color: #42eb8f !important;
  opacity: 1;
  color: #000;
  text-decoration: none;
}

.breadcrumb {
  margin-top: 5rem;
  color: #898989;
  font-size: 1.4rem;
}
.breadcrumb-item a {
  color: #898989;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #898989;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f0da" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #454545;
}

/* ==========================================================================
   Seção Hero (Banner)
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero__slide {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 14rem;
  padding-bottom: 8rem;
  width: 100%;
}
@media (max-width: 991px) {
  .hero__slide {
    min-height: auto;
    padding-top: 12rem;
    padding-bottom: 9rem;
    background-position: 30% center;
  }
}
.hero__container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.hero__card {
  background-color: rgba(38, 87, 81, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 2.4rem;
  padding: 6rem;
  max-width: 58rem;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .hero__card {
    padding: 4rem 3rem;
    max-width: 100%;
    border-radius: 1.8rem;
    background-color: rgba(38, 87, 81, 0.7);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
}
.hero__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2rem;
  color: #fff;
}
@media (max-width: 991px) {
  .hero__title {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .hero__title {
    font-size: 2.6rem;
  }
}
.hero__text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 3.5rem;
  color: #9AEFEB;
}
@media (max-width: 575px) {
  .hero__text {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
  }
}
.hero__btn {
  align-self: flex-start;
}
.hero .hero-carousel {
  position: relative;
  width: 100%;
}
.hero .hero-carousel .owl-stage-outer {
  overflow: hidden;
}
.hero .hero-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 4rem;
  z-index: 10;
}
@media (max-width: 991px) {
  .hero .hero-carousel .owl-nav {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .hero .hero-carousel .owl-nav {
    display: none;
  }
}
.hero .hero-carousel .owl-nav .owl-prev,
.hero .hero-carousel .owl-nav .owl-next {
  pointer-events: auto;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background-color: rgba(38, 87, 81, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.6rem;
  outline: none;
}
.hero .hero-carousel .owl-nav .owl-prev:hover,
.hero .hero-carousel .owl-nav .owl-next:hover {
  background-color: #4AB978;
  border-color: #4AB978;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(40, 98, 93, 0.3);
}
.hero .hero-carousel .owl-nav .owl-prev:active,
.hero .hero-carousel .owl-nav .owl-next:active {
  transform: scale(0.98);
}
.hero .hero-carousel .owl-dots {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  z-index: 10;
}
.hero .hero-carousel .owl-dots .owl-dot {
  background: none;
  border: none;
  padding: 0;
  outline: none;
}
.hero .hero-carousel .owl-dots .owl-dot span {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero .hero-carousel .owl-dots .owl-dot:hover span {
  background-color: rgba(255, 255, 255, 0.7);
}
.hero .hero-carousel .owl-dots .owl-dot.active span {
  width: 2.8rem;
  border-radius: 10rem;
  background-color: #4AB978;
}

/* ==========================================================================
   Seção Sobre (About)
   ========================================================================== */
.about {
  background-color: #f8faf9;
  padding: 10rem 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .about {
    padding: 7rem 0;
  }
}
.about__image-wrapper {
  position: relative;
  border-radius: 2.4rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
@media (max-width: 991px) {
  .about__image-wrapper {
    border-radius: 1.8rem;
  }
}
.about__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about__img:hover {
  transform: scale(1.03);
}
.about__content {
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .about__content {
    padding-left: 0;
    margin-top: 2.5rem;
  }
}
.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.about__badge-logo {
  width: 3.9rem;
  height: 3.9rem;
  object-fit: contain;
}
.about__badge-text {
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #4AB978;
  letter-spacing: 0.15em;
}
.about__title {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: #28625D;
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .about__title {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .about__title {
    font-size: 2.4rem;
  }
}
.about__desc {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #5a6260;
  margin-bottom: 4rem;
}
@media (max-width: 575px) {
  .about__desc {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
}
.about__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about__feature-item {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
}
.about__feature-icon {
  color: #4AB978;
  font-size: 2rem;
  line-height: 1;
  margin-top: 0.2rem;
}
.about__feature-info {
  flex: 1;
}
.about__feature-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #28625D;
  margin-bottom: 0.6rem;
}
.about__feature-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #6c7573;
  margin-bottom: 0;
}

/* ==========================================================================
   Seção de Produtos (Products)
   ========================================================================== */
.products {
  background-color: #fff;
  padding: 10rem 0;
}
@media (max-width: 991px) {
  .products {
    padding: 7rem 0;
  }
}
.products__header {
  text-align: center;
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 991px) {
  .products__header {
    margin-bottom: 4rem;
  }
}
.products__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  color: #4AB978;
  font-size: 1.6rem;
  font-weight: 500;
}
.products__badge-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.products__title {
  font-size: 4rem;
  font-weight: 700;
  color: #28625D;
  line-height: 1.25;
  margin-bottom: 0;
  letter-spacing: -0.015em;
}
@media (max-width: 991px) {
  .products__title {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .products__title {
    font-size: 2.6rem;
  }
}
.products__filter-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 5rem;
}
@media (max-width: 991px) {
  .products__filter-wrapper {
    margin-bottom: 3.5rem;
  }
}
.products .products-filter {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0.8rem;
  margin: 0;
  background-color: #f1f5f3;
  border-radius: 10rem;
  border: 1px solid rgba(40, 98, 93, 0.05);
}
@media (max-width: 767px) {
  .products .products-filter {
    border-radius: 2rem;
    padding: 1.2rem;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
  }
}
.products .products-filter__item {
  display: inline-block;
}
.products .products-filter__btn {
  border: none;
  background: none;
  font-size: 1.45rem;
  font-weight: 600;
  color: #5a6260;
  padding: 1rem 2.8rem;
  border-radius: 10rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 767px) {
  .products .products-filter__btn {
    padding: 0.8rem 1.8rem;
    font-size: 1.35rem;
  }
}
.products .products-filter__btn:hover {
  color: #28625D;
}
.products .products-filter__btn.active {
  background-color: #28625D;
  color: #fff;
  box-shadow: 0 4px 15px rgba(40, 98, 93, 0.2);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  transform: translateY(0);
}
.products__grid.is-filtering {
  opacity: 0;
  transform: translateY(15px);
}
@media (max-width: 1199px) {
  .products__grid {
    gap: 3.5rem;
  }
}
@media (max-width: 991px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .products__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.products__grid-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ==========================================================================
   Seção de Segmentos (Onde Atuamos)
   ========================================================================== */
.segments {
  background-color: #f8faf9;
  padding: 10rem 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .segments {
    padding: 7rem 0;
  }
}
@media (max-width: 991px) {
  .segments__content {
    text-align: left;
  }
}
.segments__subtitle {
  display: inline-block;
  color: #4AB978;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.segments__title {
  font-size: 4rem;
  font-weight: 700;
  color: #28625D;
  line-height: 1.25;
  margin-bottom: 4.5rem;
  letter-spacing: -0.015em;
}
@media (max-width: 991px) {
  .segments__title {
    font-size: 3.2rem;
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 575px) {
  .segments__title {
    font-size: 2.6rem;
  }
}
.segments__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.segments__images-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: flex-start;
  position: relative;
  padding: 4rem 0;
}
@media (max-width: 991px) {
  .segments__images-container {
    margin-top: 6rem;
    padding: 2rem 0;
    gap: 2rem;
  }
}
.segments__image-wrapper {
  border-radius: 2.4rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.segments__image-wrapper--1 {
  transform: translateY(-3rem);
}
.segments__image-wrapper--2 {
  transform: translateY(3rem);
}
.segments__image-wrapper:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.09);
  transform: scale(1.02) translateY(var(--hover-y, 0));
}
.segments__image-wrapper--1:hover {
  --hover-y: -3rem;
}
.segments__image-wrapper--2:hover {
  --hover-y: 3rem;
}
@media (max-width: 991px) {
  .segments__image-wrapper--1 {
    transform: translateY(0);
  }
  .segments__image-wrapper--2 {
    transform: translateY(2rem);
  }
  .segments__image-wrapper--1:hover {
    --hover-y: 0px;
  }
  .segments__image-wrapper--2:hover {
    --hover-y: 2rem;
  }
}
.segments__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
}

/* ==========================================================================
   Seção de FAQ (Dúvidas Frequentes)
   ========================================================================== */
.faq {
  position: relative;
  background-image: url("../images/faq-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10rem 0;
}
@media (max-width: 991px) {
  .faq {
    padding: 7rem 0;
  }
}
.faq__header {
  max-width: 72rem;
  margin: 0 auto 5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .faq__header {
    margin-bottom: 4rem;
  }
}
.faq__title {
  font-size: 4rem;
  font-weight: 700;
  color: #9AEFEB;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}
@media (max-width: 991px) {
  .faq__title {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .faq__title {
    font-size: 2.6rem;
  }
}
.faq__subtitle {
  font-size: 1.6rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .faq__subtitle {
    font-size: 1.45rem;
  }
}
.faq__accordion {
  max-width: 82rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* ==========================================================================
   Seção de Contato (Com visualização Glassmorphic sobreposta)
   ========================================================================== */
.contact {
  position: relative;
  z-index: 10;
  margin-top: -4rem;
  margin-bottom: -3rem;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .contact {
    margin-top: -3rem;
    margin-bottom: -2.5rem;
  }
}
@media (max-width: 575px) {
  .contact {
    margin-top: -2rem;
    margin-bottom: -1.5rem;
  }
}

.contact-card {
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 3rem;
  padding: 6rem;
  max-width: 108rem;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .contact-card {
    padding: 4rem 3rem;
    border-radius: 2rem;
    max-width: 100%;
  }
}
.contact-card__title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #28625D;
  line-height: 1.25;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .contact-card__title {
    font-size: 2.8rem;
  }
}
.contact-card__text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #292929;
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .contact-card__text {
    font-size: 1.45rem;
    margin-bottom: 3rem;
  }
}
.contact-card__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.contact-card__detail {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.6rem;
  color: #28625D;
  font-weight: 500;
}
@media (max-width: 575px) {
  .contact-card__detail {
    font-size: 1.45rem;
  }
}
.contact-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: #28625D;
  font-size: 1.8rem;
}
.contact-card__link {
  color: #28625D;
  text-decoration: none;
  transition: color 0.25s ease;
}
.contact-card__link:hover {
  color: #4AB978;
}
@media (max-width: 991px) {
  .contact-card__form {
    margin-top: 4rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-form__group {
  position: relative;
  width: 100%;
}
.contact-form__actions {
  position: relative;
}
.contact-form__actions .wpcf7-spinner {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea,
.contact-form .wpcf7-form-control {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  padding: 1.6rem 2rem;
  font-size: 1.5rem;
  color: #292929;
  font-family: inherit;
  transition: all 0.25s ease;
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form input[type=tel]::placeholder,
.contact-form textarea::placeholder,
.contact-form .wpcf7-form-control::placeholder {
  color: #a0aec0;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form textarea:focus,
.contact-form .wpcf7-form-control:focus {
  outline: none;
  background-color: #fff;
  border-color: #28625D;
  box-shadow: 0 0 0 3px rgba(40, 98, 93, 0.1);
}
.contact-form textarea,
.contact-form textarea.wpcf7-textarea {
  height: 14rem;
  resize: none;
}
.contact-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.contact-form .btn--submit,
.contact-form .wpcf7-submit {
  background-color: #28625D;
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  padding: 1.6rem 4rem;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(40, 98, 93, 0.15);
}
.contact-form .btn--submit:hover,
.contact-form .wpcf7-submit:hover {
  background-color: #1e4b47;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 98, 93, 0.25);
}
.contact-form .btn--submit:active,
.contact-form .wpcf7-submit:active {
  transform: translateY(0);
}
.contact-form .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  color: #e53e3e;
  margin-top: 0.5rem;
  font-weight: 500;
}
.contact-form .wpcf7-response-output {
  margin: 2rem 0 0 0 !important;
  padding: 1.5rem 2rem !important;
  border-radius: 0.8rem !important;
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  border: 2px solid transparent !important;
}
.contact-form .wpcf7-response-output.wpcf7-validation-errors {
  border-color: #ecc94b !important;
  background-color: #fffaf0 !important;
  color: #b7791f !important;
}
.contact-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #38a169 !important;
  background-color: #f0fff4 !important;
  color: #276749 !important;
}

/* ==========================================================================
   Seção de Depoimentos (Testimonials)
   ========================================================================== */
.testimonials {
  background-color: #f8faf9;
  padding: 10rem 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .testimonials {
    padding: 7rem 0;
  }
}
.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  gap: 3rem;
}
@media (max-width: 767px) {
  .testimonials__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 2.5rem;
  }
}
.testimonials__header-left {
  flex-grow: 1;
}
.testimonials__subtitle {
  display: inline-block;
  color: #4AB978;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.testimonials__title {
  font-size: 3.8rem;
  font-weight: 700;
  color: #28625D;
  line-height: 1.25;
  margin-bottom: 0;
  letter-spacing: -0.015em;
}
.testimonials__title strong {
  color: #28625D;
  font-weight: 800;
}
@media (max-width: 991px) {
  .testimonials__title {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .testimonials__title {
    font-size: 2.4rem;
  }
}
.testimonials__rating {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.testimonials__rating-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimonials__rating-val {
  font-size: 1.8rem;
  font-weight: 700;
  color: #292929;
}
.testimonials__rating-count {
  font-size: 1.4rem;
  color: #95959f;
  font-weight: 500;
}
.testimonials__stars {
  display: flex;
  gap: 0.4rem;
  color: #f6c86a;
  font-size: 1.4rem;
}
.testimonials__nav {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .testimonials__nav {
    align-self: flex-end;
  }
}
.testimonials__nav-btn {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.4rem;
  border: 1px solid rgba(40, 98, 93, 0.08);
  background-color: #fff;
  color: #28625D;
  outline: none;
}
.testimonials__nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.testimonials__nav-btn--next {
  background-color: #28625D;
  color: #fff;
  border-color: #28625D;
}
.testimonials__nav-btn--next:hover {
  background-color: #1e4b47;
  border-color: #1e4b47;
  box-shadow: 0 4px 12px rgba(40, 98, 93, 0.2);
}
.testimonials__nav-btn:active {
  transform: translateY(0);
}
.testimonials__carousel-wrapper {
  margin-bottom: 4rem;
}
.testimonials__carousel-wrapper .owl-stage-outer {
  overflow: hidden;
}
.testimonials__carousel-wrapper .testimonials-carousel .owl-stage {
  display: flex;
  display: -webkit-flex;
}
.testimonials__carousel-wrapper .testimonials-carousel .owl-item {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
}
.testimonials__carousel-wrapper .testimonials-carousel .owl-item .testimonial-card {
  height: 100%;
  flex: 1 0 auto;
}
.testimonials__carousel-wrapper .testimonials-carousel .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 4rem;
}
.testimonials__carousel-wrapper .testimonials-carousel .owl-dots .owl-dot {
  background: none;
  border: none;
  padding: 0;
  outline: none;
}
.testimonials__carousel-wrapper .testimonials-carousel .owl-dots .owl-dot span {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #d1d9d5;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonials__carousel-wrapper .testimonials-carousel .owl-dots .owl-dot.active span {
  width: 2.8rem;
  border-radius: 10rem;
  background-color: #28625D;
}
.testimonials__footer {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.testimonials__google-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: #28625D;
  text-decoration: none;
  transition: all 0.25s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.4rem;
}
.testimonials__google-link i {
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
.testimonials__google-link:hover {
  color: #4AB978;
  border-color: #4AB978;
}
.testimonials__google-link:hover i {
  transform: translate(2px, -2px);
}

.page-404 {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3FC2B1 0%, #215A55 100%);
  padding: 12rem 2rem 8rem;
  position: relative;
  overflow: hidden;
}
.page-404::before, .page-404::after {
  content: "";
  position: absolute;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background-color: rgba(74, 185, 120, 0.15);
  filter: blur(80px);
  z-index: 1;
}
.page-404::before {
  top: 10%;
  left: 10%;
}
.page-404::after {
  bottom: 10%;
  right: 10%;
}
.page-404__container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}
.page-404__card {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2.4rem;
  padding: 6rem 4rem;
  max-width: 64rem;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  color: #fff;
}
@media (max-width: 767px) {
  .page-404__card {
    padding: 4rem 2.5rem;
  }
}
.page-404__number {
  font-size: 10rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #4AB978 0%, #9AEFEB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(74, 185, 120, 0.2));
}
@media (max-width: 767px) {
  .page-404__number {
    font-size: 8rem;
  }
}
.page-404__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .page-404__title {
    font-size: 2.4rem;
  }
}
.page-404__text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.page-404__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .page-404__actions {
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
  }
}
.page-404__btn {
  min-width: 20rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-weight: 600;
  padding: 1.4rem 2.5rem;
}
@media (max-width: 767px) {
  .page-404__btn {
    width: 100%;
    min-width: auto;
  }
}
.page-404__btn i {
  font-size: 1.4rem;
}
.page-404__btn.btn--secondary {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.page-404__btn.btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.thanks-page {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3FC2B1 0%, #215A55 100%);
  padding: 12rem 2rem 8rem;
  position: relative;
  overflow: hidden;
}
.thanks-page::before, .thanks-page::after {
  content: "";
  position: absolute;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background-color: rgba(74, 185, 120, 0.15);
  filter: blur(80px);
  z-index: 1;
}
.thanks-page::before {
  top: 10%;
  left: 10%;
}
.thanks-page::after {
  bottom: 10%;
  right: 10%;
}
.thanks-page__container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}
.thanks-page__card {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2.4rem;
  padding: 6rem 4rem;
  max-width: 64rem;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  color: #fff;
}
@media (max-width: 767px) {
  .thanks-page__card {
    padding: 4rem 2.5rem;
  }
}
.thanks-page__icon-box {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.thanks-page__icon {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: rgba(74, 185, 120, 0.15);
  border: 2px solid #4AB978;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4AB978;
  font-size: 3.6rem;
  box-shadow: 0 0 20px rgba(74, 185, 120, 0.3);
  animation: pulseGlow 2s infinite ease-in-out;
}
.thanks-page__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .thanks-page__title {
    font-size: 2.6rem;
  }
}
.thanks-page__subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  color: #9AEFEB;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .thanks-page__subtitle {
    font-size: 1.6rem;
  }
}
.thanks-page__text {
  font-size: 1.5rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
.thanks-page__actions {
  display: flex;
  justify-content: center;
}
.thanks-page__btn {
  min-width: 26rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 600;
  padding: 1.4rem 3rem;
}
@media (max-width: 767px) {
  .thanks-page__btn {
    width: 100%;
    min-width: auto;
  }
}
.thanks-page__btn i {
  font-size: 1.4rem;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(74, 185, 120, 0.3);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 30px rgba(74, 185, 120, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(74, 185, 120, 0.3);
  }
}
.page-default {
  background-color: #f8faf9;
  min-height: 60vh;
}
.page-default__header {
  background: linear-gradient(135deg, #3FC2B1 0%, #215A55 100%);
  padding: 20rem 0 8rem;
  text-align: center;
  color: #fff;
  position: relative;
}
@media (max-width: 991px) {
  .page-default__header {
    padding: 15rem 0 6rem;
  }
}
.page-default__title {
  font-size: 3.6rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .page-default__title {
    font-size: 2.8rem;
  }
}
.page-default__container {
  padding: 8rem 0;
}
@media (max-width: 991px) {
  .page-default__container {
    padding: 5rem 0;
  }
}
.page-default__content {
  background-color: #fff;
  border-radius: 2rem;
  padding: 5rem 6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(40, 98, 93, 0.05);
  color: #4a4a4a;
  font-size: 1.55rem;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .page-default__content {
    padding: 3.5rem 2.5rem;
    font-size: 1.45rem;
  }
}
.page-default__content p {
  margin-bottom: 2rem;
}
.page-default__content p:last-child {
  margin-bottom: 0;
}
.page-default__content h1, .page-default__content h2, .page-default__content h3, .page-default__content h4, .page-default__content h5, .page-default__content h6 {
  color: #28625D;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 4rem;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.page-default__content h1:first-child, .page-default__content h2:first-child, .page-default__content h3:first-child, .page-default__content h4:first-child, .page-default__content h5:first-child, .page-default__content h6:first-child {
  margin-top: 0;
}
.page-default__content h1 {
  font-size: 2.8rem;
}
@media (max-width: 767px) {
  .page-default__content h1 {
    font-size: 2.4rem;
  }
}
.page-default__content h2 {
  font-size: 2.2rem;
  border-bottom: 1px solid rgba(40, 98, 93, 0.1);
  padding-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .page-default__content h2 {
    font-size: 1.9rem;
  }
}
.page-default__content h3 {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .page-default__content h3 {
    font-size: 1.65rem;
  }
}
.page-default__content strong, .page-default__content b {
  color: #28625D;
  font-weight: 700;
}
.page-default__content ul, .page-default__content ol {
  margin-bottom: 2.5rem;
  padding-left: 2.5rem;
}
.page-default__content ul li, .page-default__content ol li {
  margin-bottom: 1rem;
}
.page-default__content ul li:last-child, .page-default__content ol li:last-child {
  margin-bottom: 0;
}
.page-default__content ul {
  list-style-type: none;
}
.page-default__content ul li {
  position: relative;
  padding-left: 2rem;
}
.page-default__content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4AB978;
  font-size: 1.8rem;
  line-height: 1;
  top: 0.1rem;
}
.page-default__content ol {
  list-style-type: decimal;
}
.page-default__content a {
  color: #4AB978;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(74, 185, 120, 0.4);
  transition: all 0.2s ease;
}
.page-default__content a:hover {
  color: #3ea46a;
  border-bottom-style: solid;
  border-bottom-color: #3ea46a;
}
.page-default__content blockquote {
  margin: 3rem 0;
  padding: 2rem 3rem;
  background-color: rgba(63, 194, 177, 0.05);
  border-left: 4px solid #3FC2B1;
  border-radius: 0 1.2rem 1.2rem 0;
  font-style: italic;
  color: #3b605c;
}
.page-default__content blockquote p {
  margin-bottom: 0;
}

.container,
.row {
  --bs-gutter-x: 3.6rem !important;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0 !important;
}

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