@import "/prototype.css";

body {
  font-family: Arial, Helvetica, sans-serif;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

:focus-visible {
  outline: 3px solid #05aeda;
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: #073b82;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.brand img,
.footer-brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
  background: #fff;
}

.brand {
  min-width: min(340px, 100%);
  gap: 14px;
}

.brand > span {
  min-width: 0;
}

.brand small {
  max-width: 248px;
  line-height: 1.26;
}

.brand small span {
  display: block;
  line-height: inherit;
}

.site-header .brand small {
  max-width: 260px;
}

.site-header {
  height: 106px;
}

.footer-brand img {
  width: 92px;
  height: 92px;
}

.footer-brand {
  min-width: 330px;
}

.footer-purpose {
  align-self: center;
}

.trust-strip {
  gap: 0;
  padding: 20px 24px;
}

.trust-strip > div {
  gap: 18px;
  min-height: 78px;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.feature-icon svg {
  width: 31px;
  height: 31px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon.navy {
  background: linear-gradient(145deg, #eef5ff, #dceafe);
  box-shadow: inset 0 0 0 1px #d6e6ff;
}

.feature-icon.cyan {
  background: linear-gradient(145deg, #e7fbff, #cff5fb);
  box-shadow: inset 0 0 0 1px #c2eef7;
}

.feature-icon.green {
  background: linear-gradient(145deg, #edfdf4, #daf8e7);
  box-shadow: inset 0 0 0 1px #c9eed7;
}

.feature-icon.blue {
  background: linear-gradient(145deg, #eef4ff, #dde9ff);
  box-shadow: inset 0 0 0 1px #d4e2fb;
}

.trust-strip > div:hover .feature-icon {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(9, 104, 201, 0.12),
    0 14px 26px rgba(8, 55, 98, 0.12);
}

.trust-strip strong {
  font-size: 13px;
}

.trust-strip small {
  font-size: 10.5px;
}

.service-featured,
.service-card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.service-featured:hover,
.service-featured:focus-within,
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 174, 218, 0.36);
  box-shadow: 0 20px 42px rgba(8, 57, 105, 0.16);
}

.service-art {
  position: relative;
  isolation: isolate;
  background-image:
    linear-gradient(145deg, rgba(8, 145, 190, 0.82), rgba(7, 59, 130, 0.62)),
    url("/clinica-schneider-hero.jpg");
  background-position: center;
  background-size: cover;
}

.service-art::after {
  position: absolute;
  inset: 22px;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 35% 34%, rgba(255, 255, 255, 0.92) 0 5px, transparent 6px),
    radial-gradient(circle at 68% 68%, rgba(255, 255, 255, 0.18) 0 44px, transparent 45px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 20px;
}

.service-art .service-art-icon {
  z-index: 1;
  width: 96px;
  height: 96px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 34px rgba(4, 45, 104, 0.16);
}

.service-art .service-art-icon svg {
  width: 54px;
  height: 54px;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  position: absolute;
  top: -52px;
  right: -62px;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(circle, rgba(5, 174, 218, 0.13), transparent 64%);
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.service-card:hover::before {
  transform: scale(1.2);
  opacity: 0.9;
}

.service-card-icon {
  position: absolute;
  top: 24px;
  right: 22px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.service-card-icon svg {
  width: 31px;
  height: 31px;
}

.icon-relational {
  color: #0968c9;
  background: linear-gradient(145deg, #edf6ff, #d9edff);
}

.icon-functional {
  color: #1aaa66;
  background: linear-gradient(145deg, #edfbf3, #d7f6e3);
}

.icon-hydro {
  color: #048fc0;
  background: linear-gradient(145deg, #e7fbff, #cef4fb);
}

.service-card:hover .service-card-icon {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 16px 28px rgba(8, 57, 105, 0.14);
}

.service-card .service-number {
  margin-bottom: auto;
  padding-right: 72px;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.hero-content,
.audience-copy,
.coverage-intro,
.about-copy,
.contact-inner > div:first-child {
  min-width: 0;
}

.hero-photo-placeholder,
.structure-main img {
  background-repeat: no-repeat;
}

.hero-photo-placeholder {
  background-image:
    linear-gradient(90deg, #e2f7ff47, #0000 35%),
    url("/clinica-schneider-hero.jpg");
}

.structure-main picture {
  display: block;
  width: 100%;
  height: 100%;
}

.neurodiversity-symbols-figure {
  justify-self: end;
  width: min(100%, 370px);
}

.neurodiversity-symbols-figure .neurodiversity-theme-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(7, 59, 130, 0.1);
  border-radius: 20px;
  box-shadow: 0 13px 28px rgba(7, 57, 100, 0.16);
}

.neurodiversity-visual {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 16px;
  width: 100%;
  min-height: 190px;
  padding: 24px 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)),
    #b9def8;
  border: 1px solid rgba(7, 59, 130, 0.1);
  border-radius: 20px;
  box-shadow: 0 13px 28px rgba(7, 57, 100, 0.16);
}

.nd-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
}

.neurodiversity-visual img.nd-symbol {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 9px 12px rgba(7, 59, 130, 0.14));
}

.neurodiversity-visual img.nd-symbol:nth-child(2) {
  width: 98px;
}

.symbol-dot.symbol-img {
  width: 48px;
  height: 48px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border-radius: 0;
}

.symbol-dot.symbol-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 5px rgba(7, 59, 130, 0.12));
  transition: transform 0.22s ease;
}

.neurodiversity-symbol-key li {
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  overflow: visible;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.neurodiversity-symbol-key li strong,
.neurodiversity-symbol-key li small {
  min-width: 0;
}

.neurodiversity-symbol-key li:hover {
  z-index: 1;
  background: rgba(255, 255, 255, 0.46);
  border-radius: 14px;
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(7, 57, 100, 0.1);
}

.neurodiversity-symbol-key li:hover .symbol-img img {
  transform: scale(1.16);
}

.nd-puzzle {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  transform: rotate(-1deg);
}

.nd-puzzle i {
  display: block;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(10, 49, 106, 0.5);
}

.nd-puzzle i:nth-child(1) {
  background: #ef5a38;
  border-radius: 8px 8px 2px 8px;
}

.nd-puzzle i:nth-child(2) {
  background: #f8cb4e;
  border-radius: 8px 8px 8px 2px;
}

.nd-puzzle i:nth-child(3) {
  background: #3977a8;
  border-radius: 8px 2px 8px 8px;
}

.nd-puzzle i:nth-child(4) {
  background: #55b6aa;
  border-radius: 2px 8px 8px 8px;
}

.nd-infinity {
  width: 78px;
  color: transparent;
  background: linear-gradient(90deg, #e53935, #fb8c00, #fdd835, #43a047, #1e88e5, #8e24aa);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 72px;
  font-weight: 900;
  line-height: 0.8;
}

.nd-sunflower::before {
  width: 46px;
  height: 46px;
  content: "";
  background: repeating-conic-gradient(#f3bd34 0 12deg, #d4941f 12deg 24deg);
  border-radius: 50%;
}

.nd-sunflower::after {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background: #6f5b2b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #f8d358 inset;
}

.nd-sunflower i {
  position: absolute;
  right: 2px;
  bottom: -2px;
  width: 22px;
  height: 42px;
  background: #2f8a5b;
  border-radius: 16px 16px 2px 16px;
  transform: rotate(28deg);
}

.nd-ribbon::before,
.nd-ribbon::after {
  position: absolute;
  width: 24px;
  height: 72px;
  content: "";
  background: linear-gradient(180deg, #ff6b92, #f7d64c 46%, #41b6d8);
  border-radius: 18px 18px 6px 6px;
  box-shadow: inset 0 0 0 2px rgba(7, 59, 130, 0.18);
}

.nd-ribbon::before {
  transform: rotate(34deg);
}

.nd-ribbon::after {
  transform: rotate(-34deg);
}

.nd-ribbon i {
  z-index: 1;
  width: 36px;
  height: 36px;
  background: #b9def8;
  border: 2px solid rgba(7, 59, 130, 0.18);
  border-radius: 50%;
}

.agreement-logo {
  min-height: 98px;
  padding: 14px 18px;
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center;
}

.agreement-logo img {
  width: auto;
  height: auto;
  max-width: 84%;
  max-height: 62px;
  object-fit: contain;
  object-position: center;
}

.agreement-1 img {
  max-width: 92%;
  max-height: 54px;
}

.agreement-2 img {
  max-width: 70%;
  max-height: 58px;
}

.agreement-3 img {
  max-width: 74%;
  max-height: 58px;
}

.agreement-4 img {
  max-width: 82%;
  max-height: 62px;
  transform: scale(1.22);
}

.agreement-5 img {
  max-width: 82%;
  max-height: 68px;
  transform: scale(1.28);
}

.agreement-6 img {
  max-width: 84%;
  max-height: 62px;
  transform: scale(1.18);
}

.coverage-warning {
  padding: 14px 16px;
  color: #052e68;
  background: linear-gradient(135deg, #eef9ff, #e6f5ff);
  border: 1px solid rgba(9, 104, 201, 0.16);
  border-left: 4px solid #05aeda;
  border-radius: 14px;
  font-weight: 800;
}

.coverage-rules > div {
  align-items: center;
}

.coverage-rules p {
  margin: 0;
}

.coverage-rules strong {
  font-size: 12.5px;
  line-height: 1.25;
}

.audience-copy > p:not(.eyebrow) {
  max-width: 480px;
}

.audience-inner {
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  padding-top: 68px;
  padding-bottom: 68px;
}

.audience-callout {
  display: none;
}

.audience-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.audience-list article {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 12px;
  min-height: 186px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 38px rgba(2, 29, 70, 0.1);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.audience-list article:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 22px 46px rgba(2, 29, 70, 0.16);
}

.audience-list article:last-child {
  grid-column: auto;
  grid-template-columns: 1fr;
}

.audience-media {
  width: 82px;
  height: 82px;
  min-height: 0;
  margin: 0 0 2px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(2, 29, 70, 0.16);
}

.audience-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.28s ease;
}

.audience-list article:hover .audience-media img {
  transform: scale(1.06);
}

.audience-list article > div {
  align-self: start;
  padding: 0;
}

.audience-list h3 {
  margin: 0;
  font-size: 16px;
}

.audience-list p {
  max-width: 270px;
  margin-top: 6px;
  font-size: 10.5px;
  line-height: 1.55;
}

.audience-index {
  top: 11px;
  right: 14px;
  color: rgba(255, 255, 255, 0.21);
  font-size: 23px;
}

.about-inner {
  grid-template-columns: 0.86fr 1.05fr 0.76fr;
  gap: 42px;
  min-height: auto;
  padding-top: 70px;
  padding-bottom: 70px;
}

.about-photo {
  position: relative;
  align-self: center;
  min-height: 235px;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(2, 27, 67, 0.22);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
  object-position: 50% 38%;
  transform: scale(1.14);
}

.about-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(4, 45, 104, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 800;
}

.contact-copy > p:last-of-type {
  max-width: 520px;
}

.contact-section .section.contact-inner {
  padding-top: 56px;
  padding-bottom: 58px;
}

.contact-inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.86fr);
  align-items: center;
  gap: 48px;
}

.access-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 520px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.access-benefits li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 74px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(7, 59, 130, 0.1);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(7, 58, 101, 0.08);
}

.access-benefits li > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #0968c9;
  background: linear-gradient(145deg, #edf6ff, #d9edff);
  border-radius: 15px;
}

.access-benefits li:first-child > span {
  color: #1aaa66;
  background: linear-gradient(145deg, #edfbf3, #d7f6e3);
}

.access-benefits svg {
  width: 26px;
  height: 26px;
}

.access-benefits strong,
.access-benefits small {
  display: block;
  margin: 0;
}

.access-benefits strong {
  color: var(--navy);
  font-size: 13px;
}

.access-benefits small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.45;
}

.contact-stack {
  display: grid;
  justify-self: end;
  width: min(100%, 560px);
  gap: 12px;
}

.location-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 18px;
  padding: 24px 26px 26px;
}

.location-summary {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.location-card .contact-icon {
  color: #fff;
  background: linear-gradient(145deg, #1fbf77, #0b8fd0);
}

.location-card .contact-icon svg {
  width: 29px;
  height: 29px;
}

.location-card p {
  max-width: 430px;
}

.contact-details {
  min-width: 0;
}

.contact-phone {
  display: block;
  margin-top: 9px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.contact-phone a {
  color: #0968c9;
  white-space: nowrap;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.contact-actions .button {
  min-height: 46px;
  width: 100%;
  padding: 0 16px;
  margin-top: 0;
  font-size: 12px;
}

.contact-actions .button-whatsapp {
  grid-column: 1 / -1;
}

.contact-actions .button svg {
  width: 19px;
  height: 19px;
}

.button-phone,
.button-map {
  color: #073b82;
  background: #fff;
  border: 1px solid rgba(7, 59, 130, 0.12);
  box-shadow: 0 10px 24px rgba(4, 45, 104, 0.08);
}

.button-phone:hover,
.button-map:hover {
  color: #fff;
  background: linear-gradient(135deg, #0a8dd2, #0956b3);
}

.button-instagram {
  color: #06396f;
  background: linear-gradient(135deg, #fff, #eaf8ff);
  border: 1px solid rgba(5, 174, 218, 0.24);
  box-shadow: 0 10px 24px rgba(4, 45, 104, 0.08);
}

.button-instagram svg {
  width: 18px;
  height: 18px;
}

.opening-hours {
  display: grid;
  gap: 7px;
  padding: 16px;
  margin-top: 0;
  background: linear-gradient(135deg, #f6fbff, #eaf8ff);
  border: 1px solid rgba(7, 59, 130, 0.1);
  border-radius: 16px;
}

.opening-hours strong {
  color: var(--navy);
  font-size: 13px;
}

.opening-hours dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.opening-hours dl > div {
  display: grid !important;
  grid-template-columns: minmax(118px, 0.8fr) minmax(104px, 1fr);
  align-items: center;
  gap: 24px;
  padding-top: 7px;
  color: var(--muted);
  border-top: 1px solid rgba(7, 59, 130, 0.08);
  font-size: 11px;
  font-weight: 700;
}

.opening-hours dt,
.opening-hours dd {
  margin: 0;
  font-style: normal;
  font-weight: 800;
}

.opening-hours dt {
  color: #486986;
}

.opening-hours dd {
  color: var(--navy);
  text-align: left;
  white-space: nowrap;
}

.location-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.location-gallery figure {
  position: relative;
  min-height: 88px;
  margin: 0;
  overflow: hidden;
  background: #d8f4ff;
  border: 1px solid rgba(7, 59, 130, 0.1);
  border-radius: 13px;
  box-shadow: 0 10px 20px rgba(7, 58, 101, 0.08);
}

.location-gallery img {
  width: 100%;
  height: 100%;
  min-height: 88px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.28s ease;
}

.location-gallery figure:hover img {
  transform: scale(1.04);
}

.location-gallery figcaption {
  display: none;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 174, 218, 0.12), transparent 42%),
    linear-gradient(180deg, #073b82 0%, #052e68 100%);
}

.site-footer::before {
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(101, 224, 239, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 56px rgba(255, 255, 255, 0.03),
    0 0 0 112px rgba(255, 255, 255, 0.025);
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
  padding: 54px 0 28px;
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 28px;
  margin-bottom: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
}

.footer-topline div {
  min-width: 0;
}

.footer-kicker,
.footer-title {
  display: block;
  color: #65e0ef;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
}

.footer-topline strong {
  display: block;
  max-width: 590px;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  color: #073b82;
  white-space: nowrap;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(2, 29, 70, 0.2);
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) minmax(130px, 0.66fr) minmax(240px, 1fr) minmax(180px, 0.82fr) minmax(190px, 0.88fr);
  align-items: start;
  gap: 34px;
  max-width: none;
  min-height: 0;
  padding: 0 0 34px;
}

.footer-brand-block {
  max-width: 330px;
}

.site-footer .footer-brand {
  min-width: 0;
}

.site-footer .footer-brand img {
  width: 84px;
  height: 84px;
  border: 4px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 28px rgba(2, 29, 70, 0.18);
}

.footer-brand-block p {
  max-width: 280px;
  margin: 18px 0 0;
  color: #b9d3e8;
  font-size: 12px;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  gap: 9px;
  color: #d7e6f2;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.footer-column a,
.footer-column span {
  color: inherit;
}

.footer-hours a {
  color: #65e0ef;
  font-weight: 900;
}

.footer-column a {
  width: max-content;
  max-width: 100%;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.huboox-credit:hover,
.huboox-credit:focus-visible {
  color: #65e0ef;
}

.footer-title {
  margin-bottom: 8px;
}

.footer-address a {
  margin-top: 4px;
  color: #65e0ef;
}

.site-footer .instagram-link {
  justify-self: start;
  color: #71deea;
  font-size: 12px;
  font-weight: 900;
}

.footer-social small {
  max-width: 220px;
  margin-top: 10px;
  color: #a8c4dc;
  font-size: 10px;
  line-height: 1.55;
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: none;
  padding: 20px 0 0;
  color: #9fbfda;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 10px;
}

.huboox-credit {
  color: #d7e6f2;
  font-weight: 700;
}

.huboox-credit strong {
  color: #fff;
}

@media (width <= 1040px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .hero-content {
    max-width: 520px;
  }

  .service-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-featured {
    grid-column: 1 / -1;
  }

  .audience-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .audience-list article,
  .audience-list article:last-child {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .about-values {
    grid-column: 1 / -1;
  }

  .about-photo {
    min-height: 220px;
  }

  .about-photo img {
    min-height: 220px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-copy > p:last-of-type,
  .access-benefits,
  .contact-stack {
    max-width: 680px;
  }

  .contact-stack {
    justify-self: stretch;
    width: 100%;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions .button-whatsapp {
    grid-column: 1 / -1;
  }

  .site-footer .footer-main {
    grid-template-columns: 1.05fr 0.85fr 1.1fr;
  }

  .footer-social {
    grid-column: 2 / -1;
  }
}

@media (width <= 760px) {
  .site-header {
    gap: 12px;
    height: 92px;
    overflow: hidden;
  }

  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand span {
    min-width: 0;
  }

  .site-header .brand strong {
    white-space: nowrap;
  }

  .site-header .button-small {
    width: 44px;
    min-width: 44px;
    flex: 0 0 44px;
  }

  .button-small span {
    font-size: 18px;
    line-height: 1;
  }

  .neurodiversity-symbols-figure {
    justify-self: center;
  }

  .neurodiversity-symbols-figure .neurodiversity-theme-image {
    height: 180px;
  }

  .audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-list article,
  .audience-list article:last-child {
    min-height: 170px;
  }

  .audience-media {
    width: 76px;
    height: 76px;
  }

  .neurodiversity-visual {
    min-height: 164px;
  }

  .neurodiversity-visual img.nd-symbol {
    width: 74px;
    height: 74px;
  }

  .neurodiversity-visual img.nd-symbol:nth-child(2) {
    width: 88px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-content {
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero-photo-placeholder {
    position: relative;
    inset: auto;
    height: 100%;
    min-height: 360px;
  }

  .water-card {
    bottom: 44px;
    left: 14px;
  }

  .care-card {
    top: 36px;
    right: 14px;
  }

  .trust-strip {
    z-index: 6;
  }

  .trust-strip > div {
    min-height: 72px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .feature-icon svg {
    width: 27px;
    height: 27px;
  }

  .section-heading h2,
  .coverage-intro h2,
  .about-copy h2,
  .contact-inner h2,
  .center-heading h2 {
    overflow-wrap: anywhere;
  }

  .access-benefits {
    max-width: none;
  }

  .location-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .location-gallery figure,
  .location-gallery img {
    min-height: 86px;
  }

  .footer-shell {
    width: min(100% - 36px, 1180px);
    padding-top: 42px;
  }

  .footer-topline {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
    border-radius: 20px;
  }

  .footer-cta {
    width: 100%;
  }

  .site-footer .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }

  .footer-brand-block,
  .footer-social {
    grid-column: 1 / -1;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 230px;
  }

  .about-photo img {
    min-height: 230px;
  }

  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (width <= 480px) {
  .brand strong {
    font-size: 12px;
  }

  .brand small {
    max-width: 175px;
    font-size: 9px;
  }

  .brand img,
  .footer-brand img {
    width: 66px;
    height: 66px;
  }

  .footer-brand {
    min-width: 0;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-visual {
    height: auto;
    min-height: 360px;
  }

  .water-card,
  .care-card {
    max-width: calc(100% - 28px);
  }

  .service-card-icon {
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .service-card-icon svg {
    width: 27px;
    height: 27px;
  }

  .neurodiversity-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    min-height: 260px;
  }

  .neurodiversity-symbols-figure .neurodiversity-theme-image {
    height: 230px;
  }

  .agreement-logo {
    min-height: 86px;
  }

  .audience-list article,
  .audience-list article:last-child {
    min-height: 0;
    padding: 15px;
  }

  .audience-media {
    width: 70px;
    height: 70px;
  }

  .audience-list article > div {
    padding: 0;
  }

  .access-benefits li {
    align-items: flex-start;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .location-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .location-gallery figure,
  .location-gallery img {
    min-height: 82px;
  }
}

@media (width <= 560px) {
  .site-header {
    height: 74px;
    gap: 10px;
    padding: 0 14px;
  }

  .site-header .brand {
    gap: 10px;
  }

  .brand img,
  .footer-brand img {
    width: 56px;
    height: 56px;
  }

  .site-header .button-small {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    flex-basis: 42px;
  }

  .button-small span {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding: 38px 18px 0;
  }

  .hero::after {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(36px, 11.5vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 18px;
  }

  .hero-copy {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 22px;
  }

  .button {
    min-height: 47px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero-note {
    align-items: flex-start;
    font-size: 11px;
    line-height: 1.45;
  }

  .hero-visual {
    height: 300px;
    min-height: 300px;
    margin-top: 22px;
  }

  .hero-photo-placeholder {
    min-height: 300px;
  }

  .care-card {
    top: 24px;
    right: 12px;
  }

  .water-card {
    bottom: 26px;
    left: 12px;
    width: min(205px, calc(100% - 24px));
  }

  .trust-strip {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin-top: -16px;
    padding: 8px;
  }

  .trust-strip > div {
    min-height: 62px;
    justify-content: flex-start;
    padding: 8px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip > div:last-child {
    border-bottom: 0;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .section {
    padding: 64px 16px 18px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 24px;
  }

  .section-heading h2,
  .coverage-intro h2,
  .about-copy h2,
  .contact-inner h2,
  .center-heading h2,
  .audience-copy h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .section-heading > p {
    font-size: 13px;
    line-height: 1.6;
  }

  .service-preview-grid {
    gap: 12px;
  }

  .service-featured {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-art {
    min-height: 142px;
  }

  .service-art .service-art-icon {
    width: 76px;
    height: 76px;
  }

  .service-art .service-art-icon svg {
    width: 42px;
    height: 42px;
  }

  .service-featured > div:last-child {
    padding: 22px 18px;
  }

  .service-card {
    min-height: 176px;
    padding: 18px;
  }

  .service-card h3 {
    max-width: calc(100% - 58px);
    font-size: 18px;
  }

  .service-card p {
    font-size: 12px;
    line-height: 1.55;
  }

  .neurodiversity-collection {
    padding: 20px 14px 16px;
    border-radius: 22px;
  }

  .neurodiversity-collection-copy h3 {
    font-size: clamp(25px, 8vw, 32px);
  }

  .neurodiversity-collection-copy > p:last-child {
    font-size: 12px;
    line-height: 1.6;
  }

  .neurodiversity-symbols-figure .neurodiversity-theme-image {
    height: 172px;
  }

  .neurodiversity-symbol-key li {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 48px;
  }

  .symbol-dot.symbol-img {
    width: 42px;
    height: 42px;
  }

  .audience-section {
    margin-top: 36px;
  }

  .audience-inner {
    gap: 24px;
    padding: 58px 16px;
  }

  .audience-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .audience-list article,
  .audience-list article:last-child {
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: center;
    min-height: 96px;
    gap: 12px;
    padding: 12px;
  }

  .audience-media {
    width: 68px;
    height: 68px;
    margin: 0;
  }

  .audience-list h3 {
    font-size: 14px;
  }

  .audience-list p {
    margin-top: 4px;
    font-size: 9.8px;
    line-height: 1.45;
  }

  .audience-index {
    top: 7px;
    right: 10px;
    font-size: 17px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .steps-grid article {
    min-height: 0;
    padding: 0 6px;
  }

  .coverage-card {
    padding: 22px 14px;
    border-radius: 22px;
  }

  .agreement-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .agreement-logo {
    min-height: 74px;
    padding: 10px;
  }

  .agreement-logo img {
    max-height: 44px;
  }

  .coverage-rules {
    gap: 10px;
  }

  .structure-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .structure-main {
    grid-row: auto;
    min-height: 280px;
  }

  .structure-feature,
  .feature-c {
    grid-column: auto;
    min-height: 0;
    padding: 18px;
  }

  .about-inner {
    gap: 24px;
    padding: 58px 16px;
  }

  .about-photo,
  .about-photo img {
    min-height: 188px;
  }

  .about-values > div {
    padding: 12px 0;
  }

  .faq-section {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .center-heading {
    margin-bottom: 34px;
  }

  .faq-grid summary {
    min-height: 64px;
    padding: 0 16px;
  }

  .contact-section .section.contact-inner {
    padding: 48px 16px;
  }

  .access-benefits {
    margin-top: 20px;
  }

  .access-benefits li {
    min-height: 0;
    gap: 10px;
    padding: 12px;
  }

  .access-benefits li > span {
    width: 40px;
    height: 40px;
  }

  .access-benefits svg {
    width: 22px;
    height: 22px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .location-summary {
    gap: 12px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .contact-card strong {
    font-size: 18px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .opening-hours dl > div {
    grid-template-columns: minmax(112px, 0.78fr) minmax(104px, 1fr);
    gap: 16px;
  }

  .button-instagram {
    font-size: 12px;
  }

  .location-gallery figure,
  .location-gallery img {
    min-height: 76px;
  }

  .footer-shell {
    width: calc(100% - 28px);
    padding-bottom: 28px;
  }

  .footer-topline {
    padding: 18px;
  }

  .footer-topline strong {
    font-size: 20px;
    line-height: 1.2;
  }

  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-column a {
    width: auto;
  }

  .site-footer .footer-bottom {
    gap: 12px;
  }

  .huboox-credit {
    line-height: 1.4;
  }
}

@media (width <= 380px) {
  h1 {
    font-size: 34px;
  }

  .button {
    padding: 0 14px;
    font-size: 12px;
  }

  .site-header {
    padding: 0 12px;
  }

  .brand img,
  .footer-brand img {
    width: 52px;
    height: 52px;
  }

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .audience-list article,
  .audience-list article:last-child {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .audience-media {
    width: 60px;
    height: 60px;
  }

  .agreement-logo img {
    max-width: 90%;
    max-height: 38px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .location-gallery {
    grid-template-columns: 1fr;
  }

  .location-gallery figure,
  .location-gallery img {
    min-height: 96px;
  }
}
