:root {
  --blue: #2ba9df;
  --navy: #25215f;
  --ink: #172033;
  --muted: #667085;
  --line: #dce8ef;
  --sky: #eaf8ff;
  --leaf: #287a5a;
  --leaf-soft: #e8f5ef;
  --whatsapp: #075e54;
  --whatsapp-dark: #064c43;
  --whatsapp-accent: #25d366;
  --warm: #168fd2;
  --warm-dark: #0b6fa8;
  --cream: #f2faf6;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(23, 32, 51, .13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 232, 239, .9);
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.home-page .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.home-page .site-header.is-scrolled,
.home-page .site-header.menu-open {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(220, 232, 239, .9);
  box-shadow: 0 14px 38px rgba(23, 32, 51, .1);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius);
  transition: background .24s ease, padding .24s ease;
}

.brand img {
  width: 172px;
  height: auto;
  transition: filter .24s ease;
}

.home-page .site-header:not(.is-scrolled):not(.menu-open) .brand {
  padding: 7px 9px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 16px;
  color: #29324a;
  font-weight: 700;
  font-size: .9rem;
}

.home-page .site-header:not(.is-scrolled):not(.menu-open) .nav-links {
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 1px 18px rgba(0, 0, 0, .22);
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
}

.home-page .site-header:not(.is-scrolled):not(.menu-open) .nav-links a:hover {
  color: #9ee4cf;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  display: grid;
  place-items: center;
}

.home-page .site-header:not(.is-scrolled):not(.menu-open) .menu-toggle {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .34);
  backdrop-filter: blur(12px);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span {
  margin: 5px 0;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 12px 16px 18px;
}

.mobile-panel.is-open {
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  padding: 12px 4px;
  color: var(--ink);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 850;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--warm);
  box-shadow: 0 12px 28px rgba(22, 143, 210, .24);
}

.btn-primary:hover {
  background: var(--warm-dark);
}

.btn-whatsapp {
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 12px 28px rgba(7, 94, 84, .28);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 14px 30px rgba(37, 211, 102, .24);
}

.btn-whatsapp::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.04 3C8.86 3 3.03 8.82 3.03 15.98c0 2.3.6 4.55 1.75 6.52L3 29l6.66-1.75a12.97 12.97 0 0 0 6.38 1.63h.01c7.17 0 13-5.82 13-12.98C29.05 8.82 23.21 3 16.04 3Zm0 23.69h-.01c-1.95 0-3.86-.52-5.53-1.5l-.4-.24-3.95 1.04 1.06-3.85-.26-.4a10.75 10.75 0 0 1-1.64-5.76c0-5.94 4.84-10.77 10.79-10.77 2.88 0 5.59 1.12 7.63 3.16a10.66 10.66 0 0 1 3.16 7.61c0 5.94-4.84 10.77-10.85 10.77Zm5.91-8.06c-.32-.16-1.91-.94-2.2-1.05-.3-.11-.51-.16-.73.16-.21.32-.83 1.05-1.02 1.27-.19.21-.38.24-.7.08-.32-.16-1.37-.5-2.6-1.61-.96-.85-1.61-1.9-1.8-2.22-.19-.32-.02-.5.14-.66.15-.14.32-.38.49-.57.16-.19.21-.32.32-.54.11-.21.05-.4-.03-.56-.08-.16-.73-1.76-1-2.41-.26-.63-.53-.54-.73-.55h-.62c-.21 0-.56.08-.86.4-.3.32-1.13 1.1-1.13 2.68s1.16 3.11 1.32 3.33c.16.21 2.28 3.48 5.52 4.88.77.33 1.37.53 1.84.68.77.24 1.48.21 2.04.13.62-.09 1.91-.78 2.18-1.53.27-.75.27-1.39.19-1.53-.08-.13-.3-.21-.62-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-ghost {
  color: var(--navy);
  background: var(--sky);
  border-color: rgba(43, 169, 223, .2);
}

.btn-small {
  min-height: 42px;
  padding: 9px 13px;
  font-size: .92rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -170px auto;
  width: 380px;
  height: 380px;
  border: 48px solid rgba(255, 255, 255, .12);
  border-radius: 38% 62% 58% 42%;
  transform: rotate(24deg);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(18, 23, 44, .82) 0%, rgba(18, 23, 44, .64) 45%, rgba(18, 23, 44, .3) 100%),
    linear-gradient(0deg, rgba(25, 95, 71, .42), rgba(43, 169, 223, .18));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.18);
  transform-origin: center;
}

