/* ===== HERO CHI SIAMO ===== */
.chi-siamo-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  background-image:
    url("https://content-s3.tuttocampo.it/TeamPhotos/Original/1201292.png?v=2");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Overlay scuro + gradiente */
.chi-siamo-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,40,85,0.85),
      rgba(0,40,85,0.95)
    );
  backdrop-filter: blur(3px);
}

/* Contenuto */
.chi-siamo-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.chi-siamo-hero-content h2 {
  font-size: 3.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 6px 20px rgba(0,0,0,0.7);
}

.chi-siamo-hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Effetto linea decorativa */
.chi-siamo-hero-content::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #ffffff;
  margin: 22px auto 0;
  border-radius: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .chi-siamo-hero {
    height: 55vh;
  }

  .chi-siamo-hero-content h2 {
    font-size: 2.4rem;
    letter-spacing: 2px;
  }

  .chi-siamo-hero-content p {
    font-size: 1.1rem;
  }
}


/* ===== SEZIONE BOX CHI SIAMO ===== */
.chi-siamo-content {
  max-width: 1100px;
  margin: 80px auto 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* BOX */
.chi-siamo-box {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #eef4ff);
  padding: 40px 30px 45px;
  border-radius: 18px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* Barra decorativa */
.chi-siamo-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #004aad, #002855);
}

/* Hover effect */
.chi-siamo-box:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 55px rgba(0,74,173,0.35);
}

/* TITOLI */
.chi-siamo-box h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: #002855;
  position: relative;
}

/* Linea sotto il titolo */
.chi-siamo-box h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #004aad;
  margin-top: 8px;
  border-radius: 6px;
}

/* TESTO */
.chi-siamo-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #002855;
  margin-top: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .chi-siamo-content {
    margin: 60px auto 80px;
    gap: 25px;
  }

  .chi-siamo-box {
    padding: 35px 25px 40px;
  }

  .chi-siamo-box h3 {
    font-size: 1.4rem;
  }
}

