html {
  scroll-behavior: smooth;
}

:root {
  --primary-highlight: #00719f;
}

a {
  text-decoration: none;
}

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

::-webkit-scrollbar {
  width: 12px;
}

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

.quickmenu-div {
  display: none;
}

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

.whatsapp-float__btn svg {
  position: fixed;
  z-index: 999;
  bottom: 110px;
  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;
}

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

  .quickmenu-div {
    background: var(--primary-highlight);
    height: 58px;
    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;
  }
}

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

.breadcrumb-bg {
  background: linear-gradient(
      0deg,
      rgba(0, 53, 74, 0.2) 0%,
      rgba(0, 53, 74, 0.2) 100%
    ),
    linear-gradient(0deg, rgba(0, 53, 74, 0.2) 0%, rgba(0, 53, 74, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 53, 74, 0.2) 0%, rgba(0, 53, 74, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 53, 74, 0.5) 0%, rgba(0, 53, 74, 0.5) 100%),
    url("../images/bread.webp") lightgray 50% / cover no-repeat;
}

.breadcrumb {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 3.375rem 0 11.25rem 0;
}

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

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

.breadcrumb-links svg {
  vertical-align: middle;
  display: inline-block;
}

.breadcrumb-links-link a {
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 165%; /* 26.4px */
  letter-spacing: 0.64px;
}

.breadcrumb-links-link.active {
  color: #df7100;
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
  line-height: 165%; /* 26.4px */
  letter-spacing: 0.64px;
}

.breadcrumb h2 {
  color: #fff;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.44px;
}

.sobre-wrapper {
  margin-top: -6.25rem;
  border-radius: 50px 50px 0px 0px;
  background: #f4f7f8;
}

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

.cta {
  padding: 5rem 0;
}

.cta .container {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.cta .card {
  display: flex;
  width: 100%;
  max-width: 60%;
  height: auto;
  padding: 5rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex-shrink: 0;
  border-radius: 20px;
  background: linear-gradient(75deg, #00354a 29.97%, #016187 98.95%);
}

.cta .img {
  display: flex;
  align-items: stretch;
  max-width: 40%;
}

.cta .badge {
  display: flex;
  width: 173px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #df7100;
}

.cta .badge p {
  color: #fdfdfd;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.cta h2 {
  color: var(--Foundation-White-Light, #fdfdfd);
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1.92px;
}

.cta h2 span {
  color: var(--Foundation-Blue-Normal, #0097d4);
}

.cta .paragraph {
  color: #b5b5b5;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  max-width: 520px;
}

.cta a {
  display: flex;
  height: 56px;
  width: 254px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 5px;
  background: #fff;
  color: var(--Foundation-Green-Normal, #071318);
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: background-color 0.3s ease;
}

.cta a:hover {
  background: var(--Foundation-Blue-Dark, #00719f);
  color: #fff;
}

.cta a:hover svg path {
  stroke: #fff;
}

.cta img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1025px) and (max-width: 1333px) {
  .cta .img {
    display: none;
  }

  .cta .card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .cta .img {
    display: none;
  }

  .cta .card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .cta .container {
    width: 100%;
    max-width: 100%;
  }

  .cta .card {
    padding: 5rem 2rem;
    max-width: 100%;
    border-radius: 0px;
  }

  .cta h2,
  .cta .paragraph {
    max-width: 100%;
  }

  .cta a {
    width: 100%;
  }
}

/* outras solucoes  */

.text-container-solucoes {
  padding-top: 6.625rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-container-solucoes .badge {
  display: flex;
  width: 170px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #df7100;
}

.text-container-solucoes .badge p {
  color: #fdfdfd;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.text-container-solucoes h3 {
  color: var(--grey-2, #222);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 48px; /* 120% */
}

.outras-solucoes-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 5rem;
  gap: 32px;
}

.outras-solucoes-wrapper .card {
  display: flex;
  width: 100%;
  max-width: 406px;
  flex-direction: column;
  align-items: flex-end;
}

.outras-solucoes-wrapper .card-content {
  display: flex;
  height: auto;
  padding: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex: 1;
  align-self: stretch;
  border-radius: 20px 20px 0px 0px;
  background: #fff;
}

.outras-solucoes-wrapper .card-content h3 {
  color: var(--Foundation-Blue-Darker, #00354a);
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1.28px;
}

.outras-solucoes-wrapper .card-content p {
  color: #6b6b6b;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.56px;
}

.outras-solucoes-wrapper .card-content .link {
  display: flex;
  width: 40.496px;
  height: 40.496px;
  padding: 19px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 26px;
  background: var(--Foundation-Blue-Normal, #0097d4);
}

.outras-solucoes-wrapper .card img {
  border-radius: 0px 0px 10px 10px;
  width: 100%;
}

/* Política de privacidade */
.politica-de-privacidade {
  padding: 6.25rem 0 6.5rem 0;
  margin-top: -6.25rem;
  border-radius: 50px 50px 0px 0px;
  background: #f4f7f8;
}

.politica-de-privacidade h2 {
  color: #222;
  font-size: 2rem;
  font-style: normal;
  font-weight: bold;
  line-height: 54px;
  margin: 1rem 0;
}

.politica-de-privacidade p,
.politica-de-privacidade ul li {
  color: var(--foundation-blue-dark-hover, #8b9395);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 143%; /* 22.88px */
  letter-spacing: -0.64px;
}

.politica-de-privacidade p {
  margin-top: 10px;
}

.politica-de-privacidade ul {
  margin-top: 10px;
  margin-left: 20px;
}

.politica-de-privacidade p strong {
  color: #222;
}

.politica-de-privacidade h3 {
  color: #222;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: bold;
  line-height: 40px;
  margin-top: 20px;
}

/* pesquisa */
.section-title {
  color: #222;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.64px;
  margin-bottom: 40px;
}

.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  width: fit-content;
  background: var(--primary-highlight);
  border: 1px solid transparent;
  color: #fff;
  padding: 12px 36px;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.24px;
  transition: background-color 0.3s ease-in-out;
}

.primary-btn svg path {
  fill: #fff;
}

.primary-btn:hover {
  background-color: #015c80;
  color: #fff;
}

@media screen and (min-width: 1025px) and (max-width: 1333px) {
  .outras-solucoes-wrapper .card-card-content {
    padding: 30px;
  }

  .outras-solucoes-wrapper .card,
  .outras-solucoes-wrapper .card img {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .outras-solucoes-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .outras-solucoes-wrapper .card,
  .outras-solucoes-wrapper .card img {
    max-width: 100%;
  }

  .outras-solucoes-wrapper .card-card-content {
    padding: 20px;
  }

  .outras-solucoes-wrapper .card-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .outras-solucoes-wrapper {
    grid-template-columns: 1fr;
  }
}
