@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --button-bg-gradient: linear-gradient(
    180deg,
    #008bff 0%,
    #005399 33%,
    #008bff 68%,
    #005399 100%
  );

  --secondary-btn-bg: #ffffff;
  --color-primary: #2f2e5f;
  --color-secondary: #ffffff;
  --color-tertiary: #d1950a;
  --color-text: #000000;
  --color-text-highlight: #005399;
  --color-body: #ffffff;
  --color-body-secondary: #d1950a;
  --color-body-tertiary: #f6f6f6;
  --color-btn-primary: #d1950a;
  --color-btn-secondary: #2f2e5f;
  --transition: 0.3s;
  --ff-primary: 'DM Serif Text', sans-serif;
  --ff-secondary: 'Montserrat', sans-serif;
  --fs-base: 20px;
  --fs-lg: 24px;
  --fs-xl: 28px;
  --fs-2xl: 32px;
  --fs-3xl: 36px;
  --fs-4xl: 40px;
  --fs-5xl: 48px;
  --fs-6xl: 52px;
  --fs-7xl: 60px;
  --fs-8xl: 72px;
  --fs-9xl: 96px;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
}

@media (min-width: 2400px) {
  :root {
    --fs-base: 28px;
    --fs-lg: 32px;
    --fs-xl: 36px;
    --fs-2xl: 38px;
    --fs-3xl: 42px;
    --fs-4xl: 52px;
    --fs-5xl: 60px;
    --fs-6xl: 68px;
    --fs-7xl: 76px;
    --fs-8xl: 104px;
    --fs-9xl: 112px;
  }
}
@media (max-width: 1600px) {
  :root {
    --fs-base: 16px;
    --fs-lg: 20px;
    --fs-xl: 24px;
    --fs-2xl: 28px;
    --fs-3xl: 32px;
    --fs-4xl: 36px;
    --fs-5xl: 44px;
    --fs-6xl: 52px;
    --fs-7xl: 58px;
    --fs-8xl: 68px;
    --fs-9xl: 92px;
  }
}
@media (max-width: 1380px) {
  :root {
    --fs-lg: 16px;
    --fs-xl: 20px;
    --fs-2xl: 24px;
    --fs-3xl: 28px;
    --fs-4xl: 32px;
    --fs-5xl: 36px;
    --fs-6xl: 44px;
    --fs-7xl: 52px;
    --fs-8xl: 58px;
    --fs-9xl: 68px;
    --fs-base: 14px;
  }
}

@media (max-width: 1024px) {
  :root {
    --fs-base: 16px;
    --fs-lg: 20px;
    --fs-xl: 24px;
    --fs-2xl: 28px;
    --fs-3xl: 32px;
    --fs-4xl: 36px;
    --fs-5xl: 40px;
    --fs-6xl: 44px;
    --fs-7xl: 50px;
    --fs-8xl: 64px;
    --fs-9xl: 88px;
  }
}

@media (max-width: 768px) {
  :root {
    --fs-base: 14px;
    --fs-lg: 18px;
    --fs-xl: 22px;
    --fs-2xl: 26px;
    --fs-3xl: 30px;
    --fs-4xl: 34px;
    --fs-5xl: 38px;
    --fs-6xl: 42px;
    --fs-7xl: 46px;
    --fs-8xl: 62px;
    --fs-9xl: 86px;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-base: 8px;
    --fs-lg: 11px;
    --fs-xl: 12px;
    --fs-2xl: 13px;
    --fs-3xl: 14px;
    --fs-4xl: 15px;
    --fs-5xl: 18px;
    --fs-6xl: 20px;
    --fs-7xl: 26px;
    --fs-8xl: 32px;
    --fs-9xl: 50px;
  }
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
#btn-wpp{
  background-color:rgb(104, 160, 20) ;
  box-shadow: 0px 0px 10.3px 4px #68a014 ;
  margin: 0;
}
.carousel-descricao a{
  text-decoration: none;
}
html,
body {
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;

  font-size: var(--fs-base);
  color: var(--color-primary);
  font-family: var(--ff-primary);
  font-weight: var(--fw-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

.color-primary {
  color: var(--color-primary);
}

.color-secondary {
  color: var(--color-secondary);
}

.color-highlight {
  color: var(--color-text-highlight);
}

.btn-default {
  font-family: var(--ff-secondary);
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  border-radius: 25px;
  letter-spacing: 1px;
  opacity: 0px;
  transition: all 0.2s;
}

.btn-default:hover {
  transform: scale(1.05);
}

.btn-gradient {
  background: var(--button-bg-gradient);
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-btn-primary);
  color: var(--color-secondary);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  box-shadow: 0px 0px 10.3px 4px #d1950a;
  text-wrap: nowrap;
}
.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding: 12px 54px;
  text-align: center;
  background-color: var(--color-btn-secondary);
  color: var(--color-secondary);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  box-shadow: 0px 0px 10.3px 4px #2f2e5f;

  text-wrap: nowrap;
}

