:root {
  --teal: #01adb7;
  --teal-dark: #007e87;
  --teal-deep: #075a62;
  --teal-soft: #dff8f9;
  --coral: #f9a197;
  --coral-dark: #e87670;
  --coral-soft: #fff0ed;
  --ink: #14363d;
  --ink-soft: #516b70;
  --cream: #fffaf5;
  --white: #ffffff;
  --line: rgba(20, 54, 61, .12);
  --shadow-sm: 0 12px 36px rgba(10, 61, 67, .08);
  --shadow-md: 0 26px 70px rgba(10, 61, 67, .14);
  --shadow-lg: 0 42px 110px rgba(10, 61, 67, .2);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --site-width: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, summary { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--ink); background: rgba(249, 161, 151, .48); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  pointer-events: none;
}
.site-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  box-shadow: 0 0 16px rgba(1, 173, 183, .45);
}

.site-shell {
  width: min(calc(100% - 40px), var(--site-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 250, 245, .9);
  border-color: rgba(20, 54, 61, .08);
  box-shadow: 0 14px 40px rgba(10, 61, 67, .08);
  backdrop-filter: blur(18px);
}
.header-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 205px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.nav-cta) {
  position: relative;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -.01em;
  color: rgba(20, 54, 61, .78);
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -9px;
  left: 50%;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  transition: left .2s ease, right .2s ease;
}
.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after { left: 0; right: 0; }
.nav-cta {
  padding: 12px 19px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(20, 54, 61, .18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--teal-dark); box-shadow: 0 14px 30px rgba(1, 173, 183, .24); }
.nav-toggle { display: none; }

