@font-face {
  font-family: "Exo2";
  src: url(../fonts/Exo2-Bold.ttf) format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Exo2";
  src: url(../fonts/Exo2-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Exo2";
  src: url(../fonts/Exo2-Medium.ttf) format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Exo2";
  src: url(../fonts/Exo2-Regular.ttf) format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto.ttf) format("truetype");
  font-display: swap;
}

:root {
  --primary-highlight-foreground: #f60;

  --primary-foreground: #6c727f;
  --primary-background: #eaf2f4;

  --primary-foreground-btn: #ffffff;
  --primary-background-btn: #f60;
  --primary-border-btn: #f60;

  --primary-foreground-btn-hover: #fff;
  --primary-background-btn-hover: #0c0c0c;
  --primary-border-btn-hover: #0c0c0c;

  --secondary-foreground-btn: #190a00;
  --secondary-background-btn: #fff;
  --secondary-border-btn: #fff;

  --secondary-foreground-btn-hover: #fff;
  --secondary-background-btn-hover: transparent;
  --secondary-border-btn-hover: #fff;

  --terciary-foreground-btn: #f60;
  --terciary-background-btn: transparent;
  --terciary-border-btn: #f60;

  --terciary-foreground-btn-hover: #fff;
  --terciary-background-btn-hover: #f60;
  --terciary-border-btn-hover: #f60;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  overflow-x: hidden;
}

img .responsive-img,
video .responsive-video {
  max-width: 100%;
  height: auto;
}

.responsive-img {
  max-width: 100%;
  height: auto;
}

.container {
  margin: 0 auto;
  width: 90%;
}

@media (max-width: 576px) {
  .container {
    max-width: 90%;
  }
}

@media (min-width: 576px) {
  .container {
    width: 90%;
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    width: 90%;
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 90%;
    max-width: 1280px;
  }
}

.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 10px;
  text-align: center;
  background-color: var(--primary-background-btn);
  color: var(--primary-foreground-btn);
  padding: 12px 24px;
  border: 1px solid var(--primary-border-btn);
  cursor: pointer;
  text-decoration: none;
  font-family: "Exo2", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  border-radius: 10px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border 0.2s ease-in-out;
}

.primary-btn:hover {
  background-color: var(--primary-background-btn-hover);
  color: var(--primary-foreground-btn-hover);
  border: 1px solid var(--primary-border-btn-hover);
}

.secondary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 10px;
  text-align: center;
  background-color: var(--secondary-background-btn);
  color: var(--secondary-foreground-btn);
  padding: 12px 24px;
  border: 1px solid var(--secondary-border-btn);
  cursor: pointer;
  text-decoration: none;
  font-family: "Exo2", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  border-radius: 10px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border 0.2s ease-in-out;
}

.secondary-btn svg path {
  transition: stroke 0.2s ease-in-out;
  stroke: var(--secondary-foreground-btn);
}

.secondary-btn:hover {
  background-color: var(--secondary-background-btn-hover);
  color: var(--secondary-foreground-btn-hover);
  border: 1px solid var(--secondary-border-btn-hover);
}

.secondary-btn:hover svg path {
  stroke: var(--secondary-foreground-btn-hover);
}

.terciary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 10px;
  text-align: center;
  background-color: var(--terciary-background-btn);
  color: var(--terciary-foreground-btn);
  padding: 12px 24px;
  border: 1px solid var(--terciary-border-btn);
  cursor: pointer;
  text-decoration: none;
  font-family: "Exo2", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  border-radius: 10px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border 0.2s ease-in-out;
}

.terciary-btn svg path {
  transition: stroke 0.2s ease-in-out;
  stroke: var(--terciary-foreground-btn);
}

.terciary-btn:hover {
  background-color: var(--terciary-background-btn-hover);
  color: var(--terciary-foreground-btn-hover);
  border: 1px solid var(--terciary-border-btn-hover);
}

.terciary-btn:hover svg path {
  stroke: var(--terciary-foreground-btn-hover);
}

.small-title {
  width: fit-content;
  border-radius: 8px;
  background: #fdf2e6;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #f60;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 143%;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.small-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #f60;
  border-radius: 50%;
}

.section-title {
  color: #161616;
  font-family: "Exo2", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 113%;
  letter-spacing: 1.44px;
  margin: 0 auto 32px;
  text-transform: uppercase;
  text-align: center;
  width: fit-content;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 94px;
  height: 8px;
  background: #ff5f00;
  border-radius: 5px 5px 0px 0px;
}