.text-center {
  text-align: center;
}

.text-medium {
  font-weight: var(--fw-medium);
}

.text-semibold {
  font-weight: var(--fw-semibold);
}

.text-italic {
  font-style: italic;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  z-index: 9999;
  border-bottom: 2px solid var(--color-tertiary);
  background-color: transparent;

  transition: background-color 0.3s ease-in-out;
}

.header.scrolled {
  background-color: var(--color-body-secondary);
}

section#inicio {
  position: relative;
}

.swiper-container {
  width: 100vw;
}

.carousel-slide {
  display: flex;
  justify-content: center;
  align-items: end;
  height: auto;
}
.carousel-slide-1 {
  background-color: #e8f4f1;
}
.carousel-container {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: initial;
  align-items: center;
}

.carousel-video,
.carousel-image {
  position: absolute;
  width: 100vw;
  height: 100%;
  bottom: 0;
  right: 0;
  /* Garante que o vídeo cubra toda a área do container */
  z-index: -1; /* Coloca o vídeo atrás de outros elementos, se necessário */
}
.carousel-item {
  width: 100%;
  padding-top: 5vh;
  padding-left: 6vw;
  padding-right: 10vw;
  height: auto;
  display: flex;
  align-items: start;
  justify-content: start;
  position: relative;
  z-index: 0;
}

.carousel-descricao {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 37%;
  padding-bottom: 10vh;
}
.carousel-imagem-logo {
  height: auto;
  width: 45%;
  margin-bottom: 4vh;
}
.carousel-descricao h2 {
  line-height: 1.1;
  font-size: var(--fs-8xl);
  font-weight: 400;
  color: var(--color-primary);
  padding-bottom: 20px;
}
.carousel-descricao h2 span {
  color: var(--color-btn-primary);
}
.carousel-descricao p {
  width: 90%;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-normal);
}
.carousel-descricao .btn-default {
  margin-top: 48px;
  margin-bottom: 16px;
}

.carousel-span {
  font-family: var(--ff-secondary);
  font-size: var(--fs-lg);
  color: var(--color-primary);
  font-weight: 400;
}
.carousel-final-span {
  font-family: var(--ff-primary);
  color: var(--color-body-secondary);
  font-weight: var(--fw-normal);
  font-size: var(--fs-3xl);
  letter-spacing: 2px;
}

