
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blu: #2ea3f2;
  --blu-scuro: #00205b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Montserrat",
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  color: #2b3440;
  background: #fff;
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--blu);
  margin: 0 auto;
}
.site-header__nav {
  max-width: 1320px;
  margin: 0 auto;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0 1.5rem;
}
.site-header__group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.logo-clinica-clinicaruesch {
  height: 40px !important;
}

.border-b {
  border-bottom: 1px solid #e0e0e0;
}
.site-header__group--left {
  justify-content: flex-end;
}
.site-header__group--right {
  justify-content: flex-start;
}
.site-header__group a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  padding: 3px 20px 3px 20px !important;
  transition: opacity 0.2s ease;
}
.site-header__group a:hover,
.site-header__group a:focus-visible {
  opacity: 0.8;
}
.site-header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.site-header__logo img {
  height: 96px;
  width: auto;
  display: block;
}
.site-header__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 38px;
  padding: 0;
  background: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blu);
  border-radius: 2px;
}

.intro {
  background-image: linear-gradient(
    180deg,
    #00205b 5%,
    rgba(0, 32, 91, 0.7) 100%
  );
  background-repeat: no-repeat;
  color: #fff;
  padding: 100px 40px;
}
.intro-inner {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.intro-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}
.intro-logo img {
  width: 300px;
  max-width: 100%;
  height: auto;
}
.intro-content {
  flex: 1;
}
.intro-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.intro-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}
.intro-content p:last-of-type {
  margin-bottom: 0;
}
.intro .cta-wrap {
  margin-top: 28px;
  text-align: right;
}
.btn-accedi {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  padding: 11px 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0px;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease;
}
.btn-accedi:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.search__no-offers {
  text-align: center;
  padding: 40px 24px;
}
.search__no-offers-title {
  font-size: 17px;
  font-weight: 600;
  color: #2b3440;
  margin-bottom: 6px;
}
.search__no-offers-text {
  font-size: 14px;
  font-weight: 400;
  color: #5b6470;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.5;
}

.site-footer {
  background: #eef2f7;
}

.site-footer__bar {
  background: var(--blu-scuro);
  border-bottom: 20px solid var(--blu);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
.site-footer__nav {
  padding: 5px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0 2.5rem;
  list-style: none;
}
.site-footer__nav li {
  display: flex;
  align-items: center;
}
.site-footer__nav a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 100;
  font-size: 12px;
  letter-spacing: 0.2px;
  transition: opacity 0.2s ease;
}
.site-footer__nav a:hover,
.site-footer__nav a:focus-visible { opacity: 0.75; }

.site-footer__nav a[aria-current="page"] {
  background: #00205b;
  color: #fff;
  padding: 16px 2rem;
  margin: -25px 0 -25px;
  position: relative;
  z-index: 2;
}
.site-footer__nav a[aria-current="page"]:hover,
.site-footer__nav a[aria-current="page"]:focus-visible { opacity: 1; }

.site-footer__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
  color: var(--blu-scuro);
}
.site-footer__brand img {
  width: 135px;
  height: auto;
  display: block;
}
.site-footer__center {
  text-align: center;
}
.site-footer__social {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border: 2px solid var(--blu);
  border-radius: 50% 0 50% 0;
  background: var(--blu);
  color: #fff;
  transition: opacity 0.2s ease;
}
.site-footer__social a:hover { opacity: 0.85; }
.site-footer__social svg { width: 18px; height: 18px; }
.site-footer__copy {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.site-footer__address {
  text-align: right;
}
.site-footer__address p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.site-footer__credits {
  border-top: 1px solid #cfcfcf;
  background-color: #f1f5fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 24px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 300;
  color: #2b3440;
}
.site-footer__credits svg {
  height: 22px;
  width: auto;
  display: block;
}
.site-footer__credits a {
  color: #2b3440;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-header {
    background: var(--blu-scuro);
    position: sticky;
  }
  .site-header__nav {
    position: relative;
    flex-direction: column;
    align-items: center;
    min-height: 0;
    gap: 0;
    padding: 18px 16px;
  }
  .site-header__logo {
    order: -1;
  }
  .site-header__logo img {
    height: 76px;
  }
  .site-header__toggle {
    display: inline-flex;
    position: absolute;
    top: 16px;
    right: 16px;
  }
  .site-header__group {
    display: none;
    flex: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .site-header.is-open .site-header__group {
    display: flex;
  }
  .site-header.is-open .site-header__group--left {
    margin-top: 12px;
  }
  .site-header__group a {
    padding: 10px 20px !important;
  }
  .intro-inner {
    flex-direction: column;
    gap: 32px;
  }
  .intro-logo img {
    width: 180px;
  }
  .intro .cta-wrap {
    text-align: center;
  }
  .site-footer__body {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }
  .site-footer__brand img {
    margin: 0 auto;
  }
  .site-footer__address {
    text-align: center;
  }
  .site-footer__nav {
    gap: 0 1.25rem;
    padding: 0.75rem 1.25rem;
  }
}
