:root {
  --color-ink: #12313c;
  --color-ink-2: #244b55;
  --color-muted: #557078;
  --color-teal: #53c7ba;
  --color-teal-2: #27a99b;
  --color-teal-3: #e5fbf7;
  --color-blue: #228fd0;
  --color-green: #1faa65;
  --color-white: #ffffff;
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --ink: #12313c;
  --ink-2: #244b55;
  --muted: #557078;
  --teal: #53c7ba;
  --teal-2: #27a99b;
  --teal-3: #e5fbf7;
  --blue: #228fd0;
  --blue-2: #dff4ff;
  --green: #1faa65;
  --white: #ffffff;
  --soft: #f6fffd;
  --line: #d7ebe9;
  --amber: #ffc857;
  --danger: #b67052;
  --shadow: 0 22px 60px rgba(18, 49, 60, .16);
  --shadow-soft: 0 14px 34px rgba(18, 49, 60, .11);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.22, .61, .36, 1);
  --radius: 8px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Manrope, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-locked {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--teal-2);
}

.site-shell {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  height: var(--header-h);
  background:
    linear-gradient(135deg, rgba(239, 255, 252, .96), rgba(218, 246, 255, .9)),
    rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(39, 169, 155, .24);
  backdrop-filter: blur(20px) saturate(1.25);
  box-shadow: 0 10px 34px rgba(18, 49, 60, .07);
  transition:
    transform .35s cubic-bezier(.16, 1, .3, 1),
    opacity .28s ease,
    filter .35s cubic-bezier(.16, 1, .3, 1),
    box-shadow .24s ease,
    background .24s ease;
  will-change: transform;
}

.site-header.header-hidden {
  opacity: .28;
  filter: blur(1.5px);
  pointer-events: none;
  transform: translateY(calc(-100% - 10px)) scale(.985);
}

.site-header.is-scrolled {
  background:
    linear-gradient(135deg, rgba(235, 255, 251, .98), rgba(232, 248, 255, .94)),
    rgba(255, 255, 255, .96);
  box-shadow: 0 16px 38px rgba(18, 49, 60, .13);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  flex: none;
  width: min(56vw, 205px);
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(18, 49, 60, .08);
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  margin-left: auto;
  display: grid;
  place-items: center;
  color: #0c756d;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(39, 169, 155, .28);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(18, 49, 60, .08);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.main-menu {
  position: fixed;
  left: 16px;
  right: 16px;
  top: calc(var(--header-h) + 10px);
  display: grid;
  gap: 6px;
  padding: 10px;
  background: rgba(247, 255, 253, .98);
  border: 1px solid rgba(39, 169, 155, .22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.site-header.nav-open .main-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-menu a {
  padding: 13px 12px;
  border-radius: 6px;
  color: var(--ink-2);
  font-size: .95rem;
  font-weight: 800;
}

.main-menu a:hover,
.main-menu a.active {
  color: #0c756d;
  background: var(--teal-3);
}

.nav-tabs a {
  position: relative;
  overflow: hidden;
}

.nav-tabs a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--teal-2), var(--blue));
  transition: transform .24s ease;
}

.nav-tabs a:hover::after,
.nav-tabs a.active::after {
  transform: scaleX(1);
}