.carousel-botao {
  width: fit-content;
  padding: 1vh 2vw;
  font-size: var(--fs-2xl);
}
@media (max-width: 1600px) {
  .carousel-descricao {
    width: 45%;
  }
  .carousel-descricao p {
    font-size: var(--fs-xl);
  }
}
@media (max-width: 1024px) {
  .swiper-container {
    height: max-content;
    min-height: 0;
  }
  .carousel-container {
    min-height: 0;
    height: fit-content;
  }
  .carousel-span {
    margin-bottom: 28px;
  }
  .carousel-item {
    padding-top: 3vh;
    padding-left: 5vw;
    padding-bottom: 2vh;
  }
  .carousel-image,
  .carousel-video {
    position: absolute;
    object-fit: cover;
    object-position: calc(100% + 80px) center;
    height: 80%;
    bottom: 0;
    right: 0;
  }
  .carousel-container .btn-primary {
    margin: 0;
    margin-bottom: 10px;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .carousel-descricao {
    position: relative;
    width: 50%;
  }
  .carousel-descricao::before {
    content: '';
    position: absolute;
    top: 0;
    left: -6vw;
    width: calc(100% + 10vw);

    height: 100%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0)
    ); /* Esquerda para direita */
    z-index: -1; /* Mantém o fundo atrás dos textos */
    border-radius: 10px; /* Suaviza as bordas */
    pointer-events: none; /* Evita interferência no clique */
  }
  .carousel-descricao h2 {
    padding-bottom: 10px;
  }
  .carousel-span {
    margin-bottom: 10px;
  }
  .carousel-container .btn-primary {
    margin: 0;
    margin-bottom: 10px;
    padding: 8px;
  }
  .btn-secondary {
    padding: 8px 48px;
  }
  .carousel-botao {
    width: fit-content;
    padding: 4px 16px;
    font-size: var(--fs-base);
  }
}
.section-divisor {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-7xl);
  font-weight: var(--fw-normal);
  letter-spacing: 1px;
  color: var(--color-secondary);
  background-color: var(--color-primary);
}
.section-divisor h3 {
  font-family: var(--ff-primary);
  font-weight: var(--fw-normal);
  text-align: center;
}
.section-divisor h3 span {
  border-bottom: 3px var(--color-body-secondary) solid;
  font-weight: var(--fw-normal);
}
@media (max-width: 1600px) {
  .section-divisor h3 {
    font-size: var(--fs-6xl);
  }
}
@media (max-width: 1024px) {
  .section-divisor {
    letter-spacing: 0.2px;
  }
}
section#contato {
  position: relative;
  background: url('assets/images/background-footer.png') no-repeat center top;
  background-size: cover;
}

section#sobre {
  color: var(--color-text);
}

.descricao-container {
  width: 100%;
  max-width: 1570px;
  margin: 0 auto;
  padding: 112px 20px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 180px;
}

.descricao-texto {
  max-width: 512px;
  width: 100%;
}

.descricao-img {
  display: flex;
  max-width: 876px;
  width: 100%;
  height: auto;
}

section#servicos {
  position: relative;
  background-color: var(--color-body-secondary);
  overflow: hidden;
}

@media (max-width: 768px) {
}

section#planos {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.planos-container {
  width: 100%;
  margin: 0 auto;
  margin-top: 8vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.planos-container h2 {
  color: var(--color-primary);
  font-size: var(--fs-2xl);
  margin: 0 20%;
  margin-bottom: 60px;
  text-align: center;
}

.planos-container span {
  color: var(--color-text);
  font-size: var(--fs-lg);
  margin-bottom: 62px;
  text-align: center;
}

/* planos carousel */
.planos-carousel {
  position: relative;
  width: 75%;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
  align-items: center;
}
.planos-wrapper {
  width: 100%;
}
.planos-button-prev,
.planos-button-next {
  z-index: 999;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
}
.planos-button-prev {
  left: 0;
}

.planos-button-next {
  right: 0;
}

.planos-wrapper .swiper-slide {
  height: max-content;
  justify-content: center;
  display: flex;
}

