/* HERO */
.hero-sezione {
    position: relative;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate; /* evita conflitti di z-index */
}
/* OVERLAY COLORE */
.hero-sezione::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0F1A20;
    opacity: 0; /* regola qui l�intensit� */
    z-index: 1;
    pointer-events: none;
}
/* CONTENUTO SOPRA */
.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: 0 auto; /* centra il contenuto */
	padding-left:auto;
    padding-bottom: 60px;
}
.hero-sezione h1 {
    color: #ffffff;
	font-family: var(--font-general);
    font-size: 3.84em; /* 50px; */
    font-weight: 300;
    margin: 0;
	 opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* HERO */

/* CHI SIAMO */
.sfumino {
	/* sfumatura grigio -> bianco */
	background-image:url(../images/sfumino.jpg);
	background-repeat:repeat-x;
	background-position:0 0;
}
#chi-siamo {
	padding: 0 auto;
    text-align: center;
    width: 100%;
	margin-bottom:30px;
	background:#FFFFFF;
}
#chi-siamo .container {
	display:inline-block;
	width:90%;
    max-width: 1420px;
    margin: 0 auto;
}
/* Titolo sezione */
#chi-siamo .container h2 {
	position: relative;
    font-family: var(--font-general);
    font-size: 3.07em; /* 40px */
	line-height:40px;
	font-weight:400;
    color: #121B21;
	margin: 0 auto;
	padding-top:30px;
}
/* Separatore titolo */
#chi-siamo .container h2::after {
	content: "";
	display: block;
	width: clamp(60px, 8vw, 100px); /* lineetta responsive */
	height: 3px;
	background-color: #FEC800;
	margin: 20px auto 0 auto; /* centra la lineetta */
	border-radius: 2px; /* leggermente più elegante */
}
/* Testo descrittivo */
#chi-siamo .container p {
    font-family: var(--font-general);
    font-size: 1.53em; /*20px */
	line-height: 28px;
	font-weight:300;
    color: #000;
    margin: 0 auto;
	padding-top:30px;
}
#chi-siamo .azienda-img {
    text-align: center;
	margin: 35px 0; /* spazio sopra e sotto */
	margin-bottom:20px;
}
#chi-siamo .azienda-img img {
    width: 100%;
    max-width: 810px; /* limita larghezza su desktop */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	-webkit-background-size: cover!important;
	-moz-background-size: cover!important;
	-o-background-size: cover!important;
	background-size: cover!important;
	background-position:center;
}
/* CHI SIAMO */