.hero-grid {
  min-height: 100svh;
  position: relative;
  z-index: 2;
  padding: 132px 0 72px;
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero .eyebrow,
.hero h1,
.hero .lead {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, .22);
}

.hero h1 {
  max-width: 13ch;
}

.hero .eyebrow::before {
  background: #79d7ba;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.45rem, 11vw, 5.7rem);
  line-height: .96;
  letter-spacing: 0;
  max-width: 10ch;
}

.page-hero h1 {
  max-width: 12ch;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.2;
}

.lead {
  color: #38455f;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 640px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  max-width: 620px;
}

.proof-item {
  padding: 13px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(23, 32, 51, .14);
  backdrop-filter: blur(14px);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 1.06rem;
}

.proof-item span {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  line-height: 1.25;
}

.hero-media {
  position: relative;
  min-height: 420px;
}

.hero-photo {
  width: 100%;
  height: min(72svh, 680px);
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 7px;
  padding: 16px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(23, 32, 51, .18);
}

.hero-card strong {
  color: var(--navy);
}

.hero-card span {
  color: var(--muted);
}

main section {
  padding: 72px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.band {
  background:
    radial-gradient(circle at 10% 0%, rgba(43, 169, 223, .12), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(40, 122, 90, .14), transparent 30%),
    var(--cream);
}

.blue-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(37, 33, 95, .97), rgba(22, 143, 210, .9) 52%, rgba(40, 122, 90, .94)),
    var(--navy);
}

.blue-band h2,
.blue-band h3,
.blue-band .eyebrow {
  color: var(--white);
}

.blue-band .eyebrow::before {
  background: #79d7ba;
}

.blue-band p,
.blue-band li {
  color: rgba(255, 255, 255, .84);
}

.insurance-note {
  display: grid;
  gap: 3px;
  width: fit-content;
  max-width: 520px;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-left: 4px solid #79d7ba;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 14px 34px rgba(23, 32, 51, .12);
  backdrop-filter: blur(14px);
}

.insurance-note strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.insurance-note span {
  color: rgba(255, 255, 255, .82);
  line-height: 1.35;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  display: grid;
  gap: 28px;
  align-items: center;
}

.service-card,
.step-card,
.package-card,
.trust-card,
.blog-card,
.video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(23, 32, 51, .07);
}

.service-card {
  display: grid;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 252, 254, .96));
  box-shadow: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 169, 223, .42);
  box-shadow: 0 14px 32px rgba(23, 32, 51, .08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  background: var(--sky);
  border-bottom: 1px solid rgba(220, 232, 239, .82);
}

.service-card-body,
.step-card,
.package-card,
.trust-card,
.blog-card,
.video-card {
  padding: 22px;
}

.service-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
}

.service-card h3 {
  margin-bottom: 0;
}

.service-card p,
.step-card p,
.package-card p,
.trust-card p,
.blog-card p {
  color: var(--muted);
}

.service-card p {
  margin-bottom: 2px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 2px;
  color: var(--navy);
  font-weight: 900;
  border-bottom: 2px solid rgba(43, 169, 223, .3);
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover {
  color: var(--blue);
  border-color: currentColor;
}

.text-link::after {
  content: "->";
  color: var(--blue);
}

.step-link {
  color: var(--blue);
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: #34405a;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.image-stack {
  display: grid;
  gap: 14px;
}

.image-stack img,
.wide-photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(234, 248, 255, .92), rgba(242, 250, 246, .95));
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
  aspect-ratio: 16 / 10;
}

.wide-photo {
  aspect-ratio: 16 / 11;
}

.steps {
  counter-reset: step;
}

.step-card {
  position: relative;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.package-card.highlight {
  border-color: rgba(43, 169, 223, .55);
  box-shadow: 0 20px 54px rgba(43, 169, 223, .15);
}

.stats-section {
  padding: 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sky), var(--white) 55%, var(--leaf-soft));
  box-shadow: var(--shadow);
}

.stat-item {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
}

.stat-item strong {
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
}

