html {
  scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
  background: #002d4f;
  border-radius: 50px;
}

.quickmenu-div {
  display: 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%;
}

@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: 1604px;
  }
}

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

  .quickmenu-div {
    background: linear-gradient(90deg, #10aac9 0%, #002d4f 100%);
    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;
  }
}

/* breadcrumb  */
.breadcrumb {
  width: 100%;
  padding-top: 251px;
  padding-bottom: 80px;
  background: url("../images/breadcrumb-bg.webp");
  background-size: cover;
  background-position: center;
}

.breadcrumb h1 {
  color: #fff;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.44px;
  text-transform: uppercase;
}

.breadcrumb .breadcrumb-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: 12px;
}

.breadcrumb .breadcrumb-links li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb .breadcrumb-link {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.breadcrumb .breadcrumb-link.active {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

/* HERO */
.hero {
  padding-top: 311px;
  padding-bottom: 330px;
  position: relative;
}

.hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 16, 22, 0.65) 0%,
    rgba(1, 16, 22, 0.6) 100%
  );
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  height: 100%;
}

.hero .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .badge {
  color: #00abd3;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.96px;
}

.hero .title {
  color: #f3f3f3;
  text-align: center;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 76px;
  text-transform: uppercase;
  margin-top: 42px;
}

.hero .line {
  width: 640px;
  max-width: 100%;
  height: 1px;
  background: #fff;
  margin-block: 32px;
}

.hero .paragraph {
  color: #f3f3f3;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  max-width: 1000px;
}

.hero .links-container {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.hero .produtos-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 274px;
  height: 56px;
  text-decoration: none;
  border-radius: 8px;
  background: #fefffe;
  color: #1e1e1e;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  transition: background-color 0.3s ease;
}

.hero .produtos-link:hover {
  background: #10aac9;
  color: #f3f3f3;
}

.hero .servicos-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 267px;
  height: 56px;
  border-radius: 8px;
  background: #10aac9;
  color: #f3f3f3;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero .servicos-link:hover {
  background: #1089aa;
}

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

.heroSwiper .swiper-pagination {
  position: relative;
  margin-top: 42px;
}

.hero .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
}

.hero .swiper-pagination-bullet-active {
  width: 16px;
  height: 8px;
  border-radius: 4px;
  background: #fff;
}

@media (max-width: 1024px) {
  .hero .title {
    font-size: 48px;
    line-height: 52px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-block: 231px;
  }

  .hero .title,
  .breadcrumb h1 {
    font-size: 38px;
    line-height: normal;
  }

  .hero .links-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero .servicos-link {
    width: 274px;
  }

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

  .hero .paragraph {
    font-size: 16px;
    line-height: normal;
  }
}

@media (max-width: 400px) {
  .hero .title,
  .breadcrumb h1 {
    font-size: 32px;
  }
}

/* compromisso da flexis revestimentos */
.compromisso-da-flexis-revestimentos {
  background: #f4f4f4;
  padding-bottom: 80px;
}

.compromisso-da-flexis-revestimentos .container {
  position: relative;
  margin-top: -154px;
  z-index: 5;
}

.compromisso-da-flexis-revestimentos .card {
  display: flex;
}

.compromisso-da-flexis-revestimentos .card .first-container,
.compromisso-da-flexis-revestimentos .card .second-container {
  width: 50%;
}

.compromisso-da-flexis-revestimentos .card .first-container {
  display: flex;
  padding-block: 115px;
  padding-inline: 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex-shrink: 0;
  border-radius: 10px 0 0 10px;
  background: #002d4f;
}

.compromisso-da-flexis-revestimentos .card .badge {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  background: #001f36;
}

.compromisso-da-flexis-revestimentos .card .badge p {
  color: #00abd3;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.compromisso-da-flexis-revestimentos .card .title {
  color: #e6eaec;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.96px;
}

.compromisso-da-flexis-revestimentos .card .line {
  width: 100%;
  max-width: 605px;
  height: 1px;
  background: #d9d9d9;
}