.header-whatsapp {
  display: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.section-bleed {
  position: relative;
  overflow: hidden;
}

.fx-surface {
  isolation: isolate;
}

.fx-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .28;
  background:
    linear-gradient(90deg, rgba(83, 199, 186, .18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(34, 143, 208, .11) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 78%, transparent);
  animation: gridDrift 34s linear infinite;
  will-change: background-position;
  pointer-events: none;
}

.section-pad {
  padding: 74px 0;
}

.section-pad,
.section-soft,
.section-deep {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.section-soft {
  background:
    linear-gradient(180deg, #f7fffd 0%, #eefbf8 100%);
}

.section-deep {
  background:
    linear-gradient(135deg, #12313c 0%, #176074 50%, #138e87 100%);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0c756d;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
}

.light .eyebrow,
.section-deep .eyebrow {
  color: #b7fff4;
}

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

h1,
h2,
h3 {
  font-family: Sora, Manrope, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 13vw, 4.9rem);
  line-height: .98;
}

.hero-title {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--ink);
  font-family: Sora, Manrope, Arial, Helvetica, sans-serif;
  font-size: clamp(3rem, 11vw, 5.65rem);
  font-weight: 800;
  line-height: .94;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.95rem, 7vw, 3.55rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.section-heading.narrow {
  max-width: 780px;
}

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

.section-heading p {
  max-width: 740px;
  font-size: 1.05rem;
}

.section-heading.center p {
  margin-inline: auto;
}

.section-deep p,
.light p {
  color: rgba(255, 255, 255, .78);
}

.hero {
  padding: 72px 0 42px;
  min-height: auto;
  background:
    linear-gradient(120deg, #fbfffe 0%, #ecfbf8 48%, #e4f6ff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    repeating-linear-gradient(135deg, rgba(39, 169, 155, .12) 0 1px, transparent 1px 34px),
    linear-gradient(90deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, 0));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  height: 92px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(34, 143, 208, .16) 20%, rgba(83, 199, 186, .18) 52%, transparent 100%);
  transform: rotate(-2deg);
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(255,255,255,.9), transparent 34%),
    radial-gradient(ellipse at 88% 34%, rgba(83,199,186,.2), transparent 36%);
  transform: translate3d(0, var(--scroll-shift, 0), 0);
  will-change: transform;
}

.hero::before {
  top: 26%;
}

.hero::after {
  bottom: 4%;
  transform: rotate(2deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
}

.page-hero {
  min-height: auto;
  padding-bottom: 64px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-copy {
  align-self: center;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 26px;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 4vw, 1.35rem);
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.btn {
  --btn-bg: var(--ink);
  --btn-color: var(--white);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 18px;
  color: var(--btn-color);
  background: var(--btn-bg);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  line-height: 1.22;
  white-space: normal;
  max-width: 100%;
  min-width: 0;
  box-shadow: 0 13px 24px rgba(39, 169, 155, .22);
  overflow: hidden;
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out), background .32s var(--ease-out);
  will-change: transform;
  backface-visibility: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -55% auto -55% -35%;
  z-index: -1;
  width: 32%;
  transform: rotate(20deg);
  background: rgba(255, 255, 255, .38);
  filter: blur(10px);
  transition: left .55s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(39, 169, 155, .3);
}

.btn:hover::after {
  left: 115%;
}

.btn svg {
  flex: none;
  width: 20px;
  height: 20px;
}

.btn-primary {
  --btn-bg: linear-gradient(135deg, var(--green), var(--teal-2) 52%, var(--blue));
}

.btn-secondary {
  --btn-bg: rgba(255, 255, 255, .76);
  --btn-color: var(--ink);
  border: 1px solid rgba(18, 49, 60, .12);
  box-shadow: 0 10px 24px rgba(18, 49, 60, .08);
}

.btn-lg {
  min-height: 56px;
}

.btn-xl {
  min-height: 64px;
  padding-inline: 24px;
  font-size: 1.02rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(39, 169, 155, .18);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(18, 49, 60, .06);
}

.trust-badges svg {
  width: 18px;
  height: 18px;
  color: var(--teal-2);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  color: var(--ink-2);
}

.proof-row strong {
  font-family: Sora, Manrope, sans-serif;
  color: #0c756d;
  font-size: 2rem;
}

.proof-row span {
  font-weight: 800;
  min-width: 0;
}

.stars {
  color: var(--amber);
  font-size: 1.05rem;
}

.hero-panel {
  display: grid;
  gap: 18px;
  align-content: end;
}

.mascot-orbit {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: end center;
}

.mascot-orbit::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: 18px;
  height: 44%;
  background:
    linear-gradient(145deg, rgba(39, 169, 155, .16), rgba(34, 143, 208, .14));
  border: 1px solid rgba(39, 169, 155, .18);
  border-radius: var(--radius);
  transform: skewY(-4deg);
  box-shadow: var(--shadow-soft);
}

.mascot-orbit img {
  position: relative;
  z-index: 2;
  width: min(78vw, 430px);
  filter: drop-shadow(0 16px 22px rgba(18, 49, 60, .14));
  animation: mascotFloat 7.5s var(--ease-smooth) infinite;
  will-change: transform;
}

.status-pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(39, 169, 155, .2);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.status-pill svg {
  width: 17px;
  height: 17px;
  color: var(--teal-2);
}

.status-top {
  top: 14%;
  right: 2%;
}

.status-bottom {
  left: 0;
  bottom: 24%;
}

.quote-form {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(39, 169, 155, .18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.glass-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(39, 169, 155, .18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.glass-card strong {
  font-family: Sora, Manrope, sans-serif;
  font-size: 1.15rem;
}

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

.mini-quote-card {
  margin-top: -40px;
  z-index: 4;
}

.form-heading {
  display: grid;
  gap: 2px;
}

.form-heading span {
  color: #0c756d;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .75rem;
}

.form-heading strong {
  font-family: Sora, Manrope, sans-serif;
  font-size: 1.2rem;
}

.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--ink-2);
  font-size: .87rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(18, 49, 60, .16);
  border-radius: 6px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--teal-2);
  box-shadow: 0 0 0 4px rgba(83, 199, 186, .18);
}

.metric-strip {
  padding: 18px 0;
  background: #eefbf8;
  color: var(--ink-2);
  border-block: 1px solid rgba(39, 169, 155, .14);
}

.metric-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem 1rem;
  max-width: 100%;
}

