.elementor-142 .elementor-element.elementor-element-8d44d96{--display:flex;--margin-top:100px;--margin-bottom:-50px;--margin-left:0px;--margin-right:0px;}.elementor-142 .elementor-element.elementor-element-dd6ee54{--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;}@media(max-width:767px){.elementor-142 .elementor-element.elementor-element-8d44d96{--margin-top:100px;--margin-bottom:-20px;--margin-left:0px;--margin-right:0px;}}@media(min-width:768px){.elementor-142 .elementor-element.elementor-element-8d44d96{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-5f8c372 */@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

#st-wrap {
  background: transparent;
  overflow: hidden;
  line-height: 1;
}

.st-text {
  display: block;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 340px; /* Desktop */
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  white-space: nowrap;
  text-align: center;

  background: linear-gradient(
    180deg,
    #111110 0%,
    rgba(17,17,16, 0) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- FIX TABLET --- */
@media (max-width: 1024px) {
  .st-text {
    font-size: 160px; /* Ridotto per tablet */
  }
}

/* --- FIX MOBILE --- */
@media (max-width: 767px) {
  .st-text {
    font-size: 80px; /* Ridotto per smartphone */
    white-space: normal; /* Permette al testo di andare a capo se serve */
    letter-spacing: -0.02em; /* Leggermente più largo per leggibilità */
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2a4e699 */@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #D7281E;
  --yellow: #F5C800;
  --blue:   #1A6BB5;
  --green:  #2A9148;
  --black:  #111110;
  --mid:    #6B6B68;
  --muted:  #ABABAA;
  --white:  #FFFFFF;
  --font:   'DM Sans', system-ui, -apple-system, sans-serif;
}

/* ─── WRAPPER ─────────────────────────────────────────────── */

#fc-section {
  font-family: var(--font);
  background: #0E0E0D;
  position: relative;
  overflow: hidden;
}



.fc-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 60px 0;
}

/* ─── EYEBROW ─────────────────────────────────────────────── */

.fc-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}
#fc-section.fc-in .fc-eyebrow { opacity: 1; transform: translateY(0); }

.fc-dots { display: flex; gap: 5px; }
.fc-dots span { width: 5px; height: 5px; border-radius: 50%; display: block; }
.fc-dots span:nth-child(1) { background: var(--red); }
.fc-dots span:nth-child(2) { background: var(--yellow); }
.fc-dots span:nth-child(3) { background: var(--green); }
.fc-dots span:nth-child(4) { background: var(--blue); }

.fc-eyebrow-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.30);
}

/* ─── GRID 3 COLONNE ──────────────────────────────────────── */

.fc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.fc-col {
  padding: 0 48px 56px 0;
  border-right: 1px solid rgba(255,255,255,.07);

  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1);
}
.fc-col:last-child {
  border-right: none;
  padding-right: 0;
}
.fc-col:not(:first-child) { padding-left: 48px; }

#fc-section.fc-in .fc-col:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: .08s; }
#fc-section.fc-in .fc-col:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .20s; }
#fc-section.fc-in .fc-col:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .32s; }

/* Barra colorata in cima a ogni colonna */
.fc-col::before {
  content: '';
  display: block;
  height: 2px;
  width: 36px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.fc-col:nth-child(1)::before { background: var(--red); }
.fc-col:nth-child(2)::before { background: var(--yellow); }
.fc-col:nth-child(3)::before { background: var(--blue); }

/* Acronimo colorato — il punto di forza visivo */
.fc-acronym {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.fc-col:nth-child(1) .fc-acronym { color: var(--red); }
.fc-col:nth-child(2) .fc-acronym { color: var(--yellow); }
.fc-col:nth-child(3) .fc-acronym { color: var(--blue); }

/* Nome completo */
.fc-fullname {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,.38);
  margin-bottom: 24px;
}

/* Divisore */
.fc-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.07);
  margin-bottom: 22px;
}

/* Righe contatto */
.fc-contacts {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fc-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fc-contact-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  min-width: 38px;
  padding-top: 2px;
  flex-shrink: 0;
}

.fc-contact-value {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,.58);
}

.fc-contact-value a {
  color: rgba(255,255,255,.58);
  text-decoration: none;
  transition: color .2s ease;
}
.fc-contact-value a:hover { color: var(--white); }

/* ─── AIM HORIZONTAL BAR ──────────────────────────────────── */
/* ─── AIM BAR — prominente, no rosso ─────────────────────── */

.fc-aim-bar {
  margin-top: 0;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255,255,255,.10);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .8s .42s ease, transform .8s .42s ease;
}
#fc-section.fc-in .fc-aim-bar { opacity: 1; transform: translateY(0); }

.fc-aim-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 24px 32px;
}

/* LEFT */
.fc-aim-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.fc-aim-role {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}

.fc-aim-logo {
  height: 26px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: .90;
}

/* DIVISORE */
.fc-aim-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* RIGHT */
.fc-aim-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-aim-address {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,.52);
}

.fc-aim-email {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.80);
  text-decoration: none;
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(255,255,255,.20);
  padding-bottom: 1px;
  width: fit-content;
  transition: color .2s, border-color .2s;
}
.fc-aim-email:hover {
  color: #fff;
  border-color: rgba(255,255,255,.55);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 640px) {
  .fc-aim-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 20px;
  }
  .fc-aim-divider { width: 36px; height: 1px; }
}
/* ─── BOTTOM BAR ──────────────────────────────────────────── */

.fc-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.fc-copyright {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  letter-spacing: .02em;
}

.fc-links {
  display: flex;
  gap: 28px;
}
.fc-links a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .2s ease;
}
.fc-links a:hover { color: rgba(255,255,255,.85); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 900px) {
  .fc-inner { padding: 56px 40px 0; }
  .fc-grid { grid-template-columns: 1fr; gap: 0; }
  .fc-col {
    padding: 36px 0 !important;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .fc-col:last-child { border-bottom: none; }
  .fc-aim-bar { gap: 10px; }
  .fc-aim-contacts { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .fc-inner { padding: 48px 24px 0; }
  .fc-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .fc-links { flex-direction: column; gap: 8px; }
}/* End custom CSS */