.compromisso-da-flexis-revestimentos .card .paragraph {
  color: #f3f3f3;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.compromisso-da-flexis-revestimentos .card .falar-com-especialista {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 275px;
  height: 56px;
  gap: 10px;
  border-radius: 8px;
  background: #34a853;
  color: #fbfaf7;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.compromisso-da-flexis-revestimentos .card .falar-com-especialista:hover {
  background-color: #289144;
}

.compromisso-da-flexis-revestimentos .second-container .cards {
  display: grid;
  grid-template-columns: auto auto;
  background: #fff;
}

.compromisso-da-flexis-revestimentos .second-container .card {
  display: flex;
  padding: 64px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.compromisso-da-flexis-revestimentos .second-container .card .icon {
  display: flex;
  width: 38px;
  height: 38px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 42px;
  background: #022f40;
}

.compromisso-da-flexis-revestimentos .second-container .card h3 {
  color: #022f40;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.compromisso-da-flexis-revestimentos .second-container .card p {
  color: #757575;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 1024px) {
  .compromisso-da-flexis-revestimentos .card {
    flex-direction: column;
  }

  .compromisso-da-flexis-revestimentos .card .first-container,
  .compromisso-da-flexis-revestimentos .card .second-container {
    width: 100%;
  }

  .compromisso-da-flexis-revestimentos .card .first-container {
    padding: 80px 48px;
  }
}

@media (max-width: 768px) {
  .compromisso-da-flexis-revestimentos .card .badge {
    gap: 10px;
  }

  .compromisso-da-flexis-revestimentos .second-container .cards {
    grid-template-columns: auto;
  }
}

@media (max-width: 400px) {
  .compromisso-da-flexis-revestimentos .card .first-container {
    padding: 40px 16px;
  }

  .compromisso-da-flexis-revestimentos .card .falar-com-especialista {
    width:stretch;
  }
}

/* Produtos  */
.produtos {
  padding-top: 80px;
}

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

.produtos .badge {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  background: #fff;
}

.produtos .badge p {
  color: #00abd3;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.produtos .title {
  color: #022f40;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.44px;
  max-width: 1048px;
}

.produtos .line {
  width: 100%;
  max-width: 640px;
  height: 1px;
  background: #d9d9d9;
}

.produtos .paragraph {
  color: #757575;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 708px;
  padding-bottom: 112px;
}

.produtos .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
  padding-bottom: 80px;
}

.produtos .card {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 512px;
  height: 390px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 64px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.produtos .card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  padding: 32px;
}

.produtos .card-content a {
  text-decoration: none;
}

.produtos .card-content h3 {
  color: #f3f3f3;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.96px;
  text-decoration: none;
}

.produtos .card-content .saiba-mais {
  display: flex;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.04), 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

.produtos .card-hover {
  position: absolute;
  background: #fff;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-end;
  border: 3px solid #10aac9;
}

.produtos .card-hover .card-content {
  display: flex;
  align-items: center;
  gap: 69px;
  padding: 32px;
  align-self: stretch;
}

.produtos .card-hover .text-container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.produtos .card-hover h4 {
  color: #303030;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.96px;
}

.produtos .card-hover p {
  color: #2c2c2c;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 332px;
}

.produtos .card-hover .icon {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: #00abd3;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.04), 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

/* hover */

.produtos .card:hover .card-hover {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1440px) {
  .produtos .card-hover .card-content {
    gap: 0px;
    justify-content: space-between;
  }
}

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

  .produtos .card-hover p {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .produtos .cards {
    grid-template-columns: 1fr;
  }

  .hero .badge {
    font-size: 20px;
    line-height: normal;
  }

  .produtos .title {
    font-size: 32px;
    line-height: normal;
  }
}

@media (max-width: 400px) {
  .produtos .card-content {
    padding: 18px;
  }
}
/* Servicos */
.servicos {
  background: #002d4f;
}

.servicos .text-container {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  gap: 32px;
}

.servicos .badge {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 20px;
  width: 129px;
  border-radius: 8px;
  background: #001f36;
}

.servicos .badge p {
  color: #00abd3;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.servicos .title {
  color: #fff;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.44px;
}

.servicos .line {
  width: 100%;
  max-width: 640px;
  height: 1px;
  background: #fff;
}

.servicos .paragraph {
  color: #f3f3f3;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 640px;
  margin-bottom: 80px;
}

.servicos .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 32px;
  padding-bottom: 80px;
}

