:root {
  --ink: #111114;
  --ink-soft: #34343c;
  --muted: #6e7280;
  --line: #e8e8ee;
  --surface: #ffffff;
  --surface-soft: #f7f8fb;
  --coral: #ff5a7a;
  --coral-dark: #e1345d;
  --teal: #0bb7aa;
  --green: #69c978;
  --yellow: #ffd05a;
  --blue: #4869ff;
  --shadow: 0 24px 70px rgba(17, 17, 20, 0.11);
  --radius: 8px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(247, 248, 251, 0.72), rgba(255, 255, 255, 0) 420px),
    var(--surface);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 90, 122, 0.06), transparent 32%),
    linear-gradient(240deg, rgba(11, 183, 170, 0.07), transparent 34%),
    linear-gradient(180deg, transparent, rgba(247, 248, 251, 0.9));
  background-size: 180% 180%;
  animation: ambientShift 16s ease-in-out infinite alternate;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.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:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 12px 16px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
  animation: pageRise 520ms ease both;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(17, 17, 20, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 20, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 14px 30px rgba(17, 17, 20, 0.12);
}

.brand-text {
  font-size: 1rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  z-index: 1001;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--ink);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a[aria-current="page"]:not(.nav-cta)::after {
  transform: scaleX(1);
}

.site-nav .nav-cta[aria-current="page"] {
  color: #fff;
}

.nav-phone {
  color: var(--coral-dark);
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta::before,
.button::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -38%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg) translateX(-130%);
  transition: transform 520ms ease;
  z-index: -1;
}

.nav-cta:hover::before,
.button:hover::before {
  transform: skewX(-18deg) translateX(520%);
}

.nav-cta,
.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 90, 122, 0.28);
}

.nav-cta:hover,
.button-primary:hover {
  transform: translateY(-3px);
  background: var(--coral-dark);
  box-shadow: 0 18px 42px rgba(255, 90, 122, 0.34);
}

.button-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(17, 17, 20, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 70px) 0 clamp(44px, 6vw, 78px);
}

.hero-copy,
.hero-proof,
.page-hero > *,
.form-hero > *,
.legal-content,
.thanks-card {
  animation: pageRise 680ms ease both;
}

.hero-visual,
.page-visual,
.form-hero-side,
.thanks-card {
  animation: pageFloatIn 780ms ease both;
}

.hero-copy h1,
.page-hero h1,
.form-hero h1,
.thank-you h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.page-hero h1,
.form-hero h1 {
  max-width: 680px;
  font-size: clamp(2.55rem, 4.35vw, 4rem);
  line-height: 1.02;
}

.hero-lead,
.page-hero p,
.form-hero p,
.section-lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin: 38px 0 0;
}

.hero-proof div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.hero-proof dt {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.hero-proof dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual picture {
  position: relative;
  width: min(100%, 640px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
  transform: perspective(900px) translate3d(0, var(--parallax-y, 0px), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 120ms linear, box-shadow 220ms ease;
}

.hero-visual picture::after,
.page-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 24%, rgba(255, 255, 255, 0.38) 46%, transparent 64%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 260ms ease, transform 680ms ease;
}

.hero-visual:hover picture,
.page-visual:hover {
  box-shadow: 0 28px 78px rgba(17, 17, 20, 0.16);
}

.hero-visual:hover picture::after,
.page-visual:hover::after {
  opacity: 1;
  transform: translateX(44%);
}

.hero-visual img {
  aspect-ratio: 1.46;
  object-fit: cover;
  transition: transform 520ms ease;
}

.hero-visual:hover img,
.page-visual:hover img {
  transform: scale(1.035);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 3px;
  width: min(260px, 46%);
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(17, 17, 20, 0.12);
  backdrop-filter: blur(12px);
  transform: translate3d(0, var(--float-y, 0px), 0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-card:hover {
  box-shadow: 0 24px 58px rgba(17, 17, 20, 0.16);
}

.floating-card strong {
  font-size: 0.98rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.floating-card-top {
  top: 34px;
  left: -10px;
}

.floating-card-bottom {
  right: -8px;
  bottom: 56px;
}

.section {
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 112px) 0;
}

.section-tight {
  padding-top: 14px;
  padding-bottom: 38px;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-chip,
.appointment-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-chip:hover,
.appointment-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 17, 20, 0.22);
  box-shadow: 0 16px 40px rgba(17, 17, 20, 0.08);
  background: linear-gradient(180deg, #fff, rgba(247, 248, 251, 0.9));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading h2,
.split-section h2,
.trust-copy h2,
.final-cta h2,
.service-summary h2,
.legal-content h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.trust-copy p,
.final-cta p,
.service-summary p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.offer-grid,
.proof-grid,
.appointment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.offer-card,
.proof-grid article,
.step-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 17, 20, 0.055);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.offer-card {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.offer-card:hover,
.proof-grid article:hover,
.step-card:hover,
.contact-panel:hover,
.service-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 17, 20, 0.18);
  box-shadow: 0 24px 58px rgba(17, 17, 20, 0.09);
}

.offer-card h3,
.step-card h3,
.service-list h3 {
  margin: 20px 0 0;
  font-size: 1.35rem;
  line-height: 1.16;
}

.offer-card p,
.step-card p,
.service-list p,
.proof-grid p,
.legal-content p {
  color: var(--muted);
}

.offer-card a,
.text-link {
  margin-top: auto;
  color: var(--coral-dark);
  font-weight: 900;
}

.accent-coral { border-top: 4px solid var(--coral); }
.accent-teal { border-top: 4px solid var(--teal); }
.accent-green { border-top: 4px solid var(--green); }
.accent-yellow { border-top: 4px solid var(--yellow); }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

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

.step-card {
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  color: var(--coral-dark);
  font-weight: 900;
}

.alt-band {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--surface-soft);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.region-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 30px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 90, 122, 0.11), transparent 42%),
    linear-gradient(315deg, rgba(11, 183, 170, 0.12), transparent 44%),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 120ms linear;
}

