* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", sans-serif;
  background: #f8f9fb !important;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Sfondo "Luce Organica" - Design sofisticato e moderno */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    /* Luce principale dall'alto - effetto spotlight delicato */
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(0, 95, 163, 0.06) 0%, transparent 50%),
    /* Blob organico blu - alto sinistra */
    radial-gradient(ellipse 800px 1000px at 5% 15%, rgba(0, 95, 163, 0.09) 0%, transparent 55%),
    /* Blob organico verde - basso destra */
    radial-gradient(ellipse 900px 1100px at 95% 85%, rgba(0, 142, 110, 0.07) 0%, transparent 50%),
    /* Accento sottile centrale - aggiunge profondità */
    radial-gradient(circle 1000px at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 65%),
    /* Gradiente base elegante */
    linear-gradient(125deg, #f5f7fa 0%, #eef2f6 35%, #f2f5f8 65%, #f5f7fa 100%);
  z-index: -2;
  pointer-events: none;
  animation: organicBreath 20s ease-in-out infinite;
}

@keyframes organicBreath {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

/* Texture noise per qualità premium */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 95, 163, 0.008) 2px, rgba(0, 95, 163, 0.008) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 142, 110, 0.008) 2px, rgba(0, 142, 110, 0.008) 4px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* --- CONTENITORE PRINCIPALE --- */
.page-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 5vw 80px;
  position: relative;
  z-index: 1;
}


/* --- HERO --- */
.hero-title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  color: #005fa3;
}

.hero-title span {
  color: #008e6e;
}

.hero-subtitle {
  margin: 4px 0;
  font-size: 20px;
  color: #005fa3;
}

/* --- VIDEO --- */
.video-section {
  margin-top: 32px;
  text-align: center;
}

.video-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  margin-top: 8px;
  font-size: 16px;
  color: #666;
}

/* --- SEZIONI --- */
.section {
  margin-top: 60px;
}

.section-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.section-subtitle {
  margin: 6px 0 20px 0;
  font-size: 16px;
}

/* --- GRID CARDS --- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 210px));
  gap: 20px;
  justify-content: center;
}

/* --- CARD UNIFORME --- */
.card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1 / 1.5;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- LABEL TESTO SU FOTO (sempre visibile) --- */
.card-label {
  position: absolute;
  bottom: 14px;
  left: 10px;
  right: 10px;
  text-align: center;
  color: #ffffff;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(11px, 1.6vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  word-break: keep-all;
  hyphens: none;
  text-shadow: 0px 2px 2px #005FA3;
  pointer-events: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .card-label {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
  }
}

/* --- MENU NAVIGATION STYLES --- */
.text-node {
  background-clip: text !important;
  -webkit-background-clip: text !important;
  font-size: 16px;
  line-height: 1.2;
}

#identita-menu .text-node {
  font-size: 15px;
  line-height: 1.05;
}

#identita-menu .dropdown-link {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 6px;
  color: #0f1e2f;
  text-decoration: none;
  background: none !important;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

#identita-menu .dropdown-link:hover {
  color: #0b6ea4;
  text-shadow: 0 0 8px rgba(11, 110, 164, 0.35);
}

#identita-menu .dropdown-link.dropdown-link--active {
  background-color: transparent;
  color: #00a67d;
  text-shadow: 0 0 12px rgba(0, 166, 125, 0.55);
  font-weight: 600;
}

.top-nav {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 12px 32px;
  gap: 20px;
  z-index: 10;
}

.top-nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-nav .shape {
  position: static !important;
  left: auto;
  top: auto;
  height: auto;
}

.top-nav .root-0 {
  align-items: center;
}

.top-nav .root-0-paragraph-set-0 {
  justify-content: center;
}

.top-nav .root-0-paragraph-set-0-paragraph-0 {
  line-height: 1;
}