.plano-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 90%;
  height: max-content;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  transform: scale(0.7);
}
.plano-item-header {
  width: 60%;
  aspect-ratio: 1 / 1; /* Largura e altura iguais */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 9999rem;
  box-shadow: 0px 0px 25px 0px #2f2e5f;
}
.plano-item-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-secondary);
  margin-top: 33px;
  text-align: center;
}
.plano-item p {
  color: #000000;
  font-family: var(--ff-secondary);
  font-size: var(--fs-xl);
}
.plano-item h2 {
  color: var(--color-primary);
  font-size: var(--fs-4xl);
  margin-bottom: 20px;
  width: 100%;
}
.planos-wrapper .swiper-slide-next {
  padding-bottom: 24px;
}
.planos-wrapper .swiper-slide-next .plano-item {
  transform: scale(1.04) translateY(10px);
}
.planos-wrapper .swiper-slide-next .plano-item-header {
  box-shadow: 0px 0px 25px 0px #d1950a;
  color: var(--color-tertiary);
}
.planos-wrapper .swiper-slide-next .plano-item-body h2 {
  color: var(--color-tertiary);
}
.planos-wrapper .swiper-slide-next .plano-item-body p {
  font-weight: var(--fw-medium) !important;
}
.plano-item-header img {
  width: 60%;
  height: auto;
}
.plano-item-header .image-selected {
  display: none;
}
.planos-wrapper .swiper-slide-next .plano-item-header img {
  display: none;
}
.planos-wrapper .swiper-slide-next .plano-item-header .image-selected {
  display: block;
}
.plano-item-body {
  font-size: 14px;
}
.planos-wrapper .swiper-slide-next .plano-item-body p {
  font-weight: var(--fw-normal);
}
@media (max-width: 1480px) {
  .planos-container {
    margin-top: 0;
  }
  .plano-item-body h2 {
    font-size: var(--fs-xl);
  }
  .plano-item-body p {
    font-size: var(--fs-base);
  }
}
@media (max-width: 1023px) {
  .planos-carousel {
    width: 80%;
  }
  .planos-wrapper {
    width: calc(100% / 2 - 20px);
  }
  .plano-item {
    transform: scale(0.85) translateY(0);
  }
  .planos-wrapper .swiper-slide-next .plano-item {
    transform: scale(0.85) translateY(0);
  }
  .planos-wrapper .swiper-slide-next .plano-item-header {
    box-shadow: 0px 0px 25px 0px var(--color-btn-secondary);
    color: var(--color-primary);
  }
  .planos-wrapper .swiper-slide-next .plano-item-body h2 {
    color: var(--color-primary);
  }
  .planos-wrapper .swiper-slide-next .plano-item-header img {
    display: block;
  }
  .planos-wrapper .swiper-slide-next .plano-item-header .image-selected {
    display: none;
  }
}
@media (max-width: 768px) {
  .planos-container {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin-bottom: 5vh;
  }
  .planos-carousel {
    width: 100%;
    padding: 0 10vw;
  }
  .planos-wrapper {
    width: 100%;
  }
  .plano-item {
    height: auto;
  }
  .planos-wrapper .swiper-slide-active .plano-item-header {
    box-shadow: 0px 0px 25px 0px #d1950a;
    color: var(--color-tertiary);
  }
  .planos-wrapper .swiper-slide-active .plano-item-body h2 {
    color: var(--color-tertiary);
  }
  .planos-wrapper .swiper-slide-active .plano-item-body p {
    font-weight: var(--fw-semibold);
  }
  .plano-item-header .image-selected {
    display: none;
  }
  .planos-wrapper .swiper-slide-active .plano-item-header img {
    display: none;
  }
  .planos-wrapper .swiper-slide-active .plano-item-header .image-selected {
    display: block;
  }
  .plano-item-header {
    width: 70%;
  }
  .plano-item-body h2 {
    font-size: var(--fs-4xl);
  }
  .plano-item-body p {
    font-size: var(--fs-2xl);
  }
}
/* fim planos carousel*/

.planos-container-message {
  min-height: 40vh;
  margin-top: 5vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 3vw;
  background-image: url('../images/background-seguros.png');
  background-repeat: no-repeat no-repeat;
  background-position: center right;
  background-size: 100%;
}
.planos-messages {
  margin-left: 12vw;
  display: flex;
  flex-direction: column;
  width: 30%;
  height: 100%;
  justify-content: center;
  gap: 8%;
}
.planos-messages p,
.planos-container-message-only-mobile p {
  font-weight: var(--fw-normal);
  font-size: var(--fs-3xl);
  width: 100%;
}
.planos-messages h4,
.planos-container-message-only-mobile h4 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-normal);
  color: var(--color-tertiary);
  text-align: justify;
  margin-bottom: 8%;
}
.planos-container-message-only-mobile {
  width: 100%;
  flex-direction: column;
  gap: 1vh;
  padding: 0 10vw;
  display: none;
}
.planos-container-message-only-mobile p {
  font-size: var(--fs-4xl);
}

.planos-container-message-only-mobile h4 {
  font-size: var(--fs-6xl);
}