.region-panel span {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}

.proof-grid article {
  padding: 24px;
}

.proof-grid strong {
  display: block;
  font-size: 1.1rem;
}

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

.faq-section {
  padding-top: 66px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(17, 17, 20, 0.2);
  box-shadow: 0 14px 34px rgba(17, 17, 20, 0.06);
  transform: translateY(-2px);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

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

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto 90px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 120ms linear;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  border-top: 0;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(34px, 5vw, 58px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}

.footer-cta p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer .button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.site-footer .button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.75fr));
  gap: clamp(26px, 4vw, 54px);
  padding: clamp(36px, 5vw, 58px) 0;
}

.site-footer .brand-logo {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.site-footer .brand-text {
  color: #fff;
}

.footer-brand-block p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.footer-badges span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.footer-column h2,
.footer-contact h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-column,
.footer-contact address {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-contact address {
  font-style: normal;
}

.footer-column a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.35;
}

a.whatsapp-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: #1f8f4e;
  font-weight: 800;
}

.site-footer a.whatsapp-contact {
  color: rgba(255, 255, 255, 0.82);
}

a.whatsapp-contact:hover {
  color: #128c4a;
}

.site-footer a.whatsapp-contact:hover {
  color: #fff;
}

.whatsapp-icon {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  border: 2px solid #2db65a;
  background: radial-gradient(circle at 18% 18%, #2db65a, #1b8b45 70%);
  color: #fff;
  box-shadow: 0 3px 9px rgba(24, 139, 69, 0.26);
}

.whatsapp-icon::before {
  content: "WA";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.4px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.whatsapp-icon::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  background: #fff;
  clip-path: polygon(0 0, 10px 4px, 0 10px);
  transform: rotate(45deg);
  border-radius: 2px;
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  box-shadow: 0 10px 22px rgba(17, 17, 20, 0.16);
  transform: translate3d(0, 0, 0);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  animation: whatsappFloat 3.4s ease-in-out infinite;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: transparent;
  color: #fff;
  transform: translate3d(0, -5px, 0) scale(1.03);
  box-shadow: 0 14px 28px rgba(17, 17, 20, 0.2);
}

.floating-whatsapp .whatsapp-icon {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
  border-width: 0;
  background: linear-gradient(165deg, #2ad45d, #158f42);
}

.floating-whatsapp {
  background: linear-gradient(165deg, #2ad45d, #158f42);
  border: 2px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 26px rgba(17, 17, 20, 0.22);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: linear-gradient(165deg, #28c554, #12873c);
}

.floating-whatsapp .whatsapp-icon::before {
  font-size: 24px;
  font-weight: 900;
}

.floating-whatsapp > span:not(.whatsapp-icon) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-column a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.62);
}

.page-hero,
.form-hero {
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 88px) 0 clamp(46px, 6vw, 72px);
}

.page-hero {
  display: grid;
  min-height: 460px;
  align-items: center;
}

.page-hero.has-visual {
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(34px, 5vw, 76px);
}

.page-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 17, 20, 0.1);
  transform: perspective(900px) translate3d(0, var(--parallax-y, 0px), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 120ms linear, box-shadow 220ms ease;
}

.page-visual img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  transition: transform 520ms ease;
}

.compact-hero,
.business-hero,
.frontier-hero,
.about-hero,
.appointment-hero {
  position: relative;
}