.nav-item {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.nav-item .text-node {
  position: relative;
  display: inline-block;
  transition: text-shadow 0.25s ease, color 0.25s ease;
}

.nav-item.active .text-node {
  text-shadow: 0 6px 16px rgba(0, 95, 163, 0.5);
}

.group-15-e04cc272779a {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 60px;
  box-shadow: [];
  mix-blend-mode: normal;
  z-index: 6;
}

.group-27-9e0e97d8b8f0 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 286px;
  box-shadow: [];
  mix-blend-mode: normal;
}

#identita-menu {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

#identita-menu.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.partner-26d411de89a8 {
  position: absolute;
  left: 1166px;
  top: 35px;
  height: 29px;
  box-shadow: [];
  mix-blend-mode: normal;
}

.partner-26d411de89a8 .root-0 {
  display: flex;
  white-space: break-spaces;
  align-items: flex-start;
}

.partner-26d411de89a8 .root-0-paragraph-set-0 {
  display: inline-flex;
  flex-direction: column;
  justify-content: inherit;
  margin-right: 1px;
  vertical-align: top;
}

.partner-26d411de89a8 .root-0-paragraph-set-0-paragraph-0 {
  font-size: 0;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.partner-26d411de89a8 .root-0-paragraph-set-0-paragraph-0-text-0 {
  color: rgba(0, 0, 0, 1);
  text-transform: none;
  line-break: auto;
  overflow-wrap: initial;
  white-space: pre;
  font-size: 18px;
  text-rendering: geometricPrecision;
  caret-color: rgba(0, 0, 0, 1);
  text-decoration: none;
  letter-spacing: 0px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
}

.news-757427afcf70 {
  position: absolute;
  left: 1271px;
  top: 35px;
  height: 29px;
  box-shadow: [];
  mix-blend-mode: normal;
}

.news-757427afcf70 .root-0 {
  display: flex;
  white-space: break-spaces;
  align-items: flex-start;
}

.news-757427afcf70 .root-0-paragraph-set-0 {
  display: inline-flex;
  flex-direction: column;
  justify-content: inherit;
  margin-right: 1px;
  vertical-align: top;
}

.news-757427afcf70 .root-0-paragraph-set-0-paragraph-0 {
  font-size: 0;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.news-757427afcf70 .root-0-paragraph-set-0-paragraph-0-text-0 {
  color: rgba(0, 0, 0, 1);
  text-transform: none;
  line-break: auto;
  overflow-wrap: initial;
  white-space: pre;
  font-size: 18px;
  text-rendering: geometricPrecision;
  caret-color: rgba(0, 0, 0, 1);
  text-decoration: none;
  letter-spacing: 0px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
}

.aiuto-f9b3c5c36415 {
  position: absolute;
  left: 1351px;
  top: 35px;
  height: 29px;
  box-shadow: [];
  mix-blend-mode: normal;
}

.aiuto-f9b3c5c36415 .root-0 {
  display: flex;
  white-space: break-spaces;
  align-items: flex-start;
}

.aiuto-f9b3c5c36415 .root-0-paragraph-set-0 {
  display: inline-flex;
  flex-direction: column;
  justify-content: inherit;
  margin-right: 1px;
  vertical-align: top;
}

.aiuto-f9b3c5c36415 .root-0-paragraph-set-0-paragraph-0 {
  font-size: 0;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.aiuto-f9b3c5c36415 .root-0-paragraph-set-0-paragraph-0-text-0 {
  color: rgba(0, 0, 0, 1);
  text-transform: none;
  line-break: auto;
  overflow-wrap: initial;
  white-space: pre;
  font-size: 18px;
  text-rendering: geometricPrecision;
  caret-color: rgba(0, 0, 0, 1);
  text-decoration: none;
  letter-spacing: 0px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
}

.identit-b737a40200d9 {
  position: absolute;
  left: 1058px;
  top: 35px;
  height: 29px;
  box-shadow: [];
  mix-blend-mode: normal;
}

.identit-b737a40200d9 .root-0 {
  display: flex;
  white-space: break-spaces;
  align-items: flex-start;
}

.identit-b737a40200d9 .root-0-paragraph-set-0 {
  display: inline-flex;
  flex-direction: column;
  justify-content: inherit;
  margin-right: 1px;
  vertical-align: top;
}

.identit-b737a40200d9 .root-0-paragraph-set-0-paragraph-0 {
  font-size: 0;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.identit-b737a40200d9 .root-0-paragraph-set-0-paragraph-0-text-0 {
  color: rgba(0, 0, 0, 1);
  text-transform: none;
  line-break: auto;
  overflow-wrap: initial;
  white-space: pre;
  font-size: 18px;
  text-rendering: geometricPrecision;
  caret-color: rgba(0, 0, 0, 1);
  text-decoration: none;
  letter-spacing: 0px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
}

.home-2a3c1e730256 {
  position: absolute;
  left: 970px;
  top: 34px;
  height: 29px;
  box-shadow: [];
  mix-blend-mode: normal;
}

.home-2a3c1e730256 .root-0 {
  display: flex;
  white-space: break-spaces;
  align-items: flex-start;
}

.home-2a3c1e730256 .root-0-paragraph-set-0 {
  display: inline-flex;
  flex-direction: column;
  justify-content: inherit;
  margin-right: 1px;
  vertical-align: top;
}

.home-2a3c1e730256 .root-0-paragraph-set-0-paragraph-0 {
  font-size: 0;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.home-2a3c1e730256 .root-0-paragraph-set-0-paragraph-0-text-0 {
  color: rgba(0, 0, 0, 1);
  text-transform: none;
  line-break: auto;
  overflow-wrap: initial;
  white-space: pre;
  font-size: 18px;
  text-rendering: geometricPrecision;
  caret-color: rgba(0, 0, 0, 1);
  text-decoration: none;
  letter-spacing: 0px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
}

.a-l-t-i-m-p-r-e-s-a-33dca6d9defa {
  position: absolute;
  left: 38px;
  top: 33px;
  height: 29px;
  box-shadow: [];
  mix-blend-mode: normal;
}

.a-l-t-i-m-p-r-e-s-a-33dca6d9defa .root-0 {
  display: flex;
  white-space: break-spaces;
  align-items: flex-start;
}

.a-l-t-i-m-p-r-e-s-a-33dca6d9defa .root-0-paragraph-set-0 {
  display: inline-flex;
  flex-direction: column;
  justify-content: inherit;
  margin-right: 1px;
  vertical-align: top;
}

.a-l-t-i-m-p-r-e-s-a-33dca6d9defa .root-0-paragraph-set-0-paragraph-0 {
  font-size: 0;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.a-l-t-i-m-p-r-e-s-a-33dca6d9defa .root-0-paragraph-set-0-paragraph-0-text-0 {
  color: rgba(0, 95, 163, 1);
  text-transform: none;
  line-break: auto;
  overflow-wrap: initial;
  white-space: pre;
  font-size: 20px;
  text-rendering: geometricPrecision;
  caret-color: rgba(0, 95, 163, 1);
  text-decoration: none;
  letter-spacing: 0px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
}

.rectangle-a779f793f698 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 60px;
  background: #ffffffFF;
  border-end-start-radius: 10px;
  border-end-end-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  mix-blend-mode: normal;
  z-index: 0;
}

.profilo-az-group {
  position: static;
  transform: translateY(25px);
}

.i-traguard-2c904311e84d {
  position: absolute;
  left: 42px;
  top: 140px;
  height: 29px;
  box-shadow: [];
  mix-blend-mode: normal;
}

.i-traguard-2c904311e84d .root-0 {
  display: flex;
  white-space: break-spaces;
  align-items: flex-start;
}

.i-traguard-2c904311e84d .root-0-paragraph-set-0 {
  display: inline-flex;
  flex-direction: column;
  justify-content: inherit;
  margin-right: 1px;
  vertical-align: top;
}

.i-traguard-2c904311e84d .root-0-paragraph-set-0-paragraph-0 {
  font-size: 0;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.i-traguard-2c904311e84d .root-0-paragraph-set-0-paragraph-0-text-0 {
  color: rgba(0, 0, 0, 1);
  text-transform: none;
  line-break: auto;
  overflow-wrap: initial;
  white-space: pre;
  font-size: 18px;
  text-rendering: geometricPrecision;
  caret-color: rgba(0, 0, 0, 1);
  text-decoration: none;
  letter-spacing: 0px;
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
}

.i-servizi-c603925ee53a {
  position: absolute;
  left: 42px;
  top: 114px;
  width: 186px;
  box-shadow: [];
  mix-blend-mode: normal;
}

.i-servizi-c603925ee53a .root-0 {
  display: flex;
  white-space: break-spaces;
  align-items: flex-start;
}

.i-servizi-c603925ee53a .root-0-paragraph-set-0 {
  display: inline-flex;
  flex-direction: column;
  justify-content: inherit;
  min-width: 100%;
  margin-right: 1px;
  vertical-align: top;
}

.i-servizi-c603925ee53a .root-0-paragraph-set-0-paragraph-0 {
  font-size: 0;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.i-servizi-c603925ee53a .root-0-paragraph-set-0-paragraph-0-text-0 {
  color: rgba(0, 0, 0, 1);
  text-transform: none;
  line-break: auto;
  overflow-wrap: initial;
  white-space: break-spaces;
  font-size: 18px;
  text-rendering: geometricPrecision;
  caret-color: rgba(0, 0, 0, 1);
  text-decoration: none;
  letter-spacing: 0px;
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
}

.la-nostra-d48a5edbd07e {
  position: absolute;
  left: 42px;
  top: 88px;
  height: 29px;
  box-shadow: [];
  mix-blend-mode: normal;
}

.la-nostra-d48a5edbd07e .root-0 {
  display: flex;
  white-space: break-spaces;
  align-items: flex-start;
}

.la-nostra-d48a5edbd07e .root-0-paragraph-set-0 {
  display: inline-flex;
  flex-direction: column;
  justify-content: inherit;
  margin-right: 1px;
  vertical-align: top;
}

.la-nostra-d48a5edbd07e .root-0-paragraph-set-0-paragraph-0 {
  font-size: 0;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.la-nostra-d48a5edbd07e .root-0-paragraph-set-0-paragraph-0-text-0 {
  color: rgba(0, 0, 0, 1);
  text-transform: none;
  line-break: auto;
  overflow-wrap: initial;
  white-space: pre;
  font-size: 18px;
  text-rendering: geometricPrecision;
  caret-color: rgba(0, 0, 0, 1);
  text-decoration: none;
  letter-spacing: 0px;
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
}

.profilo-az-772cd38cbd98 {
  position: absolute;
  left: 38px;
  top: 60px;
  height: 29px;
  box-shadow: [];
  mix-blend-mode: normal;
}

.profilo-az-772cd38cbd98 .root-0 {
  display: flex;
  white-space: break-spaces;
  align-items: flex-start;
}

.profilo-az-772cd38cbd98 .root-0-paragraph-set-0 {
  display: inline-flex;
  flex-direction: column;
  justify-content: inherit;
  margin-right: 1px;
  vertical-align: top;
}

.profilo-az-772cd38cbd98 .root-0-paragraph-set-0-paragraph-0 {
  font-size: 0;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.profilo-az-772cd38cbd98 .root-0-paragraph-set-0-paragraph-0-text-0 {
  color: rgba(0, 0, 0, 1);
  text-transform: none;
  line-break: auto;
  overflow-wrap: initial;
  white-space: pre;
  font-size: 22px;
  text-rendering: geometricPrecision;
  caret-color: rgba(0, 0, 0, 1);
  text-decoration: none;
  letter-spacing: 0px;
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
}

.rectangle-c916d0c7a31e {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 210px;
  background: #ffffffFF;
  border-start-start-radius: 15px;
  border-start-end-radius: 15px;
  border-end-start-radius: 15px;
  border-end-end-radius: 15px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  mix-blend-mode: normal;
}
