:root {
  --navy: #0b315f;
  --navy-deep: #061d3e;
  --blue: #245fae;
  --therapy: #24a39b;
  --therapy-dark: #137b75;
  --therapy-pale: #edf8f7;
  --pink: #d94672;
  --ink: #12233e;
  --muted: #65758b;
  --line: #dce5ee;
  --surface: #f5f8fb;
  --white: #fff;
  --shadow: 0 24px 70px rgba(8, 42, 82, 0.12);
  --radius: 18px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font:
    400 16px/1.65 "DM Sans",
    sans-serif;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(3rem, 5.5vw, 5.4rem);
}
h2 {
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}
h3 {
  font-size: 1.2rem;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 15px;
  top: -100px;
  z-index: 100;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.skip-link:focus {
  top: 15px;
}
:focus-visible {
  outline: 3px solid rgba(36, 163, 155, 0.55);
  outline-offset: 3px;
}
.site-header {
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 49, 95, 0.09);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.brand > img {
  width: 58px;
  height: 48px;
  object-fit: contain;
  background: #fff;
}
.brand > span {
  display: grid;
  line-height: 1;
}
.brand b {
  font:
    700 1.35rem/1 Manrope,
    sans-serif;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.brand small {
  margin-top: 5px;
  color: var(--pink);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.site-header nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  position: relative;
  color: #536177;
  font-size: 0.86rem;
  font-weight: 700;
}
.site-header nav a:hover,
.site-header nav a.active {
  color: var(--navy);
}
.site-header nav a.active::after,
.site-header nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--therapy);
}
.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
}
.menu-toggle i {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  transition: 0.22s;
  box-shadow: 0 10px 28px rgba(11, 49, 95, 0.12);
}
.button:hover {
  transform: translateY(-2px);
  background: var(--blue);
  border-color: var(--blue);
}
.button-sm {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.8rem;
}
.button-light {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}
.button-light:hover {
  background: var(--therapy-pale);
  border-color: var(--therapy-pale);
  color: var(--navy);
}
.button-outline {
  background: transparent;
  color: var(--navy);
  box-shadow: none;
}
.button-outline:hover {
  color: #fff;
}
.text-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid #9aabba;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.86rem;
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--therapy-dark);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: #75d6cf;
}
.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(36, 163, 155, 0.13),
      transparent 30%
    ),
    linear-gradient(125deg, #fff 0%, #f6f9fc 58%, #eaf4f5 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 70px;
  align-items: center;
  padding-block: 48px;
}
.hero-copy h1 {
  margin-bottom: 24px;
  color: var(--navy);
}
.hero-copy h1 em {
  color: var(--therapy);
  font-style: normal;
}
.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #61758c;
  font-size: 0.75rem;
  font-weight: 700;
}
.hero-meta span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--therapy);
}
.hero-media {
  height: 500px;
  position: relative;
}
.hero-photo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58%;
  border: 7px solid #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%;
  height: 325px;
  object-fit: cover;
  object-position: 60% center;
}
.hero-logo {
  position: absolute;
  right: 0;
  top: 5px;
  width: 76%;
  padding: 12px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.hero-logo img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}
.services-home {
  padding: 88px 0;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}