.compact-hero::after,
.business-hero::after,
.frontier-hero::after,
.about-hero::after,
.appointment-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 60px;
  width: min(380px, 36vw);
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 90, 122, 0.2), transparent 45%),
    linear-gradient(315deg, rgba(11, 183, 170, 0.18), transparent 48%),
    var(--surface-soft);
  z-index: -1;
}

.page-hero.has-visual::after {
  display: none;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.service-summary {
  position: sticky;
  top: 108px;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.form-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.form-hero-side {
  display: grid;
  gap: 16px;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 120ms linear;
}

.form-visual {
  box-shadow: 0 18px 48px rgba(17, 17, 20, 0.08);
}

.contact-panel {
  padding: 24px;
}

.contact-panel a,
.contact-panel strong {
  display: block;
  margin: 6px 0;
}

.form-section {
  padding-top: 20px;
}

.quote-form {
  max-width: 880px;
  display: grid;
  gap: 24px;
}

.quote-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.quote-form legend {
  padding: 0 8px;
  font-weight: 900;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-button {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.choice-button.is-active {
  border-color: var(--coral);
  background: rgba(255, 90, 122, 0.1);
  color: var(--coral-dark);
}

.choice-button:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 20, 0.22);
  box-shadow: 0 10px 24px rgba(17, 17, 20, 0.07);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: rgba(255, 90, 122, 0.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 90, 122, 0.12);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.section .reveal-on-scroll:nth-child(2),
.offer-grid .reveal-on-scroll:nth-child(2),
.proof-grid .reveal-on-scroll:nth-child(2),
.steps .reveal-on-scroll:nth-child(2) {
  transition-delay: 80ms;
}

.section .reveal-on-scroll:nth-child(3),
.offer-grid .reveal-on-scroll:nth-child(3),
.proof-grid .reveal-on-scroll:nth-child(3),
.steps .reveal-on-scroll:nth-child(3) {
  transition-delay: 140ms;
}

@keyframes ambientShift {
  from {
    background-position: 0% 0%;
  }

  to {
    background-position: 100% 100%;
  }
}

@keyframes pageRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageFloatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes whatsappFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 10px 22px rgba(17, 17, 20, 0.16);
  }

  50% {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 14px 28px rgba(17, 17, 20, 0.2);
  }
}

.quote-form input:focus,
.quote-form textarea:focus,
.choice-button:focus-visible,
.button:focus-visible,
.nav-cta:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid rgba(255, 90, 122, 0.35);
  outline-offset: 2px;
}

.checkbox-line {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 600 !important;
}

.checkbox-line input {
  width: auto;
  margin-top: 4px;
}

.form-submit {
  width: fit-content;
}

