.elementor-83 .elementor-element.elementor-element-8ae4642{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-d69460b */#csf-header-v4,
#csf-header-v4 * {
  box-sizing: border-box;
}

#csf-header-v4 {
  --csf-black: #1D1C1C;
  --csf-text: rgba(29, 28, 28, .82);
  --csf-muted: rgba(29, 28, 28, .58);
  --csf-line: rgba(29, 28, 28, .14);
  --csf-bg: #ffffff;
  --csf-soft: #F8F5EF;
  --csf-cream: #FCF8F1;
  --csf-yellow: #FEC415;
  --csf-yellow-soft: #FEE8B5;
  --csf-shadow: 0 18px 42px rgba(29, 28, 28, .08);
  width: 100%;
  position: relative;
  z-index: 9999;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--csf-black);
}

#csf-header-v4 a {
  color: inherit;
  text-decoration: none;
}

#csf-header-v4 button {
  font-family: inherit;
}

#csf-header-v4 .csf-header-shell {
  width: 100%;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--csf-line);
  backdrop-filter: blur(14px);
  transition: box-shadow .22s ease;
}

#csf-header-v4.is-sticky .csf-header-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--csf-shadow);
  animation: csfHeaderV4Drop .18s ease both;
}

@keyframes csfHeaderV4Drop {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

#csf-header-v4 .csf-header-inner {
  width: min(1280px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

#csf-header-v4 .csf-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
}

#csf-header-v4 .csf-logo img {
  display: block;
  width: clamp(190px, 18vw, 245px);
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

#csf-header-v4 .csf-nav {
  min-width: 0;
  display: flex;
  justify-content: center;
}

#csf-header-v4 .csf-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: 0;
}

#csf-header-v4 .csf-menu-item {
  position: relative;
}

#csf-header-v4 .csf-menu-link,
#csf-header-v4 .csf-services-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--csf-text);
  font-size: 15.5px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}

#csf-header-v4 .csf-menu-link:hover,
#csf-header-v4 .csf-services-trigger:hover,
#csf-header-v4 .csf-menu-link.is-active,
#csf-header-v4 .csf-has-dropdown.is-open .csf-services-trigger {
  background: var(--csf-soft);
  color: var(--csf-black);
}

#csf-header-v4 .csf-services-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform .18s ease;
}

#csf-header-v4 .csf-has-dropdown.is-open .csf-services-trigger svg {
  transform: rotate(180deg);
}

/* 
  Punto importante:
  padding-bottom crea una zona "ponte" sotto il bottone Servizi.
  Il mouse resta tecnicamente dentro al li mentre scende verso il dropdown.
*/
#csf-header-v4 .csf-has-dropdown {
  padding-bottom: 18px;
  margin-bottom: -18px;
}

#csf-header-v4 .csf-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: min(860px, calc(100vw - 40px));
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--csf-line);
  border-radius: 20px;
  box-shadow: var(--csf-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

/* Area invisibile aggiuntiva sopra al menu */
#csf-header-v4 .csf-dropdown::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 0;
  right: 0;
  height: 22px;
  background: transparent;
}

#csf-header-v4 .csf-has-dropdown.is-open .csf-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

#csf-header-v4 .csf-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 12px;
  background: #fff;
}

#csf-header-v4 .csf-dropdown-link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 13px 14px;
  border-radius: 14px;
  transition: background-color .18s ease;
}

#csf-header-v4 .csf-dropdown-link:hover {
  background: var(--csf-soft);
}

#csf-header-v4 .csf-service-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--csf-cream);
  border: 1px solid var(--csf-line);
  color: var(--csf-black);
  flex-shrink: 0;
}

#csf-header-v4 .csf-service-icon svg {
  width: 19px;
  height: 19px;
  display: block;
  stroke: currentColor;
}

#csf-header-v4 .csf-dropdown-link strong {
  display: block;
  font-size: 15px;
  line-height: 1.22;
  font-weight: 850;
  color: var(--csf-black);
}

#csf-header-v4 .csf-dropdown-link span:not(.csf-service-icon) {
  display: block;
  margin-top: 3px;
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--csf-muted);
}

#csf-header-v4 .csf-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

#csf-header-v4 .csf-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--csf-yellow);
  color: var(--csf-black);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(254, 196, 21, .24);
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

#csf-header-v4 .csf-call:hover {
  background: var(--csf-black);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(29, 28, 28, .16);
}

#csf-header-v4 .csf-call svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: currentColor;
}

#csf-header-v4 .csf-quote {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--csf-black);
  color: var(--csf-black);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

#csf-header-v4 .csf-quote:hover {
  background: var(--csf-black);
  color: #fff;
  transform: translateY(-1px);
}

#csf-header-v4 .csf-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--csf-line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

#csf-header-v4 .csf-burger {
  width: 19px;
  height: 16px;
  position: relative;
  display: block;
}

#csf-header-v4 .csf-burger span,
#csf-header-v4 .csf-burger::before,
#csf-header-v4 .csf-burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  background: var(--csf-black);
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}

#csf-header-v4 .csf-burger::before {
  top: 1px;
}

#csf-header-v4 .csf-burger span {
  top: 7px;
}

#csf-header-v4 .csf-burger::after {
  top: 13px;
}

