/* ==============================
   STYLE.CSS (BASE)
   Progetto: Base Website (riutilizzabile)
   Ultimo aggiornamento: 2025-12-17
   Richiede: reset.css + variables.css + typography.css
   ============================== */

/* #region INIZIO NAVBAR */

nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-secondary);
  height: 5rem;
}

.nav-container {
  height: 100%;
  padding: 0 1.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* #endregion FINE NAVBAR */

/* #region INIZIO SOCIAL */

.circle-container {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition-duration: 0.3s;
}

.social-header {
  display: flex;
  gap: 0.75rem;
  z-index: 100;
}

.desktop {
  display: none;
}

/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
}

/* linkdin*/
.containerThree:hover {
  background-color: #0072b1;
  transition-duration: 0.3s;
}
/* Whatsapp*/
.containerFour:hover {
  background-color: #128c7e;
  transition-duration: 0.3s;
}

.circle-container:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.circle-container:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* #endregion INIZIO SOCIAL */

/* #region INIZIO MENU */
.wrapper {
  position: fixed;
  top: 5rem;
  right: -100%;
  height: calc(100% - 5rem);
  width: 100%;
  background: var(--color-primary);
  transition: right 0.6s ease-in-out;

  /* ✅ centra tutto il contenuto del menu */
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.wrapper.active {
  right: 0;
  pointer-events: auto;
}

/* ✅ ul centrato e in colonna */
.wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;

  text-align: center;
}

.wrapper ul li {
  margin: 0;
}

/* ✅ link: niente position:absolute (era la causa del disallineamento) */
.wrapper ul li a {
  text-decoration: none;
  font-size: 1.875rem; /* 30px */

  padding: 0.3125rem 1.875rem;
  color: var(--color-bg);
  border-radius: 3.125rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  position: relative;
  line-height: 1.2;

  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* hover pill */
.wrapper ul li a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  border-radius: 3.125rem;
  transform: scaleY(0);
  z-index: -1;
  transition: transform 0.25s ease;
}

.wrapper ul li a:hover::after {
  transform: scaleY(1);
}

.wrapper ul li a:hover {
  color: var(--color-text);
}

/* ✅ social dentro il menu: trattalo come un normale blocco, centrato */
.wrapper ul .social-header.mobile {
  margin-top: 1.25rem;
  justify-content: center;
}

/* reveal animation */
.wrapper.active ul li a,
.wrapper.active ul .social-header.mobile {
  opacity: 1;
  transform: translateY(0);
}

/* #endregion FINE MENU */
/* #region INIZIO HAMBURGER */
.menu-btn-container {
  background-color: var(--color-secondary);
  border-radius: 50%;
  z-index: 1;
  width: 2.625rem;
  height: 2.625rem;
}

.menu-btn {
  cursor: pointer;
  z-index: 1;
  background-color: transparent;
  border: none;
}