/* TECNOLOGIA */
.fascia-tecnologia {
    background: linear-gradient(90deg, #121C22 0%, #1B2831 100%);
    padding: 40px 20px;
	text-align:center;
}
.fascia-tecnologia .container {
    max-width: 1200px;
    margin: 0 auto;
}
.fascia-tecnologia h3 {
	position: relative;
    font-family: var(--font-general);
    font-size: 3.07em; /* 40px */
	line-height:40px;
	font-weight:300;
    color: #92ADB7;
	margin: 0 auto;
	padding-top:10px;
}
/* Separatore titolo */
.fascia-tecnologia h3::after {
	content: "";
	display: block;
	width: clamp(60px, 8vw, 100px); /* lineetta responsive */
	height: 3px;
	background-color: #FEC800;
	margin:20px auto 0 auto; /* centra la lineetta */
	border-radius: 2px; /* leggermente più elegante */
}
.fascia-tecnologia p {
    font-family: var(--font-general);
    color: #FFF;
    font-weight: 300;
    font-size: 1.53em; /* circa 20px */
	line-height:28px;
}
/* TECNOLOGIA */

/* GALLERY */
.gallery-tecnologia {
    padding: 50px 20px;
	margin-bottom:0;
    display: flex;
    justify-content: center; /* centra orizzontalmente la grid */
	background-color:#E7ECEF;
}
.gallery-tecnologia .container {
    width: 70%;            /* occupa il 90% della finestra */
    margin: 0 auto;        /* centra il container */
}
.gallery-tecnologia .gallery-grid {
    display: grid;
     grid-template-columns: repeat(1, 1fr); /* 2 colonne desktop */
    gap: 40px; /* spazio uniforme verticale e orizzontale */
    justify-items: center;
    align-items: center;
}
.gallery-tecnologia .gallery-item {
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.4s ease;
}
.gallery-tecnologia .gallery-item img {
    width: 100%;   /* occupa il 100% della colonna */
    height: auto;  /* mantiene le proporzioni */
    display: block;
    transition: transform 0.4s ease;
	-webkit-background-size: cover!important;
	-moz-background-size: cover!important;
	-o-background-size: cover!important;
	background-size: cover!important;
	background-position:center;
}
.gallery-tecnologia .gallery-item:hover img {
    transform: scale(1.1) rotate(3deg);
}
.gallery-tecnologia .gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
/* Fade-in attivo */
.gallery-tecnologia .gallery-item.visible {
    transform: translateY(0);
    opacity: 1;
}
/* GALLERY */

/* TEAM */
.team-section {
  padding: 40px 0;
  background: #f5f5f5;
}
.team-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.team-intro {
  max-width: 850px;
  margin-bottom:70px;
}
.team-intro h2 {
	font-family: var(--font-general);
    font-size: 3.07em; /* 40px */
	line-height:40px;
	color: #121A20;
	font-weight: 400;
	position: relative;
	margin: 0;
}
.team-intro h2::after {
  content: "";
  display: block;
  width: clamp(60px, 8vw, 100px);
  height: 3px;
  background-color: #FEC800;
  margin:20px 0 0 0;   /*  allineata a sinistra */
  border-radius: 2px;
}
.team-intro p {
  font-family: var(--font-general);
	font-size: clamp(1.1rem, 1.2vw, 1.25rem);
	line-height: 28px;
	font-weight: 300;
	color: #121A20;
	margin: 0;
	padding-top: 30px;
}
.team-description {
	max-width: 700px;
	margin: 0 auto 60px;
	color: #666;
	line-height: 1.6;
}
/* Posizionamento e struttura card */
.team-card {
  background: transparent;
  text-align: center;
  position: relative;
  overflow: visible; /* Permettiamo all'immagine di uscire dai bordi rotondi durante l'hover */
}.
/* Immagine: dimensione, adattamento e effetto zoom */
.team-card img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%; /* Immagine rotonda */
  margin-bottom: 20px;
  transition: transform 0.5s ease, box-shadow 0.3s ease; /* Transizione fluida per zoom e ombra */
  transform-origin: center; /* L'effetto zoom avviene dal centro dell'immagine */
   transform: scale(0.9); /* Aumento dell'immagine al passaggio del mouse */
   	-webkit-background-size: cover!important;
	-moz-background-size: cover!important;
	-o-background-size: cover!important;
	background-size: cover!important;
	background-position:center;
}
/* Testo del nome (h3) */
.team-card h3 {
  font-family: var(--font-general);
  font-weight: 400;
  font-size: 2em; /* 26px */
  margin-bottom: 20px;
  color: #000;
}
/* Testo della professione (span) */
.team-card span {
  font-family: var(--font-general);
  font-weight: 400;
  color: #6c8ca3;
  font-size: 1.69em; /* Dimensione del testo professione */
  font-style: italic;
}

/* frecce carousel team */
.team-section .swiper-button-next,
.team-section .swiper-button-prev {
  background: #FEC800;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121A20;
  transition: all 0.3s ease;
}
.team-section .swiper-button-next::after,
.team-section .swiper-button-prev::after {
  display: none; /* nasconde icone default swiper */
}
.team-section .swiper-button-next:hover,
.team-section .swiper-button-prev:hover {
  background: #121A20;
  color: #FEC800;
}
/* TEAM */

/* ==========================
   RESPONSIVE BREAKPOINTS
   ========================== */
/* Layout tablet portrait: da 480 px a 820 px. Eredita stili da: Layout mobile. */
@media only screen and (min-width: 480px ) {
/* CONTAINER */
.gridContainer, .gridContainerMid, .gridContainerFull {
	width:100%;
	margin:0 auto;
	padding:0;
/* CONTAINER */

/* HERO */
}
.hero-sezione {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate; /* evita conflitti di z-index */
}
/* OVERLAY COLORE */
.hero-sezione::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0F1A20;
    opacity: 0; /* regola qui l�intensit� */
    z-index: 1;
    pointer-events: none;
}
/* CONTENUTO SOPRA */
.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: 0 auto; /* centra il contenuto */
	padding-left:60px;
    padding-bottom: 60px;
}
.hero-sezione h1 {
    color: #ffffff;
	font-family: var(--font-general);
    font-size: 4.15em; /* 54px; */
    font-weight: 300;
    margin: 0;
	 opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
/* HERO*/

/* CHI SIAMO */
}	
#chi-siamo {
	padding: 0 auto;
    text-align: center;
    width: 100%;
}
#chi-siamo .container {
	display:inline-block;
	width:86%;
    margin: 0 auto;
}
/* Titolo sezione */
#chi-siamo .container h2 {
    font-size: 3.07em; /* 40px */
	line-height:40px;
	font-weight:300;
	margin: 0 auto;
	padding-top:40px;
}
#chi-siamo .azienda-img {
    text-align: center;
	margin:30px 0 30px auto; /* spazio sopra e sotto */
}
#chi-siamo .azienda-img img {
    width: 100%;
    max-width: 810px; /* limita larghezza su desktop */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