.planos-image-central {
  transform: translateX(05vw);
  width: 15%;
}
.planos-image-central img {
  width: 100%;
}

.images-animate {
  transform: rotate(15deg);
  width: 26vw; /* Defina o tamanho conforme necessário */
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.images-animate img {
  background: white;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeInOut 16s infinite;
}

.images-animate img:nth-child(1) {
  animation-delay: 0s;
}
.images-animate img:nth-child(2) {
  animation-delay: 4s;
}
.images-animate img:nth-child(3) {
  animation-delay: 8s;
}
.images-animate img:nth-child(4) {
  animation-delay: 12s;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 1380px) {
  .planos-container-message {
    margin-top: 0;
  }
  .planos-messages h4 {
    font-size: var(--fs-3xl);
  }
  .planos-messages p {
    font-size: var(--fs-2xl);
  }
  .planos-messages {
    width: 35%;
    margin: 0;
    margin-left: 9vw;
  }
}

@media (max-width: 1024px) {
  .planos-messages {
    width: 35%;
    margin: 0;
    margin-left: 4vw;
  }
  .planos-container-message {
    min-height: 0;

    height: auto;
    justify-content: end;
    position: relative;
  }
  .planos-image-central {
    position: absolute;
    top: 30%;
    left: 50%;
  }
  .planos-messages {
    display: none;
  }
  .planos-container-message-only-mobile {
    display: flex;
  }
  .planos-container-message-only-mobile h4 {
    margin-bottom: 4px;
  }
}
@media (max-width: 513px) {
  .planos-container-message {
    height: 150px;
    width: 100%;
    background-size: cover;
    margin-top: 0;
    background-position-x: -100px;
    margin-right: 0;
    margin-bottom: 5vh;
    position: relative;
    justify-content: end;
  }
  .planos-messages {
    display: none;
  }
  .planos-container-message-only-mobile {
    display: flex;
  }
  .planos-container-message-only-mobile h4 {
    margin-bottom: 4px;
  }
  .planos-image-central {
    position: absolute;
    top: 30%;
    left: 40%;
  }
  .images-animate {
    width: 128px;
  }
}

@media (max-width: 355px) {
  .planos-container-message {
    height: 150px;
    width: 100%;
    background-size: cover;
    margin-top: 0;
    background-position-x: 90%;
    margin-right: 0;
    margin-bottom: 5vh;
    position: relative;
    justify-content: end;
  }
  .planos-image-central {
    position: absolute;
    width: 20vw;
    top: 30%;
    left: 30%;
  }
}

#sobre-nos {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10vw 74px 10vw;
  opacity: 0;
  transform: translateY(20px); /* Posição inicial */
  transition: opacity 1.5s ease, transform 1.5s ease; /* Transição suave */
}

#sobre-nos.show {
  opacity: 1; /* Opacidade final */
  transform: translateY(0); /* Posição final */
}
#sobre-nos h2 {
  font-size: var(--fs-7xl);
  font-weight: var(--fw-normal);
  margin-bottom: 32px;
}
.sobre-nos-container {
  display: flex;
  gap: 10%;
  justify-content: center;
  align-items: center;
}
.sobre-nos-container img {
  width: 25%;
  aspect-ratio: 9/16;
  box-shadow: 0px 0px 30px 0px #00000040;
}
.sobre-nos-texto {
  width: 45%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 2vh;
}
.sobre-nos-texto p {
  padding-bottom: 10px;
  font-size: var(--fs-lg);
  font-family: var(--ff-secondary);
  font-weight: var(--fw-normal);
  color: #000000;
}
.sobre-nos-container-principal h4 {
  padding-top: 10px;
  font-family: var(--ff-secondary);
  font-weight: var(--fw-medium);
  font-size: var(--fs-xl);
}
.texto-enfase {
  color: var(--color-body-secondary);
}

