.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */html, body {
  overflow-x: hidden !important;
}


/* Header fixo com efeito de blur e sombra */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(10, 55, 99, 0.59); /* Fundo semi-transparente */
  backdrop-filter: blur(10.7px);
  -webkit-backdrop-filter: blur(10px); /* Compatibilidade com Safari */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Sombra inferior suave */
  transition: all 0.3s ease;
}

/* Espaçamento para evitar que o conteúdo fique oculto atrás do header */
body {
  padding-top: 0px; /* Ajuste conforme a altura do seu header */
}

.carrossel-infinito {
  overflow: hidden;
  position: relative;
}

.carrossel-infinito .carrossel-faixa {
  display: flex;
  animation: scroll-infinito 30s linear infinite;
  width: max-content;
  gap: 3rem; /* Espaçamento entre os itens */
}

.carrossel-infinito .carrossel-faixa > * {
  flex-shrink: 0;
}

@keyframes scroll-infinito {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Container dos cards */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  padding: 40px 20px;
  width: 100vw;
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
  margin: 0 auto;
}

/* Cada card */
.card {
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 13px 13px 29px 3px rgba(0, 0, 0, 0.09);
  width: 100%;
  max-width: 350px;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

/* Ícone */
.card img,
.card .elementor-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

/* Título */
.card h3,
.card .elementor-heading-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2d2d2d;
}

/* Descrição */
.card p,
.card .elementor-widget-text-editor {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
  }

  .card {
    width: 90%;
    align-items: center;
    text-align: center;
  }
}

/* Elimina rolagem horizontal e garante que tudo fique visível */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}/* End custom CSS */