.servicos .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.servicos .card img {
  display: block;
  width: 100%;
}

.servicos .card-content {
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
  background: #001f36;
  backdrop-filter: blur(11.25px);
  width: 100%;
  flex: 1;
}

.servicos .card-content a {
  text-decoration: none;
}

.servicos .card-content h3 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.servicos .card-content .saiba-mais {
  color: #00abd3;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-top: auto;
}

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

@media (max-width: 768px) {
  .servicos .cards {
    grid-template-columns: 1fr;
  }

  .servicos .title {
    font-size: 32px;
    line-height: normal;
  }
}

/* Empresa  */
.empresa-include {
  padding: 80px 0;
}

.empresa-include .card {
  border-radius: 10px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  padding: 80px 80px;
  gap: 96px;
}

.empresa-include .first-container,
.empresa-include .second-container {
  width: 50%;
}

.empresa-include .text-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.empresa-include .badge {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  background: #fff;
  width: 125px;
}

.empresa-include .badge p {
  color: #00abd3;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.empresa-include .text-container h3 {
  color: #022f40;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.44px;
  max-width: 421px;
}

.empresa-include .text-container .line {
  width: 100%;
  max-width: 640px;
  height: 1px;
  background: #d9d9d9;
}

.empresa-include .text-container .paragraph {
  color: #757575;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.empresa-include .text-container .saiba-mais {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 56px;
  border-radius: 8px;
  background: #002d4f;
  color: #f3f3f3;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.empresa-include .text-container .saiba-mais:hover {
  background: #10aac9;
}

.empresa-include .image {
  position: relative;
}

.empresa-include .card-anos {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 32px;
  border-radius: 4px;
  background: #fff;
}

.empresa-include .card-anos .text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.empresa-include .card-anos h3 {
  color: #404040;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.96px;
}

.empresa-include .card-anos p {
  color: #404040;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 1024px) {
  .empresa-include .card {
    flex-direction: column;
    gap: 32px;
  }

  .empresa-include .first-container,
  .empresa-include .second-container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .empresa-include .card {
    padding-inline: 48px;
  }

  .empresa-include .text-container h3 {
    font-size: 32px;
    line-height: normal;
  }

  .empresa-include .card-anos {
    padding: 16px;
  }

  .empresa-include .card-anos .text {
    margin-top: 6px;
  }

  .empresa-include .card-anos h3 {
    font-size: 18px;
    line-height: normal;
  }
}

@media (max-width: 400px) {
  .empresa-include .card {
    padding-inline: 16px;
  }
}

/* Informações */
.informacoes {
  padding-block: 80px;
}

.informacoes .text-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.informacoes .text-container h2 {
  color: #121212;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.44px;
}

.informacoes .text-container p {
  color: #424242;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  max-width: 853px;
}

.informacoes .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-top: 80px;
}

