html {
  scroll-behavior: smooth;
}

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

:root {
  --primary-highlight: var(--Foundation-Blue-Dark, #051745);
}

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

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

.quickmenu-div {
  display: none;
}

a {
  text-decoration: none;
}

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

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

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

@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 (max-width: 992px) {
  .whatsapp-float__btn svg {
    display: none;
  }
}

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

.breadcrumb {
  background-color: #002e57;
  position: relative;
}

.breadcrumb-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 70px 0 70px 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-link a {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 165%; /* 26.4px */
  letter-spacing: 0.64px;
}

.breadcrumb-links-link.active {
  color: var(--Foundation-Dark-Blue-Normal, #00d670);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 22.88px */
  letter-spacing: 0.32px;
}

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

.breadcrumb .ellipse {
  position: absolute;
  top: 0;
  right: 0;
  top: -50px;
  z-index: 1;
}

.breadcrumb .ellipse img {
  max-width: 100%;
  height: auto;
  display: block;
}

.bread-produto {
  width: 100%;
  height: 211px;
  background-color: #002e57;
  position: relative;
}

.bread-produto .ellipse {
  position: absolute;
  top: 0;
  right: 0;
  top: -50px;
  z-index: 1;
}

.cta {
  border-radius: 24px 24px 0px 0px;
  background: #fff;
  /* margin-top: -20px; */
  padding: 80px 0 80px 0;
}

.cta .cta-container {
  margin: 0 auto;
  width: 95%;
}

.cta-container {
  display: flex;
  width: 100%;
  height: 100%;
}

.cta-container .img-container {
  display: flex;
  width: 40%;
  padding-left: 128px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 24px;
  background: var(--Foundation-Dark-Blue-Normal, #00d670);
}

.cta-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-content {
  border-radius: 0 24px 24px 0;
  background: #002e57;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  align-items: flex-start;
  min-height: 100%;
  padding: 128px;
  position: relative;
  overflow: hidden;
}

.ellipse-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.ellipse-img img {
  display: block;
  max-width: 100%;
}

.cta-content h2 {
  max-width: 698px;
  color: var(--Content-Reversed, #fff);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 125% */
  letter-spacing: 1.44px;
}

.cta-content h2 span {
  color: #00d670;
}

.cta-content .orcamento {
  display: flex;
  height: 56px;
  width: 257px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100000px;
  background: #fff;
  transition: background-color 0.3s ease;
  color: var(--Foundation-Green-Normal, #071318);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 22.88px */
  letter-spacing: 0.32px;
  position: relative;
  z-index: 2;
}

.cta-content .especialista {
  display: flex;
  height: 56px;
  width: 273px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  border-radius: 100000px;
  border: 0.5px solid #fff;
  color: var(--Foundation-Blue-Light, #eaf2f4);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  z-index: 1;
}

.cta-content .orcamento:hover,
.cta-content .especialista:hover {
  background-color: #00a154;
  border: 0.5px solid #00a154;
  color: #fff;
}

.cta-content .orcamento:hover svg path {
  stroke: #fff;
}

.cta-content .links {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.cta-content .svg {
  position: absolute;
  bottom: 4px;
  left: 0;
  z-index: 0;
  width: 100%;
  pointer-events: none;
}

/* Política de privacidade */
.politica-de-privacidade {
  padding: 80px 0;
  border-radius: 20px 20px 0px 0px;
  background: #f5f5f5;
  position: relative;
  z-index: 1;
  margin-top: -20px;
}

.politica-de-privacidade h2 {
  color: #222;
  font-size: 32px;
  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: 16px;
  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: 24px;
  font-style: normal;
  font-weight: bold;
  line-height: 40px;
  margin-top: 20px;
}

/* solucoes  */
.solucoes {
  padding: 80px 0;
  background: #f5f5f5;
  margin-top: -20px;
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 1;
}

/* pesquisa */
.pesquisa {
  padding: 80px 0 80px 0;
  border-radius: 20px 20px 0px 0px;
  background: #fff;
  position: relative;
  z-index: 1;
  margin-top: -20px;
}

.section-title {
  color: #222;
  font-size: 32px;
  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;
  border: 1px solid transparent;
  color: #fff;
  background: var(--Foundation-Dark-Blue-Normal, #051745);
  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: #00d670;
  color: #fff;
}

.page-title {
  height: 369px;
  flex-shrink: 0;
  background: #002e57;
  position: relative;
}

.page-title .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 70px;
  gap: 16px;
}

.page-title .badge {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: var(--Foundation-Blue-Dark, #00396d);
}

.page-title .badge p {
  color: #fff;
  font-family: Geist;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.page-title h1 {
  color: var(--Content-Reversed, #fff);
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 125% */
  letter-spacing: -1.44px;
  width: 100%;
  max-width: 789px;
}

.page-title .container {
  position: relative;
}

.page-title .ellipse {
  position: absolute;
  top: 0;
  right: 0;
  top: -50px;
  z-index: 1;
}

.page-title .svg {
  overflow: hidden;
}

.page-title .ellipse img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* oculos simuladores de alcoolismo */

.produto {
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 84px;
}

.produto .product-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1586px;
  border-radius: 20px;
  background: #fff;
  position: relative;
  margin-top: -100px;
  z-index: 1;
}

.product-container .text-container {
  padding: 64px;
}

.product-container .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 68px;
}

.product-container .header-produto {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-container .badge-produtos {
  display: flex;
  max-width: 120px;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: var(--Foundation-Dark-Blue-Light, #e6fbf1);
}

.product-container .badge-produtos p {
  color: var(--Foundation-Dark-Blue-Darker, #004b27);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.product-container h2 {
  color: var(--Foundation-Dark-Blue-Normal, #051745);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 52px; /* 144.444% */
  letter-spacing: -1.08px;
}

.product-container .badges-desc {
  display: flex;
  gap: 8px;
}

.product-container .badges-desc .badge {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #ebebeb;
}

.product-container .badges-desc .badge p {
  color: #555;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.24px;
}

.product-container .desc-content {
  display: flex;
  height: 266px;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #dedede;
  background: #fff;
  margin-top: 32px;
}

.product-container .desc-content h3 {
  color: var(--Foundation-Blue-Darker, #001b33);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.96px;
}

.product-container .desc-content ul {
  list-style: none;
}

.product-container .desc-content li {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 22.88px */
  letter-spacing: -0.32px;
}

.product-container .price-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 32px;
}

.price-container h3 {
  color: var(--Foundation-Blue-Darker, #001b33);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 52px; /* 144.444% */
  letter-spacing: -1.08px;
}

.price-container p {
  color: var(--Foundation-Blue-Darker, #001b33);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.24px;
}

.price-container a {
  display: flex;
  width: 332px;
  height: 56px;
  padding: 0 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 15968px;
  background: #16a34a;
  transition: background-color 0.3s ease;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
}

.price-container a:hover {
  background-color: #15803d;
}

.produto-descricao {
  padding: 80px 0;
}

.produto-descricao-header {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 80px;
  align-self: stretch;
}

.produto-descricao .produto-content {
  padding: 80px 0;
}

.produto-descricao-header .tab {
  padding-bottom: 24px;
  cursor: pointer;
}

.produto-descricao-header .tab p {
  color: #555;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.8px;
}

.produto-content {
  display: none;
}

.produto-descricao-header .tab.active {
  font-weight: bold;
  border-bottom: 2px solid #004c91;
}

.produto-descricao-header .tab.active p {
  color: #004c91;
}

.produto-content.active {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.produto-content ul {
  margin-left: 20px;
}

.produto-content p,
.produto-content li {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 22.88px */
  letter-spacing: -0.32px;
}

.produto-content h3 {
  color: var(--grey-2, #222);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.28px;
}

.hero {
  background-image: url("../images/index-img/main-hero-background.webp");
  position: relative;
}

.hero .container {
  display: flex;
  justify-content: space-between;
  justify-content: space-between;
  position: relative;
  padding: 70px 0 128px 0;
}

.hero .text-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero .badge {
  display: flex;
  padding: 10px;
  align-items: center;
  max-width: 181px;
  width: 100%;
  gap: 20px;
  border-radius: 8px;
  background: var(--Foundation-Blue-Dark, #00396d);
}

.hero .badge p {
  color: var(--Foundation-Dark-Blue-Normal, #00d670);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.hero h1 span {
  color: #00d670;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px; /* 125% */
  letter-spacing: -1.44px;
}

.hero h1 {
  color: var(--Foundation-Dark-Blue-Light, #e6fbf1);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -1.44px;
  max-width: 651px;
}

.hero img {
  height: 100%;
  right: 0;
}

.hero .orcamento {
  display: flex;
  height: 56px;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100000px;
  background: #fff;
  color: var(--Foundation-Green-Normal, #071318);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 22.88px */
  letter-spacing: -0.32px;
  max-width: 257px;
  transition: background-color 0.3s ease;
  width: 100%;
}

.hero .links {
  display: flex;
  gap: 16px;
}

.hero .especialista {
  display: flex;
  height: 56px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--Foundation-Blue-Light, #eaf2f4);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  max-width: 273px;
  width: 100%;
  border-radius: 100000px;
  border: 0.5px solid #fff;
  transition: background-color 0.3s ease;
}

.hero .orcamento:hover,
.hero .especialista:hover {
  background-color: #00a154;
  color: #fff;
  border: 0.5px solid #00a154;
}

.hero .orcamento:hover svg path {
  stroke: #fff;
}

.hero .paragraph {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.8px;
  max-width: 651px;
}

/* clientes  */

.clientes {
  padding: 80px 0;
  border-radius: 24px 24px 0 0;
  background: #fff;
  position: relative;
  margin-top: -20px;
}

.clientes h2 {
  color: #002e57;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.96px;
}

.clientes-container .logo {
  display: flex;
  width: 181px;
  height: 167.79px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: #fff;
}

.clientes-container {
  padding-top: 64px;
}

.clientes-container {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: scroll 10s linear infinite;
}

.clientes-container.paused {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.clientes-swiper {
  overflow: hidden;
}

@media (max-width: 768px) {
  .clientes-container {
    gap: 20px;
  }

  .clientes-container .logo {
    width: 120px;
    height: 110px;
  }
}

@media (max-width: 480px) {
  .clientes-container {
    gap: 15px;
  }
}

/* diferenciais */
.diferenciais {
  padding: 80px 0;
  background: #f5f5f5;
  width: 100%;
}

.diferenciais .badge {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  max-width: 138px;
  border-radius: 8px;
  background: var(--Foundation-Dark-Blue-Light, #e6fbf1);
}

.diferenciais .badge p {
  color: var(--Foundation-Dark-Blue-Darker, #004b27);
  font-family: Geist;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.diferenciais h2 {
  color: var(--foundation-blue-dark-active, #002241);
  font-family: Geist;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 125% */
  letter-spacing: -1.44px;
  margin-top: 16px;
}

.diferenciais h2 span {
  font-weight: 500;
}

.diferenciais .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  flex-shrink: 0;
  padding-top: 64px;
}

.diferenciais .cards .card {
  display: flex;
  width: 100%;
  max-width: 280px;
  height: 168px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
}

.diferenciais .cards .icon {
  display: flex;
  width: 63px;
  height: 63px;
  padding: 12px 11.625px 11.625px 12px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: var(--radius-s, 8px);
  background: var(--Foundation-Dark-Blue-Darker, #004b27);
}

.diferenciais .content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diferenciais .cards h3 {
  color: var(--Foundation-Blue-Darker, #001b33);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.96px;
}

.diferenciais .cards p {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 22.88px */
  letter-spacing: -0.32px;
}

.solucoes {
  padding: 80px 0;
  background: #f5f5f5;
}

.solucoes .solucoes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.solucoes .badge {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  max-width: 119px;
  width: 100%;
  background: var(--Foundation-Dark-Blue-Light, #e6fbf1);
}

.solucoes .badge p {
  color: var(--Foundation-Dark-Blue-Darker, #004b27);
  font-family: Geist;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.solucoes h2 {
  color: var(--Foundation-Blue-Darker, #001b33);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 125% */
  letter-spacing: -1.44px;
  max-width: 563px;
  width: 100%;
  margin-top: 16px;
}

.solucoes .paragraph {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 22.88px */
  letter-spacing: -0.32px;
  max-width: 475px;
  width: 100%;
}



.solucoes .cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 66px;
}

.solucoes .card {
  display: flex;
  max-width: 328px;
  width: 100%;
  height: 100%;
  height: 431px;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  border-radius: 24px;
  border: 1px solid #dedede;
  background: #fff;
}

.card-icon {
  background: unset!important;
    padding: unset!important;
    display: unset!important;
    width: unset!important;
    border-radius: unset!important;
    align-items: unset!important;
    font-size: unset!important;
    
}

.card-title {
  display: unset !important;
  padding: unset !important;
  font-size: unset !important;
  color: #000000 !important;  
  background-color: unset !important;
}

.card-paragraph {
  display: unset!important;
  padding: unset!important;
  color: #555570!important;
  background-color: unset!important;
  font-weight: unset!important;
  font-size: unset!important;
  max-width: unset!important;
  border-radius: unset!important;
}

.solucoes .cards .icon {
  display: flex;
  width: 84px;
  height: 84px;
  padding: 0 37px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 50px;
  border: 1px solid var(--Foundation-Dark-Blue-Normal, #00d670);
  background: #fff;
}

.solucoes .card p {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 22.88px */
  letter-spacing: -0.32px;
  margin-top: auto;
}

.solucoes .card a {
  display: flex;
  height: 56px;
  width: 100%;
  max-width: 264px;
  padding: 0 24px;
  margin-top: auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 100000px;
  background: var(--Foundation-Dark-Blue-Normal, #051745);
  color: var(--Foundation-Blue-Light, #eaf2f4);
  transition: background-color 0.3s ease;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.solucoes .card a:hover {
  background-color: #00a154;
}

/* solucoes artigos  */

.solucoes-artigos {
  background: #f5f5f5;
  margin-top: -20px;
  padding: 80px 0;
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 1;
}

.solucoes-artigos .cards,
.sugestoes .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.solucoes-artigos .card,
.sugestoes .card {
  height: 100%;
  max-width: 400px;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.solucoes-artigos .card-content,
.sugestoes .card-content {
  flex: 1;
  display: flex;
  padding: 24px;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-radius: 0 0 24px 24px;
  border: 1px solid #dedede;
  background: #fff;
}

.solucoes-artigos .card img,
.sugestoes .card img {
  display: block;
  border-radius: 24px 24px 0 0;
  max-width: 100%;
  width: 100%;
  height: 257px;
  flex: 1;
}

.solucoes-artigos .card .badge,
.sugestoes .card .badge {
  display: flex;
  padding: 10px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  background: var(--Foundation-Dark-Blue-Light, #e6fbf1);
}

.solucoes-artigos .card .badge p,
.sugestoes .card .badge p {
  color: var(--Foundation-Dark-Blue-Darker, #004b27);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.solucoes-artigos .card h3,
.sugestoes .card h3 {
  color: var(--Content-Primary, #1d1f1e);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.8px;
}

.solucoes-artigos .card-content p,
.sugestoes .card-content p {
  overflow: hidden;
  color: #555;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
}

.solucoes-artigos .card-content .saiba-mais,
.sugestoes .card-content .saiba-mais {
  display: flex;
  height: 56px;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--Foundation-Blue-Normal, #004c91);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: color 0.3s ease;
}

.solucoes-artigos .card-content .saiba-mais:hover,
.sugestoes .card-content .saiba-mais:hover {
  color: #00d670;
}

.solucoes-artigos .card-content .saiba-mais svg path,
.sugestoes .card-content .saiba-mais svg path {
  transition: stroke 0.3s ease;
}

.solucoes-artigos .card-content .saiba-mais:hover svg path,
.sugestoes .card-content .saiba-mais:hover svg path {
  stroke: #00d670;
}

@media screen and (max-width: 1300px) {
  .solucoes-artigos .cards,
  .sugestoes .cards {
    display: grid;
    align-items: stretch;
  }

  .solucoes-artigos .card-content,
  .sugestoes .card-content {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .solucoes-artigos .cards,
  .sugestoes .cards {
    grid-template-columns: 1fr 1fr;
  }

  .solucoes-artigos .card-content,
  .sugestoes .card-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .solucoes-artigos .cards,
  .sugestoes .cards {
    grid-template-columns: 1fr;
  }
}

/* artigo  */
.article {
  border-radius: 20px 20px 0px 0px;
  background: #f5f5f5;
  position: relative;
  z-index: 1;
  margin-top: -20px;
}

.article .card-container {
  max-width: 95%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  transform: translateY(-15%);
}

.article .card-article {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.article .text-content {
  display: flex;
  flex: 1;
  max-width: 50%;
  padding: 96px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  border-radius: 24px 0 0 24px;
  background: #fff;
}

.article .image-container {
  max-width: 50%;
  flex: 1;
}

.article .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 24px 24px 0;
}

.article .title-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article .badge {
  display: inline-flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--Foundation-Dark-Blue-Light, #e6fbf1);
  width: fit-content;
}

.article .text-content h1 {
  color: var(--Foundation-Dark-Blue-Normal, #051745);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.28px;
}

.article .text-content p {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 22.88px */
  letter-spacing: -0.32px;
}

.article .badge p {
  color: var(--Foundation-Dark-Blue-Darker, #004b27);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.article .orcamento {
  display: flex;
  max-width: 464px;
  width: 100%;
  height: 56px;
  padding: 0 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 15968px;
  background: #16a34a;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
  transition: background-color 0.3s ease;
}

.article .orcamento:hover {
  background-color: #15803d;
}

.article .text-bg {
  background: #fff;
}

.article .text {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article .text p strong,
.article li strong,
.article a strong {
  color: var(--primary-highlight);
}

.article .text h2 {
  color: var(--grey-2, #222);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.28px;
}

.article .text h3,
.article .text h4 {
  color: var(--grey-2, #222);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.28px;
}

.article .text ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 20px;
}

.article .text p,
.article .text li {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 22.88px */
  letter-spacing: 0.32px;
}

.article .text ol {
  margin-left: 18px;
}

.article a strong {
  text-decoration: underline;
}

.sugestoes {
  padding: 80px 0;
}

.sugestoes .container {
  display: flex;
  flex-direction: column;
  gap: 61px;
}

.sugestoes .title-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

.sugestoes .badge-sugestoes {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: var(--Foundation-Dark-Blue-Light, #e6fbf1);
  max-width: 126px;
}

.sugestoes .badge-sugestoes p {
  color: var(--Foundation-Dark-Blue-Darker, #004b27);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.sugestoes h2 {
  color: var(--Foundation-Blue-Darker, #001b33);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 125% */
  letter-spacing: -1.44px;
}

.article .image-container img {
  display: block;
}

@media (max-width: 1024px) {
  .article .card-article {
    flex-direction: column-reverse;
  }

  .article .text-content,
  .article .image-container {
    max-width: 100%;
  }

  .article .card-container {
    max-width: 100%;
    transform: translateY(-5%);
  }

  .article .text-content {
    padding: 48px 24px;
  }

  .article .text-content {
    border-radius: 0 0 24px 24px;
  }

  .article .image-container img {
    border-radius: 24px 24px 0 0;
  }
}

/* regioes  */
.regioesDeAtendimento {
  padding: 80px 0;
}

.regioes-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  gap: 24px;
}

.regioesDeAtendimento .badge {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: var(--Foundation-Dark-Blue-Light, #e6fbf1);
  max-width: 104px;
}

.regioesDeAtendimento .badge p {
  color: var(--Foundation-Dark-Blue-Darker, #004b27);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.second-title {
  color: var(--Foundation-Blue-Darker, #001b33);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 125% */
  letter-spacing: -1.44px;
}

.regioesDeAtendimento .paragraph {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 22.88px */
  letter-spacing: -0.32px;
  max-width: 544px;
}

.regioes-title span {
  font-size: 16px;
  color: #4b4b4b;
  margin-top: 8px;
}

.flex-tabs {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  padding-top: 64px;
  gap: 16px;
}

.divTabContent {
  display: grid;
  grid-template-columns: 1fr;
}

.tab {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-right: 8px;
}

.tab button:focus {
  background-color: #051745;
}

.tablinks {
  border: 1px solid transparent;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 143%; /* 22.88px */
  letter-spacing: -0.32px;
}

.tablinks:hover {
  color: #e6e8ec;
  border-left: 2px solid transparent;
  background-color: #051745;
}

.tablinks.active {
  color: #e6e8ec;
  border-left: 2px solid transparent;
  background-color: #051745;
  transition: 0.3s ease-in-out;
}

.divTabContent ul li {
  font-size: 16px;
  list-style-type: disc;
  color: #555;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 0.32px;
}

.divTabContent ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.tabContentFlex {
  padding: 48px;
  border-radius: 8px;
  background: #fff;
}

.tab-width-flex {
  max-height: 396px;
  overflow-x: hidden;
  overflow-y: scroll;
}

@media (max-width: 1024px) {
  .second-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
}

@media only screen and (max-width: 1000px) {
  .flex-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .divTabContent ul {
    grid-template-columns: 1fr 1fr;
  }

  .tab-width-flex {
    max-height: 240px;
  }
}

@media only screen and (max-width: 550px) {
  .divTabContent ul {
    grid-template-columns: 1fr;
  }
}

/* sobre nós  */
.sobre-nos {
  padding: 80px 0;
}

.sobre-nos .container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 160px;
}

.sobre-nos .badge {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: var(--Foundation-Dark-Blue-Light, #e6fbf1);
  max-width: 124px;
}

.sobre-nos .badge p {
  color: var(--Foundation-Dark-Blue-Darker, #004b27);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.sobre-nos h2 {
  color: var(--Foundation-Blue-Darker, #001b33);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 125% */
  letter-spacing: -1.44px;
  margin-top: 20px;
}

.sobre-nos .svg {
  color: var(--Foundation-Dark-Blue-Normal, #00d670);
  font-size: 25px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.sobre-nos .text {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.sobre-nos .text h3 {
  color: var(--foundation-dark-blue-dark-active, #020a1f);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.96px;
}

.sobre-nos .text h3 span {
  color: var(--foundation-dark-blue-dark-active, #020a1f);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.96px;
  text-transform: uppercase;
}

.sobre-nos .text p {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 22.88px */
  letter-spacing: -0.32px;
  max-width: 475px;
  width: 100%;
  margin-top: 16px;
}

.text-content-sobre {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 64px;
}

/* cursos  */

.cursos {
  padding: 80px 0;
  border-radius: 24px 24px 0 0;
  background: #002e57;
  position: relative;
  overflow: hidden;
}

.cursos .text-container {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
}

.cursos .header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cursos .header .badge {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: var(--Foundation-Blue-Dark, #00396d);
  width: 100%;
  max-width: 103px;
}

.cursos .header .badge p {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.cursos .text-container h2 {
  color: var(--Content-Reversed, #fff);
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 125% */
  letter-spacing: -1.44px;
}

.cursos .text-container p {
  color: var(--content-alpha-80, rgba(255, 255, 255, 0.8));
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 22.88px */
  letter-spacing: -0.32px;
  max-width: 544px;
  width: 100%;
}

.cursos .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  padding-top: 64px;
  position: relative;
  z-index: 1;
  gap: 24px;
  padding-bottom: 80px;
}

.cursos .card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 257px;
  border-radius: 24px 24px 0 0;
}

.cursos .card {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.cursos .card-content {
  display: flex;
  width: 100%;
  max-width: 100%;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-radius: 0 0 24px 24px;
  border: 1px solid #dedede;
  background: #fff;
}

.cursos .card .badge {
  display: flex;
  gap: 10px;
  padding: 10px;
  align-items: center;
  border-radius: 8px;
  background: var(--Foundation-Dark-Blue-Light, #e6fbf1);
}

.cursos .card .badge p {
  color: var(--Foundation-Dark-Blue-Darker, #004b27);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.cursos .card .card-content h3 {
  color: var(--Content-Primary, #1d1f1e);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.8px;
}

.cursos .card .card-content .paragraph {
  overflow: hidden;
  color: #555;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
}

.cursos .card .card-content .saiba-mais {
  display: flex;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 10000px;
  color: var(--Foundation-Blue-Normal, #004c91);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: color 0.3s ease;
  margin-bottom: 24px;
}

.cursos .card .card-content .saiba-mais:hover {
  color: #00d670;
}

.cursos .card .card-content .saiba-mais:hover svg path {
  stroke: #00d670;
}

.cursos .link-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cursos .link-container a {
  display: flex;
  width: 221px;
  height: 56px;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 100000px;
  background: #fff;
  color: var(--Foundation-Green-Normal, #071318);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.32px;
  transition: background-color 0.3s ease;
}

.cursos .link-container a:hover {
  background-color: #00a154;
  color: #fff;
}

.cursos .link-container a:hover svg path {
  stroke: #fff;
}

.cursos .card-content p {
  overflow: hidden;
  color: #555;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
}

.cursos .ellipse-container {
  position: absolute;
  margin-top: -50px;
  top: 0;
  right: 0;
  z-index: 1;
}

.cursos .svg-container {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-40%);
  z-index: 0;
  pointer-events: none;
}

/* depoimentos  */

.depoimentos {
  padding: 80px 0 86px 0;
  background: #f5f5f5;
  width: 100%;
}

.depoimentos .text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-direction: column;
}

.depoimentos .badge {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: var(--Foundation-Dark-Blue-Light, #e6fbf1);
  max-width: 144px;
  width: 100%;
}

.depoimentos .badge p {
  color: var(--Foundation-Dark-Blue-Darker, #004b27);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 143%; /* 20.02px */
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.depoimentos .text-container h2 {
  color: var(--Foundation-Blue-Darker, #001b33);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 125% */
  letter-spacing: -1.44px;
}

.depoimentos .card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.depoimentos .card {
  position: relative;
  width: 100%;
  max-width: 800px;
  min-height: 322px;
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 24px -12px rgba(54, 74, 54, 0.06),
    0 1px 2px 0 rgba(87, 92, 86, 0.16), 0 0 0 1px rgba(18, 105, 63, 0.08);
}

.depoimentos .card h3 {
  color: var(--Content-Primary, #1d1f1e);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.28px;
  max-width: 672px;
  width: 100%;
}

.depoimentos .card h4 {
  color: var(--Foundation-Blue-Normal, #004c91);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.8px;
}

.depoimentos .swiper {
  width: 100%;
  overflow: hidden;
}

.depoimentos .swiper-wrapper {
  display: flex;
}

.depoimentos .swiper-slide {
  display: flex;
  justify-content: center;
  width: 100% !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .diferenciais .cards,
  .solucoes .cards {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .page-title .svg {
    display: none;
  }
}

@media (min-width: 767px) and (max-width: 1025px) {
  .page-title .svg {
    display: none;
  }
}

@media (min-width: 1025px) and (max-width: 1435px) {
  .diferenciais .cards .card,
  .solucoes .card {
    max-width: 100%;
    height: 100%;
  }

  .cursos .card img {
    width: 100%;
    max-width: 380px;
  }

  .cursos .card {
    width: 100%;
    max-width: 380px;
    height: 100%;
  }

  .cursos .card .content {
    width: 100%;
    max-width: 380px;
  }

  .cursos .card .content .paragraph {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero {
    background: url("../images/index-img/main-hero-background-tablet.webp");
    background-size: cover;
    background-repeat: no-repeat;
  }

  .diferenciais .cards,
  .solucoes .cards,
  .cursos .cards {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
  }

  .solucoes .solucoes-header {
    flex-direction: column;
    align-items: start;
    gap: 32px;
  }

  .diferenciais .cards .card,
  .solucoes .card {
    max-width: 100%;
    gap: 16px;
    height: auto;
  }

  .sobre-nos .container {
    flex-direction: column;
  }

  .cursos .card {
    max-width: 350px;
  }

  .cursos .card img {
    max-width: 350px;
  }

  .cursos .card .content {
    max-width: 350px;
  }

  .cursos .card .content .paragraph {
    max-width: 100%;
  }

  .cursos .ellipse-container {
    display: none;
  }

  .cursos .svg-container {
    display: none;
  }
}

@media (max-width: 767px) {
  .diferenciais .cards,
  .solucoes .cards,
  .cursos .cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .diferenciais h2,
  .solucoes h2,
  .sobre-nos h2 {
    font-size: 32px;
    line-height: normal;
  }

  .hero {
    background: url("../images/index-img/main-hero-background-mobile.webp");
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero h1 span {
    font-size: 32px;
    line-height: 40px;
  }

  .hero .links {
    flex-direction: column;
    gap: 20px;
  }

  .hero .orcamento,
  .hero .especialista {
    max-width: 100%;
  }

  .solucoes .card a {
    max-width: 100%;
  }

  .cursos .cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

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

  .cursos .card img {
    max-width: 100%;
  }
  .cursos .card .content {
    max-width: 100%;
  }

  .depoimentos .card {
    padding: 48px 20px;
  }

  .depoimentos .card h3 {
    font-size: 20px;
  }

  .depoimentos {
    padding-top: 100px;
  }
}

@media (max-width: 1024px) {
  .produto-descricao-header {
    gap: 16px;
  }
}

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

  .cta-content {
    width: 100%;
    border-radius: 24px;
  }

  .product-container .price-container {
    gap: 40px;
  }
}

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

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

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

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

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

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

  .quickmenu-div {
    background: #020818;
    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;
  }
}

@media (max-width: 1024px) {
  .breadcrumb .ellipse img,
  .bread-produto .ellipse img {
    display: none;
  }

  .page-title .ellipse img {
    display: none;
  }

  .cta-container img,
  .cta-container .img-container {
    display: none;
  }

  .cta-content {
    width: 100%;
    border-radius: 24px;
  }

  .cta-content .svg {
    display: none;
  }

  .produto .product-container {
    flex-direction: column;
  }

  .product-container .price-container {
    gap: 20px;
  }
}

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

  .cta .cta-content {
    width: 100%;
    align-items: center;
    padding: 88px 20px;
  }

  .cta-content .links {
    flex-direction: column;
    width: 100%;
  }

  .cta-content .orcamento,
  .cta-content .especialista {
    width: 100%;
  }

  .page-title h1 {
    font-size: 32px;
    line-height: 40px;
    max-width: 100%;
    letter-spacing: -0.96px;
    text-align: center;
  }

  .page-title .svg {
    display: none;
  }

  .product-container .price-container {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }
  .cta-content h2 {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 1px;
  }
}

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