@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
:root {
  --font-scale: 1;
  --font-scale-mobile: 0.85;
}

html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}

html.resize {
  width: 100%;
  height: 100%;
}
html.resize body {
  width: 100%;
  height: 100%;
  font-weight: 400;
}
html.resize body main {
  width: 100%;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  font-family: "Inter", "Open Sans", sans-serif;
  line-height: 1.5;
  color: #2F2F2F;
  background-color: #F3F3F3;
}
body div#lightbox {
  position: fixed !important;
  top: 10px !important;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body.compensar {
  margin-top: 140px;
}

input,
textarea,
select,
button {
  border: none;
}
input:focus,
textarea:focus,
select:focus,
button:focus {
  outline-color: transparent;
}

textarea {
  resize: none;
}

.container {
  max-width: 1350px;
}
.container.min {
  max-width: 1155px;
}
.container.big {
  max-width: 1580px;
}
@media (max-width: 61.9375em) {
  .container.tablet {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    max-width: 600px;
    margin-inline: auto;
  }
}

@media (min-width: 991px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none !important;
  }
}

.has-error {
  border-color: red !important;
}

/*  Validação   */
.ng-invalid.ng-touched,
.campo-invalido {
  border-color: #dc3545 !important;
}

/*
*Tokens de tamahos
*cada tamanho equivale a 4px a partir do ($size-2),8px a partir de ($size-9),
*/
/*Definições e Tokens de (tamanhos | altura | largura) 
das tipografias e outros padroes
*/
p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 400;
}

a {
  text-decoration: none;
  cursor: pointer;
  display: block;
}
a:hover, a:focus, a:active, a:focus {
  text-decoration: none;
}

ul.no-list-style {
  list-style: none;
  padding: 0;
  margin: 0;
}

hr {
  margin: 0;
}

strong {
  font-weight: 700;
}

.a-pulse {
  animation: heartbeat 1.5s ease-in-out infinite both;
}
@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}

.a-jello-horizontal {
  animation: jello-horizontal 2.9s infinite;
}
@keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