.form-note {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.honeypot {
  display: none;
}

.appointment-grid {
  align-items: stretch;
}

.appointment-card {
  flex-direction: column;
  align-items: flex-start;
  min-height: 190px;
}

.appointment-card strong {
  font-size: 1.3rem;
}

.appointment-card span:last-child {
  color: var(--muted);
}

.appointment-icon.whatsapp-icon {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 50%;
  border-color: rgba(29, 129, 60, 0.36);
  background: radial-gradient(circle at 20% 24%, #2ad45d, #158f42 70%);
  -webkit-mask: none;
  mask: none;
}

.appointment-icon.whatsapp-icon::before {
  font-size: 16px;
}

.appointment-icon.whatsapp-icon::after {
  right: 10px;
  bottom: 12px;
  width: 12px;
  height: 12px;
}

.legal-page {
  width: min(880px, calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) 0;
}

.legal-content {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 120ms linear;
}

.legal-content h2 {
  margin: 34px 0 0;
  font-size: 1.5rem;
}

.legal-content a {
  color: var(--coral-dark);
  font-weight: 800;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 28px;
  padding: 30px;
  background: var(--surface-soft);
}

.status-page .thank-you {
  min-height: 58vh;
  padding-top: clamp(88px, 10vw, 132px);
  padding-bottom: clamp(56px, 8vw, 92px);
}

.thanks-card {
  width: min(680px, 100%);
  padding: clamp(32px, 6vw, 58px);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 120ms linear;
}

.thanks-card .hero-actions {
  justify-content: center;
}

.thanks-card p {
  color: var(--muted);
  font-size: 1.1rem;
}

.chip-icon,
.offer-icon,
.appointment-icon,
.shield-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: currentColor;
  color: var(--coral);
  -webkit-mask: var(--icon) center / 22px 22px no-repeat;
  mask: var(--icon) center / 22px 22px no-repeat;
}

.offer-icon {
  width: 48px;
  height: 48px;
  background: currentColor;
}

.service-chip:nth-child(2) .chip-icon,
.accent-teal .offer-icon { color: var(--teal); }
.service-chip:nth-child(3) .chip-icon,
.accent-green .offer-icon { color: var(--green); }
.service-chip:nth-child(4) .chip-icon,
.accent-yellow .offer-icon { color: var(--yellow); }

.home-icon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 10.8 12 3l9 7.8V21h-6v-6H9v6H3z'/%3E%3C/svg%3E"); }
.briefcase-icon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 4h6l1 3h4a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h4zm1.8 3h2.4l-.35-1h-1.7z'/%3E%3C/svg%3E"); }
.route-icon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 3a3 3 0 0 0-3 3c0 2.2 3 5.6 3 5.6S9 8.2 9 6a3 3 0 0 0-3-3m12 9a3 3 0 0 0-3 3c0 2.2 3 5.6 3 5.6s3-3.4 3-5.6a3 3 0 0 0-3-3M6 5.4a.6.6 0 1 1 0 1.2a.6.6 0 0 1 0-1.2M8 14h6v2H8a2 2 0 0 1 0-4h5a1 1 0 1 0 0-2h-2V8h2a3 3 0 1 1 0 6H8z'/%3E%3C/svg%3E"); }
.growth-icon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 19h16v2H2V3h2zm3-2V9h3v8zm5 0V5h3v12zm5 0v-6h3v6z'/%3E%3C/svg%3E"); }
.health-icon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 21s-8-4.9-8-11a5 5 0 0 1 8-4a5 5 0 0 1 8 4c0 6.1-8 11-8 11m-1-12v2H9v2h2v2h2v-2h2v-2h-2V9z'/%3E%3C/svg%3E"); }
.company-icon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 21V4h10v4h8v13h-7v-4H10v4zm3-3h2v-2H6zm0-4h2v-2H6zm0-4h2V8H6zm4 4h2v-2h-2zm0-4h2V8h-2zm4 4h2v-2h-2zm0-4h2V8h-2zm4 8h2v-2h-2zm0-4h2v-2h-2z'/%3E%3C/svg%3E"); }
.cross-icon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 3 6v6c0 5 3.8 8.7 9 10c5.2-1.3 9-5 9-10V6zm1 5v4h4v2h-4v4h-2v-4H7v-2h4V7z'/%3E%3C/svg%3E"); }
.shield-icon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 4 5v6c0 5.2 3.4 8.8 8 11c4.6-2.2 8-5.8 8-11V5zm-1 13.5-3.4-3.4L9 10.7l2 2l4.6-4.6l1.4 1.4z'/%3E%3C/svg%3E"); }
.phone-icon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8a15 15 0 0 0 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3c1.3.4 2.7.6 4.1.6c.7 0 1.3.6 1.3 1.3V20c0 .7-.6 1.3-1.3 1.3C10.8 21.3 2.7 13.2 2.7 3.3C2.7 2.6 3.3 2 4 2h3.2c.7 0 1.3.6 1.3 1.3c0 1.4.2 2.8.6 4.1c.1.4 0 .9-.3 1.2z'/%3E%3C/svg%3E"); color: var(--coral); }
.mail-icon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5h18v14H3zm9 8 7-5.2V7l-7 5-7-5v.8z'/%3E%3C/svg%3E"); color: var(--teal); }
.form-icon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 3h10l4 4v14H5zm9 1.8V8h3.2zM8 11h8V9H8zm0 4h8v-2H8zm0 4h5v-2H8z'/%3E%3C/svg%3E"); color: var(--green); }

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

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

  .site-nav.is-open a {
    color: var(--ink);
  }

  .nav-cta {
    width: 100%;
  }

  .hero,
  .trust-section,
  .split-section,
  .service-layout,
  .form-hero,
  .page-hero.has-visual {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .intro-strip,
  .offer-grid,
  .proof-grid,
  .appointment-grid,
  .four-grid,
  .horizontal-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-summary {
    position: static;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-text {
    display: none;
  }

  .hero,
  .section,
  .page-hero,
  .form-hero,
  .final-cta {
    width: min(100% - 28px, var(--max));
  }

  .hero-copy h1,
  .page-hero h1,
  .form-hero h1,
  .thank-you h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .page-hero h1,
  .form-hero h1 {
    font-size: clamp(2.1rem, 9.4vw, 3rem);
  }

  .hero-proof,
  .intro-strip,
  .offer-grid,
  .proof-grid,
  .appointment-grid,
  .four-grid,
  .horizontal-steps,
  .two-col,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .hero-visual {
    display: grid;
  }

  .page-hero::after {
    opacity: 0.45;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-cta-actions,
  .footer-cta-actions .button {
    width: 100%;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .floating-whatsapp {
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp .whatsapp-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .hero-visual picture,
  .floating-card,
  .page-visual,
  .form-hero-side,
  .region-panel,
  .final-cta,
  .legal-content,
  .thanks-card,
  .floating-whatsapp {
    transform: none !important;
  }
}

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

  .floating-whatsapp {
    animation: none !important;
  }
}