.metric-grid span {
  position: relative;
  color: var(--ink-2);
  font-size: .94rem;
  font-weight: 850;
  text-align: center;
  white-space: normal;
}

.metric-grid span + span::before {
  content: "|";
  position: absolute;
  left: -1.1rem;
  color: rgba(18, 49, 60, .28);
  display: none;
}

.feature-grid,
.services-grid,
.testimonial-grid,
.comparison-grid {
  display: grid;
  gap: 16px;
}

.feature-card,
.service-card,
.testimonial-card,
.comparison-card {
  position: relative;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(39, 169, 155, .16);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(18, 49, 60, .06);
  transition: transform .34s var(--ease-out), box-shadow .34s var(--ease-out), border-color .34s var(--ease-out);
  backface-visibility: hidden;
  text-align: left;
}

.service-card {
  isolation: isolate;
}

.feature-card::before,
.service-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(83, 199, 186, .12), transparent 32%, rgba(34, 143, 208, .11));
  opacity: 0;
  transition: opacity .28s var(--ease-out);
  pointer-events: none;
}

.service-card::after,
.blog-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 0%, transparent 36%, rgba(255, 255, 255, .68) 48%, transparent 60%, transparent 100%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.service-card:hover::after,
.blog-card:hover::after {
  transform: translateX(120%);
}

.service-card > *,
.blog-card > * {
  position: relative;
  z-index: 1;
}

.effect-card {
  overflow: hidden;
}

.effect-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(180px circle at var(--mx, 50%) var(--my, 50%), rgba(83,199,186,.26), transparent 42%);
  transition: opacity .28s var(--ease-out);
  pointer-events: none;
}

.effect-card:hover::after {
  opacity: 1;
}

.effect-card:hover .service-icon,
.feature-card:hover > svg {
  animation: iconPop .55s ease;
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover,
.comparison-card:hover {
  transform: scale(1.015);
  border-color: rgba(39, 169, 155, .34);
  box-shadow: var(--shadow-soft);
}

.feature-card:hover::before,
.service-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.feature-card svg,
.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal-2);
}