/* Testo descrittivo */
#chi-siamo .container p {
    font-size: 1.53em; /*20px */
	line-height: 28px;
	font-weight: 300;
    margin: 0 auto;
	padding-top:30px;
/* CHI SIAMO */

}
/* TECNOLOGIA */
.fascia-tecnologia {
    background: linear-gradient(90deg, #121C22 0%, #1B2831 100%);
    padding: 40px 20px;
	text-align:center;
}
.fascia-tecnologia .container {
    max-width: 1200px;
    margin: 0 auto;
}
.fascia-tecnologia h3 {
    font-size: 3.07em; /* 40px */
	line-height:40px;
	font-weight:300;
	margin: 0 auto;
	padding-top:10px;
}
/* Separatore titolo */
.fascia-tecnologia h3::after {
	content: "";
	display: block;
	width: clamp(60px, 8vw, 100px); /* lineetta responsive */
	height: 3px;
	background-color: #FEC800;
	margin:20px auto 0 auto; /* centra la lineetta */
	border-radius: 2px; /* leggermente più elegante */
}
.fascia-tecnologia p {
    font-family: var(--font-general);
    color: #FFF;
    font-weight: 300;
    font-size: 1.53em; /* circa 20px */
	line-height:28px;
/* TECNOLOGIA */

/* GALLERY */
}
.gallery-tecnologia {
    padding: 60px 20px;
}
.gallery-tecnologia .container {
    width: 78%;            /* occupa il 90% della finestra */
    margin: 0 auto;        /* centra il container */
}
.gallery-tecnologia .gallery-grid {
	grid-template-columns: repeat(2, 1fr); /* 2 colonne desktop */
	/* GALLERY */
	
/* TEAM */
}
.team-section {
	padding: 50px 0;
	margin-bottom:10px;
	background: #f5f5f5;
}
.team-section .container {
	width: 90%;
	max-width: 520px;
	margin: 0 auto;
}
.team-intro {
	max-width: 850px;
	margin-bottom:50px;
}
.team-intro h2 {
	font-family: var(--font-general);
    font-size: 3.07em; /* 40px */
	line-height:40px;
	color: #121A20;
	font-weight: 400;
	position: relative;
	margin: 0;
}
.team-intro h2::after {
	content: "";
	display: block;
	width: clamp(60px, 8vw, 100px);
	height: 3px;
	background-color: #FEC800;
	margin:20px 0 0 0;   /*  allineata a sinistra */
	border-radius: 2px;
}
.team-intro p {
	font-family: var(--font-general);
	font-size: clamp(1.1rem, 1.2vw, 1.25rem);
	line-height: 28px;
	font-weight: 300;
	color: #121A20;
	margin: 0;
	padding-top: 30px;
}
.team-description {
	max-width: 700px;
	margin: 0 auto 60px;
	color: #666;
	line-height: 1.6;
}
/* Posizionamento e struttura card */
.team-card {
  background: transparent;
  text-align: center;
  position: relative;
  overflow: visible; /* Permettiamo all'immagine di uscire dai bordi rotondi durante l'hover */
}
/* Immagine: dimensione, adattamento e effetto zoom */
.team-card img {
  width: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 50%; /* Immagine rotonda */
  margin-bottom: 20px;
  transition: transform 0.5s ease, box-shadow 0.3s ease; /* Transizione fluida per zoom e ombra */
  transform-origin: center; /* L'effetto zoom avviene dal centro dell'immagine */
   transform: scale(0.9); /* Aumento dell'immagine al passaggio del mouse */
}
/* Effetto di zoom e ombra all'hover */
.team-card:hover img {
  transform: scale(1.0); /* Aumento dell'immagine al passaggio del mouse */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Ombra sfumata */
  border-radius: 50%; /* Mantiene la forma rotonda */
}
/* Soluzione per evitare il taglio dell'immagine */
.team-card:hover {
  overflow: visible;  /* Permettiamo all'immagine di fuoriuscire dal contenitore solo durante l'hover */
}
/* Testo del nome (h3) */
.team-card h3 {
  font-family: var(--font-general);
  font-weight: 400;
  font-size: 2em; /* 26px */
  margin-bottom: 20px;
  color: #000;
}
/* Testo della professione (span) */
.team-card span {
  font-family: var(--font-general);
  font-weight: 400;
  color: #6c8ca3;
  font-size: 1.69em; /* Dimensione del testo professione */
  font-style: italic;
/* TEAM */
}	
}
/* Layout landscape: da 820 px a 1024 px max.  Eredita stili da: Layout mobile e Layout tablet portrait */
@media only screen and (min-width: 820px ) {
/* CONTAINER */
.gridContainer, .gridContainerMid  {
	width:100%;
	margin:0 auto;
	padding:0;
	max-width:1232px;
	min-width:768px;
/* CONTAINER */	

/* HERO */
}
.hero-sezione {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate; /* evita conflitti di z-index */
}
/* OVERLAY COLORE */
.hero-sezione::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0F1A20;
    opacity: 0; /* regola qui l�intensit� */
    z-index: 1;
    pointer-events: none;
}
/* CONTENUTO SOPRA */
.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: 0 auto; /* centra il contenuto */
	padding-left:80px;
    padding-bottom: 80px;
}
.hero-sezione h1 {
    color: #ffffff;
	font-family: var(--font-general);
    font-size: 4.46em; /* 58px; */
    font-weight: 300;
    margin: 0;
	 opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
/* HERO*/
	
/* CHI SIAMO */
}	
#chi-siamo {
	padding: 0 auto;
    text-align: center;
    width: 100%;
}
#chi-siamo .container {
	display:inline-block;
	width:90%;
    margin: 0 auto;
}
/* Titolo sezione */
#chi-siamo .container h2 {
    font-size: 3.07em; /* 40px */
	line-height:40px;
	font-weight:300;
	margin: 0 auto;
	padding-top:60px;
}
#chi-siamo .azienda-img {
    text-align: center;
	margin:50px 0 50px auto; /* spazio sopra e sotto */
}
#chi-siamo .azienda-img img {
    width: 100%;
    max-width: 810px; /* limita larghezza su desktop */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