.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--navy);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-grid article {
  min-height: 250px;
  padding: 27px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: 0.25s;
}
.service-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 163, 155, 0.5);
  box-shadow:
    0 18px 48px rgba(11, 49, 95, 0.09),
    inset 0 3px 0 var(--therapy);
}
.service-grid article > span {
  color: var(--therapy-dark);
  font-size: 0.72rem;
  font-weight: 800;
}
.service-grid h3 {
  margin-top: 45px;
  color: var(--navy);
}
.service-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}
.partners {
  padding: 78px 0;
  background: linear-gradient(125deg, var(--navy-deep), #0e4770);
  color: #fff;
}
.partners-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 65px;
  align-items: center;
}
.partners h2 {
  max-width: 560px;
}
.partners-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: #b6c8db;
}
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.service-pills span {
  padding: 7px 11px;
  border: 1px solid rgba(117, 214, 207, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #e8ffff;
  font-size: 0.7rem;
  font-weight: 700;
}
.partner-list {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 12px;
}
.partner-list article {
  min-height: 190px;
  display: grid;
  place-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
}
.partner-list article > b {
  font:
    700 1.35rem Manrope,
    sans-serif;
}
.partner-list article > span,
.partner-aampesp div span {
  color: #afc4d8;
  font-size: 0.72rem;
}
.partner-list .partner-aampesp {
  display: grid;
  grid-template-rows: 125px auto;
  place-content: stretch;
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.partner-aampesp img {
  width: 100%;
  height: 125px;
  object-fit: contain;
  padding: 8px;
  background: #fff;
}
.partner-aampesp div {
  display: grid;
  align-content: center;
  padding: 10px 14px;
}
.partner-aampesp div b {
  font:
    700 1.1rem Manrope,
    sans-serif;
}
.pilates-feature {
  padding: 82px 0;
  background: linear-gradient(120deg, var(--therapy-pale), #f5f8fb);
}
.feature-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 55px;
  align-items: center;
}
.feature-copy h2 {
  color: var(--navy);
}
.feature-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.feature-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-photos figure {
  margin: 0;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 16px;
  background: #e4edf2;
  box-shadow: 0 18px 48px rgba(11, 49, 95, 0.1);
}
.feature-photos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-cta {
  padding: 68px 0;
  background: linear-gradient(125deg, var(--navy), #164f7b);
  color: #fff;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.cta-inner h2 {
  max-width: 760px;
  margin-bottom: 0;
}
.site-footer {
  padding: 52px 0 22px;
  background: #061a36;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr;
  gap: 45px;
  align-items: start;
}
.brand-footer > img {
  background: transparent;
}
.brand-footer b {
  color: #fff;
}
.footer-grid > p {
  color: #9fb2c9;
}
.footer-grid nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}
.footer-grid nav a,
.footer-grid nav button {
  border: 0;
  background: none;
  color: #c0cede;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8298b5;
  font-size: 0.72rem;
}
.footer-bottom a {
  text-align: right;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1faa61;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 12px 34px rgba(13, 104, 64, 0.32);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border: 2px solid rgba(31, 170, 97, 0.45);
  border-radius: 50%;
  animation: whatsapp-pulse 2.2s ease-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 38px rgba(13, 104, 64, 0.4);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  70%,
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
dialog {
  max-width: 600px;
  padding: 32px;
  border: 0;
  border-radius: 18px;
  color: var(--ink);
}
dialog::backdrop {
  background: rgba(5, 23, 50, 0.72);
}
.dialog-close {
  float: right;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
}
.page-hero,
.gallery-hero {
  padding: 78px 0;
  background: linear-gradient(118deg, #071d41 0%, #0c3467 65%, #126a76 140%);
  color: #fff;
}
.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
}
.page-hero > div > p:last-child {
  max-width: 680px;
  color: #bed0e2;
}
.service-details {
  padding: 50px 0 80px;
}
.detail-list article {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 30px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.detail-list article > span {
  color: var(--therapy-dark);
  font-weight: 800;
}
.detail-list h2 {
  font-size: 2rem;
  color: var(--navy);
}
.detail-list p {
  max-width: 720px;
  color: var(--muted);
}
.detail-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}
.detail-list li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--therapy-pale);
  color: var(--therapy-dark);
  font-size: 0.72rem;
  font-weight: 700;
}
.service-partners {
  padding: 72px 0;
  background: var(--surface);
}
.service-partners-inner {
  display: grid;
  grid-template-columns: 1fr 180px 0.65fr;
  gap: 45px;
  align-items: center;
}
.service-partners h2 {
  color: var(--navy);
}
.service-partners p:not(.eyebrow) {
  color: var(--muted);
}
.service-partners img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
}
.partner-words {
  display: grid;
  gap: 12px;
}
.partner-words b {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  text-align: center;
}
.about-section {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.72fr);
  gap: 70px;
  align-items: center;
}
.about-grid h2 {
  color: var(--navy);
}
.about-grid p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
}
.about-grid > img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.values-section {
  padding: 0 0 80px;
}
.error-page {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  padding: 70px 0;
  background: linear-gradient(125deg, #fff, var(--therapy-pale));
  text-align: center;
}
.error-page h1 {
  margin-bottom: 18px;
  color: var(--navy);
}
.error-page p {
  max-width: 620px;
  margin-inline: auto;
  color: var(--muted);
}
.error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.gallery-hero {
  position: relative;
  isolation: isolate;
  padding-bottom: 30px;
  overflow: hidden;
}
.gallery-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  right: -90px;
  top: -230px;
  border: 1px solid rgba(113, 210, 202, 0.3);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(113, 210, 202, 0.04),
    0 0 0 140px rgba(113, 210, 202, 0.025);
}
.gallery-hero h1 {
  margin-bottom: 32px;
  color: #fff;
}
.gallery-hero h1 em {
  color: #71d2ca;
  font-style: normal;
}
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.gallery-controls > span {
  color: #b9d8d8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(113, 210, 202, 0.6);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.gallery-controls button:hover {
  background: var(--therapy);
}
.gallery-section {
  padding: 42px 0 55px;
  overflow: hidden;
  background: #f4f7fa;
}
.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar {
  display: none;
}
.gallery-track figure {
  flex: 0 0 300px;
  height: 380px;
  position: relative;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: center;
  border-radius: 16px;
  background: #e5ecf2;
  box-shadow: 0 16px 45px rgba(11, 49, 95, 0.1);
  contain: layout paint;
}
.gallery-track figure.landscape {
  flex-basis: 420px;
}
.gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-track figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: grid;
  padding: 38px 14px 13px;
  border-radius: 12px;
  background: linear-gradient(transparent, rgba(5, 28, 60, 0.9));
  color: #fff;
}
.gallery-track figcaption b {
  font:
    700 1rem Manrope,
    sans-serif;
}
.gallery-track figcaption span {
  color: #c6d4e3;
  font-size: 0.7rem;
}
.gallery-progress {
  height: 2px;
  margin-top: 26px;
  background: #d7e1e9;
}
.gallery-progress i {
  display: block;
  width: 10%;
  height: 100%;
  background: var(--therapy);
  transition: 0.15s;
}
.gallery-status {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
}
.image-consent {
  margin: 4px 0 0;
  color: #7b899b;
  font-size: 0.68rem;
}
.gallery-bottom {
  padding: 62px 0;
  background: linear-gradient(120deg, #fff, var(--therapy-pale));
}
.gallery-bottom h2 {
  color: var(--navy);
}
.contact-hero {
  padding: 72px 0;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(36, 163, 155, 0.13),
      transparent 30%
    ),
    linear-gradient(125deg, #fff, #edf5f7);
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 70px;
  align-items: center;
}
.contact-hero h1 {
  margin-bottom: 16px;
  color: var(--navy);
}
.contact-hero h1 em {
  color: var(--therapy);
  font-style: normal;
}
.contact-hero p:last-child {
  color: var(--muted);
}
.contact-logo {
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-logo img {
  width: 100%;
  height: 210px;
  object-fit: contain;
}
.location {
  padding: 72px 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 55px;
}
.map-frame {
  height: 500px;
  overflow: hidden;
  border-radius: 18px;
  background: #e6edf3;
  box-shadow: var(--shadow);
  contain: layout paint;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.location-info h2 {
  font-size: 2rem;
  color: var(--navy);
}
.location-info > p:not(.eyebrow) {
  color: var(--muted);
}
.contact-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.contact-list article {
  display: grid;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list small {
  color: var(--therapy-dark);
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-list b {
  color: var(--navy);
}
.contact-list a,
.contact-list span {
  color: var(--muted);
  font-size: 0.8rem;
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.instagram-link i {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background:
    radial-gradient(
      circle at 50% 50%,
      transparent 0 2px,
      #fff 2.3px 3.3px,
      transparent 3.6px
    ),
    radial-gradient(circle at 72% 27%, #fff 0 1px, transparent 1.4px),
    linear-gradient(135deg, #6a38b7, #d72f78 55%, #f5a73a);
  box-shadow: inset 0 0 0 1.2px rgba(255, 255, 255, 0.94);
}
@media (max-width: 960px) {
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .site-header nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(11, 49, 95, 0.12);
  }
  .site-header nav.open {
    display: flex;
  }
  .site-header nav a {
    padding: 8px;
  }
  .site-header nav a::after {
    display: none;
  }
  .hero-grid,
  .partners-grid,
  .feature-grid,
  .about-grid,
  .contact-hero-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 35px;
  }
  .hero-media {
    max-width: 570px;
    width: 100%;
    margin: auto;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .partners-grid {
    gap: 35px;
  }
  .service-partners-inner {
    grid-template-columns: 1fr 160px;
  }
  .partner-words {
    grid-column: 1/3;
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid nav {
    grid-column: 1/3;
    justify-content: flex-start;
  }
  .contact-logo {
    max-width: 320px;
  }
  .map-frame {
    height: 390px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 70px;
  }
  .container {
    width: min(100% - 24px, 1180px);
  }
  h1 {
    font-size: clamp(2.55rem, 13vw, 3.3rem);
  }
  h2 {
    font-size: 2.25rem;
  }
  .site-header {
    height: 70px;
  }
  .header-inner {
    gap: 8px;
  }
  .brand {
    gap: 7px;
  }
  .brand > img {
    width: 44px;
    height: 39px;
  }
  .brand b {
    font-size: 1.15rem;
  }
  .brand small {
    font-size: 0.5rem;
  }
  .site-header nav {
    top: 70px;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    padding: 38px 0 44px;
    gap: 26px;
  }
  .lead {
    font-size: 0.96rem;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    text-align: center;
  }
  .hero-meta {
    gap: 9px 14px;
    margin-top: 25px;
  }
  .hero-media {
    height: 350px;
  }
  .hero-logo {
    width: 84%;
    padding: 8px;
  }
  .hero-logo img {
    height: 145px;
  }
  .hero-photo {
    width: 50%;
    border-width: 5px;
  }
  .hero-photo img {
    height: 205px;
  }
  .services-home {
    padding: 55px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .desktop-link {
    display: none;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .service-grid article {
    min-height: 190px;
    padding: 22px;
  }
  .service-grid h3 {
    margin-top: 28px;
  }
  .partners {
    padding: 52px 0;
  }
  .partner-list {
    grid-template-columns: 1fr 1fr;
  }
  .partner-list .partner-aampesp {
    grid-column: 1/3;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto;
    min-height: 112px;
  }
  .partner-aampesp img {
    height: 112px;
  }
  .partner-list article {
    min-height: 110px;
  }
  .feature-grid {
    gap: 28px;
  }
  .pilates-feature {
    padding: 52px 0;
  }
  .feature-photos {
    gap: 7px;
  }
  .feature-photos figure {
    border-radius: 12px;
  }
  .home-cta,
  .gallery-bottom {
    padding: 48px 0;
  }
  .cta-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }
  .cta-inner .button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-grid nav {
    grid-column: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .footer-bottom a {
    text-align: left;
    overflow-wrap: anywhere;
  }
  .about-section {
    padding: 52px 0;
  }
  .about-grid {
    gap: 28px;
  }
  .values-section {
    padding-bottom: 52px;
  }
  .detail-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0;
  }
  .detail-list article .button {
    width: 100%;
  }
  .service-partners {
    padding: 50px 0;
  }
  .service-partners-inner {
    grid-template-columns: 1fr;
  }
  .service-partners img {
    width: 140px;
    height: 140px;
  }
  .partner-words {
    grid-column: auto;
  }
  .page-hero,
  .gallery-hero {
    padding: 52px 0 26px;
  }
  .gallery-controls > span {
    max-width: 160px;
    line-height: 1.35;
  }
  .gallery-track {
    padding-inline: 12px;
  }
  .gallery-track figure {
    flex-basis: min(278px, 82vw);
    height: 350px;
  }
  .gallery-track figure.landscape {
    flex-basis: min(310px, 88vw);
    height: 270px;
  }
  .contact-hero {
    padding: 42px 0;
  }
  .contact-hero-grid {
    gap: 28px;
  }
  .contact-logo {
    max-width: 280px;
  }
  .contact-logo img {
    height: 145px;
  }
  .location {
    padding: 42px 0;
  }
  .location-grid {
    gap: 30px;
  }
  .map-frame {
    height: 270px;
  }
  .location-info h2 {
    font-size: 1.45rem;
  }
  .location-info .button {
    width: 100%;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 360px) {
  .brand > img {
    width: 39px;
    height: 35px;
  }
  .brand b {
    font-size: 1.05rem;
  }
  .brand small {
    font-size: 0.45rem;
  }
  .hero-media {
    height: 320px;
  }
  .hero-logo img {
    height: 130px;
  }
  .hero-photo img {
    height: 185px;
  }
  .partner-list article > b {
    font-size: 1.1rem;
  }
  .service-pills span {
    font-size: 0.63rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
/* Hero: preserve o rosto sem sobreposição da marca */
.hero-logo {
  width: 68%;
  padding: 10px;
}
.hero-logo img {
  height: 165px;
}
.hero-photo {
  z-index: 2;
}
.hero-logo {
  z-index: 1;
}
@media (max-width: 600px) {
  .hero-logo {
    width: 72%;
    padding: 7px;
  }
  .hero-logo img {
    height: 118px;
  }
  .hero-photo {
    z-index: 2;
  }
}
@media (max-width: 360px) {
  .hero-logo img {
    height: 108px;
  }
}

/* Compact premium UI — desktop and mobile */
:root {
  --navy: #0a2a52;
  --navy-deep: #051a35;
  --blue: #174e86;
  --therapy: #15988f;
  --therapy-dark: #0f746e;
  --therapy-pale: #eff8f7;
  --ink: #102039;
  --muted: #637185;
  --line: #e2e9ef;
  --surface: #f7f9fb;
  --shadow: 0 18px 50px rgba(7, 37, 70, 0.1);
  --radius: 15px;
}
body {
  font-size: 15px;
  line-height: 1.58;
  background: #fbfcfd;
}
h1 {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.75rem);
}
h3 {
  font-size: 1.04rem;
  letter-spacing: -0.025em;
}
.container {
  width: min(1120px, calc(100% - 40px));
}
.site-header {
  height: 70px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 8px 28px rgba(8, 42, 82, 0.04);
}
.header-inner {
  gap: 20px;
}
.brand {
  gap: 8px;
}
.brand > img {
  width: 48px;
  height: 40px;
}
.brand b {
  font-size: 1.18rem;
}
.brand small {
  margin-top: 3px;
  font-size: 0.52rem;
}
.site-header nav {
  gap: 19px;
}
.site-header nav a {
  min-height: 40px;
  font-size: 0.78rem;
}
.site-header nav a.active::after,
.site-header nav a:hover::after {
  bottom: 2px;
}
.button {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.8rem;
  box-shadow: 0 8px 20px rgba(11, 49, 95, 0.12);
}
.button-sm {
  min-height: 38px;
  padding: 8px 15px;
  font-size: 0.74rem;
}
.text-link {
  font-size: 0.8rem;
}
.eyebrow {
  margin-bottom: 10px;
  font-size: 0.64rem;
  letter-spacing: 0.13em;
}
.hero {
  min-height: 500px;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(21, 152, 143, 0.12),
      transparent 28%
    ),
    linear-gradient(125deg, #ffffff 0%, #f7fafc 58%, #edf6f6 100%);
}
.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  padding-block: 38px;
}
.hero-copy h1 {
  max-width: 650px;
  margin-bottom: 18px;
}
.lead {
  max-width: 560px;
  font-size: 0.98rem;
}
.hero-actions {
  gap: 18px;
  margin-top: 22px;
}
.hero-meta {
  gap: 8px 16px;
  margin-top: 24px;
  padding-top: 15px;
  font-size: 0.69rem;
}
.hero-media {
  height: 385px;
  max-width: 470px;
  margin-left: auto;
}
.hero-photo {
  width: 55%;
  border-width: 5px;
  border-radius: 17px;
}
.hero-photo img {
  height: 255px;
}
.hero-logo {
  width: 66%;
  padding: 8px;
  border-radius: 17px;
}
.hero-logo img {
  height: 125px;
}
.services-home {
  padding: 60px 0;
}
.section-heading {
  gap: 24px;
  margin-bottom: 26px;
}
.section-heading h2 {
  max-width: 680px;
}
.service-grid {
  gap: 11px;
}
.service-grid article {
  min-height: 168px;
  padding: 20px;
  border-color: rgba(11, 49, 95, 0.1);
  box-shadow: 0 8px 24px rgba(8, 42, 82, 0.035);
}
.service-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 38px rgba(8, 42, 82, 0.08);
}
.service-grid h3 {
  margin: 24px 0 8px;
}
.service-grid p {
  margin-bottom: 0;
  font-size: 0.81rem;
  line-height: 1.52;
}
.partners {
  padding: 58px 0;
}
.partners-grid {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
}
.partners-copy > p:not(.eyebrow) {
  max-width: 500px;
  font-size: 0.9rem;
}
.service-pills {
  margin-top: 18px;
}
.service-pills span {
  padding: 5px 9px;
  font-size: 0.64rem;
}
.partner-list {
  gap: 9px;
}
.partner-list article {
  min-height: 145px;
  padding: 14px;
}
.partner-list article > b {
  font-size: 1.05rem;
}
.partner-list .partner-aampesp {
  grid-template-rows: 92px auto;
}
.partner-aampesp img {
  height: 92px;
}
.pilates-feature {
  padding: 58px 0;
}
.feature-grid {
  grid-template-columns: 0.78fr 1.22fr;
  gap: 38px;
}
.feature-photos {
  gap: 9px;
}
.feature-photos figure {
  border-radius: 13px;
  box-shadow: 0 12px 32px rgba(11, 49, 95, 0.08);
}
.home-cta {
  padding: 48px 0;
}
.cta-inner {
  gap: 28px;
}
.site-footer {
  padding: 40px 0 18px;
}
.footer-grid {
  gap: 34px;
}
.footer-bottom {
  margin-top: 26px;
  padding-top: 16px;
}
.page-hero,
.gallery-hero {
  padding: 52px 0;
}
.page-hero h1 {
  max-width: 820px;
  margin-bottom: 13px;
}
.service-details {
  padding: 28px 0 60px;
}
.detail-list article {
  grid-template-columns: 44px 1fr auto;
  gap: 22px;
  padding: 30px 0;
}
.detail-list h2,
.location-info h2 {
  font-size: 1.55rem;
}
.detail-list p {
  font-size: 0.88rem;
}
.detail-list li {
  padding: 5px 9px;
  font-size: 0.66rem;
}
.service-partners,
.about-section {
  padding: 54px 0;
}
.service-partners-inner {
  grid-template-columns: 1fr 140px 0.65fr;
  gap: 34px;
}
.service-partners img {
  width: 140px;
  height: 140px;
}
.partner-words b {
  padding: 15px;
}
.about-grid {
  gap: 50px;
}
.about-grid > img {
  max-height: 420px;
}
.values-section {
  padding-bottom: 58px;
}
.gallery-hero {
  padding-bottom: 24px;
}
.gallery-hero h1 {
  margin-bottom: 22px;
}
.gallery-section {
  padding: 32px 0 42px;
}
.gallery-track {
  gap: 12px;
}
.gallery-track figure {
  flex-basis: 260px;
  height: 325px;
  border-radius: 14px;
}
.gallery-track figure.landscape {
  flex-basis: 350px;
}
.gallery-bottom {
  padding: 46px 0;
}
.contact-hero {
  padding: 48px 0;
}
.contact-hero-grid {
  grid-template-columns: 1fr 260px;
  gap: 48px;
}
.contact-logo img {
  height: 150px;
}
.location {
  padding: 52px 0;
}
.location-grid {
  gap: 42px;
}
.map-frame {
  height: 390px;
}
.contact-list {
  margin-top: 22px;
}
.contact-list article {
  padding: 11px 0;
}
dialog {
  max-width: 540px;
  padding: 26px;
}
.whatsapp-float {
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border: 3px solid #fff;
  box-shadow: 0 12px 32px rgba(8, 119, 55, 0.4);
  animation: whatsapp-float-beat 1.35s ease-in-out infinite;
}
.whatsapp-float::before {
  inset: -11px;
  border: 3px solid rgba(37, 211, 102, 0.72);
  animation: whatsapp-ring 1.35s ease-out infinite;
}
.whatsapp-float::after {
  content: "WhatsApp";
  position: absolute;
  right: 68px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  color: #075e54;
  font:
    700 0.7rem/1 "DM Sans",
    sans-serif;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(7, 94, 84, 0.17);
}
.whatsapp-float svg {
  width: 31px;
  height: 31px;
}
@keyframes whatsapp-float-beat {
  0%,
  100% {
    transform: scale(1);
  }
  18% {
    transform: scale(1.12);
  }
  34% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes whatsapp-ring {
  0% {
    transform: scale(0.75);
    opacity: 0.95;
  }
  80%,
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .site-header nav {
    top: 70px;
  }
  .hero-grid,
  .partners-grid,
  .feature-grid,
  .about-grid,
  .contact-hero-grid,
  .location-grid {
    gap: 30px;
  }
  .hero-media {
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 14.5px;
  }
  .container {
    width: min(100% - 28px, 1120px);
  }
  h1 {
    font-size: clamp(2.18rem, 10.5vw, 2.75rem);
  }
  h2 {
    font-size: 1.8rem;
  }
  .site-header {
    height: 62px;
  }
  .site-header nav {
    top: 62px;
    padding: 10px 16px 14px;
  }
  .brand > img {
    width: 40px;
    height: 34px;
  }
  .brand b {
    font-size: 1.04rem;
  }
  .brand small {
    font-size: 0.46rem;
  }
  .hero-grid {
    padding: 28px 0 34px;
    gap: 20px;
  }
  .hero-copy h1 {
    margin-bottom: 14px;
  }
  .lead {
    font-size: 0.9rem;
  }
  .hero-actions {
    margin-top: 18px;
    gap: 9px;
  }
  .hero-meta {
    margin-top: 18px;
    padding-top: 13px;
    font-size: 0.62rem;
  }
  .hero-media {
    height: 272px;
    max-width: 390px;
  }
  .hero-logo {
    width: 66%;
    padding: 6px;
  }
  .hero-logo img {
    height: 88px;
  }
  .hero-photo {
    width: 49%;
    border-width: 4px;
  }
  .hero-photo img {
    height: 164px;
  }
  .services-home,
  .partners,
  .pilates-feature,
  .about-section,
  .service-partners,
  .location {
    padding: 40px 0;
  }
  .section-heading {
    margin-bottom: 18px;
  }
  .service-grid {
    gap: 8px;
  }
  .service-grid article {
    min-height: 140px;
    padding: 17px;
  }
  .service-grid h3 {
    margin-top: 17px;
  }
  .partner-list .partner-aampesp {
    min-height: 94px;
    grid-template-columns: 96px 1fr;
  }
  .partner-aampesp img {
    height: 94px;
  }
  .partner-list article {
    min-height: 92px;
  }
  .feature-grid,
  .about-grid {
    gap: 22px;
  }
  .home-cta,
  .gallery-bottom {
    padding: 36px 0;
  }
  .cta-inner {
    gap: 18px;
  }
  .site-footer {
    padding: 34px 0 16px;
  }
  .page-hero,
  .gallery-hero,
  .contact-hero {
    padding: 38px 0 22px;
  }
  .detail-list article {
    padding: 23px 0;
  }
  .service-details {
    padding-bottom: 44px;
  }
  .service-partners img {
    width: 112px;
    height: 112px;
  }
  .values-section {
    padding-bottom: 40px;
  }
  .gallery-section {
    padding: 26px 0 34px;
  }
  .gallery-track figure {
    flex-basis: min(242px, 78vw);
    height: 306px;
  }
  .gallery-track figure.landscape {
    flex-basis: min(288px, 86vw);
    height: 238px;
  }
  .contact-logo {
    max-width: 220px;
  }
  .contact-logo img {
    height: 105px;
  }
  .map-frame {
    height: 245px;
  }
  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 55px;
    height: 55px;
  }
  .whatsapp-float::after {
    display: none;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.65rem;
  }
  .hero-media {
    height: 248px;
  }
  .hero-logo img {
    height: 78px;
  }
  .hero-photo img {
    height: 150px;
  }
}

/* Hero humano: responsável da clínica com assinatura visual da Health */
.hero-media {
  isolation: isolate;
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  min-height: 385px;
}
.hero-media::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 8% 2% 3% 7%;
  border: 1px solid rgba(21, 152, 143, 0.14);
  border-radius: 46% 54% 44% 56% / 52% 42% 58% 48%;
  background: radial-gradient(
    circle at 55% 42%,
    rgba(255, 255, 255, 0.95),
    rgba(212, 240, 238, 0.58) 58%,
    rgba(232, 246, 246, 0.16) 73%
  );
}
.hero-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 4%;
  bottom: 1%;
  width: 62%;
  height: 18px;
  border-radius: 50%;
  background: rgba(5, 42, 82, 0.14);
  filter: blur(13px);
}
.hero-photo {
  z-index: 2;
  right: 2%;
  bottom: -38px;
  left: auto;
  width: 61%;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hero-photo img {
  width: 100%;
  height: 415px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 18px rgba(5, 42, 82, 0.16));
}
.hero-logo {
  z-index: 1;
  top: 25%;
  right: auto;
  left: 4%;
  width: 58%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.16;
  transform: rotate(-4deg);
}
.hero-logo img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  filter: saturate(0.72);
}

@media (max-width: 900px) {
  .hero-media {
    width: min(100%, 430px);
    min-height: 320px;
    margin-inline: auto;
  }
  .hero-photo {
    right: 5%;
    bottom: -34px;
    width: 55%;
  }
  .hero-photo img {
    height: 350px;
  }
  .hero-logo {
    top: 25%;
    left: 5%;
    width: 56%;
  }
  .hero-logo img {
    height: 135px;
  }
}

@media (max-width: 600px) {
  .hero-media {
    height: 286px;
    min-height: 286px;
    margin-top: 2px;
  }
  .hero-media::before {
    inset: 6% 4% 1% 4%;
  }
  .hero-photo {
    right: 8%;
    bottom: -28px;
    width: 49%;
  }
  .hero-photo img {
    height: 298px;
  }
  .hero-logo {
    top: 25%;
    left: 7%;
    width: 54%;
  }
  .hero-logo img {
    height: 108px;
  }
}

@media (max-width: 360px) {
  .hero-media {
    height: 264px;
    min-height: 264px;
  }
  .hero-photo img {
    height: 274px;
  }
  .hero-logo img {
    height: 96px;
  }
}
