/* Hero interna SIC: titolo, breadcrumb e luce interattiva leggera */
.sic-page-hero {
  --sic-page-hero-x: 72%;
  --sic-page-hero-y: 42%;
  --sic-page-hero-shift-x: 0px;
  --sic-page-hero-shift-y: 0px;
  position: relative;
  min-height: 310px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgba(101, 68, 147, .34), transparent 29%),
    linear-gradient(118deg, #07122f 0%, #08254c 54%, #073d65 100%);
  color: #fff;
}

.sic-page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .7;
  background:
    linear-gradient(90deg, rgba(4, 15, 42, .78) 0%, rgba(5, 24, 54, .28) 58%, rgba(5, 35, 67, .12) 100%),
    url("../images/hero-onde-quiet-v1.jpg?v=20260823-1") center 54% / cover no-repeat;
  filter: brightness(.78) saturate(.9);
}

.sic-page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(
    circle 230px at var(--sic-page-hero-x) var(--sic-page-hero-y),
    rgba(169, 232, 237, .28),
    rgba(46, 164, 212, .12) 42%,
    transparent 72%
  );
  pointer-events: none;
}

.sic-page-hero > .container {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 310px;
  align-items: center;
}

.sic-page-hero__content {
  position: relative;
  z-index: 2;
  width: min(720px, 72%);
  padding: 58px 0 54px;
}

.sic-page-hero__breadcrumb {
  margin-bottom: 23px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .025em;
}

.sic-page-hero__breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sic-page-hero__breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .72);
}

.sic-page-hero__breadcrumb li + li::before {
  content: "›";
  color: #79d3dc;
  font-size: 19px;
  font-weight: 300;
  line-height: 1;
}

.sic-page-hero__breadcrumb a {
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  transition: color .18s ease;
}

.sic-page-hero__breadcrumb a:hover,
.sic-page-hero__breadcrumb a:focus {
  color: #a9e8ed;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sic-page-hero__breadcrumb a:focus-visible {
  border-radius: 3px;
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.sic-page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.2vw, 68px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
  text-shadow: 0 8px 30px rgba(0, 8, 31, .26);
}

.sic-page-hero__scene {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.sic-page-hero__seal-wrap {
  position: absolute;
  top: 50%;
  right: clamp(38px, 9vw, 150px);
  width: clamp(164px, 17vw, 220px);
  aspect-ratio: 1;
  border: 1px solid rgba(169, 232, 237, .24);
  border-radius: 50%;
  box-shadow: 0 0 54px rgba(87, 204, 213, .13);
  transform: translateY(-50%) translate3d(var(--sic-page-hero-shift-x), var(--sic-page-hero-shift-y), 0);
  transition: transform .16s ease-out;
}

.sic-page-hero__seal-wrap::before,
.sic-page-hero__seal-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.sic-page-hero__seal-wrap::before {
  inset: -17px;
  border: 1px solid rgba(169, 232, 237, .1);
}

.sic-page-hero__seal-wrap::after {
  top: 7%;
  right: 10%;
  width: 7px;
  height: 7px;
  background: #a9e8ed;
  box-shadow: 0 0 15px rgba(169, 232, 237, .85);
}

.sic-page-hero__seal {
  width: 100%;
  height: auto;
  border: 7px solid rgba(255, 255, 255, .95);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 5, 25, .34);
}

@media (max-width: 767px) {
  html.rd-navbar-fixed-linked .page {
    padding-top: 0;
  }

  .sic-page-hero,
  .sic-page-hero > .container {
    min-height: 265px;
  }

  .sic-page-hero::after {
    background: radial-gradient(circle 180px at 88% 25%, rgba(169, 232, 237, .2), transparent 72%);
  }

  .sic-page-hero__content {
    width: 78%;
    padding: 45px 0 42px;
  }

  .sic-page-hero__breadcrumb {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .sic-page-hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .sic-page-hero__seal-wrap {
    right: -8px;
    width: 146px;
    border: 0;
    opacity: .13;
    box-shadow: none;
    transform: translateY(-50%);
    transition: none;
  }

  .sic-page-hero__seal-wrap::before,
  .sic-page-hero__seal-wrap::after {
    display: none;
  }

  .sic-page-hero__seal {
    border: 0;
    background: transparent;
    box-shadow: none;
    filter: grayscale(.2) brightness(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sic-page-hero__seal-wrap,
  .sic-page-hero__breadcrumb a {
    transition: none;
  }
}
