:root{--page-title-display:none;}/* Start custom CSS for section, class: .elementor-element-9874606 */<style>
  .scroll-horizontal {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px;
    scrollbar-width: auto; /* Firefox */
    scrollbar-color: #000 transparent;
  }

  /* Estilo para Chrome, Safari, Edge */
  .scroll-horizontal::-webkit-scrollbar {
    height: 8px; /* Altura da barra */
  }

  .scroll-horizontal::-webkit-scrollbar-track {
    background: transparent;
  }

  .scroll-horizontal::-webkit-scrollbar-thumb {
    background: #000; /* Cor preta */
    border-radius: 4px;
  }

  .scroll-horizontal .card {
    flex: 0 0 auto;
    width: 200px;
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
  }

  .scroll-horizontal .card img {
    width: 100%;
    height: auto;
    display: block;
  }
</style>/* End custom CSS */