#sezione-respiro {
  background-color: #fdfdfd;
  padding-top: 200px; /* Ridotto leggermente per desktop */
  padding-bottom: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sezione-respiro .separator-line {
  width: 80px;
  height: 1px;
  background-color: #c4a483;
  margin: 0 auto;
  opacity: 0.6;
}

#sezione-respiro h2 {
  font-family: "Ephesis", cursive;
  font-size: 64px;
  line-height: 1.2;
  margin: 0;
}

#sezione-respiro p {
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 300;
}

/* Stile pulsante per fondo chiaro */
#sezione-respiro .btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 45px;
  border: 3px solid #c4a483;
  color: #c4a483;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 8px;
  text-decoration: none;
}

#sezione-respiro .btn-hero:hover {
  background-color: #c4a483;
  color: white;
  text-decoration: none;
}

/* --- FIX PER MOBILE 100VH --- */
@media (max-width: 991px) {
  #sezione-respiro {
    height: 100vh; /* Altezza totale schermo */
    padding-top: 0;
    padding-bottom: 0;
  }

  #sezione-respiro h2 {
    font-size: 48px;
  }

  #sezione-respiro p {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  #sezione-respiro .btn-hero {
    width: 90%;
    max-width: 320px;
  }
}
