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

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

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

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

:root {
  --primary-color: #00948e;

  --primary-foreground-btn: #f7f7f7;
  --primary-background-btn: #00948e;
  --primary-border-btn: #00948e;

  --primary-foreground-btn-hover: #f7f7f7;
  --primary-background-btn-hover: #121212;
  --primary-border-btn-hover: #121212;

  --secondary-foreground-btn: #424242;
  --secondary-background-btn: #f7f7f7;
  --secondary-border-btn: #f7f7f7;

  --secondary-foreground-btn-hover: #424242;
  --secondary-background-btn-hover: #f7f7f7;
  --secondary-border-btn-hover: #f7f7f7;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.responsive-table {
  display: block;
  overflow: auto;
  width: 100%;
}

.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 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 16px;
  text-align: center;
  background-color: var(--primary-background-btn);
  color: var(--primary-foreground-btn);
  padding: 3px 3px 3px 20px;
  border: 1px solid var(--primary-border-btn);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  border-radius: 50px;
  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);
}

.primary-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #009688;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.primary-btn:hover .icon {
  background: #fff;
}

.secondary-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 16px;
  text-align: center;
  background-color: var(--secondary-background-btn);
  color: var(--secondary-foreground-btn);
  padding: 3px 3px 3px 20px;
  border: 1px solid var(--secondary-border-btn);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  border-radius: 50px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border 0.2s ease-in-out;
}

.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 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #f7f7f7;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.secondary-btn:hover .icon {
  background: #00948e;
}

.section-title {
  color: #121212;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -1.44px;
  margin: 0 auto 32px;
}

.section-title span {
  color: #00948e;
}

.section-title__variant {
  color: #fff;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -1.44px;
  margin: 0 auto 32px;
}

.section-title__variant span {
  color: #00fff5;
}

@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;
  }
}

.badge {
  padding: 10px 20px;
  color: #006f6b;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;

  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;

  border-radius: 50px;
  border: 1px solid #aaa;
}

.badge__variant {
  padding: 10px 20px;
  color: #00fff5;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;

  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;

  border-radius: 50px;
  border: 1px solid #aaa;
}

.whatsapp-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 10px;
  text-align: center;
  background-color: #16a34a;
  color: #fff;
  padding: 16px 32px;
  border: 1px solid #16a34a;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  border-radius: 50px;
  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: #128d3f;
  color: #fff;
  border: 1px solid #128d3f;
}

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

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

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

.whatsapp-float__btn {
  display: none;
  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;
}

.whatsapp-float__btn svg {
  width: 100%;
  height: 100%;
}

@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: 768px) {
  .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: linear-gradient(
      279deg,
      rgba(0, 25, 24, 0.02) 6.53%,
      #001918 70.06%
    ),
    url(../images/breadcrumb.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 110px;
}

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

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

.breadcrumb-links-link a {
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.breadcrumb-links-link.active {
  color: #00948e;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

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

.breadcrumb h1 {
  color: #fff;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -1.44px;
  margin-bottom: 60px;
}

@media screen and (min-width: 375px) {
  .breadcrumb h1 {
    font-size: 2.25rem;
  }
}

@media screen and (min-width: 768px) {
  .breadcrumb h1 {
    font-size: 2.5rem;
  }
}

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

@media screen and (min-width: 1280px) {
  .breadcrumb {
    margin-top: 199px;
  }
}

.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: 7.5rem 0;
  background: linear-gradient(180deg, rgba(0, 25, 24, 0.4) 19.71%, #001918 100%),
    url(../images/cta.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta .container {
  max-width: 1520px;
}

.cta h2 {
  color: #fff;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: -1.44px;
  margin-bottom: 48px;
  max-width: 675px;
}

.cta h2 span {
  color: #00fff5;
}

.cta p {
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  max-width: 525px;
  margin-bottom: 48px;
}

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

.regiao-de-atendimento {
  padding: 5rem 0;
  background-color: #f7f7f7;
}

.regiao-tabs {
  display: flex;
  gap: 32px;
  margin-top: 80px;
}

.regiao-tabs .regiao-tabs__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.regiao-tabs .regiao-tabs__btn {
  background-color: #fff;
  border: none;
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.64px;
  padding: 12px 64px;
  border-radius: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.regiao-tabs .regiao-tabs__btn.active {
  background-color: var(--primary-color);
  color: #fff;
}

.regiao-tabs__content {
  flex: 1;
}

.regiao-tabs__content-tab {
  display: none;
  background-color: #fff;
  padding: 32px;
  border-radius: 12px;
}

.regiao-tabs__content-tab.active {
  display: block;
}

.regiao-tabs__content-tab ul {
  padding-left: 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 64px;
  row-gap: 8px;
  width: fit-content;
}

.regiao-tabs__content-tab li {
  color: #4e4e4e;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 165%;
  margin: 0 0 4px;
}

@media screen and (max-width: 1024px) {
  .regiao-tabs__content-tab {
    padding: 16px;
  }
  .regiao-tabs__content-tab ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .regiao-tabs__content-tab {
    padding: 16px;
  }
  .regiao-tabs {
    flex-direction: column;
  }
  .regiao-tabs__content-tab ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 550px) {
  .regiao-tabs .regiao-tabs__btns {
    flex-direction: column;
    margin-bottom: 16px;
  }
  .regiao-tabs__content-tab ul {
    grid-template-columns: 1fr;
  }
}

.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;
}

.atendimento-exclusivo .container {
  background: linear-gradient(90deg, #1550a8 0%, #001b33 100%);
  padding: 40px;
}

.atendimento-exclusivo h2 {
  color: #fff;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.96px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .atendimento-exclusivo h2 {
    font-size: 1.5rem;
  }
  .atendimento-exclusivo .container {
    padding: 40px 80px;
  }
}