.hero-section {
  position: relative;
  min-height: 820px;
  padding: 150px 0 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(249, 161, 151, .28), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(1, 173, 183, .22), transparent 29%),
    linear-gradient(180deg, #fffaf5 0%, #fffdfa 100%);
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, .97fr);
  align-items: center;
  gap: 64px;
  padding-bottom: 76px;
}
.hero-copy { padding: 26px 0 48px; }
.local-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  color: var(--teal-deep);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(1, 173, 183, .2);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}
.local-chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(1, 173, 183, .12);
  animation: dot-pulse 2.2s ease-in-out infinite;
}
.hero-copy h1,
.section-heading h2,
.difference-copy h2,
.package-copy h2,
.local-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .99;
}
.hero-copy h1 { max-width: 700px; font-size: clamp(51px, 5.25vw, 78px); }
.hero-copy h1 em,
.section-heading h2 em,
.difference-copy h2 em,
.final-cta h2 em { color: var(--coral-dark); font-style: normal; }
.hero-lead {
  max-width: 650px;
  margin: 27px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button svg { width: 20px; height: 20px; fill: currentColor; }
.button:hover { transform: translateY(-3px); }
.button:focus-visible, .site-nav a:focus-visible, .floating-whatsapp:focus-visible, .mobile-cta-bar a:focus-visible {
  outline: 3px solid rgba(1, 173, 183, .28);
  outline-offset: 3px;
}
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--teal), #00c0ca); box-shadow: 0 18px 38px rgba(1, 173, 183, .28); }
.button-primary:hover { box-shadow: 0 23px 46px rgba(1, 173, 183, .34); }
.button-whatsapp { color: var(--ink); background: var(--white); border-color: rgba(20, 54, 61, .13); box-shadow: var(--shadow-sm); }
.button-whatsapp svg { color: #22a667; }
.button-whatsapp:hover { border-color: rgba(34, 166, 103, .34); box-shadow: 0 18px 38px rgba(34, 166, 103, .12); }
.button-light { color: var(--teal-deep); background: var(--white); box-shadow: 0 18px 44px rgba(0, 55, 60, .16); }
.button-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .08); }
.button-outline-light:hover { background: rgba(255, 255, 255, .15); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 30px; color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { display: grid; place-items: center; width: 20px; height: 20px; color: var(--white); background: var(--ink); border-radius: 50%; font-size: 11px; font-style: normal; }

.hero-visual { position: relative; min-width: 0; }
.hero-image-wrap { position: relative; max-width: 580px; margin-left: auto; }
.hero-image-wrap > img { width: 100%; filter: drop-shadow(0 30px 38px rgba(20, 54, 61, .09)); animation: hero-float 6s ease-in-out infinite; }
.hero-sticker {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(20, 54, 61, .08);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}
.hero-sticker strong { display: block; font-size: 15px; line-height: 1.15; }
.hero-sticker small { display: block; color: var(--ink-soft); font-size: 11px; }
.hero-sticker-top { top: 13%; left: -4%; flex-direction: column; align-items: flex-start; transform: rotate(-5deg); animation: sticker-float 4.8s ease-in-out infinite; }
.hero-sticker-top strong { color: var(--coral-dark); font-size: 21px; }
.hero-sticker-bottom { right: -4%; bottom: 14%; transform: rotate(4deg); animation: sticker-float 5.5s .6s ease-in-out infinite; }
.hero-sticker-bottom span { display: grid; place-items: center; width: 38px; height: 38px; color: var(--teal-dark); background: var(--teal-soft); border-radius: 13px; font-size: 18px; }
.hero-bubble { position: absolute; border: 5px solid rgba(255, 255, 255, .72); border-radius: 50%; box-shadow: inset 0 0 0 2px rgba(1, 173, 183, .1); }
.bubble-one { top: 5%; right: 14%; width: 46px; height: 46px; animation: bubble-float 5s ease-in-out infinite; }
.bubble-two { bottom: 21%; left: 1%; width: 28px; height: 28px; animation: bubble-float 4s .8s ease-in-out infinite; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { top: 86px; right: -120px; width: 380px; height: 380px; border: 70px solid rgba(1, 173, 183, .055); }
.hero-orb-two { bottom: 90px; left: -140px; width: 300px; height: 300px; border: 58px solid rgba(249, 161, 151, .075); }
.hero-paws { position: absolute; top: 22%; left: 47%; color: rgba(1, 173, 183, .08); transform: rotate(18deg); }
.hero-paws span { position: absolute; font-size: 25px; }
.hero-paws span:nth-child(1) { left: 0; top: 14px; }.hero-paws span:nth-child(2) { left: 34px; top: 0; }.hero-paws span:nth-child(3) { left: 67px; top: 15px; }
.hero-paws i { position: absolute; top: 35px; left: 24px; width: 54px; height: 46px; background: currentColor; border-radius: 52% 52% 44% 44%; }

.hero-marquee { position: relative; z-index: 5; width: 104%; margin-left: -2%; overflow: hidden; color: var(--white); background: var(--ink); transform: rotate(-1.2deg); box-shadow: 0 15px 40px rgba(20, 54, 61, .13); }
.marquee-track { display: flex; align-items: center; width: max-content; padding: 17px 0; animation: marquee 28s linear infinite; }
.marquee-track span { padding: 0 26px; font-size: 14px; font-weight: 850; letter-spacing: .03em; white-space: nowrap; }
.marquee-track i { color: var(--coral); font-style: normal; }

.section { padding: 120px 0; }
.eyebrow { display: inline-block; margin-bottom: 16px; color: var(--teal-dark); font-size: 12px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow-light { color: rgba(255, 255, 255, .78); }
.section-heading { display: grid; grid-template-columns: 1.22fr .78fr; align-items: end; gap: 72px; margin-bottom: 48px; }
.section-heading h2, .difference-copy h2, .local-copy h2, .faq-intro h2 { font-size: clamp(40px, 4vw, 61px); }
.section-heading p { margin: 0 0 5px; color: var(--ink-soft); font-size: 17px; }
.section-heading.centered { display: block; max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-heading.centered p { max-width: 620px; margin: 20px auto 0; }

.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.service-card {
  position: relative;
  display: flex;
  grid-column: span 4;
  min-height: 390px;
  flex-direction: column;
  padding: 28px;
  background: var(--cream);
  border: 1px solid rgba(20, 54, 61, .08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:nth-child(4) { grid-column: 3 / span 4; }
.service-card:nth-child(5) { grid-column: 7 / span 4; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(1, 173, 183, .25); box-shadow: var(--shadow-md); }
.service-card-featured { color: var(--white); background: linear-gradient(145deg, var(--teal-deep), var(--teal)); border-color: transparent; box-shadow: 0 24px 55px rgba(1, 126, 135, .22); }
.service-card-featured::after { content: ""; position: absolute; right: -50px; bottom: -70px; width: 190px; height: 190px; border: 30px solid rgba(255, 255, 255, .1); border-radius: 50%; pointer-events: none; }
.service-card-coral { background: linear-gradient(145deg, #fff8f5, var(--coral-soft)); border-color: rgba(232, 118, 112, .18); }
.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 30px;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid rgba(20, 54, 61, .07);
  border-radius: 19px;
  box-shadow: var(--shadow-sm);
}
.service-icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.service-card-featured .service-icon { color: var(--teal-deep); border-color: rgba(255,255,255,.35); }
.service-card-coral .service-icon { color: var(--coral-dark); }
.service-index { position: absolute; top: 28px; right: 28px; color: rgba(20, 54, 61, .18); font-size: 34px; font-weight: 900; letter-spacing: -.05em; }
.service-card-featured .service-index { color: rgba(255, 255, 255, .24); }
.service-card h3 { position: relative; z-index: 1; margin: 0 0 13px; font-size: 25px; letter-spacing: -.035em; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--ink-soft); }
.service-card-featured p { color: rgba(255, 255, 255, .78); }
.service-card ul { position: relative; z-index: 1; display: grid; gap: 7px; margin: 17px 0 0; padding: 0; list-style: none; color: rgba(255, 255, 255, .88); font-size: 13px; }
.service-card li::before { content: "✓"; margin-right: 8px; color: #baf7e2; font-weight: 900; }
.service-card a { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(20, 54, 61, .1); font-size: 14px; font-weight: 850; }
.service-card-featured a { border-top-color: rgba(255, 255, 255, .18); }
.service-card a span { transition: transform .2s ease; }
.service-card a:hover span { transform: translateX(5px); }


/* PetFunny OS v2.1.1 · Ecossistema público sem alterar a linguagem visual original */
.site-nav > a[aria-current="page"]::after { left: 0; right: 0; }
.ecosystem-showcase {
  background:
    radial-gradient(circle at 90% 18%, rgba(1, 173, 183, .12), transparent 25%),
    radial-gradient(circle at 8% 82%, rgba(249, 161, 151, .16), transparent 28%),
    linear-gradient(180deg, #fffdfb, var(--cream));
}
.care-journey {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 42px;
  margin-bottom: 24px;
  padding: 38px 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .16), transparent 24%),
    linear-gradient(135deg, var(--teal-deep), var(--teal));
  border-radius: 34px;
  box-shadow: 0 28px 74px rgba(1, 126, 135, .2);
  overflow: hidden;
}
.care-journey-copy { position: relative; z-index: 1; }
.care-journey-copy .mini-label { color: rgba(255,255,255,.72); }
.care-journey-copy strong { display: block; font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif; font-size: clamp(30px, 3.1vw, 45px); line-height: 1.03; letter-spacing: -.045em; }
.care-journey-copy p { max-width: 520px; margin: 18px 0 0; color: rgba(255,255,255,.78); }
.care-journey-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 10px; }
.care-journey-steps span { display: grid; min-height: 118px; place-items: center; align-content: center; gap: 9px; padding: 14px 10px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 22px; backdrop-filter: blur(10px); }
.care-journey-steps i { display: grid; width: 48px; height: 48px; place-items: center; background: rgba(255,255,255,.14); border-radius: 15px; font-size: 24px; font-style: normal; }
.care-journey-steps small { color: rgba(255,255,255,.88); font-size: 11px; font-weight: 850; text-align: center; }
.care-journey-steps b { color: rgba(255,255,255,.52); font-size: 20px; }
.ecosystem-service-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 20px; contain: layout paint; }
.ecosystem-card {
  --ecosystem-tone: var(--teal);
  --ecosystem-soft: var(--teal-soft);
  display: flex;
  grid-column: span 3;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(20,54,61,.09);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ecosystem-card:hover { transform: translateY(-7px); border-color: rgba(1,173,183,.25); box-shadow: var(--shadow-md); }
.ecosystem-card-core { grid-column: span 6; color: var(--white); background: linear-gradient(145deg, var(--ink), var(--teal-deep)); border-color: transparent; }
.ecosystem-card:nth-child(4) { grid-column: 4 / span 3; }
.ecosystem-card:nth-child(5) { grid-column: 7 / span 3; }
.ecosystem-card-coral { --ecosystem-tone: var(--coral-dark); --ecosystem-soft: var(--coral-soft); }
.ecosystem-card-green { --ecosystem-tone: #268a63; --ecosystem-soft: #e9f7f0; }
.ecosystem-card-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 25px; }
.ecosystem-card-top small { color: var(--ink-soft); font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.ecosystem-card-core .ecosystem-card-top small { color: rgba(255,255,255,.66); }
.ecosystem-card-icon { display: grid; width: 56px; height: 56px; place-items: center; background: var(--ecosystem-soft); border-radius: 18px; font-size: 25px; box-shadow: var(--shadow-sm); }
.ecosystem-card-core .ecosystem-card-icon { background: rgba(255,255,255,.14); }
.ecosystem-card h3 { margin: 0 0 12px; font-size: 25px; letter-spacing: -.035em; }
.ecosystem-card p { margin: 0; color: var(--ink-soft); }
.ecosystem-card-core p { max-width: 610px; color: rgba(255,255,255,.76); }
.ecosystem-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.ecosystem-card li { padding: 7px 10px; color: rgba(255,255,255,.84); background: rgba(255,255,255,.1); border-radius: 999px; font-size: 11px; font-weight: 750; }
.ecosystem-card a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 23px; color: var(--ecosystem-tone); border-top: 1px solid rgba(20,54,61,.1); font-size: 13px; font-weight: 900; }
.ecosystem-card-core a { color: var(--white); border-top-color: rgba(255,255,255,.16); }
.ecosystem-card a span { transition: transform .2s ease; }
.ecosystem-card a:hover span { transform: translateX(5px); }
.ecosystem-note { display: grid; grid-template-columns: 48px minmax(0,1fr) auto; align-items: center; gap: 18px; margin-top: 22px; padding: 20px 22px; background: rgba(255,255,255,.78); border: 1px solid rgba(20,54,61,.09); border-radius: 22px; box-shadow: var(--shadow-sm); }
.ecosystem-note > span { display: grid; width: 48px; height: 48px; place-items: center; color: var(--coral-dark); background: var(--coral-soft); border-radius: 15px; font-size: 22px; }
.ecosystem-note p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.ecosystem-note strong { color: var(--ink); }
.ecosystem-note a { padding: 11px 15px; color: var(--teal-dark); background: var(--teal-soft); border-radius: 999px; font-size: 12px; font-weight: 900; white-space: nowrap; }

/* Performance: renderização progressiva e contenção dos blocos pesados abaixo da dobra. */
.ecosystem-showcase, .difference-section, .process-section, .packages-section, .local-section, .faq-section, .final-cta-section { content-visibility: auto; contain-intrinsic-size: 720px; }
.services-grid, .ecosystem-service-grid, .process-grid, .benefit-list { contain: layout paint; }
body.is-paused .marquee-track { animation-play-state: paused; }

.difference-section { background: linear-gradient(180deg, var(--cream), #fff5ef); }
.difference-grid { display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 88px; }
.difference-visual { position: relative; min-height: 570px; }
.difference-main-card {
  position: absolute;
  inset: 30px 60px 90px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, .18), transparent 25%),
    linear-gradient(150deg, var(--coral-dark), var(--coral));
  border-radius: 52px;
  box-shadow: 0 34px 80px rgba(232, 118, 112, .24);
  overflow: hidden;
}
.difference-main-card::before { content: "♥"; position: absolute; top: 45px; right: 48px; color: rgba(255, 255, 255, .22); font-size: 120px; line-height: 1; transform: rotate(12deg); }
.mini-label { position: relative; z-index: 1; margin-bottom: 18px; color: rgba(255, 255, 255, .78); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.difference-main-card strong { position: relative; z-index: 1; max-width: 430px; font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif; font-size: clamp(31px, 3.2vw, 46px); line-height: 1.05; letter-spacing: -.045em; }
.care-meter { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; margin-top: 28px; }
.care-meter span { height: 7px; background: rgba(255, 255, 255, .9); border-radius: 999px; }
.care-meter span:nth-child(5) { background: rgba(255, 255, 255, .38); }
.difference-float-card { position: absolute; right: 0; bottom: 35px; display: flex; align-items: center; gap: 15px; width: min(310px, 73%); padding: 20px; background: var(--white); border: 1px solid rgba(20, 54, 61, .08); border-radius: 22px; box-shadow: var(--shadow-md); }
.heart-mark { display: grid; place-items: center; flex: 0 0 auto; width: 52px; height: 52px; color: var(--coral-dark); background: var(--coral-soft); border-radius: 16px; font-size: 24px; }
.difference-float-card strong, .difference-float-card small { display: block; }
.difference-float-card small { margin-top: 3px; color: var(--ink-soft); line-height: 1.35; }
.difference-decoration { position: absolute; top: 0; right: 0; color: rgba(1, 173, 183, .12); font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, sans-serif; font-size: 75px; font-weight: 900; line-height: .68; letter-spacing: -.1em; }
.difference-copy > p { margin: 24px 0 34px; color: var(--ink-soft); font-size: 17px; }
.benefit-list { display: grid; gap: 8px; }
.benefit-list article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 21px 0; border-top: 1px solid var(--line); }
.benefit-list article:last-child { border-bottom: 1px solid var(--line); }
.benefit-list article > span { display: grid; place-items: center; align-self: start; width: 42px; height: 42px; color: var(--teal-dark); background: var(--teal-soft); border-radius: 14px; font-size: 12px; font-weight: 900; }
.benefit-list h3 { margin: 0 0 5px; font-size: 18px; }
.benefit-list p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 22px; }
.process-card { position: relative; min-height: 290px; padding: 30px; background: var(--cream); border: 1px solid rgba(20, 54, 61, .08); border-radius: var(--radius-md); text-align: center; }
.process-number { position: absolute; top: 21px; left: 23px; color: rgba(20, 54, 61, .18); font-size: 14px; font-weight: 900; }
.process-icon { display: grid; place-items: center; width: 76px; height: 76px; margin: 18px auto 26px; background: var(--white); border-radius: 24px; box-shadow: var(--shadow-sm); font-size: 34px; transform: rotate(-3deg); }
.process-card:nth-of-type(2) .process-icon { transform: rotate(4deg); }
.process-card h3 { margin: 0 0 11px; font-size: 21px; letter-spacing: -.025em; }
.process-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.process-arrow { display: grid; place-items: center; width: 42px; height: 42px; color: var(--teal-dark); background: var(--teal-soft); border-radius: 50%; font-weight: 900; }
.process-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 40px; }
.process-cta small { color: var(--ink-soft); }
.process-cta small a { color: var(--teal-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.packages-section { padding-top: 50px; background: var(--white); }
.package-banner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; min-height: 480px; padding: 62px 68px; color: var(--white); background: linear-gradient(135deg, #065b63 0%, #0199a3 55%, #01b8c2 100%); border-radius: 48px; box-shadow: 0 36px 90px rgba(1, 126, 135, .25); overflow: hidden; }
.package-banner::before { content: ""; position: absolute; top: -100px; left: 37%; width: 270px; height: 270px; border: 50px solid rgba(255, 255, 255, .06); border-radius: 50%; }
.package-copy { position: relative; z-index: 2; }
.package-copy h2 { max-width: 720px; font-size: clamp(41px, 4vw, 62px); }
.package-copy p { max-width: 650px; margin: 22px 0 0; color: rgba(255, 255, 255, .78); font-size: 16px; }
.package-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.text-link-light { color: var(--white); font-size: 14px; font-weight: 850; }
.package-orbit { position: relative; min-height: 350px; }
.orbit-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-ring-one { width: 330px; height: 330px; animation: orbit 18s linear infinite; }
.orbit-ring-two { width: 245px; height: 245px; border-style: dashed; animation: orbit-reverse 13s linear infinite; }
.orbit-ring-one::before, .orbit-ring-two::before { content: ""; position: absolute; top: -7px; left: 50%; width: 14px; height: 14px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 8px rgba(249, 161, 151, .13); }
.package-ticket { position: absolute; top: 50%; left: 50%; z-index: 3; width: 235px; min-height: 285px; padding: 28px; color: var(--ink); background: var(--white); border-radius: 30px; box-shadow: 0 34px 70px rgba(0, 45, 50, .25); transform: translate(-50%, -50%) rotate(6deg); }
.package-ticket::before, .package-ticket::after { content: ""; position: absolute; top: 62%; width: 25px; height: 25px; background: var(--teal); border-radius: 50%; }
.package-ticket::before { left: -13px; }.package-ticket::after { right: -13px; }
.package-ticket span, .package-ticket small { display: block; }
.package-ticket span { color: var(--teal-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.package-ticket strong { display: block; margin: 24px 0 20px; font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, sans-serif; font-size: 31px; line-height: .95; letter-spacing: -.06em; }
.package-ticket small { max-width: 150px; color: var(--ink-soft); line-height: 1.35; }
.package-ticket i { position: absolute; right: 23px; bottom: 20px; font-size: 32px; font-style: normal; }

.local-section { background: linear-gradient(180deg, var(--white), var(--teal-soft)); }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.local-copy > p { margin: 24px 0 28px; color: var(--ink-soft); font-size: 17px; }
.local-info { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
.local-info article { display: flex; align-items: center; gap: 12px; padding: 15px; background: rgba(255, 255, 255, .72); border: 1px solid rgba(20, 54, 61, .08); border-radius: 17px; }
.local-info article > span { font-size: 23px; }
.local-info strong, .local-info small { display: block; }
.local-info strong { font-size: 14px; }.local-info small { color: var(--ink-soft); font-size: 11px; }
.local-map-card { position: relative; min-height: 500px; background: #d6f4f4; border: 12px solid rgba(255, 255, 255, .75); border-radius: 42px; box-shadow: var(--shadow-lg); overflow: hidden; }
.local-map-card::before, .local-map-card::after { content: ""; position: absolute; background: rgba(255, 255, 255, .8); border-radius: 999px; transform: rotate(-24deg); }
.local-map-card::before { top: 2%; left: -16%; width: 140%; height: 44px; box-shadow: 0 103px 0 rgba(255, 255, 255, .63), 0 245px 0 rgba(255, 255, 255, .7), 0 360px 0 rgba(255, 255, 255, .55); }
.local-map-card::after { top: -10%; left: 49%; width: 40px; height: 130%; box-shadow: 140px 0 0 rgba(255, 255, 255, .46), -165px 0 0 rgba(255, 255, 255, .58); transform: rotate(19deg); }
.map-lines span { position: absolute; z-index: 1; width: 80px; height: 80px; border: 3px solid rgba(1, 173, 183, .13); border-radius: 22px; transform: rotate(14deg); }
.map-lines span:nth-child(1) { top: 65px; left: 75px; }.map-lines span:nth-child(2) { top: 120px; right: 70px; }.map-lines span:nth-child(3) { bottom: 80px; left: 65px; }.map-lines span:nth-child(4) { right: 75px; bottom: 60px; }
.map-pin { position: absolute; top: 47%; left: 50%; z-index: 4; display: grid; place-items: center; width: 108px; height: 108px; background: var(--white); border: 7px solid var(--coral); border-radius: 50% 50% 50% 8px; box-shadow: 0 24px 48px rgba(20, 54, 61, .23); transform: translate(-50%, -50%) rotate(-45deg); }
.map-pin img { width: 78px; height: 78px; border-radius: 50%; transform: rotate(45deg); }
.pin-pulse { position: absolute; inset: -18px; z-index: -1; border: 3px solid rgba(249, 161, 151, .4); border-radius: 50%; animation: pin-pulse 2.6s ease-out infinite; }
.map-label { position: absolute; right: 26px; bottom: 25px; z-index: 5; width: 210px; padding: 18px 20px; background: rgba(255, 255, 255, .92); border: 1px solid rgba(20, 54, 61, .08); border-radius: 20px; box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.map-label strong, .map-label span, .map-label small { display: block; }
.map-label strong { color: var(--teal-dark); font-size: 17px; }.map-label span { font-weight: 800; }.map-label small { color: var(--ink-soft); }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 90px; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro p { margin: 22px 0; color: var(--ink-soft); }
.text-link { color: var(--teal-dark); font-weight: 850; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; flex: 0 0 auto; width: 34px; height: 34px; color: var(--teal-dark); background: var(--teal-soft); border-radius: 11px; transition: transform .2s ease, background .2s ease, color .2s ease; }
.faq-list details[open] summary span { color: var(--white); background: var(--teal); transform: rotate(45deg); }
.faq-list details p { max-width: 730px; margin: -7px 54px 24px 0; color: var(--ink-soft); }

.final-cta-section { padding: 0 0 70px; background: var(--white); }
.final-cta { position: relative; padding: 78px 40px; color: var(--white); background: linear-gradient(135deg, var(--coral-dark), var(--coral)); border-radius: 48px; box-shadow: 0 34px 90px rgba(232, 118, 112, .24); text-align: center; overflow: hidden; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; border: 38px solid rgba(255, 255, 255, .08); border-radius: 50%; }
.final-cta::before { top: -120px; left: -70px; width: 250px; height: 250px; }.final-cta::after { right: -90px; bottom: -130px; width: 300px; height: 300px; }
.final-cta h2 { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; font-size: clamp(42px, 5vw, 70px); }
.final-cta h2 em { color: var(--white); text-decoration: underline; text-decoration-color: rgba(255, 255, 255, .4); text-decoration-thickness: 5px; text-underline-offset: 8px; }
.final-cta p { position: relative; z-index: 2; max-width: 660px; margin: 24px auto 0; color: rgba(255, 255, 255, .82); font-size: 17px; }
.final-actions { position: relative; z-index: 2; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.final-cta-paw { position: absolute; top: 25px; right: 42px; color: rgba(255, 255, 255, .15); font-size: 96px; transform: rotate(14deg); }

.site-footer { padding: 60px 0 24px; background: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .7fr .9fr; gap: 56px; padding-bottom: 45px; }
.footer-brand img { width: 190px; height: auto; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; color: var(--ink-soft); font-size: 14px; }
.footer-column, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column strong, .footer-contact strong { margin-bottom: 7px; }
.footer-column a, .footer-contact span, .footer-contact a { color: var(--ink-soft); font-size: 14px; }
.footer-column a:hover, .footer-contact a:hover { color: var(--teal-dark); }
.admin-link { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 12px !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: var(--ink-soft); border-top: 1px solid var(--line); font-size: 12px; }

.floating-whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 80; display: flex; align-items: center; gap: 9px; min-height: 52px; padding: 13px 17px; color: var(--white); background: #22a667; border: 1px solid rgba(255, 255, 255, .35); border-radius: 999px; box-shadow: 0 16px 38px rgba(34, 166, 103, .32); font-size: 13px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease; }
.floating-whatsapp:hover { transform: translateY(-4px); box-shadow: 0 21px 46px rgba(34, 166, 103, .38); }
.floating-whatsapp svg { width: 23px; height: 23px; fill: currentColor; }
.mobile-cta-bar { display: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.services-grid .reveal:nth-child(2), .process-grid .reveal:nth-of-type(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3), .process-grid .reveal:nth-of-type(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .24s; }
.services-grid .reveal:nth-child(5) { transition-delay: .32s; }

@keyframes hero-float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(.7deg); } }
@keyframes sticker-float { 0%,100% { margin-top: 0; } 50% { margin-top: -9px; } }
@keyframes bubble-float { 0%,100% { transform: translateY(0) scale(1); opacity: .8; } 50% { transform: translateY(-18px) scale(1.08); opacity: 1; } }
@keyframes dot-pulse { 0%,100% { box-shadow: 0 0 0 5px rgba(1, 173, 183, .12); } 50% { box-shadow: 0 0 0 9px rgba(1, 173, 183, .04); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes orbit { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbit-reverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes pin-pulse { 0% { transform: scale(.7); opacity: .9; } 75%,100% { transform: scale(1.25); opacity: 0; } }

@media (max-width: 1080px) {
  .site-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1.02fr .98fr; gap: 30px; }
  .hero-copy h1 { font-size: clamp(48px, 6.3vw, 68px); }
  .care-journey { grid-template-columns: 1fr; }
  .ecosystem-card, .ecosystem-card:nth-child(4), .ecosystem-card:nth-child(5) { grid-column: span 4; }
  .ecosystem-card-core { grid-column: span 8; }
  .difference-grid { gap: 55px; }
  .package-banner { padding: 55px 45px; }
  .local-grid { gap: 45px; }
  .footer-grid { grid-template-columns: 1.2fr .6fr .7fr; }
  .footer-contact { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: center; }
  .footer-contact strong { width: 100%; }
  .admin-link { margin: 0 0 0 auto; padding: 0 0 0 18px; border: 0; border-left: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .header-shell { min-height: 78px; }
  .brand img { width: 180px; }
  .nav-toggle { display: grid; gap: 5px; width: 44px; height: 44px; place-content: center; padding: 0; color: var(--ink); background: rgba(255,255,255,.75); border: 1px solid rgba(20,54,61,.1); border-radius: 14px; cursor: pointer; }
  .nav-toggle span { display: block; width: 21px; height: 2px; background: currentColor; border-radius: 999px; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 78px 16px auto; display: grid; gap: 0; padding: 14px; background: rgba(255,250,245,.97); border: 1px solid rgba(20,54,61,.09); border-radius: 23px; box-shadow: var(--shadow-lg); backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a:not(.nav-cta) { padding: 14px 10px; border-bottom: 1px solid var(--line); }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 12px; text-align: center; }
  .hero-section { min-height: auto; padding-top: 116px; }
  .hero-grid { grid-template-columns: 1fr; gap: 15px; }
  .hero-copy { max-width: 760px; margin-inline: auto; padding-bottom: 0; text-align: center; }
  .local-chip { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 620px; margin: 0 auto; }
  .hero-image-wrap { margin: 0 auto; }
  .section { padding: 90px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card, .service-card-featured, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; }
  .care-journey { padding: 34px; }
  .ecosystem-service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .ecosystem-card, .ecosystem-card-core, .ecosystem-card:nth-child(4), .ecosystem-card:nth-child(5) { grid-column: auto; }
  .ecosystem-card-core { grid-column: 1 / -1; }
  .ecosystem-note { grid-template-columns: 48px 1fr; }
  .ecosystem-note a { grid-column: 2; justify-self: start; }
  .difference-grid, .local-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .difference-visual { max-width: 650px; width: 100%; margin-inline: auto; }
  .difference-copy { max-width: 720px; }
  .process-grid { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }
  .process-arrow { margin: -7px auto; transform: rotate(90deg); }
  .package-banner { grid-template-columns: 1fr; padding-bottom: 25px; text-align: center; }
  .package-copy p { margin-inline: auto; }
  .package-actions { justify-content: center; }
  .package-orbit { min-height: 370px; }
  .local-copy { order: 1; }.local-map-card { min-height: 450px; }
  .faq-intro { position: static; max-width: 650px; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 78px; }
  .site-shell { width: min(calc(100% - 28px), var(--site-width)); }
  .site-header.is-scrolled { background: rgba(255,250,245,.95); }
  .brand img { width: 158px; }
  .hero-section { padding-top: 105px; }
  .hero-grid { padding-bottom: 50px; }
  .hero-copy { padding-top: 14px; }
  .local-chip { font-size: 11px; }
  .hero-copy h1 { font-size: clamp(42px, 13.3vw, 60px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; justify-items: start; width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .hero-image-wrap { width: 105%; margin-left: -2.5%; }
  .hero-sticker { padding: 10px 12px; border-radius: 15px; }
  .hero-sticker-top { top: 12%; left: 1%; }.hero-sticker-top strong { font-size: 17px; }
  .hero-sticker-bottom { right: 0; bottom: 11%; }.hero-sticker-bottom span { width: 32px; height: 32px; }
  .hero-sticker-bottom strong { font-size: 12px; }
  .marquee-track { padding: 13px 0; }.marquee-track span { padding: 0 18px; font-size: 12px; }
  .section { padding: 74px 0; }
  .section-heading h2, .difference-copy h2, .local-copy h2, .faq-intro h2 { font-size: clamp(36px, 11vw, 48px); }
  .section-heading p, .difference-copy > p, .local-copy > p { font-size: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .care-journey { padding: 28px 22px; border-radius: 28px; }
  .care-journey-steps { grid-template-columns: repeat(4,1fr); gap: 7px; }
  .care-journey-steps b { display: none; }
  .care-journey-steps span { min-height: 102px; }
  .ecosystem-service-grid { grid-template-columns: 1fr; }
  .ecosystem-card, .ecosystem-card-core, .ecosystem-card:nth-child(4), .ecosystem-card:nth-child(5) { min-height: 310px; grid-column: auto; padding: 24px; }
  .ecosystem-note { grid-template-columns: 42px 1fr; padding: 18px; }
  .ecosystem-note > span { width: 42px; height: 42px; }
  .ecosystem-note a { grid-column: 1 / -1; width: 100%; text-align: center; }
  .service-card { min-height: 350px; padding: 24px; }
  .service-icon { margin-bottom: 25px; }
  .service-card a { padding-top: 22px; }
  .difference-visual { min-height: 510px; }
  .difference-main-card { inset: 15px 25px 90px 0; padding: 31px; border-radius: 36px; }
  .difference-main-card strong { font-size: 34px; }
  .difference-float-card { right: 0; width: 82%; }
  .difference-decoration { font-size: 54px; }
  .benefit-list article { grid-template-columns: 42px 1fr; gap: 13px; }
  .process-card { min-height: 260px; }
  .package-banner { width: calc(100% - 20px); padding: 43px 23px 15px; border-radius: 34px; }
  .package-copy h2 { font-size: 39px; }
  .package-actions { align-items: stretch; flex-direction: column; }
  .package-orbit { min-height: 330px; transform: scale(.9); }
  .local-info { grid-template-columns: 1fr; }
  .local-map-card { min-height: 390px; border-width: 8px; border-radius: 30px; }
  .map-label { right: 14px; bottom: 14px; width: 185px; padding: 14px; }
  .faq-list summary { font-size: 16px; }
  .faq-list details p { margin-right: 0; }
  .final-cta-section { padding-bottom: 42px; }
  .final-cta { width: calc(100% - 20px); padding: 58px 22px; border-radius: 34px; }
  .final-cta h2 { font-size: 42px; }
  .final-actions { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; align-items: flex-start; flex-direction: column; }
  .admin-link { margin: 10px 0 0; padding: 10px 0 0; border: 0; border-top: 1px solid var(--line); }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp { display: none; }
  .mobile-cta-bar { position: fixed; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); left: 10px; z-index: 90; display: grid; grid-template-columns: 1.15fr .85fr; gap: 6px; padding: 6px; background: rgba(255,255,255,.92); border: 1px solid rgba(20,54,61,.1); border-radius: 18px; box-shadow: 0 20px 50px rgba(20,54,61,.22); backdrop-filter: blur(18px); }
  .mobile-cta-bar a { display: grid; min-height: 47px; place-items: center; color: var(--white); background: var(--teal); border-radius: 13px; font-size: 13px; font-weight: 850; }
  .mobile-cta-bar a:last-child { background: #22a667; }
  .site-footer { padding-bottom: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.local-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button-map { color: var(--teal-dark); background: rgba(255,255,255,.72); border-color: rgba(1,173,183,.2); box-shadow: var(--shadow-sm); }
.button-map:hover { background: var(--white); border-color: rgba(1,173,183,.36); box-shadow: 0 18px 38px rgba(1,173,183,.14); }

@media (max-width: 640px) {
  .local-actions { align-items: stretch; flex-direction: column; }
  .local-actions .button { width: 100%; }
}

[data-expansion-module][hidden], [data-expansion-any][hidden], [data-expansion-group][hidden] { display: none !important; }

.modules-pending [data-expansion-module], .modules-pending [data-expansion-group] { display: none !important; }