/* Testo descrittivo */
#chi-siamo .container p {
    font-size: 1.53em; /*20px */
	line-height: 32px;
	font-weight: 300;
    margin: 0 auto;
	padding-top:30px;
/* CHI SIAMO */

}
/* TECNOLOGIA */
.fascia-tecnologia {
    background: linear-gradient(90deg, #121C22 0%, #1B2831 100%);
    padding: 50px 20px;
	text-align:center;
}
.fascia-tecnologia .container {
    width: 80%;
    margin: 0 auto;
}
.fascia-tecnologia h3 {
    font-size: 3.07em; /* 40px */
	line-height:40px;
	font-weight:300;
	margin: 0 auto;
	padding-top:10PX;
}
/* Separatore titolo */
.fascia-tecnologia h3::after {
	content: "";
	display: block;
	width: clamp(60px, 8vw, 100px); /* lineetta responsive */
	height: 3px;
	background-color: #FEC800;
	margin:20px auto 0 auto; /* centra la lineetta */
	border-radius: 2px; /* leggermente più elegante */
}
.fascia-tecnologia p {
    font-family: var(--font-general);
    color: #FFF;
    font-weight: 300;
    font-size: 1.53em; /* circa 20px */
	line-height:28px;
/* TECNOLOGIA */

/* GALLERY */
}
.gallery-tecnologia {
    padding: 60px 20px;
}
.gallery-tecnologia .container {
    width: 80%;            /* occupa il 90% della finestra */
    max-width: 1280px;     /* larghezza massima */
    margin: 0 auto;        /* centra il container */
}
.gallery-tecnologia .gallery-grid {
	grid-template-columns: repeat(3, 1fr); /* 2 colonne desktop */	
/* GALLERY */ 

/* TEAM */
}
.team-section {
	padding: 50px 0;
	margin-bottom:10px;
	background: #f5f5f5;
}
.team-section .container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.team-intro {
	max-width: 850px;
	margin-bottom:70px;
}
.team-intro h2 {
	font-family: var(--font-general);
    font-size: 3.07em; /* 40px */
	line-height:40px;
	color: #121A20;
	font-weight: 400;
	position: relative;
	margin: 0;
}
.team-intro h2::after {
	content: "";
	display: block;
	width: clamp(60px, 8vw, 100px);
	height: 3px;
	background-color: #FEC800;
	margin:30px 0 0 0;   /*  allineata a sinistra */
	border-radius: 2px;
}
.team-intro p {
	font-family: var(--font-general);
	font-size: clamp(1.1rem, 1.2vw, 1.25rem);
	line-height: 28px;
	font-weight: 300;
	color: #121A20;
	margin: 0;
	padding-top: 30px;
}
.team-description {
	max-width: 700px;
	margin: 0 auto 60px;
	color: #666;
	line-height: 1.6;
}
/* Posizionamento e struttura card */
.team-card {
  background: transparent;
  text-align: center;
  position: relative;
  overflow: visible; /* Permettiamo all'immagine di uscire dai bordi rotondi durante l'hover */
}
/* Immagine: dimensione, adattamento e effetto zoom */
.team-card img {
  width: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 50%; /* Immagine rotonda */
  margin-bottom: 20px;
  transition: transform 0.5s ease, box-shadow 0.3s ease; /* Transizione fluida per zoom e ombra */
  transform-origin: center; /* L'effetto zoom avviene dal centro dell'immagine */
   transform: scale(0.9); /* Aumento dell'immagine al passaggio del mouse */
}
/* Effetto di zoom e ombra all'hover */
.team-card:hover img {
  transform: scale(1.0); /* Aumento dell'immagine al passaggio del mouse */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Ombra sfumata */
  border-radius: 50%; /* Mantiene la forma rotonda */
}
/* Soluzione per evitare il taglio dell'immagine */
.team-card:hover {
  overflow: visible;  /* Permettiamo all'immagine di fuoriuscire dal contenitore solo durante l'hover */
}
/* Testo del nome (h3) */
.team-card h3 {
  font-family: var(--font-general);
  font-weight: 400;
  font-size: 2em; /* 26px */
  margin-bottom: 20px;
  color: #000;
}
/* Testo della professione (span) */
.team-card span {
  font-family: var(--font-general);
  font-weight: 400;
  color: #6c8ca3;
  font-size: 1.69em; /* Dimensione del testo professione */
  font-style: italic;
/* TEAM */
}
}
/* Layout desktop: da 1024 px a superiori. Eredita stili da: Layout tablet landscape */
@media only screen and (min-width: 1024px ) {
/* CONTAINER */
.gridContainer {
	width:100%;
	margin:0 auto;
	padding:0;
	max-width:1232px;
	min-width:768px;
}
.gridContainerMid {
	width:100%;
	margin:0 auto;
	padding:0;
	max-width:1920px;
}
.gridContainerFull {
	width:100%;
	margin:0 auto;
	padding:0;
/*	max-width:1920px;*/
	min-width:768px;
/* CONTAINER */

/* HERO */
}
.hero-sezione {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate; /* evita conflitti di z-index */
}
/* OVERLAY COLORE */
.hero-sezione::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0F1A20;
    opacity: 0; /* regola qui l�intensit� */
    z-index: 1;
    pointer-events: none;
}
/* CONTENUTO SOPRA */
.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: 0 auto; /* centra il contenuto */
	padding-left:100px;
    padding-bottom: 100px;
}
.hero-sezione h1 {
    color: #ffffff;
	font-family: var(--font-general);
    font-size: 4.92em; /* 64px; */
    font-weight: 300;
    margin: 0;
	 opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
/* HERO*/

/* CHI SIAMO */
}	
#chi-siamo {
	padding: 0 auto;
    text-align: center;
    width: 100%;
}
#chi-siamo .container {
	display:inline-block;
	width:90%;
    margin: 0 auto;
	padding-bottom:20px;
}
/* Titolo sezione */
#chi-siamo .container h2 {
    font-size: 3.30em; /* 43px */
	line-height:43px;
	font-weight:300;
	margin: 0 auto;
	padding-top:60px;
}
#chi-siamo .azienda-img {
    text-align: center;
	margin:50px 0 30px auto; /* spazio sopra e sotto */
}
#chi-siamo .azienda-img img {
    width: 100%;
    max-width: 810px; /* limita larghezza su desktop */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
