.elementor-kit-6{--e-global-color-primary:#E74D15;--e-global-color-secondary:#1D1D1B;--e-global-color-text:#7A7A7A;--e-global-color-accent:#000000;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Contenitore rotondo */
.round-container {
  aspect-ratio: 1 / 1;         /* mantiene larghezza = altezza */
  border-radius: 50%;          /* forma circolare */
  display: flex;               /* utile se vuoi centrare contenuto */
  align-items: center;
  justify-content: center;
  width: 400px;                /* puoi modificare questa dimensione */
  max-width: 100%;             /* evita overflow */
  overflow: hidden;            /* utile se contiene immagini o elementi */
}
@media (max-width: 768px){ 
   .round-container {
  width: 300px !important;       
   }
}

/* =========================
   HERO ARANCIONE + OVERLAP
   ========================= */

/* Sezione arancione */
.hero-70vh{
  position: relative;
  min-height: 80vh;            /* altezza aggiornata */
  background: #e4670f;
  overflow: visible;
  z-index: 1;
}

/* -------------------------
   IMMAGINE DEI MEZZI
   ------------------------- */

/* Solo fade (nessun movimento) */
.hero-70vh .mezzi-overlap{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(115%);
  z-index: 3;
  pointer-events: none;
  animation: fadeOnly 1.2s ease-out both;
  will-change: opacity;
}

.hero-70vh .mezzi-overlap img{
  display: block;
  height: auto;
  max-width: min(90vw, 1200px);
}

/* Fade-only animation */
@keyframes fadeOnly{
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* -------------------------
   TESTI ANIMATI (UP / DOWN)
   ------------------------- */

/* Movimento globale: 100px */
:root { --e-anim-distance: 100px; }

/* Fai muovere i titoli in su o in giù */
.hero-70vh .animated.fadeInUp{
  animation-name: fadeInUp100 !important;
  -webkit-animation-name: fadeInUp100 !important;
}
.hero-70vh .animated.fadeInDown{
  animation-name: fadeInDown100 !important;
  -webkit-animation-name: fadeInDown100 !important;
}

/* Keyframes personalizzati (100px) */
@keyframes fadeInUp100 {
  from {
    opacity: 0;
    transform: translate3d(0, var(--e-anim-distance, 100px), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown100 {
  from {
    opacity: 0;
    transform: translate3d(0, calc(-1 * var(--e-anim-distance, 100px)), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* -------------------------
   SEZIONE SUCCESSIVA
   ------------------------- */
.section-after-hero{
  padding-top: clamp(100px, 14vw, 260px);
}

/* -------------------------
   MOBILE
   ------------------------- */
@media (max-width: 767px){
  .hero-70vh{ min-height: 70vh; }
  .hero-70vh .mezzi-overlap{
    transform: translateX(-50%) translateY(165%);
  }
  .section-after-hero{
    padding-top: clamp(70px, 16vw, 180px);
  }
  .hero-70vh{
  min-height: 60vh;            /* altezza aggiornata */
}
}

/* Micro ottimizzazione */
.animated{ will-change: transform, opacity; backface-visibility: hidden; }/* End custom CSS */