#csf-header-v4.is-mobile-open .csf-burger::before {
  top: 7px;
  transform: rotate(45deg);
}

#csf-header-v4.is-mobile-open .csf-burger span {
  opacity: 0;
}

#csf-header-v4.is-mobile-open .csf-burger::after {
  top: 7px;
  transform: rotate(-45deg);
}

#csf-header-v4 .csf-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(29, 28, 28, .36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

#csf-header-v4.is-mobile-open .csf-mobile-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#csf-header-v4 .csf-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: min(410px, 92vw);
  height: 100dvh;
  background: #fff;
  transform: translateX(105%);
  transition: transform .24s ease;
  box-shadow: -16px 0 38px rgba(29, 28, 28, .16);
  overflow-y: auto;
}

#csf-header-v4.is-mobile-open .csf-mobile-panel {
  transform: translateX(0);
}

#csf-header-v4 .csf-mobile-head {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--csf-line);
}

#csf-header-v4 .csf-mobile-head img {
  display: block;
  width: 210px;
  max-width: 64vw;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

#csf-header-v4 .csf-mobile-close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--csf-line);
  border-radius: 999px;
  background: var(--csf-soft);
  color: var(--csf-black);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

#csf-header-v4 .csf-mobile-close::before,
#csf-header-v4 .csf-mobile-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--csf-black);
  border-radius: 99px;
}

#csf-header-v4 .csf-mobile-close::before {
  transform: rotate(45deg);
}

#csf-header-v4 .csf-mobile-close::after {
  transform: rotate(-45deg);
}

#csf-header-v4 .csf-mobile-body {
  padding: 12px 20px 24px;
}

#csf-header-v4 .csf-mobile-nav {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

#csf-header-v4 .csf-mobile-nav a,
#csf-header-v4 .csf-mobile-services-btn {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--csf-line);
  background: transparent;
  color: var(--csf-black);
  font-size: 16.5px;
  font-weight: 780;
  text-align: left;
  cursor: pointer;
}

#csf-header-v4 .csf-mobile-services {
  display: none;
  padding: 8px 0 10px 0;
  border-bottom: 1px solid var(--csf-line);
}

#csf-header-v4 .csf-mobile-services.is-open {
  display: grid;
  gap: 3px;
}

#csf-header-v4 .csf-mobile-service-link {
  min-height: 44px !important;
  border-bottom: 0 !important;
  display: grid !important;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--csf-text) !important;
  font-size: 15px !important;
  font-weight: 680 !important;
  padding: 6px 0 !important;
}

#csf-header-v4 .csf-mobile-service-link .csf-service-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

#csf-header-v4 .csf-mobile-service-link .csf-service-icon svg {
  width: 16px;
  height: 16px;
}

#csf-header-v4 .csf-mobile-cta {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

#csf-header-v4 .csf-mobile-cta a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15.5px;
}

#csf-header-v4 .csf-mobile-cta .call {
  background: var(--csf-yellow);
  color: var(--csf-black);
}

#csf-header-v4 .csf-mobile-cta .quote {
  background: transparent;
  color: var(--csf-black);
  border: 1.5px solid var(--csf-black);
}

#csf-header-v4 .csf-mobile-note {
  margin-top: 18px;
  color: var(--csf-muted);
  font-size: 14px;
  line-height: 1.45;
}

#csf-header-v4 .csf-sticky-spacer {
  display: none;
  height: 82px;
}

#csf-header-v4.is-sticky .csf-sticky-spacer {
  display: block;
}

@media (max-width: 1210px) {
  #csf-header-v4 .csf-header-inner {
    width: min(1240px, calc(100% - 32px));
    gap: 16px;
  }

  #csf-header-v4 .csf-logo img {
    width: 205px;
  }

  #csf-header-v4 .csf-menu-link,
  #csf-header-v4 .csf-services-trigger {
    padding: 0 8px;
    font-size: 14.5px;
  }

  #csf-header-v4 .csf-call {
    padding: 0 15px;
  }

  #csf-header-v4 .csf-quote {
    padding: 0 15px;
  }
}

@media (max-width: 1080px) {
  #csf-header-v4 .csf-nav {
    display: none;
  }

  #csf-header-v4 .csf-header-inner {
    min-height: 76px;
    grid-template-columns: auto 1fr auto;
  }

  #csf-header-v4 .csf-mobile-toggle {
    display: inline-flex;
  }

  #csf-header-v4 .csf-sticky-spacer {
    height: 76px;
  }
}

@media (max-width: 760px) {
  #csf-header-v4 .csf-header-inner {
    width: min(100% - 24px, 1240px);
    min-height: 70px;
    gap: 12px;
  }

  #csf-header-v4 .csf-logo img {
    width: 184px;
    max-height: 40px;
  }

  #csf-header-v4 .csf-call,
  #csf-header-v4 .csf-quote {
    display: none;
  }

  #csf-header-v4 .csf-mobile-toggle {
    width: 42px;
    height: 42px;
  }

  #csf-header-v4 .csf-sticky-spacer {
    height: 70px;
  }
}

@media (max-width: 380px) {
  #csf-header-v4 .csf-logo img {
    width: 162px;
  }

  #csf-header-v4 .csf-header-inner {
    gap: 8px;
  }
}/* End custom CSS */