.stat-item span {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.25;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  margin-bottom: 14px;
  color: var(--leaf);
  background: var(--leaf-soft);
  border-radius: var(--radius);
  font-weight: 900;
  font-size: .8rem;
}

.quote {
  margin: 0;
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
}

.quote p {
  color: var(--white);
  font-size: clamp(1.35rem, 4vw, 2.35rem);
  line-height: 1.12;
}

.contact-panel {
  display: grid;
  gap: 22px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame,
.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sky);
}

.map-frame {
  min-height: 280px;
  border: 1px solid var(--line);
}

.map-frame iframe,
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-grid {
  display: grid;
  gap: 18px;
}

.video-card {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.video-card h3 {
  margin: 0 8px 8px;
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.blog-card {
  display: grid;
  align-content: start;
}

.contact-row {
  display: grid;
  gap: 6px;
}

.contact-row strong {
  color: var(--navy);
}

.contact-row span,
.contact-row a {
  color: var(--muted);
}

.map-box {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  border-radius: var(--radius);
  color: var(--navy);
  background:
    linear-gradient(rgba(234, 248, 255, .86), rgba(232, 245, 239, .86)),
    url("assets/img/adulto-mayor-ejercicio-gimnasio-luz-natural.jpg") center / cover;
}

.site-footer {
  padding: 38px 0 88px;
  color: rgba(255, 255, 255, .82);
  background: #171443;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-logo {
  width: 180px;
  padding: 8px;
  background: var(--white);
  border-radius: var(--radius);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .86);
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: grid;
  grid-template-columns: 1.35fr auto auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(220, 232, 239, .92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(23, 32, 51, .18);
  backdrop-filter: blur(16px);
}

.sticky-cta .btn-whatsapp {
  min-width: 130px;
}

.page-hero {
  padding: 54px 0 40px;
  background: linear-gradient(135deg, var(--sky), var(--white) 52%, var(--leaf-soft));
}

.page-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(234, 248, 255, .92), rgba(232, 245, 239, .92));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.breadcrumbs {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .92rem;
}

.breadcrumbs a {
  color: var(--navy);
  font-weight: 800;
}

.content-block {
  max-width: 760px;
}

.content-block p {
  color: var(--muted);
  font-size: 1.05rem;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .container {
    width: min(100% - 48px, var(--max));
  }

  .hero-grid,
  .page-hero-grid,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

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

  .grid-4,
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .image-stack {
    grid-template-columns: .8fr 1fr;
    align-items: end;
  }

  .footer-grid {
    grid-template-columns: 1.2fr .8fr .8fr;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle,
  .mobile-panel {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .74fr);
  }

  .sticky-cta {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 500px;
  }
}

img[src*="fisioterapia-adulto-mayor-liga"] {
  object-position: center 24%;
}

img[src*="adulto-mayor-banda-elastica"] {
  object-position: center 14%;
}

img[src*="adulto-mayor-coordinacion-pelota"] {
  object-position: center 42%;
}

img[src*="adulto-mayor-equilibrio-asistido"] {
  object-position: center 20%;
}

img[src*="adulto-mayor-ejercicio-gimnasio-luz-natural"] {
  object-position: center 12%;
}

img[src*="evaluacion-marcha-terraza"] {
  object-position: center 8%;
}

img[src*="fisioterapeuta-adulto-mayor-equipo"] {
  object-position: center 18%;
}

img[src*="adulto-mayor-fuerza-aire-libre"] {
  object-position: center 28%;
}

img[src*="entrenamiento-equilibrio-outdoor"] {
  object-position: center 42%;
}

img[src*="adulto-mayor-entrenamiento-interior"] {
  object-position: center 30%;
}

img[src*="certificaciones-fisioterapia-deporte-terapeutico"] {
  object-position: center 10%;
}

@media (max-width: 520px) {
  .brand img {
    width: 142px;
  }

  .nav-actions .desktop-only {
    display: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.8rem);
  }

  .btn {
    width: 100%;
  }

  .sticky-cta {
    grid-template-columns: 1.25fr .9fr .8fr;
  }

  .sticky-cta .btn {
    width: auto;
    min-height: 44px;
    padding-inline: 10px;
    font-size: .88rem;
  }

  .sticky-cta .btn-whatsapp {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