.feature-card-wide {
  background: linear-gradient(135deg, #ffffff 0%, #f1fffc 100%);
}

.feature-card > svg {
  margin-bottom: 16px;
}

.feature-card p,
.service-card p {
  margin-bottom: 0;
}

.service-card {
  display: grid;
  min-height: 245px;
}

.service-card.spotlight {
  background:
    linear-gradient(135deg, #ffffff 0%, #edfffb 100%);
}

.service-card.accent {
  border-color: rgba(31, 170, 101, .22);
  background:
    linear-gradient(135deg, #ffffff 0%, #f0fff7 100%);
}

.service-icon {
  position: relative;
  overflow: hidden;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--teal-3);
  border-radius: var(--radius);
}

.service-icon::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 90deg, transparent, rgba(255, 255, 255, .86), transparent 34%);
  animation: iconSweep 4.8s linear infinite;
  animation-play-state: paused;
  opacity: .72;
}

.service-card:hover .service-icon::after,
.blog-card:hover .service-icon::after {
  animation-play-state: running;
}

.service-icon svg {
  position: relative;
  z-index: 1;
}

.text-link {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  color: #0c756d;
  font-weight: 900;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform .18s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}

.process-grid {
  display: grid;
  gap: 34px;
}

.sticky-heading .btn {
  margin-top: 10px;
}

.process-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 20px 20px 20px 78px;
  background: var(--white);
  border: 1px solid rgba(39, 169, 155, .16);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(18, 49, 60, .06);
}

.process-list span {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-2), var(--blue));
  border-radius: 50%;
  font-family: Sora, Manrope, sans-serif;
  font-size: .82rem;
  font-weight: 900;
}

.process-list strong {
  font-family: Sora, Manrope, sans-serif;
  font-size: 1.05rem;
}

.process-list p {
  margin-bottom: 0;
}

.comparison-grid {
  gap: 18px;
}

.comparison-card {
  padding: 12px;
  color: var(--ink);
}

.comparison-card h3,
.comparison-card p {
  padding-inline: 8px;
}

.comparison-card p {
  margin-bottom: 8px;
}

.comparison {
  --split: 52%;
  position: relative;
  aspect-ratio: 4 / 3;
  height: auto;
  margin-bottom: 16px;
  overflow: hidden;
  background: #f6fffd;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: inset 0 0 0 1px rgba(18, 49, 60, .06);
}

.comparison::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  transform: translateX(-1px);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 0 0 1px rgba(18, 49, 60, .12), 0 0 28px rgba(83, 199, 186, .55);
  pointer-events: none;
  z-index: 3;
}

.comparison::before {
  content: "↔";
  position: absolute;
  z-index: 4;
  left: var(--split);
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(18, 49, 60, .22);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.comparison input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: .001;
  cursor: ew-resize;
}

.photo-comparison,
.photo-comparison .scene {
  background: #eaf7f5;
}

.photo-comparison img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.comparison-label {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(39, 169, 155, .18);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(18, 49, 60, .11);
}

.before-label {
  left: 12px;
}

.after-label {
  right: 12px;
}

.scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scene.before {
  background:
    repeating-linear-gradient(0deg, rgba(18, 49, 60, .05) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #f2ebe3, #d5c9bc);
}

.scene.after {
  background:
    repeating-linear-gradient(0deg, rgba(83, 199, 186, .1) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #eafffb, #bbf0e9);
}

.sofa-shape,
.mattress-shape,
.seat-shape {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 54px;
  height: 92px;
  border-radius: 24px 24px 12px 12px;
  background: linear-gradient(135deg, #917f73, #c4b3a8);
  box-shadow: inset 0 -14px 0 rgba(18, 49, 60, .09), 0 16px 30px rgba(18, 49, 60, .16);
}

.sofa-shape::before,
.sofa-shape::after {
  content: "";
  position: absolute;
  bottom: -24px;
  width: 72px;
  height: 70px;
  background: inherit;
  border-radius: 18px 18px 8px 8px;
}

.sofa-shape::before {
  left: -22px;
}

.sofa-shape::after {
  right: -22px;
}

.after .sofa-shape,
.after .mattress-shape,
.after .seat-shape {
  background: linear-gradient(135deg, #9ee8df, #f6fffd);
}

.mattress-shape {
  left: 12%;
  right: 12%;
  bottom: 70px;
  height: 86px;
  border-radius: 18px;
  transform: rotate(-2deg);
}

.mattress-shape::after {
  content: "";
  position: absolute;
  inset: 18px 0 auto;
  height: 2px;
  background: rgba(18, 49, 60, .14);
}

.seat-shape {
  left: 23%;
  right: 23%;
  bottom: 42px;
  height: 150px;
  border-radius: 20px 20px 34px 34px;
}

.seat-shape::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: -34px;
  height: 72px;
  border-radius: 26px 26px 12px 12px;
  background: inherit;
}

.stain,
.dust-cloud,
.odor-lines,
.shine {
  position: absolute;
  pointer-events: none;
}

.stain {
  width: 54px;
  height: 38px;
  background: rgba(150, 89, 57, .46);
  border-radius: 44% 56% 48% 52%;
  filter: blur(.2px);
}

.stain-one {
  left: 28%;
  top: 38%;
  transform: rotate(-12deg);
}

.stain-two {
  right: 26%;
  bottom: 35%;
  width: 42px;
  height: 31px;
  transform: rotate(16deg);
}

.odor-lines {
  right: 18%;
  top: 22%;
  width: 80px;
  height: 80px;
  border-left: 3px solid rgba(18, 49, 60, .18);
  border-radius: 50%;
  animation: floatLine 3s ease-in-out infinite;
}

.dust-cloud {
  right: 18%;
  top: 28%;
  width: 74px;
  height: 48px;
  background:
    radial-gradient(circle at 24% 52%, rgba(18, 49, 60, .16) 0 7px, transparent 8px),
    radial-gradient(circle at 54% 42%, rgba(18, 49, 60, .12) 0 10px, transparent 11px),
    radial-gradient(circle at 78% 58%, rgba(18, 49, 60, .13) 0 7px, transparent 8px);
}

.shine {
  width: 34px;
  height: 34px;
  transform: rotate(45deg);
}

.shine::before,
.shine::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(255, 255, 255, .95);
}

.shine::before {
  width: 4px;
  height: 34px;
}

.shine::after {
  width: 34px;
  height: 4px;
}

.shine-one {
  top: 22%;
  right: 24%;
}

.shine-two {
  bottom: 22%;
  left: 25%;
  transform: rotate(45deg) scale(.72);
}

.client-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-2), var(--blue));
  border-radius: 50%;
  font-weight: 900;
}

.client-row strong,
.client-row small {
  display: block;
}

.client-row small {
  color: var(--muted);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, #fff, #effffc);
}

.benefits-layout {
  display: grid;
  gap: 30px;
  align-items: center;
}

.benefit-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(83, 199, 186, .14), rgba(34, 143, 208, .11));
  border: 1px solid rgba(39, 169, 155, .18);
  border-radius: var(--radius);
}

.benefit-visual img {
  width: 100%;
  height: auto;
  transform: scale(1.04);
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 12px;
  padding: 15px;
  background: var(--white);
  border: 1px solid rgba(39, 169, 155, .16);
  border-radius: var(--radius);
}

.benefit-list svg {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  color: var(--teal-2);
}

.benefit-list strong {
  font-family: Sora, Manrope, sans-serif;
}

.benefit-list span {
  color: var(--muted);
}

.local-grid {
  display: grid;
  gap: 28px;
}

.contact-layout {
  display: grid;
  gap: 20px;
  align-items: start;
}

