.elementor-914 .elementor-element.elementor-element-d01cf35{--display:flex;}.elementor-914 .elementor-element.elementor-element-d01cf35.e-con{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-914 .elementor-element.elementor-element-d01cf35{--width:99.016%;}}/* Start custom CSS for html, class: .elementor-element-687c5be *//* Struttura principale in Flex */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  overflow: hidden; /* Evita salti strani */
}

/* Logo */
.logo {
  flex: 0 0 auto;
  max-width: 140px;
}

/* Menu centrale */
.menu {
  flex: 1 1 auto;
  text-align: center;
  white-space: nowrap;
  overflow-x: auto; /* Permette scroll orizzontale su viewport piccoli */
}

/* Voci di menu */
.menu a {
  display: inline-block;
  margin: 0 10px;
  font-size: 16px;
  white-space: nowrap;
}

/* Bottone a destra */
.cta-button {
  flex: 0 0 auto;
  text-align: right;
  white-space: nowrap;
}

/* Responsive (opzionale) */
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-button {
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }
}/* End custom CSS */