@media (max-width: 1024px) {
  .sobre-nos-container {
    gap: 10px;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    min-height: 0;
    height: fit-content;
  }
  .sobre-nos-texto {
    width: 100%;
  }
  .sobre-nos-texto p {
    padding-bottom: 14px;
  }
  .sobre-nos-container img {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .sobre-nos-container {
    gap: 5vh;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  .sobre-nos-container img {
    width: 80%;
    height: 40vh;
    object-fit: cover;
  }
  .sobre-nos-texto p {
    font-size: var(--fs-3xl);
  }
  .sobre-nos-texto h4 {
    font-size: var(--fs-5xl);
  }
}
#clientes {
  position: relative;
  width: 100vw;
  display: flex;
  justify-content: center;
  padding: 8vh 4vw;
  align-items: center;
  box-shadow: 0px 0px 30px 0px #00000040;
}
#clientes img {
  position: absolute;
  z-index: -1;
  width: 100%;
}
.clientes-texto {
  width: 50%;
}
.clientes-texto h2 {
  font-size: var(--fs-7xl);
  font-weight: var(--fw-normal);
  width: 100%;
}
#contador {
  display: flex;
  justify-content: center;
  align-self: center;
  padding: 2vh 6.4vw;
  border-radius: 25px;
  box-shadow: 0px 0px 30px 0px #00000040;
  transform: scale(0.5);
  transition: all 3s ease-in-out;
  font-size: var(--fs-9xl);
  font-weight: var(--fw-normal);
}
#contador.grow {
  transform: scale(1);
}
@media (min-width: 1900px) {
  #clientes {
    padding: 4vh 10vw;
  }
  .clientes-texto {
    width: 45%;
  }
}
@media (max-width: 1350px) {
  #clientes {
    padding: 4vh 4vw;
    gap: 4vw;
  }
  .clientes-texto {
    width: 100%;
  }
  .clientes-texto h2 {
    font-size: var(--fs-5xl);
  }
  .contador {
    font-size: var(--fs-8xl);
  }
}
@media (max-width: 1024px) {
  #clientes {
    padding: 2vh 7vw;
  }
  #clientes img {
    height: 80vh;
  }
  .clientes-texto {
    width: 100%;
  }
  .clientes-texto h2 {
    width: 100%;
    font-weight: var(--fw-normal);
  }
  #contador {
    font-size: var(--fs-6xl);
    padding: 10px 4vw;
    border-radius: 12.5px;
  }
}

#planos-de-saude {
  padding: 10vh 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8vh;
  position: relative;
}
#planos-de-saude h2 {
  color: var(--color-body-secondary);
  font-size: var(--fs-6xl);
  font-weight: var(--fw-normal);
}
.planos-de-saude-background {
  position: absolute;
  top: 24%;
  width: 100%;
  height: 55%;
  z-index: -1;
  background-color: var(--color-body-secondary);
}
.planos-de-saude-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10vh 8vw;
}
.planos-de-saude-card {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 27vw;
  min-width: 360px;
  padding: 3% 2%;
  border-radius: 30px;
  box-shadow: 0px 0px 25px 0px #00000040;
  transition: all 0.5s;

  cursor: default;
}
.planos-de-saude-card h3 {
  color: var(--color-body-secondary);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-normal);
  padding-bottom: 12px;
}
.planos-de-saude-card p {
  font-size: var(--fs-lg);
  font-family: var(--ff-secondary);
  text-align: initial;
  width: 100%;
}
.planos-de-saude-image {
  width: 32vw;
  min-width: 400px;
  box-shadow: 0px 0px 25px 0px #00000040;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.5s;
  cursor: default;
}
.planos-de-saude-image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.planos-de-saude-card:hover,
.planos-de-saude-image:hover {
  transform: translateY(-3px);
}

@media (max-width: 840px) {
  #planos-de-saude {
    gap: 4vh;
    padding-bottom: 24px;
    padding-top: 48px;
  }
  .planos-de-saude-container {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 0 5vw;
  }
  .planos-de-saude-image {
    width: 90%;
    min-width: 0px;
    height: 40vh;
  }
  .planos-de-saude-card {
    width: 90%;
    min-width: 0;
    padding: 4% 8%;
  }
  .planos-de-saude-card h3 {
    font-size: var(--fs-5xl);
  }
  .planos-de-saude-card p {
    font-size: var(--fs-3xl);
  }
}