.contact-info-card {
  position: relative;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, #f2fffc);
  border: 1px solid rgba(39, 169, 155, .16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-info-card .text-link {
  margin: 14px 0;
}

.contact-mini-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-mini-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  color: var(--ink-2);
  background: var(--teal-3);
  border-radius: 6px;
  font-weight: 800;
}

.contact-mini-list svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: #0c756d;
}

.contact-form-xl {
  padding: 22px;
}

.map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(39,169,155,.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.map-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(39, 169, 155, .16);
  border-radius: var(--radius);
  color: var(--ink-2);
}

.map-note p {
  margin: 0;
  font-size: .94rem;
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
}

.map-frame iframe {
  display: block;
  width: 100%;
}

.content-grid {
  display: grid;
  gap: 16px;
}

.content-card,
.article-body {
  background: var(--white);
  border: 1px solid rgba(39, 169, 155, .16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.content-card {
  padding: 22px;
}

.content-card ul,
.article-body ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
}

.article-body {
  max-width: 900px;
  padding: 24px;
}

.article-body a:not(.btn) {
  color: #0c756d;
  font-weight: 900;
}

.seo-panels {
  display: grid;
  gap: 14px;
}

.seo-panels article {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(39, 169, 155, .16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.seo-panels a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 10px;
  color: #0c756d;
  background: var(--teal-3);
  border-radius: 6px;
  font-weight: 800;
}

.faq-layout {
  display: grid;
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(39, 169, 155, .16);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(18, 49, 60, .06);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 900;
}

.faq-item button svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--teal-2);
  transition: transform .2s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .24s ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 18px;
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 18px;
}

.faq-item.open button svg {
  transform: rotate(180deg);
}

.site-footer {
  padding: 52px 0 104px;
  color: rgba(255, 255, 255, .84);
  background:
    linear-gradient(135deg, rgba(83, 199, 186, .12), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(83, 199, 186, .18), transparent 28%),
    linear-gradient(135deg, #0f3440 0%, #0d5f59 54%, #12313c 100%);
  border-top: 1px solid rgba(83, 199, 186, .34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

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

.footer-brand img {
  width: min(100%, 290px);
  margin-bottom: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
}

.footer-brand p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .93rem;
}

.footer-brand a {
  color: #adfff4;
  font-weight: 900;
}

.footer-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 16px;
  padding: 0 18px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--green), var(--teal-2));
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
  font-weight: 900;
}

.footer-links,
.footer-neighborhoods {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-links strong,
.footer-neighborhoods strong {
  font-family: Sora, Manrope, sans-serif;
  color: var(--white);
}

.footer-links a {
  color: rgba(255, 255, 255, .7);
  font-weight: 800;
}

.footer-links a:hover {
  color: #adfff4;
}

.footer-neighborhoods p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .93rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2147483647;
  min-height: 62px;
  min-width: 62px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px 0 8px;
  color: var(--white);
  background: #1fb31b;
  border-radius: 999px;
  font-weight: 900;
  opacity: 1;
  transform: none;
  box-shadow: 0 14px 26px rgba(15, 117, 109, .28);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}

.whatsapp-float img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.whatsapp-float:hover {
  transform: scale(1.04);
  box-shadow: 0 18px 34px rgba(15, 117, 109, .34);
}

@media (max-width: 767px) {
  .whatsapp-float {
    left: calc(100dvw - 90px);
    right: auto;
    bottom: 20px;
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    padding: 0;
  }

  .whatsapp-float img {
    width: 70px;
    height: 70px;
  }

  .whatsapp-float span {
    display: none;
  }
}

[data-reveal] {
  opacity: 1;
  transition: opacity .55s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  will-change: opacity;
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  will-change: auto;
}

@keyframes revealFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.feature-grid > *:nth-child(2),
.services-grid > *:nth-child(2),
.comparison-grid > *:nth-child(2),
.testimonial-grid > *:nth-child(2) {
  --reveal-delay: .08s;
}