/* CHI SIAMO */

}
/* TECNOLOGIA */
.fascia-tecnologia {
    background: linear-gradient(90deg, #121C22 0%, #1B2831 100%);
    padding: 60px 20px;
	text-align:center;
}
.fascia-tecnologia .container {
    max-width: 1420px;
    margin: 0 auto;
}
.fascia-tecnologia h3 {
    font-size: 3.30em; /* 43px */
	line-height:43px;
	font-weight:300;
	margin: 0 auto;
	padding-top:0px;
}
/* Separatore titolo */
.fascia-tecnologia h3::after {
	content: "";
	display: block;
	width: clamp(60px, 8vw, 100px); /* lineetta responsive */
	height: 3px;
	background-color: #FEC800;
	margin:20px auto 0 auto; /* centra la lineetta */
	border-radius: 2px; /* leggermente più elegante */
}
.fascia-tecnologia p {
    font-family: var(--font-general);
    color: #FFF;
    font-weight: 300;
    font-size: 1.53em; /* circa 20px */
	line-height:28px;
/* TECNOLOGIA */

/* GALLERY */
}
.gallery-tecnologia {
    padding: 80px 20px;
}
.gallery-tecnologia .container {
    width: 90%;            /* occupa il 90% della finestra */
    max-width: 1280px;     /* larghezza massima */
    margin: 0 auto;        /* centra il container */
}
.gallery-tecnologia .gallery-grid {
	grid-template-columns: repeat(4, 1fr); /* 2 colonne desktop */
	
/* TEAM */
}
.team-section {
  padding: 60px 0;
  background: #f5f5f5;
}
.team-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.team-intro {
  max-width: 850px;
  margin-bottom:70px;
}
.team-intro h2 {
  font-family: var(--font-general);
  font-size: 3.3em; /*43px*/
  line-height:43px;
  color: #121A20;
  font-weight: 400;
  position: relative;
  margin: 0;
}
.team-intro h2::after {
  content: "";
  display: block;
  width: clamp(60px, 8vw, 100px);
  height: 3px;
  background-color: #FEC800;
  margin:30px 0 0 0;   /*  allineata a sinistra */
  border-radius: 2px;
}
.team-intro p {
  font-family: var(--font-general);
	font-size: clamp(1.1rem, 1.2vw, 1.25rem);
	line-height: 28px;
	font-weight: 300;
	color: #121A20;
	margin: 0;
	padding-top: 30px;
}
.team-description {
	max-width: 700px;
	margin: 0 auto 60px;
	color: #666;
	line-height: 1.6;
}
/* Posizionamento e struttura card */
.team-card {
  background: transparent;
  text-align: center;
  position: relative;
  overflow: visible; /* Permettiamo all'immagine di uscire dai bordi rotondi durante l'hover */
}
/* Immagine: dimensione, adattamento e effetto zoom */
.team-card img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%; /* Immagine rotonda */
  margin-bottom: 20px;
  transition: transform 0.5s ease, box-shadow 0.3s ease; /* Transizione fluida per zoom e ombra */
  transform-origin: center; /* L'effetto zoom avviene dal centro dell'immagine */
   transform: scale(0.9); /* Aumento dell'immagine al passaggio del mouse */
}
/* Effetto di zoom e ombra all'hover */
.team-card:hover img {
  transform: scale(1.0); /* Aumento dell'immagine al passaggio del mouse */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Ombra sfumata */
  border-radius: 50%; /* Mantiene la forma rotonda */
}
/* Soluzione per evitare il taglio dell'immagine */
.team-card:hover {
  overflow: visible;  /* Permettiamo all'immagine di fuoriuscire dal contenitore solo durante l'hover */
}
/* Testo del nome (h3) */
.team-card h3 {
  font-family: var(--font-general);
  font-weight: 400;
  font-size: 2em; /* 26px */
  margin-bottom: 20px;
  color: #000;
}
/* Testo della professione (span) */
.team-card span {
  font-family: var(--font-general);
  font-weight: 400;
  color: #6c8ca3;
  font-size: 1.69em; /* Dimensione del testo professione */
  font-style: italic;
/* TEAM */
}
}