.menu-btn svg {
  /* The size of the SVG defines the overall size */
  height: 3em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: var(--color-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.menu-btn.active {
  transform: rotate(-45deg);
}

.menu-btn.active .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* #endregion FINE HAMBURGER */

/* #region INIZIO MAIN  */

.section {
  display: flex;
  padding: 6.25rem 1.875rem;
  flex-direction: column;
  align-items: center;
  gap: 3.125rem;
  align-self: stretch;
}

.section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5625rem;
  align-self: stretch;
}

.label {
  display: flex;
  padding: 0.3125rem 0.9375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 2rem;
  border: 2px solid var(--color-primary);
  width: fit-content;
  font-family: var(--font-secondary);
  font-size: var(--fs-6);
  font-weight: 900;
  line-height: 1.4375rem; /* 176.923% */
  letter-spacing: 0.04063rem;
}

.cta {
  font-size: 1rem;
  padding: 0.8em 2em;
  border: 3px solid var(--color-primary);
  border-radius: 1em;
  color: #fff;
  font-weight: bolder;
  transition: cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
  box-shadow: -5px 5px 0px 0px var(--color-primary);
}

.cta:hover {
  transform: translate(5px, -5px);
}

.flex {
  display: flex;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

/* #region inizio hero section */
.avatar-hero {
  height: 24.3825rem;
  width: 100%;
  align-self: stretch;
  border-radius: 18.75rem 18.75rem 0 0;
  background: var(--buttons-secondary, #2c303a);
}
/* #endregion fine hero section */

/* #region inizio services section */
.services-container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.875rem;
  column-gap: 30px;
  grid-auto-rows: 1fr;
}

.service-icon {
  width: 4.58369rem;
  height: 4.58369rem;
  border-radius: 4.625rem;
  border: 2px solid var(--buttons-secondary, #2c303a);
  background: var(--text, #fff);
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.25rem;
  padding: 1.875rem;
  border-radius: 1.25rem;
  height: 100%;
}

.service-text {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  height: 100%;
}

.service-text p {
  flex: 1;
}

/* #endregion fine services section */

/* #region inizio about section */
.about .section-header {
  align-items: start;
}

.about-up {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.avatar-about {
  border-radius: 33.75rem;
  background: #47cf73;
  width: 20.625rem;
  height: 20.625rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.about-text-p {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.about-down-left {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-bottom: 5rem;
}

.about-down-right {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.about-down-right li {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about .service-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.875rem;
}

/* #endregion fine about section */

/* #region inizio work section */

.work-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.work-body a:hover {
  color: var(--color-primary);
  transition: 300ms;
}
/* #endregion fine work section */

/* #region inizio process section */

/* ===== Owl-like base ===== */
.owl-carousel {
  position: relative;
  width: 100%;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-stage-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.owl-stage {
  position: relative;
  display: flex;
  will-change: transform;
  transform: translate3d(0px, 0px, 0px);
  transition: transform 300ms ease;
}

.owl-drag .owl-stage {
  cursor: grab;
}
.owl-drag.is-dragging .owl-stage {
  cursor: grabbing;
  transition: none !important;
}

.owl-item {
  flex: 0 0 auto;
}

.owl-item .item {
  /* stile demo: puoi personalizzare */

  border-radius: 8px;
}

/* ===== Nav ===== */
.owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);

  z-index: 2;

  /* non blocca il drag */
  pointer-events: none;

  /* IMPORTANT: niente padding, così i bordi sono “veri” */
  padding-inline: 0;
}

.owl-nav button {
  appearance: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-primary);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  cursor: pointer;

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
}

.owl-nav button.disabled {
  opacity: 0;
  cursor: not-allowed;
}

.owl-nav span {
  display: inline-block;
}

.owl-nav .owl-prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.owl-nav .owl-next {
  right: 0;
  transform: translate(50%, -50%);
}

/* ===== Dots ===== */
.owl-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.owl-dot {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d6d6d6;
}

.owl-dot.active span {
  background: #869791;
}

.marquee h3 {
  margin-bottom: 1.5625rem;
}

.marquee {
  --speed: 40s;
  --gap: clamp(1rem, 3vw, 2.5rem);
  --icon-size: clamp(14px, 2vw, 18px);

  width: 100%;
  overflow: hidden;

  /* fade laterale */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll var(--speed) linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: var(--gap);
  padding-inline: var(--gap);
}

.marquee-item {
  white-space: nowrap;
  font-size: clamp(1rem, 2.3vw, 1.4rem);
  font-weight: 500;
  color: #ffffff;
}

.marquee-icon {
  display: inline-flex;
  align-items: center;
}

.marquee-icon svg {
  width: var(--icon-size);
  height: var(--icon-size);
  flex: 0 0 auto;
}

.marquee-icon path {
  fill: #e8e8e8;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    transform: none;
  }
}
/* #endregion fine process section */

/* #endregion FINE MAIN */

/* #region INIZIO FOOTER */

.footer-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.footer-cta {
  display: flex;
  padding: 0.5rem 1.625rem 0.5rem 0.9375rem;
  align-items: center;
  gap: 0.75rem;
  border-radius: 6.25rem;
  border: 1px solid #000;
  background: var(--background, #131417);
  width: fit-content;
}

.footer-cta:hover {
  border: 1px solid white;
}

.footer-cta__avatar img {
  width: 2.5rem;
  height: 2.5rem;
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  margin-top: 0.94rem;
  line-height: 2.125rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  line-height: 2.125rem;
}

.footer-block .social-header {
  margin-top: 1rem;
}

.footer-divider {
  border: none;
  height: 0.0625rem; /* 1px */
  width: 100%;
  background-image: repeating-linear-gradient(
    to right,
    var(--color-secondary) 0 0.25rem,
    transparent 0.25rem 0.5rem
  );
}

.footer-bottom {
  color: var(--color-bg);
  font-family: "DM Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9375rem; /* 221.429% */
  letter-spacing: -0.0175rem;
}

footer .social-header {
  display: flex;
  gap: 0.75rem;
  z-index: 1;
}

footer.section {
  padding: 3.75rem 1.875rem;
}

footer a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: color-mix(in srgb, currentColor 60%, transparent);
}

/* #endregion FINE FOOTER */

/* #region INIZIO PAGE WORKS */
.work-page .service-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 1.25rem;
  padding: 0;
  border-radius: none;
  height: 100%;
  align-items: end;
}

.work-page .label {
  border: 2px solid var(--color-text);
  background-color: var(--color-bg);
}
/* #endregion INIZIO PAGE WORKS */

/* #region INIZIO DESKTOP */
@media (min-width: 900px) {
  /* #region INIZIO NAVBAR */

  nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-secondary);
    height: 5rem;
  }

  .nav-container {
    height: 100%;
    padding: 0 6.25rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  /* #endregion FINE NAVBAR */

  /* #region INIZIO SOCIAL */

  .mobile {
    display: none;
  }

  .social-header.desktop {
    display: flex;
    justify-content: end;
  }

  .desktop {
    display: block;
  }

  /* #endregion INIZIO SOCIAL */

  /* #region INIZIO MENU */

  .wrapper {
    position: static;
    top: auto;
    right: auto;
    height: auto;
    width: auto;
    background: transparent;
    transition: none;
    display: block;
    justify-content: normal;
    align-items: normal;
    pointer-events: auto;
  }

  /* ✅ ul centrato e in colonna */
  .wrapper ul {
    margin: initial;
    padding: initial;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.1875rem;
  }

  .wrapper ul li {
    margin: initial;
  }

  /* ✅ link: niente position:absolute (era la causa del disallineamento) */
  .wrapper ul li a {
    font-size: var(--fs-5);

    padding: 0;
    color: inherit;
    border-radius: 0;

    display: flex;
    align-items: center;
    justify-content: normal;

    position: static;
    line-height: normal;

    opacity: 1;
    transform: none;
    transition: none;
  }

  /* hover pill */
  .wrapper ul li a::after {
    display: none;
  }

  .wrapper ul li a:hover::after {
    display: none;
  }

  .wrapper ul li a:hover {
    color: var(--color-primary);
    background: none;
  }

  /* #endregion INIZIO MENU */

  /* #region INIZIO HAMBURGER */

  .menu-btn-container {
    display: none;
  }

  /* #endregion FINE HAMBURGER */

  /* #region INIZIO MAIN  */

  .section {
    display: flex;
    padding: 9.375rem 6.25rem;
    flex-direction: column;
    align-items: center;
    gap: 3.125rem;
    align-self: stretch;
  }

  .section-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5625rem;
    align-self: stretch;
  }

  .label {
    display: flex;
    padding: 0.3125rem 0.9375rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 2rem;
    border: 2px solid var(--color-primary);
    width: fit-content;
    font-family: var(--font-secondary);
    font-size: var(--fs-6);
    font-weight: 900;
    line-height: 1.4375rem; /* 176.923% */
    letter-spacing: 0.04063rem;
  }

  .cta {
    font-size: 1rem;
    padding: 0.8em 2em;
    border: 3px solid var(--color-primary);
    border-radius: 1em;
    color: #fff;
    font-weight: bolder;
    transition: cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
    box-shadow: -5px 5px 0px 0px var(--color-primary);
  }

  .cta:hover {
    transform: translate(5px, -5px);
  }

  .flex {
    display: flex;
    justify-content: space-between;
  }

  /* #region inizio hero section */
  .hero {
    flex-direction: row;
    justify-content: stretch;
    height: 100vh;
  }
  /* #endregion fine hero section */

  /* #region inizio services section */
  .services-container {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.875rem;
    column-gap: 30px;
    grid-auto-rows: 1fr 1fr;
  }

  .work-page .services-container {
    row-gap: 6.625rem;
    column-gap: 145px;
  }

  /* #endregion fine services section */

  /* #region inizio about section */

  .hero {
    justify-content: space-between;
  }

  .avatar-hero {
    width: 29.0625rem;
    height: auto;
  }

  .avatar-about {
    border-radius: 33.75rem;
    background: #47cf73;
    width: 29.75rem;
    height: 29.75rem;
    flex-shrink: 0;
  }

  .about-up {
    display: flex;
    flex-direction: row;
  }

  .hero .section-header {
    text-align: left;
    align-items: flex-start;
  }

  .about-down {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    align-self: stretch;
    height: auto;
  }

  .about-down-right {
    display: grid;
    grid-template-columns: max-content max-content minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: 0;

    column-gap: 1.875rem;
  }

  .about-down-left p {
    max-width: 28.4375rem;
  }

  .experience-circle {
    width: 1.25rem;
    height: 1.25rem;
    background: #47cf73;
    border-radius: 50%;
    border: solid 2px #fff;
  }

  .experience-line {
    width: 0.125rem;
    background: #fff;
    flex: 1;
    min-height: 3rem;
  }

  .about-down-right li {
    display: contents;
  }

  .about-down-right li > h4 {
    grid-column: 1;
    white-space: nowrap;
  }

  .about-down-right li > .flex-column {
    grid-column: 2;
    width: max-content;
    justify-self: center;
    align-items: center;
    height: 100%;
  }

  .about-down-right li > .service-text {
    grid-column: 3;
    min-width: 0;
  }

  .about-down-right li .service-text p {
    max-width: 28.4375rem;
  }

  .about-down-right li h4 {
    white-space: nowrap;
    line-height: 1.875rem;
  }

  /* #endregion fine about section */

  /* #region inizio work section */

  .wrapp {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
  }

  .content {
    width: 100%;
    height: auto;
  }

  /* GSAP ScrollTrigger Pinned Image Animation */

  .spacer {
    width: 100%;
    height: 50vh;
    background: #ddd;
  }

  .work {
    display: flex;
  }

  .work__left {
    position: relative;
    width: 54%;
    z-index: 2;
    /* outline: 1px solid red; */
    /* TODO: rimuovi */
  }

  .work__text {
    margin: auto;
    width: 80%;
  }

  .work__info {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* outline: 1px solid green; */
    /* TODO: rimuovi */
  }

  .work-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .service-card a:hover {
    color: var(--color-primary);
    transition: 300ms;
  }

  .work__right {
    width: 68%;
    height: auto;
    /* background: green; */
    /* TODO: rimuovi */
  }

  .work__right-bl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    width: 100%;
    height: 100vh;
    top: 0;
    /* height: 80vh;
  top: 10vh; */
    /* background: #ff6b4f; */

    /* TODO: 3 */
  }

  .work__photo {
    width: 100%;
    height: 30vw;
    position: relative;
  }

  .work__photo-item {
    position: absolute;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
  }

  .work__photo-item img {
    display: block;
    width: auto;
    height: 90%;
    object-fit: cover;
  }

  /* #endregion fine work section */

  /* #region inizio process section */

  /* ===== Owl-like base ===== */
  .owl-carousel {
    position: relative;
    width: 100%;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
  }

  .owl-carousel.owl-loaded {
    display: block;
  }

  .owl-stage-outer {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .owl-stage {
    position: relative;
    display: flex;
    will-change: transform;
    transform: translate3d(0px, 0px, 0px);
    transition: transform 300ms ease;
  }

  .owl-drag .owl-stage {
    cursor: grab;
  }
  .owl-drag.is-dragging .owl-stage {
    cursor: grabbing;
    transition: none !important;
  }

  .owl-item {
    flex: 0 0 auto;
  }

  .owl-item .item {
    /* stile demo: puoi personalizzare */

    border-radius: 8px;
  }

  /* ===== Nav ===== */
  .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);

    z-index: 2;

    /* non blocca il drag */
    pointer-events: none;

    /* IMPORTANT: niente padding, così i bordi sono “veri” */
    padding-inline: 0;
  }

  .owl-nav button {
    appearance: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--color-bg);
    border: 2px solid var(--color-primary);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    cursor: pointer;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
  }

  .owl-nav button.disabled {
    opacity: 0;
    cursor: not-allowed;
  }

  .owl-nav span {
    display: inline-block;
  }

  .owl-nav .owl-prev {
    left: 0;
    transform: translate(-50%, -50%);
  }

  .owl-nav .owl-next {
    right: 0;
    transform: translate(50%, -50%);
  }

  /* ===== Dots ===== */
  .owl-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .owl-dot {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0.25rem;
    cursor: pointer;
  }

  .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #d6d6d6;
  }

  .owl-dot.active span {
    background: #869791;
  }

  .marquee h3 {
    margin-bottom: 1.5625rem;
  }

  .marquee {
    --speed: 40s;
    --gap: clamp(1rem, 3vw, 2.5rem);
    --icon-size: clamp(14px, 2vw, 18px);

    width: 100%;
    overflow: hidden;

    /* fade laterale */
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 10%,
      #000 90%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 10%,
      #000 90%,
      transparent 100%
    );
  }

  .marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marquee-scroll var(--speed) linear infinite;
  }

  .marquee-group {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding-inline: var(--gap);
  }

  .marquee-item {
    white-space: nowrap;
    font-size: clamp(1rem, 2.3vw, 1.4rem);
    font-weight: 500;
    color: #ffffff;
  }

  .marquee-icon {
    display: inline-flex;
    align-items: center;
  }

  .marquee-icon svg {
    width: var(--icon-size);
    height: var(--icon-size);
    flex: 0 0 auto;
  }

  .marquee-icon path {
    fill: #e8e8e8;
  }

  @keyframes marquee-scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .marquee-track {
      animation: none;
      transform: none;
    }
  }
  /* #endregion fine process section */

  /* #endregion FINE MAIN */

  /* #region INIZIO FOOTER */

  .contact p {
    max-width: 41.875rem;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  .footer-main {
    display: flex;
    gap: 7rem;
  }

  .footer-up {
    display: flex;
    justify-content: space-between;
  }

  .footer-block {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
    margin-top: 0;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
  }

  .footer-block .social-header {
    margin-top: 1rem;
  }

  .footer-divider {
    border: none;
    height: 0.0625rem; /* 1px */
    width: 100%;
    background-image: repeating-linear-gradient(
      to right,
      var(--color-secondary) 0 0.25rem,
      transparent 0.25rem 0.5rem
    );
  }

  .footer-legal {
    display: flex;
    gap: 1rem;
  }

  footer .social-header {
    display: flex;
    gap: 0.75rem;
    z-index: 1;
  }

  footer.section {
    padding: 5.625rem 6.25rem 2.6875rem 6.25rem;
  }

  /* #endregion FINE FOOTER */
}

/* #endregion FINE DESKTOP   */