.informacoes .card {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.informacoes .card img {
  display: block;
  width: 100%;
}

.informacoes .card-content {
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  background: #f4f4f4;
  backdrop-filter: blur(11.25px);
  width: 100%;
  flex: 1;
}

.informacoes .card-content a {
  text-decoration: none;
}

.informacoes .card-content h3 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.informacoes .card-content p {
  color: #757575;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.informacoes .card-content .saiba-mais {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 56px;
  border-radius: 8px;
  background: #002d4f;
  color: #f3f3f3;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.informacoes .card-content .saiba-mais:hover {
  background: #10aac9;
}

@media (max-width: 1200px) {
  .informacoes .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 768px) {
  .informacoes .text-container h2 {
    font-size: 32px;
    line-height: normal;
  }

  .informacoes .cards {
    grid-template-columns: 1fr;
  }
}

/* Artigo */
.artigo .hero-artigo {
  width: 100%;
  padding-top: 233px;
  padding-bottom: 430px;
  background: url("../images/breadcrumb-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

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

.artigo .breadcrumb-artigo-links li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.artigo .breadcrumb-artigo-links a {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.artigo .breadcrumb-artigo-link.active {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.artigo .card-article {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  padding: 80px 80px;
  gap: 96px;
  border-radius: 10px;
  background: #f4f4f4;
  margin-top: -350px;
  position: relative;
  z-index: 2;
}

.artigo .card-article .text-container,
.artigo .card-article .image {
  width: 50%;
}

.artigo .badge {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  background: #fff;
  width: fit-content;
}

.artigo .badge p {
  color: #00abd3;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.artigo .card-article .text-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.artigo .card-article h2 {
  color: #022f40;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.44px;
}

.artigo .line {
  width: 100%;
  max-width: 640px;
  height: 1px;
  background: #d9d9d9;
}

.artigo .card-article .paragraph {
  color: #757575;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 608px;
}

.artigo .card-article .fale-com-especialista {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #34a853;
  width: 275px;
  height: 56px;
  color: #fbfaf7;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  line-height: 24px;
  transition: background-color 0.3s ease;
}

.artigo .card-article .fale-com-especialista:hover {
  background-color: #289144;
}

.artigo article,
.artigo article .container {
  padding-block: 80px;
}

.artigo article .container {
  display: flex;
  justify-content: center;
  gap: 71px;
}

.artigo article .text {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 815px;
  gap: 24px;
}

.artigo article h3 {
  color: #121212;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.96px;
}

.artigo .text ul,
.artigo .text ol {
  margin-left: 20px;
}

.artigo article p,
.artigo .text ul li,
.artigo .text ol li {
  color: #424242;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.more-informacoes h2,
.more-informacoes h3 {
  color: #121212;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.96px;
}

.more-informacoes .cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  width: 100%;
}

.more-informacoes .card {
  height: 100%;
  width: 100%;
  max-width: 384px;
  display: flex;
  flex-direction: column;
}

.more-informacoes .card img {
  display: block;
  width: 100%;
  max-width: 384px;
}

.more-informacoes .card-content {
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  background: #f4f4f4;
  backdrop-filter: blur(11.25px);
  width: 100%;
  max-width: 384px;
}

.more-informacoes .card-content a {
  text-decoration: none;
}

.more-informacoes .card-content h3 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.more-informacoes .card-content p {
  color: #757575;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.more-informacoes .card-content .saiba-mais {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 56px;
  border-radius: 8px;
  background: #002d4f;
  color: #f3f3f3;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  transition: background-color 0.3s ease;
}

.more-informacoes .card-content .saiba-mais:hover {
  background: #10aac9;
}

@media (max-width: 1024px) {
  .artigo .card-article .text-container,
  .artigo .card-article .image {
    width: 100%;
  }

  .artigo .card-article {
    flex-direction: column;
    gap: 32px;
  }

  .artigo article .container {
    flex-direction: column;
    align-items: start;
    gap: 32px;
  }

  .more-informacoes .card,
  .more-informacoes .card img,
  .more-informacoes .card-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .artigo .card-article h2 {
    font-size: 32px;
    line-height: normal;
  }

  .artigo .card-article .paragraph {
    font-size: 16px;
    line-height: normal;
  }

  .artigo .card-article {
    padding-inline: 48px;
  }

  .artigo article .container {
    padding-block: 48px;
  }
}

@media (max-width: 450px) {
  .artigo .card-article {
    padding-inline: 24px;
  }
}
@media (max-width: 380px) {
  .artigo .card-article {
    padding-inline: 16px;
  }
  .artigo .card-article .fale-com-especialista {
    width: stretch;
  }
}

/* CTA  */
.cta {
  display: flex;
  width: 100%;
}

.cta .first-container,
.cta .second-container {
  width: 50%;
  flex-shrink: 0;
}

.cta .first-container {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    url("../images/cta-bg-1.webp") lightgray 50% / cover no-repeat;
  padding: 80px 80px 80px 260px;
}

.cta .first-container .text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 53px;
}

.cta .first-container .title {
  color: #e6eaec;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 76px;
  letter-spacing: -1.92px;
  max-width: 640px;
}

.cta .first-container .paragraph {
  color: #f3f3f3;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  max-width: 640px;
}

.cta .first-container .line {
  width: 100%;
  max-width: 640px;
  height: 1px;
  background: #d9d9d9;
}

.cta .first-container .link-whats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 275px;
  height: 56px;
  border-radius: 32px;
  background: #34a853;
  color: #fbfaf7;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: background-color ease 0.3s;
}

.cta .first-container .link-whats:hover {
  background-color: #289144;
}

.cta .second-container {
  background: url("../images/cta-bg-2.webp") lightgray 50% / cover no-repeat;
  padding: 80px 160px 80px 128px;
}

.cta .second-container .text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.cta .second-container .title {
  color: #e6eaec;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -1.44px;
  max-width: 672px;
}

.cta .second-container .paragraph {
  color: #f3f3f3;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  max-width: 672px;
}

.cta .second-container ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 37px;
}

.cta .second-container li {
  color: #fff;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.96px;
}

@media (max-width: 1440px) {
  .cta .first-container,
  .cta .second-container {
    padding-inline: 80px;
  }
}

@media (max-width: 1280px) {
  .cta .first-container,
  .cta .second-container {
    padding-inline: 80px;
  }
}

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

  .cta .first-container,
  .cta .second-container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .cta .first-container .title {
    font-size: 36px;
    line-height: normal;
  }

  .cta .first-container,
  .cta .second-container {
    gap: 32px;
    padding-inline: 40px;
  }

  .cta .first-container .text-container {
    gap: 32px;
  }

  .cta .first-container .paragraph,
  .cta .second-container .paragraph {
    font-size: 16px;
    line-height: normal;
  }

  .cta .second-container .title {
    font-size: 32px;
    line-height: normal;
  }

  .cta .second-container li {
    font-size: 24px;
    line-height: normal;
  }
}

@media (max-width: 400px) {

  .cta .first-container,
  .cta .second-container {
      gap: 24px;
      padding-inline: 16px;
  }
}

/* pesquisa */
.pesquisa {
  padding-block: 80px;
}

.pesquisa .search-input {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  margin-top: 32px;
}

.pesquisa h2 {
  color: #022f40;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.44px;
}

.pesquisa .button-search {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 32px;
}

.pesquisa .search-button-intern {
  width: 225px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #002d4f;
  border-radius: 8px;
  border: none;
  color: #fbfaf7;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pesquisa .search-button-intern:hover {
  background-color: #00497a;
}

.pesquisa .section-paragraph {
  overflow: hidden;
  color: #757575;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 32px;
}

@media (max-width: 767px) {
  .pesquisa h2 {
    font-size: 32px;
    line-height: normal;
  }
}

/* política de privacidade  */
.politica-de-privacidade {
  padding: 5rem 0;
}

.politica-de-privacidade h1 {
  color: #002d4f;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
}

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

.politica-de-privacidade .title-border {
  display: flex;
  gap: 31px;
}

.politica-de-privacidade .border {
  width: 4px;
  height: 60px;
  background: #ee1610;
}

.politica-de-privacidade p,
.politica-de-privacidade ul li {
  color: #8b9395;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  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;
}

@media (max-width: 767px) {
  .politica-de-privacidade h1 {
    font-size: 36px;
    line-height: 48px;
  }
}

/* WHATSAPP BUTTON */

.whatsapp-contact-float-button {
  display: none;
}

.pulse {
  animation: animate-pulse 3s linear infinite;
}

@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 rgba(51, 204, 102, 0),
      0 0 0 0 rgba(51, 204, 102, 0.7);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(51, 204, 102, 0),
      0 0 0 30px rgba(51, 204, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(51, 204, 102, 0), 0 0 0 30px rgba(51, 204, 102, 0);
  }
}

@media only screen and (min-width: 992px) {
  .whatsapp-contact-float-button {
    display: block;
  }
}

/* WHATSAPP BUTTON */
