:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-4307434 *//* Garante que padding/border não aumentem a largura física */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Impede scroll horizontal do body em qualquer página */
body {
  overflow-x: hidden;
}

/* ---------- Correções específicas das tabs ---------- */
.category-tabs {
  flex-wrap: wrap;          /* permite quebrar linha */
  justify-content: center;  /* centraliza quando quebra */
  gap: .5rem;               /* gap menor evita extrapolar */
  max-width: 100%;          /* nunca maior que a viewport */
}

.category-tabs .tab {
  flex: 1 1 auto;           /* cada aba pode encolher/crescer */
  min-width: 110px;         /* tamanho mínimo legível */
  text-align: center;
}

/* Ajustes finos para telas muito pequenas */
@media (max-width: 480px) {
  .category-tabs .tab {
    font-size: .9rem;
    padding: .5rem .75rem;
  }
  .form-select-dropdown {
    font-size: .9rem;
  }
}/* End custom CSS */