
.hero-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px; /* spazio sotto */
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  padding: 10px;
  border: 1px solid #C2C2C2;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-overlay h2,
.hero-overlay h2 strong {
  color: white !important;
  font-size: 2.0rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero-overlay a.item-title.btn {
  background-color: transparent;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0px;
  transition: background 0.3s ease;
}

/* Pulsante stile OFFERTA */
.btn-offerte {
  display: inline-block;
  color: white;
  border: 2px solid white;
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-weight: bold;
  background-color: transparent;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
}

.btn-offerte:hover {
  background-color: #1089D5;
  color: #1089D5;
  border: 1px solid white;
  cursor: pointer;
}