.feature-grid > *:nth-child(3),
.services-grid > *:nth-child(3),
.comparison-grid > *:nth-child(3),
.testimonial-grid > *:nth-child(3) {
  --reveal-delay: .16s;
}

.feature-grid > *:nth-child(4),
.services-grid > *:nth-child(4),
.comparison-grid > *:nth-child(4),
.testimonial-grid > *:nth-child(4) {
  --reveal-delay: .24s;
}

@keyframes mascotFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-.6deg);
  }
  50% {
    transform: translate3d(0, -7px, 0) rotate(.6deg);
  }
}

@keyframes whatsPulse {
  0%, 100% {
    transform: translateZ(0) scale(1);
  }
  50% {
    transform: translateZ(0) scale(1.035);
  }
}

@keyframes whatsRing {
  0% {
    opacity: .7;
    transform: scale(.82);
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes whatsappEnter {
  from {
    opacity: 0;
    transform: scale(.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatLine {
  0%, 100% {
    transform: translateY(0);
    opacity: .9;
  }
  50% {
    transform: translateY(-8px);
    opacity: .45;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 54px 54px, 54px 54px;
  }
}

@keyframes iconPop {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  42% {
    transform: translateY(-3px) scale(1.08);
  }
}

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

@media (min-width: 640px) {
  .site-shell {
    width: min(100% - 48px, 1180px);
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .metric-grid {
    gap: .75rem 2rem;
  }

  .metric-grid span + span::before {
    display: block;
  }

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

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

@media (min-width: 900px) {
  :root {
    --header-h: 82px;
  }

  .brand {
    width: 238px;
  }

  .menu-toggle {
    display: none;
  }

  .main-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin-left: auto;
    background: rgba(255, 255, 255, .38);
    border: 0;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .38);
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .main-menu a {
    padding: 10px 11px;
    font-size: .86rem;
  }

  .header-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--teal-2));
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(31, 170, 101, .22);
  }

  .header-whatsapp svg {
    width: 18px;
    height: 18px;
  }

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

  .hero {
    min-height: calc(100svh - var(--header-h));
    padding: 88px 0 58px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, .78fr);
    align-items: center;
    gap: 44px;
  }

  .hero-panel {
    gap: 0;
  }

  .quote-form {
    margin-top: -58px;
  }

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

  .feature-card-wide {
    grid-column: span 2;
  }

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

  .process-grid {
    grid-template-columns: minmax(300px, .7fr) minmax(0, 1fr);
  }

  .sticky-heading {
    position: sticky;
    top: 116px;
    align-self: start;
  }

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

  .benefits-layout {
    grid-template-columns: minmax(0, .95fr) minmax(360px, .78fr);
  }

  .local-grid,
  .faq-layout,
  .contact-layout {
    grid-template-columns: minmax(0, .88fr) minmax(360px, .82fr);
  }

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

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

  .footer-grid {
    grid-template-columns: minmax(280px, 1.2fr) .55fr .45fr minmax(250px, .8fr);
  }
}

@media (min-width: 1100px) {
  .main-menu a {
    padding-inline: 13px;
  }

  .header-whatsapp {
    font-size: .91rem;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 24px, 366px);
    margin-left: 12px;
    margin-right: 12px;
  }

  h1 {
    font-size: clamp(2.08rem, 9.2vw, 2.35rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 34px;
    min-height: auto;
  }

  .fx-grid {
    animation: none;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    padding-inline: 14px;
    font-size: .94rem;
  }

  .trust-badges li {
    width: 100%;
  }

  .proof-row strong,
  .proof-row span,
  .proof-row .stars {
    flex-basis: 100%;
  }

  .mascot-orbit {
    display: none;
  }

  .hero-panel {
    margin-top: 12px;
  }

  .hero-panel[data-reveal] {
    opacity: 1;
    transform: none;
  }

  .status-pill {
    font-size: .75rem;
  }

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

  .comparison {
    min-height: 240px;
  }

  .btn {
    width: 100%;
  }
}

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