.section-title__variant {
  color: #161616;
  font-family: "Exo2", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 115%;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  margin-bottom: 32px;
  height: fit-content;
  position: relative;
  padding-left: 32px;
}

.section-title__variant::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  border-radius: 5px 0px 0px 5px;
  background: #ff5f00;
}

@media screen and (max-width: 1024px) {
  .section-title,
  .section-title__variant {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .section-title,
  .section-title__variant {
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 425px) {
  .section-title,
  .section-title__variant {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 375px) {
  .section-title__variant::before {
    display: none;
  }
  .section-title__variant {
    padding-left: 0;
  }
}

.whatsapp-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 10px;
  text-align: center;
  background-color: #25d366;
  color: #fff;
  padding: 12px 24px;
  border: 1px solid #25d366;
  cursor: pointer;
  text-decoration: none;
  font-family: "Exo2", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  border-radius: 10px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out,
    border 0.3s ease-in-out;
}

.whatsapp-btn:hover {
  background-color: #1eb555;
  color: #fff;
  border: 1px solid #1eb555;
}

.index-bg {
  background: url(../images/index-bg.webp), #f5f4f7;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

::-webkit-scrollbar-track {
  background: #f9f9f9;
}

::-webkit-scrollbar {
  width: 12px;
  background: #f9f9f9;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-highlight-foreground);
  border-radius: 50px;
  height: 50px;
}

.whatsapp-float__btn svg {
  position: fixed;
  z-index: 999;
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: #25d366;
  padding: 12px;
  fill: #fff;
  box-sizing: content-box;
  animation: animate-pulse 3s linear infinite;
}

.quickmenu-div {
  display: none;
}

@media only screen and (max-width: 1300px) {
  .whatsapp-float__btn svg {
    bottom: 86px;
  }
}

@media only screen and (max-width: 992px) {
  .whatsapp-float__btn svg {
    display: none;
  }

  .quickmenu-div {
    background-color: #f60;
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0px;
    z-index: 9;
  }

  .quickmenu-container {
    width: 80%;
    height: 58px;
    display: flex;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 204, 102, 0.7), 0 0 0 0 rgba(51, 204, 102, 0.7);
  }

  40% {
    box-shadow: 0 0 0 50px transparent, 0 0 0 0 rgba(51, 204, 102, 0.7);
  }

  80% {
    box-shadow: 0 0 0 50px transparent, 0 0 0 30px transparent;
  }

  100% {
    box-shadow: 0 0 0 0 transparent, 0 0 0 30px transparent;
  }
}

@media only screen and (min-width: 1024px) {
  .whatsapp-float__btn {
    display: block;
  }
}

.mobile-contact {
  z-index: 10;
  display: block;
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 72px;
  background-color: #d9d9d9;
}

.mobile-contact-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  height: 72px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.mobile-contact__icon {
  background-color: #232340;
  border-radius: 50px;
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-contact__icon svg path {
  fill: #fff;
}

@media only screen and (min-width: 1024px) {
  .mobile-contact {
    display: none;
  }
}

.breadcrumb {
  padding: 20px 0;
  background-color: #f5f5f5;
  margin-top: 126px;
}

.breadcrumb-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style-type: none;
}

.breadcrumb-links li {
  display: flex;
  align-items: flex-end;
}

.breadcrumb-links-link a {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  letter-spacing: -0.64px;
  text-decoration: none;
}

.breadcrumb-links-link.active {
  color: #f60;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 165%;
  letter-spacing: -0.64px;
}

@media screen and (max-width: 550px) {
  .breadcrumb-links {
    flex-wrap: wrap;
  }
}

.page-title {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.75) 100%
    ),
    url(../images/page-title.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 129px;
  padding-bottom: 5rem;
}

.page-title .breadcrumb {
  margin-top: 0;
  margin-bottom: 80px;
  background-color: transparent;
}

.page-title .breadcrumb svg path {
  fill: #fff;
}

.page-title .breadcrumb-links-link a {
  color: #fff;
}

.page-title h2 {
  color: #fff;
  font-family: "Exo2", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
  text-transform: uppercase;
  position: relative;
  height: fit-content;
  margin-bottom: 32px;
}

.page-title h2::before {
  display: none;
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 9px;
  height: 100%;
  border-radius: 5px 0px 0px 5px;
  background: #ff5f00;
}

.page-title p {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 113%;
  max-width: 920px;
}

@media screen and (min-width: 375px) {
  .page-title h2 {
    padding-left: 24px;
    font-size: 2.25rem;
  }
  .page-title h2::before {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .page-title h2 {
    font-size: 2.5rem;
    padding-left: 32px;
  }
}

@media screen and (min-width: 1024px) {
  .page-title h2 {
    font-size: 3rem;
  }
}

/* REGIAO DE ATENDIMENTO */
.regioesDeAtendimento {
  padding: 5rem 0;
  background-color: #f5f4f7;
}

.regioesDeAtendimento .section-title__variant {
  margin-bottom: 5rem;
}

.flex-tabs {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 1rem;
}
.tablinks {
  border: 1px solid transparent;
  padding: 16px;
  background-color: #f3f3f3;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
.tablinks.active {
  color: #f7f7f7;
  border-left: 2px solid transparent;
  background-color: #f60;
}
.tab {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.tab button:focus {
  background-color: #f60;
}

.divTabContent ul li {
  font-size: 16px;
  list-style-type: disc;
  margin-left: 16px;
  line-height: 28px;
  color: #777;
}
.divTabContent ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.tabContentFlex {
  background-color: #fff;
  padding: 48px;
}
.tab-width-flex {
  height: 256px;
  overflow-x: hidden;
  overflow-y: scroll;
}
@media only screen and (max-width: 1000px) {
  .flex-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .divTabContent ul {
    grid-template-columns: 1fr;
  }
}
/* REGIAO DE ATENDIMENTO */

.cookieConsentContainer {
  z-index: 999;
  width: 350px;
  box-sizing: border-box;
  padding: 32px;
  background: rgb(0, 0, 0, 0.65);
  overflow: hidden;
  position: fixed;
  bottom: 120px;
  right: 30px;
  display: none;
}

.cookieTitle {
  color: #fff;
  font-size: 1.125rem;
  line-height: 22px;
  font-weight: bold;
}

.cookieConsentContainer .cookieTitle a {
  color: #fff;
  font-size: 1.125rem;
  line-height: 20px;
  display: block;
  font-weight: bold;
}

.cookieConsentContainer .cookieDesc p {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 0.875rem;
  line-height: 20px;
  display: block;
  margin-top: 10px;
}

.cookieConsentContainer .cookieDesc a {
  display: inline-flex;
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: underline;
}

.cookieConsentContainer .cookieButton button {
  display: inline-block;
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.875rem;
  background: #fff;
  box-sizing: border-box;
  padding: 16px 24px;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
}

@media (max-width: 767px) {
  .cookieConsentContainer {
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }
}

.cta {
  padding: 5rem 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.04) 100%),
    url(../images/cta.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta h2 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -1.44px;
  margin-bottom: 32px;
}

.cta h2 strong {
  color: #f60;
  font-weight: 600;
}

.cta p {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 143%;
  margin-bottom: 32px;
  max-width: 550px;
}

.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media screen and (min-width: 475px) {
  .cta-btn {
    flex-direction: row;
  }
  .cta h2 {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .cta h2 {
    font-size: 2.75rem;
  }
}

@media screen and (min-width: 1024px) {
  .cta h2 {
    font-size: 3rem;
  }
}

.animate-fade-up,
.animate-fade-down,
.animate-fade-left,
.animate-fade-right,
.animate-scale {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out,
    background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border 0.2s ease-in-out;
}

.animate-fade-up {
  transform: translateY(30px);
}

.animate-fade-down {
  transform: translateY(-30px);
}

.animate-fade-left {
  transform: translateX(-30px);
}

.animate-fade-right {
  transform: translateX(30px);
}

.animate-scale {
  transform: scale(0.95);
}

.animated {
  opacity: 1;
  transform: translate(0) scale(1);
}

.animate-delay-100 {
  transition-delay: 0.1s;
}
.animate-delay-150 {
  transition-delay: 0.15s;
}
.animate-delay-200 {
  transition-delay: 0.2s;
}
.animate-delay-250 {
  transition-delay: 0.25s;
}
.animate-delay-300 {
  transition-delay: 0.3s;
}
.animate-delay-350 {
  transition-delay: 0.35s;
}
