.dove-siamo {
  padding: 0;
}

.dove-siamo iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* ========================================
   HERO - Dove siamo (come Contatti, colore diverso)
   ======================================== */

.hero {
  padding: 120px 20px 100px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  font-family: 'Quicksand', sans-serif;
}

.hero .hero-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: url('../images/hero-wave.svg') no-repeat center bottom / cover;
  z-index: 1;
}

.hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #e0f2f1;
}

.hero-dovesiamo {
  background-color: #009688; /* 🔁 Cambia il colore se preferisci */
}

.hero-dovesiamo h1,
.hero-dovesiamo p {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-dovesiamo .hero-btn {
  background-color: #ffffff;
  color: #009688;
}

.hero-dovesiamo .hero-btn:hover {
  background-color: #f3f3f3;
}

/* Animazione */
@keyframes fadeInUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .hero { padding: 90px 20px 80px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
}