section#cartoes {
  width: 100%;
  background-color: var(--color-body-tertiary);
  padding: 48px;
}
.cartoes-container {
  display: flex;
  justify-content: center;
  gap: 10%;
}
.cartoes-card {
  width: 40%;
  min-width: 300px;
  min-height: 300px;
  background: white;
  box-shadow: 0px 0px 30px 0px #00000040;
  border-radius: 25px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.cartoes-card span {
  font-family: var(--ff-secondary);
  font-size: var(--fs-lg);
  width: 100%;
  text-align: center;
}
.cartoes-card-items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cartoes-card-items img {
  width: 36%; /* Cada imagem ocupa 50% do espaço com o gap ajustado */
  margin-left: 4%;
}

.cartoes-card-items img:nth-child(3) {
  margin-left: 10%; /* Desloca as imagens da segunda linha para a direita */
}
.cartoes-content {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cartoes-content h3 {
  font-size: var(--fs-7xl);
  font-weight: var(--fw-medium);
}

@media (max-width: 1024px) {
  section#cartoes {
    padding: 12px;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
  .cartoes-container {
    flex-direction: column-reverse;
    align-items: center;
  }
  .cartoes-card {
    width: 90%;
    padding: 16px;
    gap: 2vh;
  }
  .cartoes-content {
    width: 100%;
  }
  .cartoes-content h3 {
    text-align: center;
  }
  .cartoes-card-items img {
    width: 39%;
  }
}
@media (max-width: 768px) {
  .cartoes-container {
    flex-direction: column-reverse;
    gap: 4vh;
  }
  .cartoes-card {
    margin-bottom: 2vh;
    align-items: center;
    width: 60%;
    padding: 32px;
    min-height: 0px;
  }
  .cartoes-card-items {
    gap: 12px;
  }
  .cartoes-card-items img:nth-child(3) {
    margin-left: 7%;
  }
}

section#parceiros {
  padding-bottom: 44px;
}

.parceiros-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.parceiros-titulo {
  color: var(--color-primary);
  font-size: var(--fs-2xl);
  margin-bottom: 84px;
  text-align: center;
}

.parceiros-slider {
  margin-top: 4vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@keyframes scrollEsquerda {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollDireita {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.parceiros-slide {
  overflow: hidden;
  padding: 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.parceiros-slide:before,
.parceiros-slide:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: '';
  z-index: 2;
}

.parceiros-slide:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.parceiros-slide:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.parceiros-slide:hover .parceiros-faixa {
  animation-play-state: paused;
}

.parceiros-faixa {
  display: inline-block;
}

.parceiros-faixa img {
  width: auto;
  height: 9.7vh;
  object-fit: contain;
}

.parceiros-faixa-6 img {
  margin: 0 60px;
}

.parceiros-faixa-5 img {
  margin: 0 80px;
}

.scroll-esquerda {
  animation: 40s scrollEsquerda infinite linear;
}

.scroll-direita {
  animation: 40s scrollDireita infinite linear;
}

@media (max-width: 768px) {
  .parceiros-slide:before,
  .parceiros-slide:after {
    width: 125px;
  }

  .parceiros-faixa-6 img {
    margin: 0 40px;
  }

  .parceiros-faixa-5 img {
    margin: 0 30px;
  }
}

@media (max-width: 480px) {
  .parceiros-slide:before,
  .parceiros-slide:after {
    width: 60px;
  }
}

section#depoimentos {
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 52px;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 80vh;
  padding-bottom: 10vh;
}

#depoimentos h2 {
  font-weight: var(--fw-normal);
  font-size: var(--fs-7xl);
  margin-bottom: 24px;
  text-align: center;
}

#depoimentos .depoimentos-carousel {
  width: 80%;
  overflow-x: hidden;
  position: relative;
}

#depoimentos .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  transform: translateY(0) scale(0.7);
  transition: all 0.2s ease-in-out;
}
#depoimentos .swiper-slide.swiper-slide-next {
  transform: translateY(-10px) scale(1);
}