.a-slider-fwd-center {
  display: block;
  animation: slide-fwd-center 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
@keyframes slide-fwd-center {
  0% {
    transform: translateZ(0);
  }
  100% {
    transform: translateZ(160px);
  }
}

.a-rotate-360 {
  display: block;
  animation: rotate-center 4.6s ease-in-out infinite;
}
@keyframes rotate-center {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn-email,
.btn-whatsapp,
.btn-telephone {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  transition: 0.5s linear;
}
.btn-email h5,
.btn-whatsapp h5,
.btn-telephone h5 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
}
.btn-email h5 strong,
.btn-whatsapp h5 strong,
.btn-telephone h5 strong {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 400;
}
.btn-email.type-2,
.btn-whatsapp.type-2,
.btn-telephone.type-2 {
  padding: 0.75rem 1.5rem 0.75rem 2.5rem;
  border-radius: 5px;
  position: relative;
  background-color: #16aba7;
  transition: background 0.5s linear;
}
.btn-email.type-2 h5,
.btn-whatsapp.type-2 h5,
.btn-telephone.type-2 h5 {
  color: #ffffff;
  font-size: 20px;
}
.btn-email.type-2 h5 strong,
.btn-whatsapp.type-2 h5 strong,
.btn-telephone.type-2 h5 strong {
  display: none;
}
.btn-email.type-2:hover,
.btn-whatsapp.type-2:hover,
.btn-telephone.type-2:hover {
  background-color: #002315;
}
.btn-email.type-3,
.btn-whatsapp.type-3,
.btn-telephone.type-3 {
  padding: 0.25rem 2.25rem 0.25rem 1.25rem;
  background: linear-gradient(90.82deg, #ffffff 16.9%, rgba(255, 255, 255, 0) 77.19%);
  border-radius: 5px;
  position: relative;
}
.btn-email.type-3 h5,
.btn-whatsapp.type-3 h5,
.btn-telephone.type-3 h5 {
  color: #1e1e1e;
  font-size: 1rem;
}
.btn-email.type-3 h5 strong,
.btn-whatsapp.type-3 h5 strong,
.btn-telephone.type-3 h5 strong {
  font-size: 1.125rem;
  display: block;
  color: #16aba7;
}
.btn-email.type-3:before, .btn-email.type-3:after,
.btn-whatsapp.type-3:before,
.btn-whatsapp.type-3:after,
.btn-telephone.type-3:before,
.btn-telephone.type-3:after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(269.42deg, #d8d8d8 -12.3%, rgba(216, 216, 216, 0) 99.42%);
  z-index: -1;
}
@media (max-width: 61.9375em) {
  .btn-email.type-3,
  .btn-whatsapp.type-3,
  .btn-telephone.type-3 {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    text-align: start;
  }
}
.btn-email.type-3:hover,
.btn-whatsapp.type-3:hover,
.btn-telephone.type-3:hover {
  background: #16aba7;
}
.btn-email.type-3:hover img,
.btn-whatsapp.type-3:hover img,
.btn-telephone.type-3:hover img {
  filter: grayscale(1) brightness(100);
}
.btn-email.type-3:hover h5,
.btn-whatsapp.type-3:hover h5,
.btn-telephone.type-3:hover h5 {
  color: #ffffff;
}
.btn-email.type-3:hover h5 strong,
.btn-whatsapp.type-3:hover h5 strong,
.btn-telephone.type-3:hover h5 strong {
  color: #ffffff;
}
.btn-email.type-4,
.btn-whatsapp.type-4,
.btn-telephone.type-4 {
  padding: 0.25rem 2.25rem 0.25rem 1.25rem;
  border-radius: 5px;
  position: relative;
}
.btn-email.type-4 h5,
.btn-whatsapp.type-4 h5,
.btn-telephone.type-4 h5 {
  color: #ffffff;
  font-size: 1rem;
}
.btn-email.type-4 h5 strong,
.btn-whatsapp.type-4 h5 strong,
.btn-telephone.type-4 h5 strong {
  font-size: 1.125rem;
  display: block;
  color: #ffffff;
  font-weight: 700;
}
@media (max-width: 61.9375em) {
  .btn-email.type-4,
  .btn-whatsapp.type-4,
  .btn-telephone.type-4 {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    text-align: start;
  }
}
@media (max-width: 61.9375em) {
  .btn-email,
  .btn-whatsapp,
  .btn-telephone {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    text-align: start;
  }
  .btn-email h5,
  .btn-whatsapp h5,
  .btn-telephone h5 {
    font-size: 14px;
  }
  .btn-email h5 strong,
  .btn-whatsapp h5 strong,
  .btn-telephone h5 strong {
    font-size: 1rem;
    display: block;
  }
}

.btn-whatsapp-2,
.btn-telephone-2 {
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 0.75rem;
  border: 2px solid #16aba7;
  border-radius: 5px;
  transition: all 0.5s linear;
}
.btn-whatsapp-2 h5,
.btn-telephone-2 h5 {
  color: #f29100;
  font-size: 1rem;
  font-weight: 700;
}
.btn-whatsapp-2 h5 strong,
.btn-telephone-2 h5 strong {
  color: #16aba7;
  display: block;
  font-weight: 400;
}
.btn-whatsapp-2:hover,
.btn-telephone-2:hover {
  background-color: #16aba7;
}
.btn-whatsapp-2:hover img,
.btn-telephone-2:hover img {
  filter: grayscale(1) brightness(100);
}
.btn-whatsapp-2:hover h5,
.btn-whatsapp-2:hover strong,
.btn-telephone-2:hover h5,
.btn-telephone-2:hover strong {
  color: #ffffff;
}

.btn-whatsappContact {
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #9dbf54;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2509803922) inset;
  border-radius: 15px;
  padding: 1rem 1.5rem;
  transition: all 1.5s;
}
.btn-whatsappContact__title {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.125rem;
}
.btn-whatsappContact:has(i, img) {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.btn-whatsappContact:hover {
  box-shadow: none;
}
@media (max-width: 61.9375em) {
  .btn-whatsappContact {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    height: 2.5rem;
    border-radius: 10px;
    padding: 1rem 1rem;
  }
  .btn-whatsappContact__title {
    font-size: 1rem;
  }
  .btn-whatsappContact:has(i, img) {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
}

.btn-whatsappIcon {
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00ff86;
  border-radius: 5px;
  padding: 1rem 1.5rem;
  transition: all 1.5s;
}
.btn-whatsappIcon:hover {
  box-shadow: none;
}
@media (max-width: 61.9375em) {
  .btn-whatsappIcon {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    height: 2.5rem;
    border-radius: 10px;
    padding: 1rem 1rem;
  }
}

.btn-primary {
  max-width: -moz-fit-content;
  max-width: fit-content;
  background: linear-gradient(0deg, #25b102 0%, #25b102 100%);
  border-radius: 5px;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.btn-primary .title,
.btn-primary i {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
}
.btn-primary:has(i, img) {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.btn-primary:hover {
  background-color: #16aba7;
}
.btn-primary:hover .title {
  color: #ffffff;
}
@media (max-width: 61.9375em) {
  .btn-primary {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    padding: 0 1.5rem;
  }
  .btn-primary .title,
  .btn-primary i {
    font-size: 1rem;
  }
}

.btn-secondary {
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 5px;
  background: linear-gradient(0deg, #b11002 0%, #b11002 100%);
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0.75rem 2rem;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  position: relative;
  background-blend-mode: lighten, normal;
  position: relative;
  position: relative;
}
.btn-secondary .title,
.btn-secondary i {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
}
.btn-secondary picture {
  display: grid;
  place-content: center;
  height: 100%;
  width: 50px;
  border-radius: inherit;
  padding-inline: 0.5rem;
  transition: 0.5s ease;
  position: relative;
}
.btn-secondary picture::before {
  content: "";
  position: absolute;
  top: none;
  bottom: none;
  left: none;
  right: none;
  width: 100%;
  height: 100%;
  background: rgba(101, 101, 101, 0.5);
  mix-blend-mode: multiply;
  border-radius: inherit;
}
.btn-secondary picture img {
  position: relative;
}
.btn-secondary i {
  font-size: 1.25rem;
}
.btn-secondary img {
  transition: 0.5s linear;
}
.btn-secondary:has(i, img) {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  top: none;
  bottom: 0;
  left: 0;
  right: none;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(0deg, #ffe600 -21.28%, rgba(255, 214, 0, 0) 63.83%);
  transition: all 0.3s;
  opacity: 0;
}
.btn-secondary::after {
  content: "";
  position: absolute;
  top: none;
  bottom: 0;
  left: 0;
  right: none;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(102.84deg, #ffe600 0.54%, rgba(255, 214, 0, 0) 49.46%);
  transition: all 1s;
  opacity: 0;
}
.btn-secondary.whatsapp {
  background: linear-gradient(94.69deg, rgba(255, 255, 255, 0.2) 7.61%, rgba(255, 255, 255, 0) 40.42%), #007243;
  padding-left: 0;
  padding-right: 1rem;
}
.btn-secondary.whatsapp picture {
  order: 1;
}
.btn-secondary.whatsapp .title {
  order: 2;
}
.btn-secondary.whatsapp:before {
  background: linear-gradient(0deg, #ff4d00 -21.28%, rgba(255, 214, 0, 0) 63.83%, rgba(255, 77, 0, 0) 63.83%);
}
.btn-secondary.whatsapp:after {
  background: linear-gradient(102.84deg, #ff4d00 0.54%, rgba(255, 77, 0, 0) 49.46%);
}
.btn-secondary.whatsapp:hover {
  background: linear-gradient(94.69deg, rgba(255, 255, 255, 0.2) 7.61%, rgba(255, 255, 255, 0) 40.42%), #007243;
  box-shadow: 0px 4px 10px rgba(0, 251, 131, 0.63);
}
.btn-secondary.whatsapp:hover picture {
  background: #00ff86;
}
@media (max-width: 61.9375em) {
  .btn-secondary {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    text-align: start;
  }
  .btn-secondary .title,
  .btn-secondary i {
    font-size: 1rem;
  }
}

.btn-primary-icon {
  border-radius: 50px;
  background: linear-gradient(0deg, #007c75 0%, #007c75 100%);
}

.btn-link {
  background-color: #ff7742;
  border-radius: 5px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}
.btn-link__title,
.btn-link i {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
}
.btn-link:has(i, img) {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.btn-link:hover {
  background-color: #c95c32;
}
@media (max-width: 61.9375em) {
  .btn-link {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    padding: 0.75rem 1.25rem;
  }
  .btn-link__title {
    font-size: 1rem;
  }
  .btn-link img {
    width: 16px;
  }
}

.btn-linkIcon .icon {
  transition: 0.5s linear;
}
.btn-linkIcon:hover .icon {
  transform: translateY(-8px);
  filter: invert(52%) sepia(84%) saturate(1714%) hue-rotate(9deg) brightness(103%) contrast(104%);
}

.btn-error {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}
.btn-error::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  bottom: none;
  left: none;
  right: -0.25rem;
  width: 1rem;
  height: 1rem;
  background-color: #cc2937;
  border-radius: 9999px;
  animation: warning 2500ms ease-in-out infinite alternate;
  opacity: 0;
}
@keyframes warning {
  from {
    opacity: 1;
  }
}

.whatsapp-modal {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 5rem;
  right: 1.25rem;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  text-decoration: none;
  border-radius: 9999px;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-play-state: paused;
  z-index: 999;
  transition: 0.5s linear;
}
.whatsapp-modal i {
  color: #ffffff;
}
.whatsapp-modal::before {
  content: "";
  position: absolute;
  border-radius: 9999px;
  padding: 1.5rem;
  border: 5px solid #00ff86;
  opacity: 75%;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.whatsapp-modal:hover {
  background: #06291d;
}
@media (max-width: 61.9375em) {
  .whatsapp-modal {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    bottom: 3.75rem;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
@keyframes pulse-border {
  0% {
    padding: 1.5rem;
    opacity: 75%;
  }
  75% {
    padding: 2.75rem;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.input {
  width: 100%;
}
.input label {
  display: block;
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.input input,
.input textarea,
.input select {
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 0.75rem 1rem;
}
.input .select {
  position: relative;
}
.input .select select {
  -webkit-appearance: none;
}
.input .select::before {
  content: "\f078";
  position: absolute;
  top: 50%;
  bottom: none;
  left: none;
  right: 1.25rem;
  color: #f29100;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 700;
  line-height: 0;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 61.9375em) {
  .input {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
  }
  .input label {
    text-align: start;
  }
  .input input,
  .input textarea,
  .input select {
    padding: 0.5rem 1rem;
  }
  .input input::-moz-placeholder, .input textarea::-moz-placeholder, .input select::-moz-placeholder {
    font-size: 0.8rem;
  }
  .input input::placeholder,
  .input textarea::placeholder,
  .input select::placeholder {
    font-size: 0.8rem;
  }
}

.btn-input {
  width: 100%;
  height: 48px;
  background-color: #05ed7e;
  border-radius: 5px;
  padding-inline: 0.5rem;
  transition: 0.5s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.btn-input .title {
  color: #16aba7;
}
.btn-input:hover {
  background-color: #16aba7;
}
.btn-input:hover .title {
  color: #ffffff;
}
.btn-input:hover img {
  filter: grayscale(1) brightness(100);
}
@media (max-width: 61.9375em) {
  .btn-input {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    height: 40px;
  }
  .btn-input .title {
    font-size: 1rem;
  }
}

.form-contact {
  width: 100%;
  background-color: #16aba7;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 1.25rem;
}
.form-contact .logo {
  width: 138px;
}
.form-contact h2 {
  text-align: center;
  color: #ffffff;
  font-size: 25px;
  font-weight: 900;
}
.form-contact h3 {
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}
.form-contact .inputs {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.form-contact .inputs .checkboxs {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  margin-top: 1rem;
}
.form-contact .inputs .btn-primary {
  max-width: 100%;
  margin-top: 1rem;
  height: 50px;
}
@media (max-width: 61.9375em) {
  .form-contact .inputs .btn-primary {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    height: auto;
  }
}

section.banner .banner-slider .owl-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.banner .banner-slider .owl-nav .owl-prev:hover img,
section.banner .banner-slider .owl-nav .owl-next:hover img {
  filter: none;
}
section.banner .banner-slider .owl-nav .owl-prev:hover img {
  transform: translateX(-10px);
}
section.banner .banner-slider .owl-nav .owl-next:hover img {
  transform: translateX(10px);
}
section.banner .banner-slider .owl-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2.5rem;
}
section.banner .banner-slider .owl-dots .owl-dot {
  width: 93px;
  height: 5px;
}
section.banner .banner-slider .owl-dots .owl-dot:hover, section.banner .banner-slider .owl-dots .owl-dot.active {
  background-color: #f29100;
}
section.banner .owl-carousel .owl-item {
  position: relative;
  transform: translateY(0);
  transition: transform 0.5s ease-in-out;
}
section.banner .owl-carousel .owl-item.active {
  animation: zoomin 1.5s ease-in-out;
}
@keyframes zoomin {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
section.banner .item-banner {
  width: 100%;
  height: 736px;
  position: relative;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}
section.banner .item-banner video {
  display: block;
  width: 100%;
  height: 736px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
section.banner .item-banner .content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
section.banner .item-banner .content .texts {
  max-width: 670px;
}
section.banner .item-banner .content .texts h1 {
  color: #ffffff;
  line-height: 160%;
}
section.banner .item-banner .content .texts h1 u {
  background: linear-gradient(209.88deg, #048c3f 19.16%, #03a64a 77.64%);
  box-shadow: 0px 0px 15px #016644;
  border-radius: 5px;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  margin-inline: 0.5rem;
  transition: all 0.5s linear;
}
section.banner .item-banner .content .texts h1 u:hover {
  background: #f29100;
  box-shadow: 0px 0px 15px #f29100;
}
section.banner .item-banner .content .btn-primary {
  padding: 0.75rem;
}
section.banner .item-banner .content .btn-primary .title {
  font-size: 1.125rem;
}
section.banner .item-banner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: none;
  left: 0;
  right: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 61.9375em) {
  section.banner {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
  }
  section.banner .banner-slider .owl-nav {
    display: none;
  }
  section.banner .banner-slider .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2.5rem;
  }
  section.banner .banner-slider .owl-dots .owl-dot {
    width: 30px;
    height: 5px;
  }
  section.banner .banner-slider .owl-dots .owl-dot:hover, section.banner .banner-slider .owl-dots .owl-dot.active {
    background-color: #f29100;
  }
  section.banner .item-banner {
    width: 100%;
    height: 356px;
    position: relative;
    display: flex;
    align-items: center;
  }
  section.banner .item-banner video {
    display: block;
    width: 100%;
    height: 356px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    position: absolute;
    top: 0;
    left: 0;
  }
  section.banner .item-banner .content {
    align-items: center;
    justify-content: center;
    row-gap: 1rem;
  }
  section.banner .item-banner .content .texts h1 {
    font-size: 25px;
    line-height: 120%;
  }
  section.banner .item-banner .content .texts h1 u {
    padding: 1px 0.25rem;
    margin-inline: 0.5rem;
    display: inline-block;
    margin-top: 0.5rem;
  }
  section.banner .item-banner .content .btn-primary {
    padding: 0.5rem;
  }
  section.banner .item-banner .content .btn-primary .title {
    font-size: 1rem;
  }
}

.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}
.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto 0;
}
.owl-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: #8b8b8b;
}
.owl-carousel .owl-dots .owl-dot:hover, .owl-carousel .owl-dots .owl-dot.active {
  background-color: #16aba7;
  width: 25px;
}
.owl-carousel .owl-nav {
  pointer-events: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  pointer-events: all;
}
.owl-carousel .owl-nav .owl-prev img,
.owl-carousel .owl-nav .owl-next img {
  transition: 0.3s linear;
}
.owl-carousel .owl-nav .owl-prev:hover img,
.owl-carousel .owl-nav .owl-next:hover img {
  filter: invert(75%) sepia(77%) saturate(4795%) hue-rotate(8deg) brightness(101%) contrast(105%);
}

.contact-card {
  width: 100%;
  max-width: 706px;
  background-color: rebeccapurple;
  border-radius: 1.25rem;
  padding: 2rem 102px;
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
}
.contact-card--text {
  max-width: 476px;
  margin-inline: auto;
}
.contact-card--text h1 {
  font-size: 1.625rem;
}
.contact-card--text p {
  font-size: 1.125rem;
  font-weight: 300;
}
.contact-card--numbers {
  display: flex;
  justify-content: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 61.9375em) {
  .contact-card {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    padding: 1.5rem 0.75rem;
    max-width: 368px;
    position: relative;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-card--text h1 {
    font-weight: 700;
    font-size: 1rem;
  }
  .contact-card--text p {
    font-size: 1rem;
    line-height: 120%;
  }
  .contact-card--numbers {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
    margin-top: 0.5rem;
  }
}

.video-modal {
  width: 600px;
  height: 460px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background-color: #1e1e1e;
  position: relative;
}
.video-modal .video-play {
  width: 96px;
  height: 96px;
  background-color: #ff7c1e;
  border-radius: 15px;
  box-shadow: 0px 10px 25px rgba(255, 124, 30, 0.63);
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-modal .video-play img {
  transition: all 0.5s linear;
}
.video-modal:hover .video-play {
  background-color: #16aba7;
  box-shadow: 0px 10px 25px rgba(2, 79, 47, 0.63);
}
.video-modal:hover .video-play img {
  transform: scale(1.1);
}
.video-modal::before {
  content: "";
  position: absolute;
  top: none;
  bottom: none;
  left: none;
  right: none;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: inherit;
}
@media (max-width: 61.9375em) {
  .video-modal {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    width: 100%;
    height: 320px;
    border-radius: 10px;
  }
  .video-modal--play {
    width: 76px;
    height: 76px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(255, 124, 30, 0.63);
  }
  .video-modal--play img {
    transition: all 0.5s linear;
    width: 46px;
  }
}

nav.navegation {
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}
nav.navegation form {
  position: relative;
  width: 100%;
  flex: 1;
}
nav.navegation form input {
  background-color: #fafafa;
  padding: 10px 20px;
  width: 100%;
  border: 1px solid lightgray;
  padding-right: 50px;
  outline: none;
}
nav.navegation form button {
  position: absolute;
  right: 20px;
  top: 10px;
  background: transparent;
  border: none;
  padding: 0;
}
nav.navegation .logo {
  margin-top: -6rem;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  position: relative;
  z-index: 5;
}
nav.navegation ul {
  list-style: none;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 0;
  padding-left: 0;
}
nav.navegation ul li {
  background-image: linear-gradient(to bottom, transparent 0%, transparent 90%, #f29100 90%, #f29100 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position-x: right;
  transition: background-size 300ms ease-in;
}
nav.navegation ul li a {
  color: #16aba7;
  transition: 0.5s linear;
}
nav.navegation ul li:hover, nav.navegation ul li.active {
  background-size: 100% 100%;
  background-position-x: left;
}
nav.navegation ul li:hover a, nav.navegation ul li.active a {
  color: #ff7c1e;
}
@media (max-width: 61.9375em) {
  nav.navegation {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    display: none !important;
  }
}

.lente-whatsapp {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 800;
  transition: 0.3s all;
  opacity: 0;
  pointer-events: none;
}
.lente-whatsapp.exibir {
  opacity: 1;
  pointer-events: all;
}

section.modal-whatsapp {
  position: fixed;
  right: 17px;
  bottom: 30px;
  background-image: url("../../default/image/bg-whatsapp-min.jpg");
  width: 100%;
  height: 100%;
  box-shadow: 2px 2px 7px 0px #373737;
  max-width: 320px;
  max-height: 360px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 9999;
  transform-origin: 100% 100%;
  transform: scale(0);
  transition: all 0.3s linear;
}
section.modal-whatsapp.exibir {
  transform: scale(1);
}
section.modal-whatsapp.scroll {
  bottom: 100px;
}
@media screen and (max-width: 991px) {
  section.modal-whatsapp {
    right: 0px;
    top: 0px;
    bottom: unset !important;
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    border-radius: 0px;
  }
}
section.modal-whatsapp .cabecario-zap {
  background-color: #2e8c7d;
  font-size: 17px;
  color: #97c5be;
  padding: 12px 20px 4px 20px;
}
section.modal-whatsapp .cabecario-zap span.zaptitulo {
  transform: translateY(-4px);
  display: inline-block;
}
section.modal-whatsapp .cabecario-zap i.fab.fa-whatsapp {
  font-size: 25px;
  margin-right: 10px;
}
section.modal-whatsapp .cabecario-zap i.far.fa-times-circle {
  font-size: 25px;
  float: right;
  margin-right: 0px;
  cursor: pointer;
}
section.modal-whatsapp .msg-bot {
  font-family: "Open Sans", sans-serif;
  background-color: white;
  margin: 15px;
  padding: 15px;
  border-radius: 20px;
  font-size: 13.4px;
  position: relative;
}
section.modal-whatsapp .msg-bot::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 15px solid transparent;
  border-top: 21px solid white;
  position: absolute;
  top: 0px;
  left: -10px;
  z-index: -1;
}
section.modal-whatsapp .msg-bot :first-child {
  margin-top: 7px;
}
section.modal-whatsapp .msg-bot label {
  font-weight: 700;
  font-size: 12px;
  color: black;
  display: block;
}
section.modal-whatsapp .msg-bot input {
  height: auto;
  font-size: 14px;
  margin-bottom: 5px;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-bottom: 1px solid #cacaca;
  outline: none;
  width: 100%;
}
section.modal-whatsapp .campo-acao {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  padding: 0px 10px;
  height: 44px;
}
@media (max-width: 991px) {
  section.modal-whatsapp .campo-acao {
    position: static;
  }
}
section.modal-whatsapp .campo-acao .texto {
  width: 100%;
  padding-right: 10px;
  font-family: "Open Sans", sans-serif;
}
section.modal-whatsapp .campo-acao .texto input {
  border: none;
  border-radius: 32px;
  padding: 9px 18px;
  display: flex;
  outline-color: transparent;
  width: 100%;
  outline: none !important;
  font-size: 14px;
}
section.modal-whatsapp .campo-acao .button-zap {
  background-color: transparent;
}
section.modal-whatsapp .campo-acao .button-zap button {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #2e8c7d;
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
section.modal-whatsapp .campo-acao .button-zap button:disabled {
  background-color: #a7a7a7;
  cursor: not-allowed;
}
section.modal-whatsapp .campo-acao .button-zap button i.fas.fa-paper-plane {
  font-size: 19px;
  transform: rotate(49deg) translate(-2px, 0px);
  position: relative;
  transform-origin: center;
}
section.modal-whatsapp .hide-desktop {
  display: none;
}
@media (max-width: 991px) {
  section.modal-whatsapp .campo-acao {
    display: none;
  }
  section.modal-whatsapp .acao-mobile {
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #2e8c7d;
    color: white;
    border-radius: 9px;
    text-align: center;
    width: calc(100% - 40px);
    display: block;
    padding: 7px 15px;
    margin: 0 20px;
  }
  section.modal-whatsapp .acao-mobile:disabled {
    background-color: #a7a7a7;
    cursor: not-allowed;
  }
  section.modal-whatsapp .acao-mobile i {
    margin-right: 5px;
  }
  section.modal-whatsapp .hide-desktop {
    display: block;
  }
}

.modal-backdrop.show {
  opacity: 0.8;
  width: 100% !important;
  height: 100% !important;
}

.modal-lg {
  max-width: 600px;
}

.modal-lg-produto {
  max-width: 1200px;
}

.modal-content {
  background: #d9d9d9;
  border-radius: 15px;
}
.modal-content .closebtn {
  width: 112px;
  height: 46px;
  display: grid;
  place-items: center;
  background-color: #16aba7;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  position: absolute;
  right: 1.5rem;
  text-shadow: none;
  top: -20px;
  z-index: 2;
  text-transform: uppercase;
  transition: all 0.5s linear;
}
@media (max-width: 61.9375em) {
  .modal-content .closebtn {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    font-size: 13px;
    top: -1.5rem;
    right: 10px;
    height: 42px;
  }
}
.modal-content .modal-body {
  padding: 0 4.5rem 3rem;
  border-radius: 15px;
  overflow: hidden;
}
.modal-content .modal-body.video {
  border-radius: 0;
  min-height: 650px;
  padding: 0;
}
@media (max-width: 61.9375em) {
  .modal-content .modal-body.video {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    min-height: 360px;
  }
}
.modal-content .modal-body iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}
.modal-content .modal-body .title {
  color: #1e1e1e;
  text-align: center;
}
.modal-content .modal-body .title div {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.modal-content .modal-body .title div h2 {
  color: #16aba7;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.modal-content .modal-body .title p {
  font-size: 1.25rem;
  line-height: 120%;
  font-weight: 500;
}
.modal-content .modal-body form {
  display: flex;
  flex-direction: column;
}
.modal-content .modal-body form textarea::-moz-placeholder {
  color: #c0c0c0;
}
.modal-content .modal-body form textarea::placeholder {
  color: #c0c0c0;
}
.modal-content .modal-body form .btn-modal {
  width: 100%;
  height: 56px;
  background-color: #16aba7;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.modal-content .modal-body form .btn-modal i {
  font-size: 1.25rem;
  color: #ffffff;
}
.modal-content .modal-body form .btn-modal .title {
  color: #ffffff;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 600;
}
.modal-content .modal-body form .btn-modal:hover {
  background-color: rgb(13.2797927461, 103.2202072539, 100.8056994819);
}
@media (max-width: 61.9375em) {
  .modal-content .modal-body {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    padding: 1.25rem 0.75rem;
    text-align: left;
  }
  .modal-content .modal-body form {
    row-gap: 0.75rem;
  }
  .modal-content .modal-body form .btn-modal {
    height: 48px;
  }
  .modal-content .modal-body form .btn-modal .title {
    font-size: 1rem;
  }
  .modal-content .modal-body form input,
  .modal-content .modal-body form textarea {
    font-size: 14px;
  }
  .modal-content .modal-body .title div {
    row-gap: 0.75rem;
  }
  .modal-content .modal-body .title div h2 {
    font-size: 1.25rem;
  }
  .modal-content .modal-body .title p {
    font-size: 1.125rem;
  }
}
.modal-content.budget .closebtn {
  background-color: #cc2937;
}
.modal-content.budget .closebtn:hover {
  background-color: #2d090c;
}
.modal-content.budget .modal-body {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
.modal-content.budget .modal-body .title div span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  background-color: #cc2937;
  border-radius: 9999px;
  margin-inline: auto;
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
}
.modal-content.budget .modal-body .title div h2 {
  color: #cc2937;
}
.modal-content.budget .modal-body form .btn-modal {
  background-color: #cc2937;
}
.modal-content.budget .modal-body form .btn-modal:hover {
  background-color: rgb(140.3020408163, 28.1979591837, 37.8265306122);
}

.custom-budget-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  padding: 32px 24px 24px 24px;
  position: relative;
}
.custom-budget-modal .closebtn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #d32f2f;
  cursor: pointer;
  z-index: 2;
}
.custom-budget-modal .orcamento-title {
  color: #009688;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: left;
}
.custom-budget-modal .orcamento-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
  text-align: left;
}
.custom-budget-modal .orcamento-desc {
  font-size: 1rem;
  color: #222;
  margin-bottom: 24px;
  text-align: left;
}
@media (max-width: 61.9375em) {
  .custom-budget-modal {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    padding: 20px 16px 16px 16px;
    border-radius: 16px;
    margin: 5px;
  }
  .custom-budget-modal .orcamento-title {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
  .custom-budget-modal .orcamento-subtitle {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  .custom-budget-modal .orcamento-desc {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  .custom-budget-modal .orcamento-form {
    padding: 16px 12px;
    border-radius: 8px;
  }
  .custom-budget-modal .orcamento-form__title {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }
  .custom-budget-modal .orcamento-form__group {
    margin-bottom: 10px;
  }
  .custom-budget-modal .orcamento-form__group label {
    font-size: 0.88rem;
    margin-bottom: 3px;
  }
  .custom-budget-modal .orcamento-form__group input,
  .custom-budget-modal .orcamento-form__group textarea {
    padding: 8px 10px;
    font-size: 0.9rem;
    border-radius: 4px;
  }
  .custom-budget-modal .orcamento-form__group textarea {
    min-height: 50px;
  }
  .custom-budget-modal .orcamento-form__btn {
    padding: 10px 0;
    font-size: 0.95rem;
    border-radius: 4px;
  }
}

.modalProduto .closeButton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  cursor: pointer;
}
.modalProduto .boxProduto {
  background-image: url("../image/backgrounds/bg-modal.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px;
  position: relative;
  max-width: 1200px;
  width: 100%;
  border-radius: 10px;
}
.modalProduto svg[data-bs-dismiss=modal] {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease;
}
.modalProduto svg[data-bs-dismiss=modal]:hover {
  transform: scale(1.1);
}
.modalProduto .imagens {
  border: 1px solid #007c75;
  padding: 1.25rem;
  margin-bottom: 10px;
  height: auto;
  width: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.modalProduto .imgprincipal {
  height: 230px;
  width: 100%;
  margin-bottom: 10px;
}
.modalProduto .imgprincipal img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
}
.modalProduto .owl-produto-galeria {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 5px 0;
}
.modalProduto .owl-produto-galeria .boxGaleria {
  height: 90px;
  width: 90px;
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.modalProduto .owl-produto-galeria .boxGaleria:hover {
  border-color: #007c75;
}
.modalProduto .owl-produto-galeria .boxGaleria img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.modalProduto .owl-produto-galeria .boxGaleria img:hover {
  transform: scale(1.05);
}
.modalProduto h2.titulo {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #124175;
  line-height: 1.2;
}
.modalProduto .txt1 {
  color: #434b4a;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  text-align: justify;
}
.modalProduto .acoes {
  margin-top: 30px;
  gap: 16px;
  display: flex;
}
.modalProduto .acoes.apenasMobile {
  display: none;
}
.modalProduto .acoes a,
.modalProduto .acoes button {
  font-size: 15px;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
}
.modalProduto .acoes a.blue,
.modalProduto .acoes button.blue {
  background: linear-gradient(0deg, #007c75 0%, rgb(0, 98.5, 92.939516129) 100%);
}
.modalProduto .acoes a.blue:hover,
.modalProduto .acoes button.blue:hover {
  background: linear-gradient(0deg, rgb(0, 73, 68.8790322581) 0%, rgb(0, 47.5, 44.8185483871) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 124, 117, 0.3);
}
.modalProduto .acoes a:hover,
.modalProduto .acoes button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.modalProduto .contatoProdutos {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  height: 100%;
  align-items: center;
}
.modalProduto .contatoProdutos a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.modalProduto .contatoProdutos a:hover {
  transform: scale(1.1);
}
.modalProduto .contatoProdutos svg {
  transition: filter 0.3s ease;
}
.modalProduto .contatoProdutos svg:hover {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
@media (max-width: 61.9375em) {
  .modalProduto {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
  }
  .modalProduto .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }
  .modalProduto .boxProduto {
    padding: 20px 15px;
    padding-bottom: 80px;
    border-radius: 8px;
  }
  .modalProduto h2.titulo {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
  }
  .modalProduto .imagens {
    padding: 1rem;
    margin-bottom: 15px;
  }
  .modalProduto .imgprincipal {
    height: 200px;
  }
  .modalProduto .owl-produto-galeria .boxGaleria {
    height: 70px;
    width: 70px;
  }
  .modalProduto .txt1 {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }
  .modalProduto .acoes {
    margin-top: 20px;
    gap: 12px;
  }
  .modalProduto .acoes.apenasMobile {
    justify-content: center;
    align-items: center;
    padding-bottom: 1.25rem;
  }
  .modalProduto .acoes a,
  .modalProduto .acoes button {
    width: 100%;
    font-size: 14px;
    padding: 12px 16px;
    min-width: auto;
  }
  .modalProduto .contatoProdutos {
    gap: 15px;
    flex-direction: row;
    justify-content: center;
  }
  .modalProduto .contatoProdutos svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 61.9375em) and (max-width: 480px) {
  .modalProduto .boxProduto {
    padding: 15px 10px;
    padding-bottom: 70px;
  }
  .modalProduto h2.titulo {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .modalProduto .imgprincipal {
    height: 160px;
  }
  .modalProduto .owl-produto-galeria .boxGaleria {
    height: 60px;
    width: 60px;
  }
  .modalProduto .txt1 {
    font-size: 13px;
  }
  .modalProduto .acoes {
    margin-top: 15px;
    gap: 10px;
  }
  .modalProduto .contatoProdutos svg {
    width: 45px;
    height: 45px;
  }
}

section.barra-lgpd {
  padding: 2px 15px;
  background-color: #eeeeee;
  border-bottom: 1px solid gainsboro;
  font-size: 12px;
  width: 100%;
  z-index: 502;
  color: gray;
  display: none;
  position: relative;
  transition: all 0.5s linear;
}
@media (max-width: 991px) {
  section.barra-lgpd {
    border: none;
    padding: 10px;
    bottom: 0;
    position: fixed;
    top: auto;
  }
  section.barra-lgpd .container {
    padding: 0;
  }
  section.barra-lgpd .container .conteudo-lgpd-in .txt-in__links {
    display: flex;
    flex-wrap: wrap;
  }
}
section.barra-lgpd.exibir {
  display: block;
}
section.barra-lgpd .row,
section.barra-lgpd .container {
  max-width: 1345px !important;
  margin: auto;
  justify-content: center;
}
section.barra-lgpd .row .conteudo-lgpd-in,
section.barra-lgpd .container .conteudo-lgpd-in {
  display: flex;
  align-items: center;
}
section.barra-lgpd .row .conteudo-lgpd-in .txt-in,
section.barra-lgpd .container .conteudo-lgpd-in .txt-in {
  width: 100%;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
section.barra-lgpd .row .conteudo-lgpd-in .txt-in__links,
section.barra-lgpd .container .conteudo-lgpd-in .txt-in__links {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
section.barra-lgpd .row .conteudo-lgpd-in .txt-in__links a,
section.barra-lgpd .container .conteudo-lgpd-in .txt-in__links a {
  color: gray;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dotted gray;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
section.barra-lgpd .row .conteudo-lgpd-in .button-in button,
section.barra-lgpd .container .conteudo-lgpd-in .button-in button {
  cursor: pointer;
  background-color: transparent;
  font-size: 12px;
  font-weight: 500;
  margin-left: 20px;
  padding: 5px 10px;
  margin: 5px 0 5px 15px;
  color: gray;
  border: 1px solid gray;
  outline: none;
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1;
  transition: all 0.3s linear;
}
section.barra-lgpd .row .conteudo-lgpd-in .button-in button:hover,
section.barra-lgpd .container .conteudo-lgpd-in .button-in button:hover {
  background-color: #f9f9f9;
}
@media screen and (max-width: 991px) {
  section.barra-lgpd .row .conteudo-lgpd-in,
  section.barra-lgpd .container .conteudo-lgpd-in {
    flex-direction: column;
  }
  section.barra-lgpd .row .conteudo-lgpd-in .button-in,
  section.barra-lgpd .container .conteudo-lgpd-in .button-in {
    text-align: center;
  }
  section.barra-lgpd .row .conteudo-lgpd-in .button-in button,
  section.barra-lgpd .container .conteudo-lgpd-in .button-in button {
    margin-top: 10px;
    margin-left: auto;
  }
}

section.fixed-bar {
  position: fixed;
  bottom: 0;
  background-color: #16aba7;
  width: 100%;
  padding: 10px 80px;
  z-index: 900;
  transition: all 0.5s linear;
}
section.fixed-bar .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.fixed-bar .bar__contact {
  display: flex;
  align-items: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
section.fixed-bar .bar__btns {
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
section.fixed-bar .bar__btns .btn-revendedor {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid #16aba7;
  border-radius: 15px;
  transition: 0.5s ease-in-out;
}
section.fixed-bar .bar__btns .btn-revendedor h5 {
  color: #16aba7;
  font-size: 1.125rem;
  font-weight: 500;
}
section.fixed-bar .bar__btns .btn-revendedor:hover, section.fixed-bar .bar__btns .btn-revendedor.active {
  background-color: #16aba7;
}
section.fixed-bar .bar__btns .btn-revendedor:hover h5, section.fixed-bar .bar__btns .btn-revendedor.active h5 {
  color: #ffffff;
}
section.fixed-bar .bar__btns .btn-revendedor:hover img, section.fixed-bar .bar__btns .btn-revendedor.active img {
  filter: grayscale(1) brightness(100);
}
section.fixed-bar .bar__btns--icons {
  background-color: #f29100;
  padding: 0.5rem 2rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
section.fixed-bar .bar__btns--icons img:hover {
  filter: none;
}
@media (max-width: 61.9375em) {
  section.fixed-bar {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    display: none;
  }
}
section.fixed-bar.hidden {
  bottom: -100px;
}

section.barra-fixa-mobile {
  margin-inline: auto;
  background-color: #16aba7;
  border-radius: 0 10px 0 0;
  outline: 2px solid;
  outline-color: #fff;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 999;
  transition: 0.3s all;
}
section.barra-fixa-mobile .list-itens {
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 30px;
  position: relative;
}
section.barra-fixa-mobile .list-itens a {
  display: block;
  color: white;
}
section.barra-fixa-mobile .list-itens a i {
  color: white;
}
section.barra-fixa-mobile .list-itens a:nth-child(1) {
  position: relative;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}
section.barra-fixa-mobile .list-itens a:nth-child(1) i {
  color: #16aba7;
}
section.barra-fixa-mobile .list-itens a:nth-child(1).active i {
  transform: rotate(90deg);
}
section.barra-fixa-mobile .list-itens a .line {
  fill: none;
  stroke: #16aba7;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
section.barra-fixa-mobile .list-itens a .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
section.barra-fixa-mobile .list-itens a .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
section.barra-fixa-mobile .list-itens a .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
section.barra-fixa-mobile .list-itens a.active .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
section.barra-fixa-mobile .list-itens a.active .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
section.barra-fixa-mobile .list-itens a.active .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
section.barra-fixa-mobile .list-itens::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: none;
  left: -0.75rem;
  right: none;
  width: 35%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 0 15px 15px 0;
}
@media screen and (min-width: 992px) {
  section.barra-fixa-mobile {
    display: none;
  }
}

.menu-mobile {
  background: #00080a;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10.5px);
  -webkit-backdrop-filter: blur(10.5px);
  border-radius: 0 10px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100%;
  overflow: auto;
  z-index: 998;
  padding-bottom: 65px;
  transition: all 0.5s linear;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
.menu-mobile.aberto {
  left: 0px;
}
.menu-mobile .fechar {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  transform: translate(50%, -50%);
  font-size: 35px;
  color: #16aba7;
}
.menu-mobile .logo img {
  width: 100%;
  max-width: 156px;
}
.menu-mobile hr {
  opacity: 50%;
  height: 2px;
  background-color: #16aba7;
}
.menu-mobile ul {
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  margin-bottom: 0;
}
.menu-mobile ul li {
  list-style: none;
  padding: 2px;
  text-align: start;
  text-transform: uppercase;
  position: relative;
}
.menu-mobile ul li:last-child {
  border-bottom: none;
}
.menu-mobile ul li a {
  color: #16aba7;
  font-size: 1rem;
  padding: 0 0.75rem;
  font-weight: 600;
  display: inline-block;
  width: 100%;
}
.menu-mobile ul li a.current {
  position: relative;
}
.menu-mobile ul li a.current::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  bottom: none;
  left: none;
  right: 0.5rem;
  width: 20px;
  height: 3px;
  background-color: #16aba7;
  animation: blink 1.5s ease-in-out infinite alternate;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 0.25;
  }
}
.menu-mobile .icons {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

section.header {
  height: 230px;
  display: flex;
  align-items: center;
  background-image: url("../image/backgrounds/bg-header.png");
  background-repeat: no-repeat;
  position: relative;
  z-index: 10;
  transition: 0.5s ease-in;
}
section.header .content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  padding: 1.75rem 0;
}
section.header .content--nav {
  display: flex;
  align-items: center;
}
section.header .content .menu-top-buttons {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
section.header .content .menu-top__menu {
  margin-top: 1.25rem;
}
section.header .content .menu-top__menu ul {
  display: flex;
  gap: 38px;
  list-style: none;
  padding: 0;
  margin: 0;
}
section.header .content .menu-top__menu ul li a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}
section.header .content .menu-top__menu ul li a:hover {
  color: #2ed6b6;
}
section.header .content .contact {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
section.header .content .contact .btn-secondary.whatsapp {
  max-width: 190px;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
section.header .content .contact .btn-secondary.whatsapp .title {
  font-size: 1rem;
}
section.header.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: auto;
  background-color: #ffffff;
}
section.header.fixed .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  padding: 0.75rem 0;
}
section.header.fixed .content--nav {
  display: flex;
  align-items: center;
}
@media (max-width: 61.9375em) {
  section.header {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    height: auto;
  }
  section.header .content {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 0.5rem;
    padding: 0.5rem 0;
  }
  section.header .content .menu-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 0.75rem;
  }
  section.header .content .menu-top .logo {
    width: 196px;
  }
  section.header .content .menu-top #hamburguer {
    display: block;
    color: white;
  }
  section.header .content .menu-top #hamburguer i {
    color: white;
  }
  section.header .content .menu-top #hamburguer:nth-child(1) {
    position: relative;
    z-index: 2;
    transition: all 0.5s ease-in-out;
  }
  section.header .content .menu-top #hamburguer:nth-child(1) i {
    color: #16aba7;
  }
  section.header .content .menu-top #hamburguer:nth-child(1).active i {
    transform: rotate(90deg);
  }
  section.header .content .menu-top #hamburguer .line {
    fill: none;
    stroke: #16aba7;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  section.header .content .menu-top #hamburguer .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  section.header .content .menu-top #hamburguer .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  section.header .content .menu-top #hamburguer .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  section.header .content .menu-top #hamburguer.active .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  section.header .content .menu-top #hamburguer.active .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  section.header .content .menu-top #hamburguer.active .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  section.header .content .btn-secondary {
    display: none;
  }
  section.header .content .btn-telephone {
    display: none;
  }
}

section.header-content {
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 0 4rem;
  position: relative;
  position: relative;
}
section.header-content .content {
  max-width: 1240px;
}
section.header-content .resum {
  position: relative;
}
section.header-content .resum h1 {
  font-size: 50px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 2rem;
}
section.header-content::before {
  content: "";
  position: absolute;
  top: none;
  bottom: none;
  left: none;
  right: none;
  inset: 0;
  background-color: rgba(0, 10, 6, 0.88);
}
section.header-content::after {
  content: url("../image/pseudo/banner.png");
  position: absolute;
  top: none;
  bottom: -7px;
  left: none;
  right: 0;
  pointer-events: none;
}
section.header-content.page {
  height: auto;
  background-color: #16aba7;
  padding: 2.25rem 0;
  align-items: center;
}
section.header-content.page .resum h1 {
  margin-bottom: 0.5rem;
}
section.header-content.page::before {
  background-color: rgba(0, 10, 6, 0.6);
}
@media (max-width: 61.9375em) {
  section.header-content {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    height: auto;
    min-height: 148px;
    align-items: center;
    padding: 1rem;
    background-size: cover;
    position: relative;
    position: relative;
  }
  section.header-content .resum {
    text-align: start;
  }
  section.header-content .resum h1 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
  }
  section.header-content::before {
    content: "";
    position: absolute;
    top: none;
    bottom: none;
    left: none;
    right: none;
    inset: 0;
    background-color: rgba(0, 10, 6, 0.88);
  }
  section.header-content::after {
    content: url("../image/pseudo/banner-mobile.png");
    position: absolute;
    top: none;
    bottom: -7px;
    left: none;
    right: 0;
    pointer-events: none;
  }
}

section.h-nets {
  background-color: #002315;
  padding: 0.75rem;
}
section.h-nets .nets {
  max-width: 1734px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.h-nets .nets--contact {
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (max-width: 61.9375em) {
  section.h-nets {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    display: none;
    padding: 0.75rem;
  }
  section.h-nets .nets {
    flex-wrap: wrap;
    row-gap: 0.5rem;
    justify-content: space-between;
    text-align: start;
  }
  section.h-nets .nets h5 {
    font-size: 0.875rem;
  }
  section.h-nets .nets--contact {
    justify-content: space-between;
  }
}

.maps {
  display: flex;
}
.maps .footer-mapa {
  width: 100%;
  height: 400px;
  transition: 0.5s;
}
.maps .footer-mapa iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 61.9375em) {
  .maps .footer-mapa {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    width: 100%;
    height: 250px;
  }
  .maps .footer-mapa iframe {
    width: 100%;
  }
}
@media (max-width: 61.9375em) {
  .maps {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    flex-wrap: wrap;
    border-bottom: 5px solid #16aba7;
    position: relative;
  }
  .maps .footer-mapa {
    width: 100%;
    height: 245px;
    transition: 0.5s;
    border-bottom: none;
  }
  .maps .footer-mapa iframe {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 61.9375em) and (max-width: 61.9375em) {
  .maps .footer-mapa {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    width: 100%;
    height: 250px;
  }
  .maps .footer-mapa iframe {
    width: 100%;
  }
}
@media (max-width: 61.9375em) {
  .maps::after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: none;
    left: 50%;
    right: none;
    width: 75%;
    height: 5px;
    transform: translate(-50%, -50%);
    background-color: #ff7c1e;
    pointer-events: none;
  }
}

section.footer {
  background: #00332e;
  color: #fff;
  padding: 0;
  width: 100%;
}
section.footer .footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 32px 0 18px 0;
  flex-wrap: wrap;
  background: transparent;
}
section.footer .footer-newsletter__icon img {
  width: 48px;
  height: 48px;
  display: block;
}
section.footer .footer-newsletter__text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
}
section.footer .footer-newsletter__text .newsletter-highlight {
  color: #2ed6b6;
  font-weight: 700;
}
section.footer .footer-newsletter__form {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 1;
}
section.footer .footer-newsletter__form input {
  background: #e6e6e6;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 1rem;
  min-width: 180px;
  color: #222;
  outline: none;
  flex: 1;
}
section.footer .footer-newsletter__form button.footer-newsletter__btn {
  background: #00c7a2;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
section.footer .footer-newsletter__form button.footer-newsletter__btn svg {
  margin-right: 4px;
}
section.footer .footer-newsletter__form button.footer-newsletter__btn:hover {
  background: #009e6e;
}
section.footer .footer-main {
  padding: 0 0 18px 0;
}
section.footer .footer-main .footer-main__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0 0 0;
  flex-wrap: wrap;
  border: none;
}
section.footer .footer-main .footer-main__top .footer-main__logo img {
  height: 48px;
  display: block;
}
section.footer .footer-main .footer-main__top .footer-main__menu ul {
  display: flex;
  gap: 38px;
  list-style: none;
  padding: 0;
  margin: 0;
}
section.footer .footer-main .footer-main__top .footer-main__menu ul li a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}
section.footer .footer-main .footer-main__top .footer-main__menu ul li a:hover {
  color: #2ed6b6;
}
section.footer .footer-main .footer-main__top .footer-main__social {
  display: flex;
  gap: 14px;
  align-items: center;
}
section.footer .footer-main .footer-main__top .footer-main__social a {
  background: #00594c;
  border-radius: 50%;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
section.footer .footer-main .footer-main__top .footer-main__social a:hover {
  background: #2ed6b6;
}
section.footer .footer-main .footer-main__top .footer-main__social img,
section.footer .footer-main .footer-main__top .footer-main__social svg {
  width: 28px;
  height: 28px;
}
section.footer .footer-main .footer-main__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 2.5rem 0 0 0;
  flex-wrap: wrap;
}
section.footer .footer-main .footer-main__bottom .footer-main__info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
section.footer .footer-main .footer-main__bottom .footer-main__info .footer-main__info-block {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: #fff;
}
section.footer .footer-main .footer-main__bottom .footer-main__info .footer-main__info-block .footer-main_content {
  display: flex;
  flex-direction: column;
}
section.footer .footer-main .footer-main__bottom .footer-main__info .footer-main__info-block .footer-main__info-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}
section.footer .footer-main .footer-main__bottom .footer-main__specialist {
  display: flex;
  align-items: center;
}
section.footer .footer-main .footer-main__bottom .footer-main__specialist .footer-main__specialist-btn {
  background: #25b102;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
  display: inline-block;
}
section.footer .footer-main .footer-main__bottom .footer-main__specialist .footer-main__specialist-btn:hover {
  background: #00b84d;
}
@media (max-width: 61.9375em) {
  section.footer {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
  }
  section.footer .footer-newsletter {
    flex-direction: column;
    gap: 10px;
    padding: 1rem;
  }
  section.footer .footer-newsletter__icon img {
    width: 36px;
    height: 36px;
  }
  section.footer .footer-newsletter__form {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  section.footer .footer-newsletter__form input {
    min-width: 0;
    width: 100%;
  }
  section.footer .footer-newsletter__form button {
    width: 100%;
  }
  section.footer .footer-main .footer-main__top {
    justify-content: center;
    flex-direction: column;
  }
  section.footer .footer-main .footer-main__top .footer-main__menu ul {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  section.footer .footer-main .footer-main__top .footer-main__menu ul li a {
    font-size: 1rem;
  }
  section.footer .footer-main .footer-main__bottom {
    justify-content: center;
  }
  section.footer .footer-main .footer-main__info {
    flex-direction: column;
    text-align: left;
  }
}

section {
  position: relative;
}
section .menu-footer {
  width: 100%;
  max-width: 1472px;
  background-color: #ff7c1e;
  margin-inline: auto;
  padding: 1.75rem 6rem 1.25rem;
  clip-path: polygon(5% 0, 95% 1%, 100% 100%, 0% 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -4.5rem;
  left: 50%;
  transform: translateX(-50%);
}
section .menu-footer ul {
  list-style: none;
  display: flex;
  -moz-column-gap: 4.5rem;
       column-gap: 4.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}
section .menu-footer ul li a {
  font-size: 1.125rem;
  color: #ffffff;
}
section .menu-footer ul li a:hover, section .menu-footer ul li a.active {
  position: relative;
}
section .menu-footer ul li a:hover::before, section .menu-footer ul li a.active::before {
  content: "";
  position: absolute;
  top: none;
  bottom: -0.25rem;
  left: 0;
  right: none;
  width: 90%;
  height: 3px;
  background: linear-gradient(90.03deg, #16aba7 10.5%, rgba(255, 255, 255, 0) 64.25%);
}
@media (max-width: 61.9375em) {
  section .menu-footer {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    display: none;
  }
}

section.footer-copyright {
  background: #094543;
  height: 69px;
  display: flex;
  align-items: center;
}
section.footer-copyright::after {
  content: "";
  background: linear-gradient(90deg, #094543 35.76%, #16aba7 67.11%);
  display: block;
  height: 10px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: 1;
  transform: skewY(0deg);
  transform-origin: top left;
}
section.footer-copyright .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.footer-copyright .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
section.footer-copyright .copyright .copy {
  color: #ffffff;
  font-size: 1rem;
}
section.footer-copyright .copyright .icons {
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (max-width: 61.9375em) {
  section.footer-copyright {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    height: auto;
    padding-top: 2rem;
  }
  section.footer-copyright .container {
    flex-wrap: wrap;
    row-gap: 0.75rem;
    justify-content: center;
  }
  section.footer-copyright .copyright {
    flex-wrap: wrap;
    row-gap: 1rem;
    justify-content: center;
  }
  section.footer-copyright .copyright h5 {
    font-size: 1.125rem;
  }
  section.footer-copyright .copyright .terms {
    margin-left: 0;
  }
  section.footer-copyright .copyright .terms ul {
    flex-direction: column;
    align-items: center;
    row-gap: 0.25rem;
    text-align: start;
  }
  section.footer-copyright .copyright .terms ul li a h5 {
    font-size: 1rem;
  }
}

section.formulario-enviado {
  padding: 180px 0 150px;
  color: #ffffff;
  background-color: #16aba7;
}
section.formulario-enviado .box-in {
  text-align: center;
}
section.formulario-enviado .box-in h5 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
}
section.formulario-enviado .box-in a {
  color: #ffffff;
  font-weight: 500;
  border-bottom: 1px dotted #16aba7;
}
section.formulario-enviado .box-in .btn-voltar {
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 30px;
  font-weight: 600;
  background-color: transparent;
  outline: none;
  border: 2px solid #16aba7;
  transition: 0.3s all;
}
section.formulario-enviado .box-in .btn-voltar:hover {
  background-color: #16aba7;
  color: white;
}
section.formulario-enviado .box-in .btn-voltar i {
  vertical-align: middle;
  font-size: 20px;
  margin-right: 15px;
}
section.formulario-enviado .box-in h3 {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
}
section.formulario-enviado .box-in h1 {
  font-size: 75px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
@media (max-width: 991px) {
  section.formulario-enviado {
    padding: 80px 0;
    text-align: center;
  }
  section.formulario-enviado .container {
    position: relative;
    z-index: 2;
  }
  section.formulario-enviado .box-in .btn-voltar {
    font-size: 13px;
    margin: 10px 0;
  }
  section.formulario-enviado .box-in h3 {
    font-size: 16px;
  }
  section.formulario-enviado .box-in h5 {
    font-size: 15px;
  }
  section.formulario-enviado .box-in h1 {
    font-size: 28px;
  }
}

section.breadcrumb {
  margin-bottom: 0;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 300;
}
section.breadcrumb a {
  margin: 0 5px;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 300;
  color: #ffffff;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
}
section.breadcrumb a:first-child {
  margin-left: 0;
}
section.breadcrumb a:last-child {
  margin-right: 0;
}
section.breadcrumb a.active {
  color: #f29100;
}
section.breadcrumb a:hover {
  text-decoration: underline;
}
@media (max-width: 61.9375em) {
  section.breadcrumb {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    font-size: 12px;
    text-align: start;
  }
  section.breadcrumb a {
    font-size: 12px;
  }
}

section.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: white;
}
section.preloader .loader {
  border: 6px solid #e5e5e5;
  border-top-color: #16aba7;
  animation: loader-rotate 1s infinite;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
@keyframes loader-rotate {
  to {
    transform: rotate(1turn);
  }
}

* {
  scrollbar-width: thick; /* none | auto  */
  scrollbar-color: #16aba7 transparent;
}

*::-webkit-scrollbar {
  width: 14px; /* vertical scrollbar */
  height: 14px; /* horizontal scrollbar */
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: #16aba7;
}

*::-webkit-scrollbar-thumb:hover {
  background: #ff7c1e;
}

.error-404 {
  height: 764px;
  background-image: url("../image/backgrounds/404.jpg");
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
}
.error-404 .box {
  max-width: 644px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-404 .box h2 {
  font-size: 45px;
  color: #16aba7;
  font-weight: 700;
}
.error-404 .box h1 {
  color: #f29100;
  font-size: 200px;
  font-weight: 700;
}
.error-404 .box h6 {
  max-width: 482px;
  font-size: 1.125rem;
  margin-top: 3rem;
}
.error-404 .box .btn-primary {
  margin-top: 2.5rem;
}
@media (max-width: 61.9375em) {
  .error-404 {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    height: auto;
    padding: 0.75rem 0;
  }
  .error-404 .box h2 {
    font-size: 35px;
  }
  .error-404 .box h1 {
    font-size: 100px;
    line-height: 100%;
  }
  .error-404 .box h6 {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  .error-404 .box .btn-primary {
    margin-top: 1.25rem;
  }
}

section.s-attendance {
  background-image: url("../image/backgrounds/s-atendimento.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem 0;
}
section.s-attendance .attendance__cards {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  -moz-column-gap: 3.25rem;
       column-gap: 3.25rem;
}
section.s-attendance .attendance__cards .card-attendance {
  max-width: 398px;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  transition: all 0.5s linear;
}
section.s-attendance .attendance__cards .card-attendance .texts {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
section.s-attendance .attendance__cards .card-attendance .texts h2 {
  font-size: 1.25rem;
  font-weight: 700;
}
section.s-attendance .attendance__cards .card-attendance .texts p {
  font-size: 1.125rem;
}
section.s-attendance .attendance__cards .card-attendance:hover {
  transform: scale(0.96);
}
section.s-attendance.products {
  max-width: 1738px;
  background-image: url("../image/backgrounds/s-atendimento-2.png");
  background-repeat: no-repeat;
  padding: 0.75rem 0 1.25rem;
  margin-inline: auto;
}
section.s-attendance.products .attendance__cards .card-attendance .texts {
  color: #16aba7;
}
@media (max-width: 61.9375em) {
  section.s-attendance {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    padding: 0.75rem 0;
  }
  section.s-attendance .attendance__cards {
    display: flex;
    row-gap: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    align-items: start;
    justify-content: center;
  }
  section.s-attendance .attendance__cards .card-attendance {
    max-width: 200px;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    flex-direction: column;
    row-gap: 0.5rem;
  }
  section.s-attendance .attendance__cards .card-attendance img {
    width: 62px;
  }
  section.s-attendance .attendance__cards .card-attendance .texts {
    text-align: center;
    row-gap: 0.5rem;
  }
  section.s-attendance .attendance__cards .card-attendance .texts h2 {
    font-size: 1rem;
  }
  section.s-attendance .attendance__cards .card-attendance .texts p {
    font-size: 14px;
    line-height: 120%;
  }
  section.s-attendance.products {
    background-image: url("../image/backgrounds/s-atendimento-2.png");
    background-repeat: no-repeat;
    background-position: center;
    padding: 0.75rem 0 1.25rem;
  }
}

@media (min-width: 992px) {
  body.compensar {
    margin-top: 54px;
  }
}
body main section.home-banner {
  background-color: #094543;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
}
body main section.home-banner::before {
  content: "";
  background: linear-gradient(90deg, #094543 35.76%, #16aba7 67.11%);
  display: block;
  height: 50px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: cover;
  z-index: 5;
  transform: skewY(1deg);
  transform-origin: top left;
  pointer-events: none;
}
body main section.home-banner .item-banner {
  position: relative;
  width: 100%;
  height: 650px;
  display: flex;
  align-items: center;
}
body main section.home-banner .item-banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
body main section.home-banner .item-banner > div {
  position: relative;
  z-index: 2;
  width: 100%;
}
body main section.home-banner .banner-aside {
  max-width: 445px;
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  margin-top: 5.25rem;
  isolation: isolate;
}
body main section.home-banner .banner-aside h1 {
  max-width: 625px;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 120%;
}
body main section.home-banner .banner-aside h1 strong {
  color: #16aba7;
}
body main section.home-banner .banner-aside h2 {
  color: #ffffff;
  font-size: 1.5rem;
}
@media (max-width: 61.9375em) {
  body main section.home-banner {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    min-height: 500px;
    height: auto;
    display: block;
  }
  body main section.home-banner::before {
    bottom: -10px;
  }
  body main section.home-banner .item-banner {
    height: auto;
    min-height: 500px;
    flex-wrap: wrap;
    padding-bottom: 5rem;
    padding-top: 100px;
  }
  body main section.home-banner .banner-aside {
    row-gap: 1rem;
    align-items: center;
    margin-inline: auto;
    padding: 0 15px;
    margin-top: 0;
    text-align: center;
  }
  body main section.home-banner .banner-aside .aside-title h1 {
    font-size: 1.5rem;
  }
  body main section.home-banner .banner-aside .aside-title h1:before {
    display: none;
  }
  body main section.home-banner .banner-aside h2 {
    font-size: 20px;
    line-height: 120%;
  }
}
body main section.home-dw-service {
  padding: 3.5rem 0;
  background-image: url("../image/backgrounds/dw-service.png");
  background-repeat: no-repeat;
  height: 650px;
  background-position: center;
}
body main section.home-dw-service::before {
  content: "";
  background: linear-gradient(90deg, #094543 35.76%, #16aba7 67.11%);
  display: block;
  height: 30px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: cover;
  z-index: 1;
  transform: skewY(1deg);
  transform-origin: top left;
}
body main section.home-dw-service .dw-service {
  display: flex;
  align-items: center;
  -moz-column-gap: 135px;
       column-gap: 135px;
  position: relative;
}
body main section.home-dw-service .dw-service--image {
  position: absolute;
  width: 100%;
  left: 10%;
  min-height: 444px;
  background-size: cover;
}
body main section.home-dw-service .dw-service-aside {
  max-width: 530px;
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  flex-grow: 1;
  align-self: center;
  margin-top: 87px;
  isolation: isolate;
}
body main section.home-dw-service .dw-service-aside h1 {
  max-width: 625px;
  width: 100%;
  color: #1e1e1e;
  font-size: 2.5rem;
  line-height: 120%;
}
body main section.home-dw-service .dw-service-aside h1 strong {
  color: #16aba7;
}
body main section.home-dw-service .dw-service-aside h2 {
  color: #1e1e1e;
  font-size: 1.5rem;
}
@media (max-width: 61.9375em) {
  body main section.home-dw-service {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    padding: 0;
    background-image: url("../image/backgrounds/dw-service.png");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  body main section.home-dw-service .dw-service-aside {
    align-items: center;
  }
  body main section.home-dw-service .dw-service {
    flex-wrap: wrap;
    row-gap: 1rem;
  }
  body main section.home-dw-service .dw-service--logo {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.75rem;
  }
  body main section.home-dw-service .dw-service--logo img {
    width: 100%;
    max-width: 256px;
  }
  body main section.home-dw-service .dw-service--logo h2 {
    font-size: 25px;
  }
}
body main section.home-perfil {
  padding: 3.75rem 0 6.25rem;
}
body main section.home-perfil .perfil {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 135px;
       column-gap: 135px;
}
body main section.home-perfil .perfil--image {
  width: 100%;
  max-width: 632px;
  min-height: 444px;
  background-size: cover;
  border-radius: 5px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
}
body main section.home-perfil .perfil--image h2 {
  max-width: 302px;
  background-color: #16aba7;
  border: 2px solid #ffffff;
  border-radius: 5px;
  padding: 0.75rem 2rem;
  box-shadow: inset 0px 8px 12px 6px rgba(0, 0, 0, 0.15), inset 0px 4px 4px rgba(0, 0, 0, 0.3);
  margin-right: -3.75rem;
  font-size: 1.875rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
body main section.home-perfil .perfil__aside {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
body main section.home-perfil .perfil__aside .icon {
  width: 78px;
  height: 78px;
  background-color: #ff7c1e;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 25px 25px rgba(255, 124, 30, 0.63);
}
body main section.home-perfil .perfil__aside h2 {
  color: #16aba7;
  position: relative;
}
body main section.home-perfil .perfil__aside h2::before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: none;
  left: -2rem;
  right: none;
  width: 463px;
  height: 10px;
  background-color: #ff7c1e;
  transform: translateY(-50%);
}
body main section.home-perfil .perfil__aside h5 {
  max-width: 428px;
}
@media (max-width: 61.9375em) {
  body main section.home-perfil {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    padding: 1.25rem 0;
  }
  body main section.home-perfil .perfil {
    flex-wrap: wrap;
    row-gap: 1.25rem;
  }
  body main section.home-perfil .perfil--image {
    min-height: 215px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
  }
  body main section.home-perfil .perfil--image h2 {
    padding: 0.75rem 2rem;
    margin-right: 0;
    font-size: 25px;
  }
  body main section.home-perfil .perfil__aside {
    row-gap: 0.75rem;
  }
  body main section.home-perfil .perfil__aside .icon {
    width: 68px;
    height: 68px;
    box-shadow: 0px 15px 15px rgba(255, 124, 30, 0.63);
    margin-inline: auto;
  }
  body main section.home-perfil .perfil__aside .icon img {
    width: 46px;
  }
  body main section.home-perfil .perfil__aside h2 {
    max-width: 476px;
    margin-inline: auto;
    position: relative;
    font-size: 1.25rem;
  }
  body main section.home-perfil .perfil__aside h2::before {
    content: "";
    position: absolute;
    top: 50%;
    bottom: none;
    left: -2rem;
    right: none;
    width: 186px;
    height: 5px;
    background-color: #ff7c1e;
    transform: translateY(-50%);
  }
  body main section.home-perfil .perfil__aside h5 {
    font-size: 1.125rem;
  }
  body main section.home-perfil .perfil__aside .btn-secondary {
    margin-inline: auto;
  }
}
body main section.home-products {
  background-image: url("../image/backgrounds/produtos.png");
  background-repeat: no-repeat;
  padding: 3.5rem 0;
}
body main section.home-products .products--title {
  max-width: 800px;
  color: #ffffff;
  text-align: center;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
body main section.home-products .products--title h2 {
  font-size: 30px;
  font-weight: 300;
  color: #1e1e1e;
  max-width: 450px;
  margin-inline: auto;
}
body main section.home-products .products--title h2 strong {
  color: #16aba7;
}
body main section.home-products .products--title h5 {
  font-size: 20px;
  max-width: 808px;
  color: #1e1e1e;
  line-height: 120%;
  margin-inline: auto;
}
body main section.home-products .products--title h5 strong {
  color: #16aba7;
  display: block;
  margin-bottom: 10px;
}
body main section.home-products .products .products-slider {
  max-width: 1252px;
  margin-top: 2rem;
  margin-inline: auto;
}
body main section.home-products .products .products-slider .card-product {
  max-width: 400px;
  height: 520px;
  position: relative;
  border-radius: 15px;
  border: 1px solid #007C75;
  margin-inline: auto;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
body main section.home-products .products .products-slider .card-product .product-image {
  height: 250px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
}
body main section.home-products .products .products-slider .card-product .product-image img {
  max-width: 100%;
  max-height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
body main section.home-products .products .products-slider .card-product .product-info {
  height: 270px;
  background: linear-gradient(245deg, #094543 0%, #16ABA7 99.02%), linear-gradient(246deg, #007C75 0%, rgba(0, 226, 213, 0.48) 99.29%);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body main section.home-products .products .products-slider .card-product .product-info .product-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
body main section.home-products .products .products-slider .card-product .product-info .product-description {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1rem;
}
body main section.home-products .products .products-slider .card-product .product-info .product-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
}
body main section.home-products .products .products-slider .card-product .product-info .product-buttons .btn-primary {
  background: #25B102;
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
body main section.home-products .products .products-slider .card-product .product-info .product-buttons .btn-primary:hover {
  background: #1f8f02;
  transform: translateY(-2px);
}
body main section.home-products .products .products-slider .card-product .product-info .product-buttons .btn-secondary {
  background: #dc3545;
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
body main section.home-products .products .products-slider .card-product .product-info .product-buttons .btn-secondary:hover {
  background: #c82333;
  transform: translateY(-2px);
}
body main section.home-products .products .products-slider .owl-nav {
  width: 120%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
body main section.home-products.product-page {
  background-color: #f4f4f4;
}
body main section.home-products.product-page .owl-carousel .owl-nav .owl-prev,
body main section.home-products.product-page .owl-carousel .owl-nav .owl-next {
  background-color: #16aba7;
}
body main section.home-products.product-page .card-product {
  margin-bottom: 7px;
}
body main section.home-products.product-page .products--title {
  color: #2f2f2f;
}
body main section.home-products.product-page .products__cards {
  flex-wrap: wrap;
  row-gap: 5rem;
  margin-top: 5rem;
}
@media (max-width: 61.9375em) {
  body main section.home-products.product-page {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
  }
  body main section.home-products.product-page .products__cards {
    margin-top: 1.25rem;
    row-gap: 0.75rem;
  }
}
@media (max-width: 61.9375em) {
  body main section.home-products {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    padding: 1.25rem 0;
  }
  body main section.home-products .products--title h2 {
    font-size: 1.375rem;
  }
  body main section.home-products .products--title h5 {
    font-size: 1rem;
  }
  body main section.home-products .products--title:before {
    display: none;
  }
  body main section.home-products .products .products-slider {
    margin-top: 1.5rem;
  }
  body main section.home-products .products .products-slider .card-product {
    height: 500px;
    border: none;
  }
  body main section.home-products .products .products-slider .card-product .product-image {
    height: 250px;
  }
  body main section.home-products .products .products-slider .card-product .product-info {
    height: 250px;
    padding: 1rem;
  }
  body main section.home-products .products .products-slider .card-product .product-info .product-title {
    font-size: 20px;
  }
  body main section.home-products .products .products-slider .card-product .product-info .product-description {
    font-size: 14px;
  }
  body main section.home-products .products .products-slider .owl-nav {
    width: 100%;
  }
  body main section.home-products .products .products-slider .owl-nav .owl-prev img,
  body main section.home-products .products .products-slider .owl-nav .owl-next img {
    width: 30px;
  }
}
body main section.home-video {
  position: relative;
  height: 650px;
  padding: 4.5rem 1rem;
  display: flex;
  justify-content: center;
  margin-top: -37px;
}
body main section.home-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../image/backgrounds/video.png");
  background-repeat: no-repeat;
  background-size: cover;
  transform: skewY(-1deg);
  transform-origin: top left;
  z-index: 0;
}
body main section.home-video::after {
  content: "";
  background: linear-gradient(90deg, #094543 35.76%, #16aba7 67.11%);
  display: block;
  height: 30px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: cover;
  z-index: 1;
  transform: skewY(-1deg);
  transform-origin: top left;
}
body main section.home-video .porque-adquirir {
  z-index: 10;
}
body main section.home-video .porque-adquirir h2 {
  color: #ffffff;
  text-align: center;
  font-size: 35px;
}
body main section.home-video .porque-adquirir h2 span {
  display: table;
  background: #ffffff;
  color: #16aba7;
  margin-inline: auto;
}
body main section.home-video .porque-adquirir h2 span strong {
  font-weight: 700;
}
body main section.home-video .porque-adquirir p {
  margin-top: 20px;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
}
body main section.home-video .porque-adquirir .content {
  margin-top: 35px;
}
body main section.home-video .porque-adquirir .card-list {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  position: relative;
  height: 70px;
}
body main section.home-video .porque-adquirir .card-list p {
  position: relative;
  font-size: 24px;
  line-height: normal;
  width: 200px;
  text-align: left;
  padding-bottom: 10px;
}
body main section.home-video .porque-adquirir .card-list p::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #00b4ab;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 61.9375em) {
  body main section.home-video {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    height: auto;
    margin-top: -56px;
  }
  body main section.home-video .porque-adquirir h2 {
    font-size: 1.5rem;
  }
  body main section.home-video .porque-adquirir p {
    font-size: 1.375rem;
  }
  body main section.home-video .porque-adquirir .content {
    margin-top: 1.25rem;
  }
  body main section.home-video .porque-adquirir .card-list p {
    font-size: 1.25rem;
  }
}
body main section.home-choose {
  margin-top: -2.5rem;
  padding: 2.5rem 0;
  transform: skewY(1deg);
  transform-origin: top left;
  background-color: #074c48;
}
body main section.home-choose::after {
  content: "";
  background: linear-gradient(90deg, #094543 35.76%, #16aba7 67.11%);
  display: block;
  height: 30px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: 1;
  transform: skewY(0deg);
  transform-origin: top left;
}
body main section.home-choose::before {
  content: "";
  background-image: url("../image/backgrounds/escolher.jpg");
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  opacity: 0.3;
  z-index: -1;
  background-size: cover;
}
body main section.home-choose .choose {
  transform: skewY(-1deg);
  transform-origin: top left;
}
body main section.home-choose aside {
  z-index: 2;
  margin-top: 3.75rem;
}
body main section.home-choose aside h2 {
  text-align: left;
}
body main section.home-choose aside p,
body main section.home-choose aside h2 {
  color: #ffffff;
}
body main section.home-choose aside p {
  padding-top: 2rem;
  font-size: 1.375rem;
}
body main section.home-choose .content {
  z-index: 2;
}
body main section.home-choose.product-page {
  padding: 5.75rem 0 5.75rem;
}
@media (max-width: 61.9375em) {
  body main section.home-choose {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
  }
  body main section.home-choose .choose aside {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body main section.home-choose img {
    width: 60%;
  }
}
body main section.home-budget {
  background-image: url("../image/backgrounds/orcamento.png");
  background-repeat: no-repeat;
  background-position: bottom;
  height: auto;
  padding-bottom: 6.25rem;
}
body main .budget {
  max-width: 1406px;
  border-radius: 10px;
  padding-top: 1.25rem;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  -moz-column-gap: 296px;
       column-gap: 296px;
}
body main .budget--aside {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
body main .budget--aside h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  color: #007c75;
}
body main .budget--aside h3 {
  font-weight: 700;
}
body main .budget--aside h3,
body main .budget--aside h5 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  line-height: 120%;
  color: #002315;
}
body main .budget--contact {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  position: relative;
  background: #007c75;
  border-radius: 10px;
  padding: 2rem;
}
body main .budget--contact h4 {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 120%;
}
body main .budget--contact strong {
  display: table;
}
body main .budget--contact .contact-info,
body main .budget--contact .address-info {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
body main .budget--contact span,
body main .budget--contact h4 {
  color: #ffffff;
}
body main .budget--contact::after {
  content: "";
  background-image: url(../image/backgrounds/contact_after.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -77px;
  right: 306px;
  width: 100%;
  height: 440px;
  bottom: 0;
}
body main .budget--contact::before {
  content: "";
  background-image: url(../image/backgrounds/contact_before.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -77px;
  left: 392px;
  width: 100%;
  height: 440px;
  bottom: 0;
}
body main .budget__form {
  margin-top: 3.75rem;
  max-width: 520px;
  width: 100%;
  background: rgba(239, 239, 239, 0.88);
  border-radius: 7px 0px 7px 7px;
  border: 1px solid #007c75;
  padding: 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
body main .budget__form h4 {
  color: #002315;
  font-weight: 700;
  text-align: center;
  font-size: 1.25rem;
}
body main .budget__form .input-checkbox label {
  font-weight: 400;
  font-size: 0.75rem;
}
body main .budget__form label {
  color: #2f2f2f;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 120%;
}
body main .budget__form input {
  border-radius: 7px;
  border: 1px solid #bbb;
  background: #fff;
}
body main .budget__form .inputs {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
body main .budget__form .inputs--cols {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
body main .budget__form .inputs .btn-input {
  margin-top: 0.5rem;
  border-radius: 7px;
  background: linear-gradient(90deg, #007c75 0%, #094543 100%);
  max-width: 230px;
  margin-inline: auto;
}
body main .budget__form .inputs .btn-input .title {
  color: #ffffff;
}
@media (max-width: 61.9375em) {
  body main {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    padding-top: 1.25rem;
    height: auto;
    overflow: hidden;
  }
  body main .budget {
    max-width: 1406px;
    background-image: url("../image/backgrounds/orcamento.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1.25rem 0.75rem;
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }
  body main .budget--aside .logo img {
    width: 256px;
  }
  body main .budget--aside .texts h5 {
    font-size: 1.125rem;
  }
  body main .budget--aside .texts p {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
  body main .budget__form {
    padding: 1.25rem 0.75rem;
    row-gap: 1rem;
    justify-content: center;
  }
  body main .budget__form .inputs--cols {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  body main .contact-info {
    margin-bottom: 1rem;
  }
  body main .address-info {
    text-align: left;
    margin-top: -2rem;
  }
}
body main section.home-depositions {
  background: #f7f8fa;
  padding: 60px 0 40px 0;
  position: relative;
}
body main section.home-depositions::after {
  content: "";
  background: linear-gradient(90deg, #094543 35.76%, #16aba7 67.11%);
  display: block;
  height: 30px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: 1;
  transform: skewY(0deg);
  transform-origin: top left;
}
body main section.home-depositions .depositions {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main section.home-depositions .depositions__title {
  text-align: center;
  margin-bottom: 36px;
}
body main section.home-depositions .depositions__title h2 {
  color: #007c75;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0;
}
body main section.home-depositions .depositions .depositions-slider {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 32px;
}
body main section.home-depositions .depositions .depositions-slider .card-depositions {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  max-width: 420px;
  min-width: 300px;
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  border: none;
}
body main section.home-depositions .depositions .depositions-slider .card-depositions:hover {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.16);
  transform: translateY(-4px) scale(1.03);
}
body main section.home-depositions .depositions .depositions-slider .card-depositions .icon {
  display: block;
  margin: 0 auto 18px auto;
  height: 100px;
}
body main section.home-depositions .depositions .depositions-slider .card-depositions__content--title {
  color: #007c75;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.2;
  text-align: left;
  width: 100%;
}
body main section.home-depositions .depositions .depositions-slider .card-depositions__content--title span {
  color: #007c75;
  font-weight: 500;
  font-size: 0.98rem;
  display: block;
  margin-top: 2px;
}
body main section.home-depositions .depositions .depositions-slider .card-depositions__content--description {
  font-size: 1rem;
  color: #444;
  margin-top: 12px;
  line-height: 1.6;
  text-align: left;
}
body main section.home-depositions .depositions .depositions__button {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
}
body main section.home-depositions .depositions .depositions__button .btn-primary {
  background: #275be1;
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.13rem;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
}
body main section.home-depositions .depositions .depositions__button .btn-primary:hover {
  background: linear-gradient(90deg, #6d28d9 0%, #4f46e5 100%);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.18);
}
body main section.home-depositions .depositions .depositions__button .btn-primary img {
  height: 26px;
  vertical-align: middle;
}
@media (max-width: 900px) {
  body main section.home-depositions .depositions .depositions-slider {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}
@media (max-width: 61.9375em) {
  body main section.home-depositions {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
  }
  body main section.home-depositions .depositions .depositions-slider .card-depositions {
    min-width: 90vw;
    max-width: 98vw;
    padding: 22px 10px 18px 10px;
  }
  body main section.home-depositions .depositions__title h2 {
    font-size: 1.3rem;
  }
  body main section.home-depositions .depositions .depositions__button .btn-primary {
    font-size: 1rem;
    padding: 10px 16px;
  }
}
body main section.home-social {
  width: 100%;
  padding: 32px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
body main section.home-social video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  inset: 0;
  z-index: -1;
}
body main section.home-social::after {
  content: "";
  background: linear-gradient(90deg, #094543 35.76%, #16aba7 67.11%);
  display: block;
  height: 10px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: 1;
  transform: skewY(0deg);
  transform-origin: top left;
}
body main section.home-social::before {
  content: "";
  background: linear-gradient(90deg, #094543 35.76%, #16aba7 67.11%);
  display: block;
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: cover;
  z-index: 1;
  transform: skewY(0deg);
  transform-origin: top left;
}
body main .home-social__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body main .home-social__title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 24px;
  text-align: center;
}
body main .home-social__title span {
  color: #2ed6b6;
  font-weight: 700;
  font-size: 1.7rem;
}
body main .home-social__icons {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
body main .home-social__icon {
  background: rgba(0, 89, 76, 0.85);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
body main .home-social__icon:hover {
  background: #2ed6b6;
  transform: translateY(-3px) scale(1.07);
}
body main .home-social__icon svg,
body main .home-social__icon img {
  width: 38px;
  height: 38px;
  display: block;
}
@media (max-width: 600px) {
  body main section.home-social {
    padding: 20px 0;
  }
  body main .home-social__title {
    font-size: 1.1rem;
  }
  body main .home-social__title span {
    font-size: 1.15rem;
  }
  body main .home-social__icons {
    gap: 14px;
  }
  body main .home-social__icon svg,
  body main .home-social__icon img {
    width: 28px;
    height: 28px;
  }
  body main .home-social__icon {
    padding: 7px 10px;
    border-radius: 8px;
  }
}
body main section.home-agribusiness {
  margin: 80px 0 100px 0;
}
body main section.home-agribusiness .agribusiness {
  background-image: url("../image/backgrounds/agronegocio.png");
  background-repeat: no-repeat;
  max-width: 1738px;
  background-size: cover;
  border-radius: 15px;
  padding-bottom: 2.25rem;
}
body main section.home-agribusiness .agribusiness--texts {
  max-width: 754px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main section.home-agribusiness .agribusiness--texts .icon {
  width: 138px;
  height: 138px;
  display: grid;
  place-content: center;
  border-radius: 15px;
  background-color: #F3F3F3;
  position: relative;
  margin-top: -1.75rem;
}
body main section.home-agribusiness .agribusiness--texts .icon picture {
  display: flex;
  background-color: #ff7c1e;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  box-shadow: 0px 25px 25px rgba(255, 124, 30, 0.63);
}
body main section.home-agribusiness .agribusiness--texts h2 {
  background: linear-gradient(0deg, #031B12 0%, #005939 130.77%);
  padding: 2.5rem 1.5rem 1rem;
  border-radius: 15px;
  margin-top: -1.5rem;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 120%;
}
body main section.home-agribusiness .agribusiness--texts h4 {
  color: #ffffff;
  font-size: 23.33px;
  margin: 0.5rem 0 1.5rem;
  text-align: center;
}
body main section.home-agribusiness .agribusiness--texts h4 strong {
  color: #FFD600;
}
@media (max-width: 61.9375em) {
  body main section.home-agribusiness {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    margin: 2rem 0 1.5rem;
  }
  body main section.home-agribusiness .agribusiness {
    background-image: url("../image/backgrounds/agronegocio.png");
    background-repeat: no-repeat;
    border-radius: 5px;
    padding-bottom: 1.25rem;
  }
  body main section.home-agribusiness .agribusiness--texts {
    max-width: 754px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body main section.home-agribusiness .agribusiness--texts .icon {
    width: 118px;
    height: 118px;
    margin-top: -1.75rem;
  }
  body main section.home-agribusiness .agribusiness--texts .icon picture {
    width: 68px;
    height: 68px;
    box-shadow: 0px 15px 15px rgba(255, 124, 30, 0.63);
  }
  body main section.home-agribusiness .agribusiness--texts .icon picture img {
    width: 46px;
  }
  body main section.home-agribusiness .agribusiness--texts h2 {
    padding: 2rem 1.5rem 1rem;
    border-radius: 10px;
    margin-top: -1.5rem;
    font-size: 1.375rem;
  }
  body main section.home-agribusiness .agribusiness--texts h4 {
    font-size: 1.125rem;
    margin: 0.5rem 0 0.75rem;
  }
}
body main section.home-about {
  padding: 0 0 4.75rem;
  background-size: cover;
  height: 690px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.home-about video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: skewY(-2deg);
  transform-origin: top right;
}
body main section.home-about::after {
  content: "";
  background: linear-gradient(90deg, #094543 35.76%, #16aba7 67.11%);
  display: block;
  height: 30px;
  width: 100%;
  position: absolute;
  top: 57px;
  left: 0;
  background-size: cover;
  z-index: 1;
  transform: skewY(-2deg);
  transform-origin: top left;
}
body main section.home-about::before {
  content: "";
  background: linear-gradient(90deg, #094543 35.76%, #16aba7 67.11%);
  display: block;
  height: 30px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: cover;
  z-index: 1;
  transform: skewY(-2deg);
  transform-origin: top left;
}
body main section.home-about .about {
  display: flex;
  justify-content: center;
  -moz-column-gap: 204px;
       column-gap: 204px;
}
body main section.home-about .about--aside {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.75rem;
  padding-top: 3.25rem;
  z-index: 1;
}
body main section.home-about .about--aside h4 {
  font-weight: 700;
}
body main section.home-about .about--aside h4 strong {
  color: #ff7c1e;
}
body main section.home-about .about--aside .texts {
  text-align: center;
}
body main section.home-about .about--aside .texts p {
  font-size: 40px;
  line-height: 120%;
}
@media (max-width: 61.9375em) {
  body main section.home-about {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    padding: 1.25rem 0;
  }
  body main section.home-about::after {
    top: 0;
  }
  body main section.home-about .about {
    flex-wrap: wrap;
    row-gap: 1.25rem;
  }
  body main section.home-about .about--aside {
    row-gap: 0.75rem;
    padding-top: 0;
  }
  body main section.home-about .about--aside h4 {
    font-weight: 700;
  }
  body main section.home-about .about--aside .texts {
    row-gap: 0.75rem;
  }
  body main section.home-about .about--aside .texts p {
    font-size: 1.375rem;
  }
}
body main section.terms,
body main section.policy,
body main section.changes {
  padding: 4rem 0;
}
body main section.terms .content--text,
body main section.policy .content--text,
body main section.changes .content--text {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
body main section.terms .content--text h4,
body main section.policy .content--text h4,
body main section.changes .content--text h4 {
  font-size: 1.125rem;
  text-transform: uppercase;
  line-height: 120%;
  margin-bottom: 20px;
}
body main section.terms .content--text h3,
body main section.policy .content--text h3,
body main section.changes .content--text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
}
body main section.terms .content--text h3 strong,
body main section.policy .content--text h3 strong,
body main section.changes .content--text h3 strong {
  text-transform: uppercase;
}
body main section.terms .content--text p,
body main section.policy .content--text p,
body main section.changes .content--text p {
  font-size: 1.125rem;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (max-width: 61.9375em) {
  body main section.terms,
  body main section.policy,
  body main section.changes {
    text-align: center;
    font-size: calc(1rem * var(--font-scale-mobile));
    padding: 1.5rem 0;
  }
  body main section.terms .content--text,
  body main section.policy .content--text,
  body main section.changes .content--text {
    text-align: start;
    row-gap: 0.75rem;
  }
  body main section.terms .content--text h3,
  body main section.policy .content--text h3,
  body main section.changes .content--text h3 {
    font-size: 1rem;
  }
  body main section.terms .content--text p,
  body main section.policy .content--text p,
  body main section.changes .content--text p {
    font-size: 1rem;
  }
}
body main section.politica-termos .texto p,
body main section.politica-termos .texto h3,
body main section.politica-termos .texto h1,
body main section.politica-termos .texto h2 {
  margin-bottom: 20px;
}/*# sourceMappingURL=custom.css.map */