/* Extra oltre Tailwind (caricato via CDN) */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

/* Evita il "flash" dei template Vue prima del mount */
[v-cloak] {
  display: none;
}

/* Gradiente overlay riutilizzabile sull'hero */
.hero-overlay {
  background: linear-gradient(
    100deg,
    rgba(15, 42, 74, 0.92) 0%,
    rgba(15, 42, 74, 0.72) 45%,
    rgba(30, 95, 168, 0.45) 100%
  );
}

/* Tipografia pagine legali */
.legal-prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f2a4a; /* brand-900 */
  margin-top: 2rem;
}
.legal-prose h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #173f6f; /* brand-800 */
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
}
.legal-prose p {
  line-height: 1.75;
}
.legal-prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  line-height: 1.75;
}
.legal-prose ul li {
  margin-top: 0.35rem;
}
.legal-prose a {
  color: #009689; /* cta-500 */
  text-decoration: underline;
}

/* Transizione fade per messaggi form */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.25s ease;
}
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}
