:root {
  --primary: #69b900;
  --primary-dark: #4e9200;
  --primary-soft: #f1f9e7;
  --black: #050605;
  --black-elevated: #0d100e;
  --dark-text: #f7f9f7;
  --dark-muted: #bdc5bf;
  --dark-line: rgba(255, 255, 255, 0.13);
  --ink: #172033;
  --ink-soft: #555e6c;
  --surface: #ffffff;
  --surface-alt: #f7f9fa;
  --line: #dfe4e7;
  --shadow-sm: 0 8px 24px rgba(23, 32, 51, 0.08);
  --shadow-md: 0 18px 45px rgba(23, 32, 51, 0.12);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { font: inherit; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.whatsapp-phone { transform-box: fill-box; transform-origin: center; transform: scale(0.74); fill: currentColor; stroke: none; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 86px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 2000; top: 8px; left: 8px; transform: translateY(-150%); padding: 12px 18px; border-radius: 8px; color: #fff; background: var(--ink); transition: transform 180ms ease; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(105, 185, 0, 0.42); outline-offset: 4px; }

.eyebrow {
  margin: 0 0 6px;
  color: var(--primary-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; font-family: "Montserrat", sans-serif; line-height: 1.08; }
h2 { font-size: clamp(1.75rem, 3vw, 2.45rem); letter-spacing: -0.035em; }
.section-heading { margin-bottom: 38px; text-align: center; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 22px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background-color 220ms ease, color 220ms ease;
}
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(0.98); }
.button-primary, .button-header {
  color: #fff;
  background: linear-gradient(135deg, #7bd10d 0%, #59a900 100%);
  box-shadow: 0 10px 22px rgba(90, 167, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.28);
}
.button-primary:hover, .button-header:hover { background: linear-gradient(135deg, #6dc400, #4b9400); box-shadow: 0 14px 28px rgba(90, 167, 0, 0.3); }
.button-outline { border-color: var(--primary); color: var(--primary-dark); background: #fff; }
.button-outline:hover { color: #fff; background: var(--primary); }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(223, 228, 231, 0.75);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: 0 0 auto; min-width: 164px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.brand-logo { width: 164px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); margin-left: auto; }
.desktop-nav a { position: relative; min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; font-family: "Montserrat", sans-serif; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 2px; transform: scaleX(0); border-radius: 999px; background: var(--primary); transition: transform 220ms var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.desktop-nav a.active { color: var(--primary-dark); }
.button-header { min-height: 44px; padding: 11px 18px; white-space: nowrap; }
.menu-toggle { width: 48px; height: 48px; display: none; align-items: center; justify-content: center; border: 0; border-radius: 10px; color: var(--ink); background: transparent; cursor: pointer; }
.menu-toggle svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.close-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon { display: none; }
.menu-toggle[aria-expanded="true"] .close-icon { display: block; }
.mobile-nav { display: none; }

.hero { position: relative; min-height: 554px; display: flex; align-items: center; overflow: hidden; padding: 44px 0 54px; color: var(--dark-text); background: var(--black); }
.hero::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 80px; pointer-events: none; background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent); }
.hero-glow { position: absolute; top: 30px; left: calc(50% + 90px); width: 470px; height: 470px; border-radius: 50%; background: radial-gradient(circle, rgba(120, 202, 18, 0.22), transparent 66%); filter: blur(4px); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(440px, 0.94fr) minmax(500px, 1.06fr); align-items: center; gap: 20px; }
.hero-copy { padding: 14px 0 0 4px; }
.hero .eyebrow { color: #7bd10d; }
.hero h1 { max-width: 630px; color: #fff; font-size: clamp(3rem, 4.7vw, 4.25rem); font-weight: 900; letter-spacing: -0.055em; text-transform: uppercase; }
.hero h1 span { color: var(--primary); }
.hero-lead { max-width: 590px; margin: 14px 0 24px; color: #d9dfdb; font-family: "Montserrat", sans-serif; font-size: clamp(1rem, 1.45vw, 1.24rem); font-weight: 600; line-height: 1.38; }
.benefit-list { max-width: 620px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 24px 0 28px; }
.benefit { text-align: center; }
.icon-orbit { width: 48px; height: 48px; display: grid; place-items: center; margin: 0 auto 8px; border: 1px solid rgba(123, 209, 13, 0.2); border-radius: 50%; color: #7bd10d; background: #111611; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38), 0 0 22px rgba(105, 185, 0, 0.08); }
.icon-orbit svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.benefit p { margin: 0; font-family: "Montserrat", sans-serif; font-size: 0.68rem; font-weight: 800; line-height: 1.25; text-transform: uppercase; }
.hero-cta { min-width: 326px; }
.hero-visual { position: relative; width: 100%; height: 345px; overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 58% 46%, transparent 34%, rgba(5, 6, 5, 0.1) 58%, rgba(5, 6, 5, 0.72) 86%, var(--black) 100%), linear-gradient(to bottom, transparent 0%, transparent 72%, var(--black) 93%); }
.prototype-sprite { position: absolute; top: -64px; left: -500px; width: 1448px; max-width: none; height: 1086px; user-select: none; pointer-events: none; }

.plans { position: relative; background: linear-gradient(#fafbfc, #fff); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: stretch; }
.plan-card { position: relative; min-height: 498px; display: flex; flex-direction: column; padding: 54px 30px 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; box-shadow: var(--shadow-sm); transition: transform 250ms var(--ease), box-shadow 250ms ease, border-color 250ms ease; }
.plan-card:hover { transform: translateY(-6px); border-color: rgba(105, 185, 0, 0.38); box-shadow: var(--shadow-md); }
.plan-icon { position: absolute; top: -27px; left: 50%; width: 58px; height: 58px; display: grid; place-items: center; transform: translateX(-50%); border: 1px solid var(--line); border-radius: 50%; color: var(--primary); background: #fff; box-shadow: var(--shadow-sm); }
.plan-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.plan-featured { border-color: rgba(105, 185, 0, 0.42); box-shadow: 0 18px 44px rgba(73, 130, 0, 0.13); }
.plan-card h3 { min-height: 68px; font-size: 1rem; font-weight: 800; text-align: center; text-transform: uppercase; }
.plan-card ul { flex: 1; margin: 22px 0 20px; padding: 0; list-style: none; }
.plan-card li { display: flex; align-items: flex-start; gap: 8px; margin: 8px 0; color: #303948; font-size: 0.9rem; font-weight: 700; line-height: 1.25; }
.plan-card li svg { width: 15px; min-width: 15px; height: 15px; margin-top: 2px; padding: 2px; border-radius: 50%; color: #fff; background: var(--primary); fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.price { display: grid; justify-items: center; padding: 14px 0; border-top: 1px solid #edf0f1; }
.price small, .price span { color: var(--ink-soft); font-size: 0.74rem; font-weight: 700; line-height: 1.2; }
.price strong { color: var(--primary-dark); font-family: "Montserrat", sans-serif; font-size: 1.9rem; font-weight: 900; line-height: 1.1; }
.plan-card .button { width: 100%; min-height: 44px; }

.why-us { padding: 30px 0 42px; border-radius: 0 0 var(--radius-lg) var(--radius-lg); background: linear-gradient(105deg, #f7f9fa, #eef1f2 52%, #f8f9fa); }
.why-us .section-heading { margin-bottom: 22px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; }
.why-card { text-align: center; }
.why-card > svg { width: 50px; height: 50px; margin: 0 auto 12px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { font-size: 0.98rem; }
.why-card p { max-width: 225px; margin: 7px auto 0; color: #3e4755; font-size: 0.82rem; font-weight: 600; line-height: 1.35; }

.cases { padding-bottom: 34px; }
.cases .section-heading { max-width: 850px; margin-inline: auto; }
.section-support { max-width: 720px; margin: 14px auto 0; color: var(--ink-soft); font-size: 1rem; font-weight: 600; line-height: 1.5; }
.cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.case-card { position: relative; min-height: 380px; display: flex; flex-direction: column; align-items: center; padding: 28px 24px 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; box-shadow: var(--shadow-sm); text-align: center; transition: transform 240ms var(--ease), box-shadow 240ms ease; }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.case-category { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; min-height: 26px; padding: 4px 9px; border-radius: 999px; color: var(--primary-dark); background: var(--primary-soft); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.05em; line-height: 1; text-transform: uppercase; }
.client-mark { width: 100%; height: 94px; display: flex; align-items: center; justify-content: center; overflow: hidden; margin: 22px 0 12px; color: var(--ink); }
.client-logo { width: auto; height: auto; max-width: 200px; max-height: 72px; object-fit: contain; }
.client-logo-podologa { max-width: 94px; max-height: 94px; }
.client-logo-ohana { max-width: 205px; max-height: 68px; }
.client-logo-batera { width: 205px; height: 68px; max-width: 205px; max-height: 68px; object-fit: cover; object-position: center; }
.client-logo-fire { max-width: 165px; max-height: 46px; }
.case-result { min-height: 78px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 10px; }
.case-result strong { color: var(--primary-dark); font-family: "Montserrat", sans-serif; font-size: 2.15rem; font-weight: 900; letter-spacing: -0.045em; line-height: 1; }
.case-result strong.case-result-word { font-size: 1.55rem; letter-spacing: -0.03em; }
.case-result span { margin-top: 6px; color: var(--ink); font-size: 0.73rem; font-weight: 800; line-height: 1.25; text-transform: uppercase; }
.case-card p { margin: 0; color: #313a48; font-size: 0.86rem; font-weight: 600; line-height: 1.45; }
.cases-cta { margin-top: 32px; text-align: center; }
.cases-cta .button { min-width: 320px; }

.contact { padding: 64px 0 32px; color: var(--dark-text); background: var(--black); }
.contact-box { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 50px; padding: 30px 52px; border: 1px solid var(--dark-line); border-radius: var(--radius-md); background: linear-gradient(115deg, #0a0d0a, #11170d); box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.04); }
.contact .eyebrow { color: #7bd10d; }
.contact-box h2 { color: #71c900; font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 900; text-transform: uppercase; }
.contact-box > div > p:last-child { max-width: 520px; margin: 8px 0 0; color: #d7ddd8; font-size: 0.9rem; font-weight: 600; }
.contact-action .button { width: 100%; font-size: 0.82rem; }
.contact-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; margin: 16px 0 0; padding: 0; list-style: none; }
.contact-details li > a,
.contact-details li > span { min-width: 0; display: flex; align-items: center; gap: 8px; color: #d7ddd8; font-size: 0.69rem; font-weight: 700; line-height: 1.25; }
.contact-details li > a { transition: color 180ms ease; }
.contact-details li > a:hover { color: #7bd10d; }
.contact-details li svg { width: 25px; min-width: 25px; height: 25px; padding: 4px; border: 1px solid #71c900; border-radius: 50%; color: #7bd10d; fill: none; stroke: currentColor; stroke-width: 1.9; }
.contact-details li span span { min-width: 0; overflow-wrap: anywhere; }

.site-footer { padding: 24px 0; border-top: 1px solid var(--dark-line); color: var(--dark-text); background: var(--black); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-brand .brand { min-width: 132px; }
.footer-brand .brand-logo { width: 132px; }
.footer-brand p { margin: 0; padding-left: 20px; border-left: 1px solid var(--dark-line); color: var(--dark-muted); font-size: 0.68rem; font-weight: 700; }
.copyright { margin: 0; color: var(--dark-muted); font-size: 0.68rem; font-weight: 700; text-align: center; }
.socials { display: flex; justify-content: flex-end; gap: 12px; }
.socials a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.34); border-radius: 50%; color: #f4f6f4; transition: color 200ms ease, border-color 200ms ease, transform 200ms var(--ease); }
.socials a:hover { transform: translateY(-2px); border-color: #7bd10d; color: #7bd10d; }
.socials svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.socials .fill { fill: currentColor; stroke: none; }

.whatsapp-float {
  position: fixed;
  z-index: 950;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(5, 6, 5, 0.32), 0 5px 14px rgba(37, 211, 102, 0.32);
  transition: transform 220ms var(--ease), background-color 180ms ease, box-shadow 220ms ease;
}
.whatsapp-float::before {
  position: absolute;
  right: calc(100% + 12px);
  width: max-content;
  padding: 8px 11px;
  border-radius: 8px;
  color: #fff;
  background: #101510;
  box-shadow: var(--shadow-sm);
  content: "Fale no WhatsApp";
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible { transform: translateY(-3px) scale(1.03); background: #20bd5a; box-shadow: 0 16px 34px rgba(5, 6, 5, 0.38), 0 6px 18px rgba(37, 211, 102, 0.38); }
.whatsapp-float:hover::before,
.whatsapp-float:focus-visible::before { opacity: 1; transform: translateX(0); }
.whatsapp-float svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 560ms var(--ease), transform 560ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --container: 960px; }
  .desktop-nav { gap: 18px; }
  .button-header { display: none; }
  .hero-grid { grid-template-columns: 0.98fr 1.02fr; }
  .hero h1 { font-size: clamp(2.8rem, 5.5vw, 4rem); }
  .hero-visual { height: 340px; }
  .prototype-sprite { top: -64px; left: -520px; }
  .plans-grid { gap: 20px; }
  .plan-card { padding-inline: 22px; }
  .cases-grid { gap: 16px; }
  .case-card { padding-inline: 18px; }
}

@media (max-width: 820px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 32px), 720px); }
  .desktop-nav, .button-header { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav { position: fixed; z-index: 999; top: var(--header-height); right: 0; left: 0; display: grid; gap: 4px; padding: 16px 20px 24px; transform: translateY(-12px); opacity: 0; visibility: hidden; border-top: 1px solid var(--line); background: rgba(255, 255, 255, 0.98); box-shadow: 0 22px 42px rgba(23, 32, 51, 0.16); transition: opacity 200ms ease, transform 250ms var(--ease), visibility 200ms; }
  .mobile-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .mobile-nav > a:not(.button) { min-height: 48px; display: flex; align-items: center; padding: 0 12px; border-radius: 8px; font-family: "Montserrat", sans-serif; font-size: 0.84rem; font-weight: 800; text-transform: uppercase; }
  .mobile-nav > a:not(.button):hover { color: var(--primary-dark); background: var(--primary-soft); }
  .mobile-nav .button { margin-top: 8px; }
  .hero { padding-top: 42px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-lead { margin-inline: auto; }
  .benefit-list { margin-inline: auto; }
  .hero-cta { min-width: min(326px, 100%); }
  .hero-visual { width: min(100%, 600px); margin: -6px auto 0; }
  .prototype-sprite { left: calc(50% - 740px); }
  .plans-grid { grid-template-columns: 1fr; gap: 52px; max-width: 610px; margin-inline: auto; }
  .plan-card { min-height: auto; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-box { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .contact-box > div > p:last-child { margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; }
  .socials { justify-content: center; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), 520px); }
  .section { padding: 60px 0; }
  .brand { min-width: 146px; }
  .brand-logo { width: 146px; }
  .hero { min-height: auto; padding: 28px 0 30px; }
  .hero h1 { font-size: clamp(2.28rem, 11.5vw, 3.35rem); line-height: 0.98; }
  .hero .eyebrow { margin-bottom: 8px; }
  .hero-lead { margin-top: 12px; font-size: 0.96rem; line-height: 1.4; }
  .benefit-list { grid-template-columns: repeat(3, 1fr); gap: 5px; margin: 22px 0 24px; }
  .benefit-desktop { display: none; }
  .icon-orbit { width: 44px; height: 44px; }
  .benefit p { font-size: 0.57rem; }
  .hero-cta { width: 100%; }
  .hero-visual { height: 215px; margin-top: 10px; }
  .prototype-sprite { top: -40px; left: calc(50% - 445px); width: 840px; height: auto; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: 1.72rem; }
  .plans { padding-top: 64px; }
  .plan-card { padding: 48px 20px 18px; }
  .plan-card h3 { min-height: auto; font-size: 0.85rem; }
  .plan-card li { font-size: 0.81rem; }
  .price strong { font-size: 1.72rem; }
  .why-us { padding: 28px 0 38px; border-radius: 0 0 28px 28px; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; max-width: 340px; margin-inline: auto; }
  .why-card > svg { width: 43px; height: 43px; }
  .why-card h3 { font-size: 0.77rem; }
  .why-card p { font-size: 0.7rem; }
  .cases-grid { grid-template-columns: 1fr; gap: 14px; }
  .case-card { min-height: 0; padding: 24px 20px; }
  .cases-cta .button { width: 100%; min-width: 0; }
  .contact { padding-bottom: 24px; }
  .contact-box { gap: 22px; padding: 28px 18px; border-radius: 16px; }
  .contact-box h2 { font-size: 2rem; }
  .contact-action .button { font-size: 0.69rem; }
  .contact-details { grid-template-columns: 1fr; justify-items: start; max-width: 310px; margin: 18px auto 0; text-align: left; }
  .contact-details li > a,
  .contact-details li > span { font-size: 0.7rem; }
  .whatsapp-float { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); width: 56px; height: 56px; }
  .whatsapp-float::before { display: none; }
  .whatsapp-float svg { width: 31px; height: 31px; }
  .footer-brand { flex-direction: column; gap: 12px; text-align: center; }
  .footer-brand .brand { min-width: 132px; }
  .footer-brand .brand-logo { width: 132px; }
  .footer-brand p { padding: 0; border: 0; }
}

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