.elementor-kit-5{--e-global-color-primary:#FF8C19;--e-global-color-secondary:#000032;--e-global-color-text:#000032;--e-global-color-accent:#FF8C19;--e-global-color-6ed5ed9:#FFFFFF;--e-global-color-a09592a:#F7F7F7;--e-global-color-c581973:#A8A8A8;--e-global-typography-primary-font-family:"host-grotesk";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"host-grotesk";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"host-grotesk";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"host-grotesk";--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:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing: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;
}

.ac_container {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #A8A8A8;
}

.ac_section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ac_label {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #A8A8A8;
  white-space: nowrap;
}

.ac_button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.ac_button:hover,
.ac_button:active,
.ac_button:focus {
  opacity: 0.7;
  background-color: transparent;
}

.ac_button:focus-visible {
  outline: 2px solid #999;
  outline-offset: 2px;
}

.ac_icon-button {
  width: auto;
  height: auto;
}

.ac_icon {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ac_text-button {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #A8A8A8;
  padding: 4px 8px;
  min-width: 24px;
}

.ac_divider {
  width: 1px;
  height: 24px;
  background-color: #d0d0d0;
}

/* Responsivo */
@media (max-width: 768px) {
  .ac_container {
    flex-wrap: wrap;
    gap: 12px;
    padding: 8px 12px;
  }

  .ac_label {
    font-size: 12px;
  }

  .ac_text-button {
    font-size: 12px;
  }
}

/* Animação */
.scroll-animado {
  animation: flutuar 2s ease-in-out infinite;
}

@keyframes flutuar {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}



.segmentos{
    width:100%;
    max-width:1600px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:36px 42px;
}

.segmento{
    background:#FF8C19;
    color:#fff;
    font-size:1.1em;
    font-weight:600;
    line-height:1;
    padding:22px 42px;
    border-radius:999px;
    white-space:nowrap;

    opacity:0;
    transform:translateY(25px);
    transition:
        opacity .6s ease,
        transform .6s ease;
}

.segmento.show{
    opacity:1;
    transform:translateY(0);
}



/* Tablet */

@media (max-width:1200px){

    .segmentos{
        gap:24px;
    }

    .segmento{
        font-size:22px;
        padding:18px 34px;
    }

}

/* Mobile */

@media (max-width:768px){

    .segmentos{
        gap:16px;
    }

    .segmento{
        font-size:18px;
        padding:16px 24px;
    }

}

@media (max-width:480px){

    .segmentos{
        gap:12px;
    }

    .segmento{
        font-size:15px;
        padding:14px 20px;
    }

}/* End custom CSS */