@media (max-width: 1024px) {
  section#depoimentos {
    gap: 2vh;
    height: auto;
    min-height: 0z;
  }
  #depoimentos .swiper-slide {
    transform: translateY(0) scale(1);
  }
  #depoimentos .swiper-slide.swiper-slide-next {
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  #depoimentos .depoimentos-carousel {
    width: 100%;
    padding: 0 10%;
    overflow-x: hidden;
  }
  .depoimentos-button-prev,
  .depoimentos-button-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: fit-content;
    border: none;
    background-color: transparent;
  }
}
.depoimentos-button-prev,
.depoimentos-button-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: fit-content;
  border: none;
  background-color: transparent;
}
.depoimentos-button-prev {
  left: 0;
}

.depoimentos-button-next {
  right: 0;
}
.depoimento-item {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.depoimento-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

#contato {
  width: 100vw;
  padding: 0 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-primary);
  position: relative;
}
#contato * {
  z-index: 1;
}
#contato::before {
  width: 100vw;
  height: 40vh;
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  transform: translateY(-55%);
  background-color: white;
  border-radius: 120%;
  z-index: 0;
}

/* Rectangle 6 */

.contato-localizacao {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 70%;
  height: 60vh;
  border-radius: 30px;
  background: #d4d4d4;
  box-shadow: 0px 0px 20px 0px #00000080;
}
.footer-container {
  padding-top: 54px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-contato {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}
.contato-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  color: white;
}
.contato-item span {
  font-size: var(--fs-xl);
  font-family: var(--ff-secondary);
}
.contato-item:hover {
  color: #eeecec;
}
.contato-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer-horarios {
  display: flex;
  flex-direction: column;
}
.footer-copyright {
  display: flex;
  gap: 8px;
  padding-top: 120px;
  padding-bottom: 24px;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: white;
}
.footer-copyright a {
  text-decoration: none;
  color: white;
  font-family: var(--ff-secondary);
  font-weight: var(--fw-normal);
  font-size: 1rem;
}
.footer-copyright span {
  font-family: var(--ff-secondary);
  font-weight: var(--fw-normal);
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .footer-contato {
    align-items: start;
    flex-direction: column;
    order: 1;
    gap: 2vh;
  }
  #contato:before {
    width: 110%;
    left: -5%;
  }
  .contato-localizacao {
    width: 90%;
    height: 35vh;
  }
}

@media (max-width: 768px) {
  .contato-localizacao {
    width: 90%;
    height: 30vh;
  }
  .footer-container {
    flex-direction: column;
  }

  .contato-titulo {
    margin-bottom: 20px;
  }
  .contato-item span {
    font-size: var(--fs-5xl);
    font-family: var(--ff-secondary);
  }

  .contato-lista {
    gap: 18px;
    margin-bottom: 24px;
  }

  .contato-item img {
    width: 24px;
    height: 24px;
  }

  .footer-endereco {
    margin-bottom: 20px;
  }

  .footer-texto {
    order: 2;
  }

  .footer-texto span {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .contato-item img {
    width: 18px;
    height: 18px;
  }
  .footer-copyright span {
    text-align: center;
    font-size: var(--fs-2xl);
    font-weight: var(--fw-normal);
  }
}
@media (max-width: 350px) {
  .contato-item img {
    width: 18px;
    height: 18px;
  }
  .contato-item span {
    font-size: var(--fs-xl);
  }
  .footer-copyright span {
    text-align: center;
    font-size: var(--fs-2xl);
    font-weight: var(--fw-normal);
  }
}

.topo {
  cursor: pointer;
  position: fixed;
  bottom: 18px;
  right: 20px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
  float: right;
  padding: 10px 20px;
  text-wrap: nowrap;
  text-decoration: none;

  border: none;
  border-radius: 15px;
  color: var(--color-secondary);
  background-color: var(--color-body-secondary);

  opacity: 0; /* Escondido inicialmente */
  visibility: hidden;
  transform: translateY(50px); /* Move para baixo */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;

  z-index: 9999;
}

.topo.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* Volta à posição original */
}

.topo img {
  width: auto;
  height: 16px;
}

@media (max-width: 480px) {
  .topo span {
    display: none;
  }
}
