:root {
  --green: hsl(130, 100%, 35%);
  --green-dark: #006f13;
  --title-green: #0a5d18;
  --text: #02ad1f;
  --muted: #8f8f8f;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--white);
  color: var(--text);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.loading-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  z-index: 9999;
  opacity: 1;
  transition: opacity 400ms ease;
  pointer-events: auto;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.loading-screen__logo {
  width: 120px;
  height: auto;
  animation: loadingPulse 2s ease-in-out infinite;
}

.loading-screen__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes loadingPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

img {
  display: block;
  max-width: 100%;
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  transition:
    opacity 680ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-item.reveal-from-left {
  transform: translate3d(-56px, 0, 0);
}

.reveal-item.reveal-from-right {
  transform: translate3d(56px, 0, 0);
}

.reveal-item.reveal-zoom {
  transform: translate3d(0, 30px, 0) scale(0.96);
}

.reveal-item.reveal-from-left.is-visible,
.reveal-item.reveal-from-right.is-visible,
.reveal-item.reveal-zoom.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-item.reveal-from-left,
  .reveal-item.reveal-from-right,
  .reveal-item.reveal-zoom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

/* Programa +60 */
.program-60 { background: #f7f9f5; padding: 64px 20px; color: #17472b; }
.program-60__inner { width: min(1180px, 100%); margin: 0 auto; }
.program-60__hero { display: flex; align-items: center; justify-content: center; gap: 58px; max-width: 820px; margin: 0 auto 48px; }
.program-60__brand { flex: 0 0 245px; color: #006d28; line-height: .8; }
.program-60__brand > span { display: inline-block; margin-left: 10px; padding: 6px 18px; border-radius: 4px; background: #4bae2d; color: #fff; font-size: 14px; font-weight: 800; letter-spacing: 1.5px; }
.program-60__brand strong { display: block; font-size: 96px; letter-spacing: -8px; }
.program-60__brand em { color: #54b52f; font-size: 36px; font-style: normal; vertical-align: top; }
.program-60__intro { max-width: 440px; }
.program-60__intro h2 { margin: 0 0 16px; color: #005b28; font-size: clamp(25px, 3vw, 38px); line-height: 1.08; }
.program-60__intro h2 span, .program-60__steps h3 span { color: #48ad2b; }
.program-60__intro p { margin: 0; color: #36443b; font-size: 14px; line-height: 1.55; }
.program-60__panel { display: flex; align-items: stretch; margin-top: 14px; border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: 0 8px 28px rgba(37,75,48,.05); overflow: hidden; }
.program-60__panel > h3 { flex: 0 0 220px; margin: 0; padding: 30px 26px; color: #17472b; font-size: 20px; line-height: 1.25; }
.program-60__panel > h3::after { content: ""; display: block; width: 35px; height: 3px; margin-top: 12px; background: #50b431; }
.program-60__items { display: grid; flex: 1; grid-template-columns: repeat(6, 1fr); }
.program-60__items article { display: flex; min-width: 0; padding: 32px 20px 24px; flex-direction: column; align-items: flex-start; justify-content: flex-start; border-left: 1px solid #e5ebe4; text-align: left; }
.program-60__icon { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; color: #50ad3e; font-size: 31px; line-height: 1; filter: grayscale(1) sepia(1) saturate(5) hue-rotate(65deg); }
.program-60__items p { margin: 10px 0 0; color: #203d2d; font-size: 14px; font-weight: 700; line-height: 1.4; }
.program-60__steps ol { display: grid; flex: 1; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.program-60__steps li { display: flex; gap: 12px; padding: 25px 18px; border-left: 1px solid #e5ebe4; }
.program-60__steps li > b { display: grid; flex: 0 0 29px; height: 29px; place-items: center; border-radius: 50%; background: #00662d; color: #fff; }
.program-60__steps strong { color: #147436; font-size: 15px; line-height: 1.25; }
.program-60__steps p { margin: 9px 0 0; color: #34463b; font-size: 13px; line-height: 1.5; }
.program-60__cta-box { display: grid; grid-template-columns: 62px 1fr auto; align-items: center; gap: 20px; max-width: 760px; margin: 48px auto 0; padding: 20px 26px; border-radius: 18px; background: #005b2d; color: #fff; }
.program-60__calendar { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; background: #54b52f; font-size: 31px; }
.program-60__cta-box h3 { margin: 0; font-size: 20px; line-height: 1.05; }
.program-60__cta-box h3 span { color: #65d03c; }
.program-60__cta-box p { max-width: 440px; margin: 8px 0 0; font-size: 13px; line-height: 1.5; }
.program-60__cta-box a { padding: 15px 20px; border-radius: 6px; background: #58bd2e; color: #fff; font-size: 14px; font-weight: 800; text-align: center; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.program-60__cta-box a:hover { transform: translateY(-2px); background: #68cb3c; }

@media (max-width: 900px) {
  .program-60__panel { display: block; }
  .program-60__panel > h3 { padding-bottom: 18px; }
  .program-60__items { grid-template-columns: repeat(3, 1fr); }
  .program-60__items article { border-top: 1px solid #e5ebe4; }
  .program-60__steps ol { grid-template-columns: repeat(2, 1fr); }
  .program-60__steps li { border-top: 1px solid #e5ebe4; }
}

@media (max-width: 620px) {
  .program-60 { padding: 46px 18px; }
  .program-60__hero { flex-direction: column; gap: 26px; margin-bottom: 34px; text-align: center; }
  .program-60__brand { flex-basis: auto; }
  .program-60__brand strong { font-size: 82px; }
  .program-60__intro p { font-size: 13px; }
  .program-60__items { grid-template-columns: repeat(2, 1fr); }
  .program-60__steps ol { grid-template-columns: 1fr; }
  .program-60__cta-box { grid-template-columns: 56px 1fr; padding: 20px; }
  .program-60__cta-box a { grid-column: 1 / -1; }
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 72px;
  background: #fff;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 72px;
  border-bottom: 1px solid rgba(0, 111, 19, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 24px rgba(12, 75, 29, 0.08);
  backdrop-filter: blur(12px);
}

.site-nav {
  display: grid;
  grid-template-columns: 145px 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
}

.site-nav__logo { display: block; width: 112px; }
.site-nav__logo img { width: 100%; height: auto; }
.site-nav__links { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.2vw, 32px); }
.site-nav__links a { position: relative; padding: 25px 0 23px; color: #17472b; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.site-nav__links a::after { position: absolute; right: 0; bottom: 17px; left: 0; height: 2px; content: ""; background: var(--green); transform: scaleX(0); transition: transform 180ms ease; }
.site-nav__links a:hover::after, .site-nav__links a:focus-visible::after { transform: scaleX(1); }
.site-nav__toggle { display: none; }
.site-nav__cta { padding: 12px 17px; border-radius: 5px; background: var(--green); color: #fff; font-size: 12px; font-weight: 800; text-align: center; text-decoration: none; white-space: nowrap; transition: background 180ms ease, transform 180ms ease; }
.site-nav__cta:hover { background: var(--green-dark); transform: translateY(-1px); }
section[id], footer[id] { scroll-margin-top: 86px; }

.hero__inner {
  position: relative;
  width: min(100%, 1280px);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 31px 46px 0;
}

.hero__logo {
  position: relative;
  z-index: 3;
  display: block;
  width: 102px;
  margin: 0 auto;
}

.hero__logo img {
  width: 100%;
  height: auto;
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 528px 1fr;
  align-items: end;
  min-height: calc(100vh - 72px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  align-self: start;
  width: 430px;
  max-width: 430px;
  margin-left: 98px;
  padding-top: 40px;
  padding-bottom: 18px;
}

.hero__copy h1 {
  width: 430px;
  margin: 0 0 7px;
  color: var(--green-dark);
  background: linear-gradient(110deg, #00bd24 5%, #008b20 55%, #005f18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(40px, 4.15vw, 58px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero__mobile-inline {
  display: none;
}

.hero__copy p {
  width: 430px;
  max-width: 100%;
  margin: 0 0 23px;
  color: #3f4742;
  font-size: clamp(16px, 1.2vw, 17px);
  font-weight: 500;
  line-height: 1.08;
}

.hero__cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 228px;
  min-height: 40px;
  padding: 10px 24px 11px;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  margin-bottom: 26px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.hero__cta::before,
.services__cta::before,
.about__cta::before,
.benefits__more-button::before,
.benefit-card__button::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 0;
  content: "";
  background: var(--green-dark);
  border-radius: inherit;
  transition: width 300ms ease;
}

.hero__cta:hover::before,
.services__cta:hover::before,
.about__cta:hover::before,
.benefits__more-button:hover::before,
.benefit-card__button:hover::before {
  width: 100%;
}

.hero__cta:hover {
  transform: translateY(-1px);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 0;
  color: var(--muted);
}

.hero__trust strong {
  display: block;
  font-size: clamp(45px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.86;
  cursor: default;
  transform-style: preserve-3d;
  border-radius: 6px;
}

.hero__trust span {
  display: block;
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 500;
  line-height: 0.92;
}

.hero__visual {
  position: absolute;
  right: 58px;
  bottom: -18px;
  z-index: 1;
  width: clamp(320px, 33vw, 405px);
  pointer-events: none;
}

.hero__visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22%;
  content: "";
  background: linear-gradient(to top, #fff 2%, rgba(255, 255, 255, 0));
}

.hero__visual img {
  width: 100%;
  height: auto;
}

.services {
  position: relative;
  background: var(--green);
  color: #fff;
  --service-card-width: 150px;
  --service-card-gap: 52px;
  --service-window-width: 940px;
}

.services::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-opacity='0.13' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M36 17v12'/%3E%3Cpath d='M36 43v12'/%3E%3Cpath d='M17 36h12'/%3E%3Cpath d='M43 36h12'/%3E%3C/g%3E%3Ccircle cx='36' cy='36' r='22' fill='none' stroke='white' stroke-opacity='0.045' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 72px 72px;
  opacity: 0.55;
  pointer-events: none;
}

.services::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 181, 29, 0.96), rgba(0, 181, 29, 0.7) 28%, rgba(0, 181, 29, 0.7) 72%, rgba(0, 181, 29, 0.96)),
    linear-gradient(180deg, rgba(0, 181, 29, 0.9), rgba(0, 181, 29, 0.2) 42%, rgba(0, 181, 29, 0.84));
  pointer-events: none;
}

.services__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 24px 32px 38px;
  text-align: center;
}

.services h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(30px, 4.1vw, 38px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.services__carousel {
  position: relative;
  display: grid;
  grid-template-columns: 64px auto 64px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.services__viewport {
  position: relative;
  overflow: hidden;
  width: var(--service-window-width);
  height: 300px;
  padding: 0;
  perspective: 900px;
  touch-action: pan-y;
}

.services__track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.service-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: var(--service-card-width);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 218px;
  padding: 16px 15px 14px;
  border-radius: 4px;
  background: #fff;
  color: #111;
  text-align: center;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.72);
  transform-origin: center center;
  will-change: transform, opacity;
  pointer-events: none;
}

.service-card.is-active {
  opacity: 1;
}

.service-card__icon {
  display: block;
  width: 25px;
  height: 25px;
  margin-bottom: 3px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.service-card__icon--posture {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3c2.2 2.6 2.2 5.2 0 7.8-2.2 2.8-2.2 5.6 0 8.2' stroke='%23333333' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M7 7.5h10M7 13h10M8 18.5h8' stroke='%23333333' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-card__icon--physio {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3v18M4 12h16' stroke='%23333333' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M7 7c2-1.8 8-1.8 10 0M7 17c2 1.8 8 1.8 10 0' stroke='%23333333' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-card__icon--pilates {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='4.8' r='2' stroke='%23333333' stroke-width='1.8'/%3E%3Cpath d='M12 8v4.2' stroke='%23333333' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M5 11.5c3.6-2.2 10.4-2.2 14 0' stroke='%23333333' stroke-width='1.9' stroke-linecap='round'/%3E%3Cpath d='M12 12.5 7 19M12 12.5l5 6.5' stroke='%23333333' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.5 20h15' stroke='%23333333' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-card__icon--needle {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 4 6 16M15 4l5 5M4 18l2-2 2 2-2 2-2-2Z' stroke='%23333333' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 12l4 4' stroke='%23333333' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-card__icon--leaf {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4c-7.2.4-12 4.2-12 10.5 0 3.2 2.2 5.5 5.2 5.5C18 20 20.8 14.4 20 4Z' stroke='%23333333' stroke-width='1.9' stroke-linejoin='round'/%3E%3Cpath d='M4 20c3.5-5.2 7.2-8.3 12-10' stroke='%23333333' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-card__icon--ear {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 9a5 5 0 0 1 10 0c0 5-5 5.5-5 9a2.5 2.5 0 0 1-5 0' stroke='%23333333' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M11 9a2 2 0 1 1 4 0c0 2.5-3 2.8-3 5' stroke='%23333333' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-card__icon--massage {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='6' r='2.2' stroke='%23333333' stroke-width='1.8'/%3E%3Cpath d='M5 12h8c2.8 0 5 2.2 5 5v1H8a5 5 0 0 1-5-5v-1h2Z' stroke='%23333333' stroke-width='1.9' stroke-linejoin='round'/%3E%3Cpath d='M14 9c2.5.4 4.4 1.9 5.5 4' stroke='%23333333' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-card h3 {
  margin: 2px 0 10px;
  color: #2d2d2d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.service-card p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.08;
}

.service-card__list {
  margin-bottom: 8px;
  color: var(--green);
}

.services__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.services__arrow span {
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.services__arrow--prev span {
  border-right: 16px solid #fff;
}

.services__arrow--next span {
  border-left: 16px solid #fff;
}

.services__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.services__cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-width: 240px;
  min-height: 42px;
  padding: 10px 32px 11px;
  border-radius: 4px;
  background: #fff;
  color: var(--green);
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.services__cta::before,
.about__cta::before {
  background: #e5ffe9;
}

.services__cta:hover {
  transform: translateY(-1px);
}

.about {
  background: var(--green);
  color: #fff;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 350px);
  gap: 70px;
  align-items: center;
  width: min(100%, 1020px);
  margin: 0 auto;
  padding: 56px 64px 50px;
}

.about__copy {
  max-width: 420px;
}

.about h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
}

.about__text {
  max-height: 92px;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.08;
  transition: max-height 360ms ease;
}

.about__text.is-expanded {
  max-height: 520px;
}

.about__text p {
  margin: 0 0 8px;
}

.about__more {
  display: inline;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.08;
  text-align: left;
}

.about__more:hover {
  text-decoration: underline;
}

.about__cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 250px;
  min-height: 44px;
  padding: 11px 32px 12px;
  border-radius: 4px;
  background: #fff;
  color: var(--green);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.about__cta:hover {
  transform: translateY(-1px);
}

.about__photo {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.76;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.benefits {
  background: #fff;
  color: #2f2f2f;
}

.benefits__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 54px 44px 60px;
}

.benefits__header {
  margin-bottom: 34px;
  text-align: center;
}

.benefits h2 {
  margin: 0;
  color: var(--title-green);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.benefits__header p {
  margin: 4px 0 0;
  color: #2b2b2b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  min-height: 290px;
  padding: 14px 14px 12px;
  background: #fff;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.28);
}

.benefit-card__title {
  min-height: 30px;
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.benefit-card__title--interlife {
  color: #ef4b12;
}

.benefit-card__title--interlife span:last-child {
  color: #1557a8;
}

.benefit-card__title--gympass {
  color: #ff1f67;
}

.benefit-card__title--totalpass {
  color: #008d62;
}

.benefit-card__title--classpass {
  color: #1a28ff;
}

.benefit-card p,
.benefit-card li {
  margin: 0;
  color: #333;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.08;
}

.benefit-card ul {
  margin: 0 0 0 12px;
  padding: 0;
  list-style-position: outside;
}

.benefit-card li::marker {
  color: #1836ff;
}

.benefit-card__button {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  margin-top: auto;
  padding: 9px 16px 10px;
  border-radius: 3px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.benefit-card__button:hover {
  transform: translateY(-1px);
}

.benefits__more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.benefits__more-button {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 214px;
  min-height: 42px;
  padding: 11px 28px 12px;
  border: 0;
  border-radius: 4px;
  background: var(--green-dark);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: background-color 180ms ease, transform 180ms ease;
}

.benefits__more-button:hover {
  transform: translateY(-1px);
}

.insurance-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.insurance-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.insurance-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
}

.insurance-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: min(760px, calc(100vh - 48px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.insurance-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #eef8f0;
  cursor: pointer;
}

.insurance-modal__close span,
.insurance-modal__close span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-dark);
  content: "";
}

.insurance-modal__close span {
  transform: rotate(45deg);
}

.insurance-modal__close span::after {
  transform: rotate(90deg);
}

.insurance-modal__header {
  padding: 34px 34px 18px;
}

.insurance-modal__header h2 {
  margin: 0;
  padding-right: 44px;
  color: var(--title-green);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.insurance-modal__header p {
  margin: 10px 0 0;
  max-width: 470px;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.insurance-modal__search {
  display: grid;
  gap: 8px;
  padding: 0 34px 18px;
  color: #222;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.insurance-modal__search input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 2px solid #d8eadb;
  border-radius: 4px;
  color: #222;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  outline: none;
}

.insurance-modal__search input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 181, 29, 0.14);
}

.insurance-modal__results {
  overflow: auto;
  display: grid;
  gap: 10px;
  padding: 0 34px 34px;
}

.insurance-modal__result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid #e4efe6;
  border-radius: 6px;
  background: #f8fff9;
}

.insurance-modal__result strong {
  color: #222;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.insurance-modal__result a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 9px 14px 10px;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.insurance-modal__empty {
  margin: 0;
  padding: 18px;
  border-radius: 6px;
  background: #f6f6f6;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.28;
}

.testimonials {
  overflow: hidden;
  background: var(--green);
  color: #fff;
}

.testimonials__track {
  display: flex;
  width: max-content;
  animation: testimonials-marquee 34s linear infinite;
  will-change: transform;
}

.testimonials:hover .testimonials__track {
  animation-play-state: paused;
}

.testimonials__group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 18px 22px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 54px 250px;
  gap: 12px;
  align-items: center;
  min-width: 316px;
}

.testimonial-card img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: #333;
}

.testimonial-card h3 {
  display: inline;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.testimonial-card h3 a {
  color: inherit;
  text-decoration: none;
}

.testimonial-card h3 a:hover {
  text-decoration: underline;
}

.testimonial-card__stars {
  display: inline-block;
  margin-left: 8px;
  color: #ff9d00;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1;
  vertical-align: 1px;
}

.testimonial-card p {
  margin: 3px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.08;
}

@keyframes testimonials-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.faq {
  background: #fff;
  color: #2f2f2f;
}

.faq__inner {
  width: min(100%, 650px);
  margin: 0 auto;
  padding: 64px 28px 72px;
}

.faq__header {
  margin-bottom: 26px;
  text-align: center;
}

.faq h2 {
  margin: 0;
  color: var(--title-green);
  font-size: clamp(31px, 4.1vw, 42px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.faq__header p {
  margin: 10px 0 0;
  color: #333;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.faq__list {
  display: grid;
  gap: 13px;
}

.faq__item {
  border-radius: 4px;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  padding: 10px 14px 11px 18px;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: left;
}

.faq__question span {
  width: 0;
  height: 0;
  margin-left: 14px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #fff;
  transition: transform 180ms ease;
}

.faq__question[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  border-radius: 0 0 4px 4px;
  background: #f4fff6;
  transition: max-height 260ms ease;
}

.faq__item.is-open .faq__answer {
  max-height: 180px;
}

.faq__answer p {
  margin: 0;
  padding: 10px 15px 12px;
  color: #303030;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.footer {
  background: var(--green);
  color: #fff;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer__main {
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(300px, 1fr);
  gap: 70px;
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 58px 54px 68px;
}

.footer__brand {
  max-width: 310px;
}

.footer__logo {
  display: block;
  width: 205px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.34);
}

.footer__logo img {
  width: 100%;
}

.footer__brand p {
  margin: 10px 0 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.footer__content {
  padding-top: 2px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 440px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.footer__contact {
  display: grid;
  gap: 18px;
  margin-top: 32px;
  font-style: normal;
}

.footer__contact-link {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: start;
  width: fit-content;
  max-width: 520px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.footer__contact-link > span:first-child {
  line-height: 1;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 68px;
  padding: 13px max(54px, calc((100vw - 1040px) / 2 + 54px));
  background: #006c12;
}

.footer__bottom p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.12;
}

.footer__credit {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #10b844;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  animation: whatsapp-pulse 3.4s ease-in-out infinite;
  transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 260ms ease, filter 260ms ease,
    opacity 260ms ease, visibility 260ms ease;
  will-change: transform;
  transform: translateY(0);
}

.whatsapp-float:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 14px rgba(16, 255, 92, 0.78),
    0 0 34px rgba(16, 255, 92, 0.58),
    0 0 68px rgba(16, 255, 92, 0.36),
    0 10px 24px rgba(0, 0, 0, 0.24);
}

.whatsapp-float.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(120px);
  animation: none;
  pointer-events: none;
}

.whatsapp-float.is-hidden::before {
  animation: none;
}

.whatsapp-float::before {
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  content: "";
  border: 2px solid rgba(16, 184, 68, 0.32);
  animation: whatsapp-ring 3.4s ease-in-out infinite;
}

.whatsapp-float span {
  display: block;
  width: 31px;
  height: 31px;
  background: #fff;
  mask: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.1 3.2C9.2 3.2 3.7 8.7 3.7 15.5c0 2.3.6 4.4 1.7 6.3L3.2 29l7.4-2c1.7.9 3.6 1.4 5.6 1.4 6.8 0 12.4-5.5 12.4-12.3S23 3.2 16.1 3.2Zm0 22.9c-1.8 0-3.5-.5-5-1.4l-.4-.2-4.4 1.2 1.2-4.2-.3-.4c-1-1.6-1.5-3.5-1.5-5.4 0-5.6 4.6-10.2 10.3-10.2 5.7 0 10.3 4.6 10.3 10.2S21.8 26.1 16.1 26.1Zm5.9-7.6c-.3-.2-1.9-1-2.2-1.1-.3-.1-.5-.2-.8.2-.2.3-.9 1.1-1.1 1.3-.2.2-.4.2-.7.1-.3-.2-1.3-.5-2.5-1.5-.9-.8-1.5-1.8-1.7-2.1-.2-.3 0-.5.1-.7l.5-.6c.2-.2.2-.3.3-.5.1-.2.1-.4 0-.6-.1-.2-.8-1.9-1.1-2.6-.3-.7-.6-.6-.8-.6h-.7c-.2 0-.6.1-.9.4-.3.3-1.2 1.2-1.2 2.9s1.2 3.3 1.4 3.5c.2.2 2.4 3.7 5.9 5.2.8.4 1.5.6 2 .7.8.3 1.6.2 2.2.1.7-.1 1.9-.8 2.2-1.5.3-.7.3-1.4.2-1.5-.2-.1-.4-.2-.7-.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes whatsapp-ring {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.12);
  }
}

@media (max-width: 900px) {
  .site-nav { grid-template-columns: 1fr auto auto; }
  .site-nav__toggle { display: flex; width: 42px; height: 42px; padding: 10px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 0; border-radius: 5px; background: transparent; cursor: pointer; }
  .site-nav__toggle span { width: 22px; height: 2px; border-radius: 2px; background: #08672b; transition: transform 180ms ease, opacity 180ms ease; }
  .site-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .site-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav__links { position: fixed; inset: 72px 0 auto; display: flex; padding: 12px 22px 22px; flex-direction: column; align-items: stretch; gap: 0; background: rgba(255,255,255,.98); box-shadow: 0 14px 24px rgba(12,75,29,.12); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; }
  .site-nav__links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav__links a { padding: 14px 4px; border-bottom: 1px solid #e4eee6; font-size: 15px; }
  .site-nav__links a::after { display: none; }

  .hero__inner {
    padding: 28px 30px 0;
  }

  .hero__content {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 96px);
    padding-top: 24px;
  }

  .hero__copy {
    align-self: start;
    width: min(100%, 390px);
    max-width: 390px;
    margin-left: 0;
  }

  .hero__copy h1 {
    width: 100%;
  }

  .hero__visual {
    right: -18px;
    bottom: -18px;
    width: min(66vw, 380px);
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 46px 30px 52px;
  }

  .footer__content {
    padding-top: 0;
  }

  .footer__bottom {
    padding-inline: 30px;
  }
}

@media (max-width: 980px) {
  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 46px 28px 44px;
    justify-items: center;
  }

  .about__copy {
    max-width: 560px;
    text-align: center;
  }

  .about__more {
    text-align: center;
  }

  .about__cta {
    margin: 0 auto;
  }

  .about__photo {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .testimonials__track {
    animation-duration: 28s;
  }

  .testimonials__group {
    gap: 28px;
    padding: 16px 18px;
  }

  .testimonial-card {
    grid-template-columns: 48px 220px;
    min-width: 280px;
  }

  .testimonial-card img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 560px) {
  .benefits__inner {
    padding: 42px 22px 48px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 220px;
  }

  .benefits__more {
    margin-top: 26px;
  }

  .benefits__more-button {
    width: 100%;
  }

  .insurance-modal {
    padding: 12px;
  }

  .insurance-modal__dialog {
    max-height: calc(100vh - 24px);
  }

  .insurance-modal__header {
    padding: 28px 20px 16px;
  }

  .insurance-modal__search {
    padding: 0 20px 16px;
  }

  .insurance-modal__results {
    padding: 0 20px 24px;
  }

  .insurance-modal__result {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .insurance-modal__result a {
    width: 100%;
  }

  .footer__main {
    padding: 40px 22px 46px;
  }

  .footer__nav {
    gap: 3px;
  }

  .footer__contact-link {
    font-size: 15px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float span {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 760px) {
  .services {
    --service-card-width: 210px;
    --service-card-gap: 24px;
    --service-window-width: min(62vw, 250px);
  }

  .services__inner {
    width: 100%;
    max-width: 100%;
    padding: 28px 18px 36px;
  }

  .services__carousel {
    grid-template-columns: 34px var(--service-window-width) 34px;
    gap: 8px;
  }

  .services__arrow {
    display: inline-flex;
    width: 34px;
    height: 44px;
  }

  .services__arrow span {
    border-top-width: 8px;
    border-bottom-width: 8px;
  }

  .services__arrow--prev span {
    border-right-width: 12px;
  }

  .services__arrow--next span {
    border-left-width: 12px;
  }

  .services__viewport {
    width: var(--service-window-width);
    height: 280px;
    margin: 0 auto;
  }

  .services__track {
    width: 100%;
    height: 100%;
  }

  .service-card,
  .service-card.is-active {
    min-height: 220px;
  }

  .service-card {
    padding-inline: 18px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.15;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 720px;
    padding-top: 64px;
  }

  .site-header { height: 64px; }
  .site-nav { width: calc(100% - 24px); gap: 7px; }
  .site-nav__logo { width: 100px; }
  .site-nav__links { inset-block-start: 64px; }
  .site-nav__cta { padding: 10px 9px; font-size: 10px; }

  .hero__inner {
    min-height: calc(720px - 64px);
    padding: 22px 22px 0;
  }

  .hero__content {
    min-height: 620px;
    padding-top: 34px;
  }

  .hero__copy {
    max-width: 310px;
  }

  .hero__copy h1 {
    font-size: 45px;
    line-height: 1;
  }

  .hero__mobile-inline {
    display: inline;
  }

  .hero__desktop-inline {
    display: none;
  }

  .hero__copy p {
    max-width: 285px;
    font-size: 16px;
    line-height: 1.08;
  }

  .hero__cta {
    min-width: 190px;
    min-height: 36px;
    font-size: 17px;
  }

  .hero__trust {
    margin-top: 0;
  }

  .hero__visual {
    right: -118px;
    bottom: -14px;
    width: 430px;
    max-width: none;
  }
}

@media (max-width: 430px) {
  .hero__inner {
    padding-inline: 18px;
  }

  .hero__copy h1 {
    font-size: 40px;
  }

  .hero__copy p {
    max-width: 260px;
  }

  .hero__visual {
    right: -145px;
    width: 410px;
  }
}
