@font-face {
  font-family: "Outfit";
  src: url("fonts/Outfit-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --paper: #fffaf7;
  --paper-deep: #fdf3ed;
  --ink: #171719;
  --ink-soft: #5d585f;
  --muted: #8d8790;
  --line: #ece0d9;
  --line-soft: #f4ebe6;
  --line-strong: #ddccc3;
  --orange: #ff5a24;
  --orange-dark: #e04512;
  --orange-soft: #ffe7dd;
  --mint: #00a67e;
  --mint-soft: #e3f7f0;
  --shadow-s: 0 6px 18px rgba(49, 31, 23, .05);
  --shadow-m: 0 14px 38px rgba(49, 31, 23, .08);
  --shadow-l: 0 30px 70px rgba(49, 31, 23, .16);
  --r-s: 14px;
  --r-m: 20px;
  --r-l: 28px;
  --container: 1140px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { border: 0; color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
[id] { scroll-margin-top: 84px; }
:focus-visible {
  outline: 3px solid rgba(255, 90, 36, .45);
  outline-offset: 4px;
  border-radius: 10px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { letter-spacing: -.04em; line-height: 1.02; }
h1 em, h2 em { color: var(--orange); font-style: normal; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.container { width: min(var(--container), calc(100% - 44px)); margin-inline: auto; }
.section { padding: 96px 0; }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(16px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 24px rgba(49, 31, 23, .05);
}
.nav {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 1.08rem; font-weight: 800; letter-spacing: -.03em; }
.brand img { border-radius: 10px; }
.desktop-nav { display: flex; align-items: center; gap: 26px; color: var(--ink-soft); font-size: .92rem; font-weight: 600; }
.desktop-nav a { position: relative; padding: 22px 0; transition: color .2s ease; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 16px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
  background: var(--orange);
  transition: transform .25s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ---------------- Buttons ---------------- */
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-orange { background: var(--orange); color: var(--white); box-shadow: 0 10px 24px rgba(255, 90, 36, .26); }
.button-orange:hover { background: var(--orange-dark); box-shadow: 0 14px 30px rgba(255, 90, 36, .3); }
.button-dark { background: var(--ink); color: var(--white); box-shadow: 0 10px 24px rgba(23, 23, 25, .18); }
.button-dark:hover { background: #2c2a2d; }
.button-light { border-color: var(--line); background: var(--white); color: var(--ink); box-shadow: var(--shadow-s); }
.button-light:hover { box-shadow: var(--shadow-m); }
.button-login { min-height: 42px; padding-inline: 16px; color: var(--ink-soft); background: transparent; }
.button-login:hover { color: var(--ink); background: var(--paper-deep); }
.button-large { min-height: 54px; padding-inline: 28px; font-size: 1rem; }
.full-button { width: 100%; }

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.menu-toggle span { position: absolute; left: 12px; width: 18px; height: 2px; border-radius: 2px; background: var(--ink); transition: top .25s ease, transform .25s ease; }
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }
.mobile-menu { display: none; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: 128px 0 84px;
  overflow: hidden;
  background: linear-gradient(170deg, #fff3ec 0%, var(--paper) 52%, var(--white) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 20px;
  padding: 0 14px;
  border: 1px solid rgba(255, 90, 36, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: var(--orange-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3.1rem, 5.6vw, 4.6rem);
  font-weight: 800;
}
.hero-copy {
  max-width: 30ch;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: .88rem;
  font-weight: 600;
}
.hero-proof li { display: flex; align-items: center; gap: 7px; }
.hero-proof li::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: none;
  border-radius: 50%;
  background: var(--mint-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300a67e' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 9px no-repeat;
}

/* --- Fotografia humana com o produto ainda visível --- */
.hero-visual { display: flex; flex-direction: column; align-items: center; }
.hero-visual-human { align-items: stretch; }
.client-hero-scene { min-height: 610px; position: relative; overflow: hidden; border-radius: 40px; background: #d8c8bc; box-shadow: 0 30px 70px rgba(53, 32, 24, .2); }
.client-hero-scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(18, 13, 11, .58)); pointer-events: none; }
.client-hero-scene > img { width: 100%; height: 100%; position: absolute; object-fit: cover; object-position: 54% center; }
.hero-app-float { width: 174px; height: 356px; position: absolute; z-index: 2; right: 22px; bottom: 22px; overflow: hidden; border: 7px solid #0a090a; border-radius: 31px; background: #0a090a; box-shadow: 0 24px 45px rgba(0, 0, 0, .38); transform: rotate(3deg); }
.hero-app-float picture, .hero-app-float img { display: block; width: 100%; height: 100%; }
.hero-app-float img { object-fit: cover; object-position: top; }
.hero-app-island { width: 56px; height: 16px; position: absolute; z-index: 2; top: 7px; left: 50%; transform: translateX(-50%); border-radius: 12px; background: #050505; }
.scene-caption { position: absolute; z-index: 2; bottom: 29px; left: 26px; display: flex; align-items: center; gap: 9px; margin: 0; color: var(--white); font-size: .73rem; font-weight: 750; }
.scene-caption span { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(0, 200, 150, .16); }

.professional-pair { min-height: 610px; position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.professional-pair figure { min-width: 0; position: relative; overflow: hidden; margin: 0; border-radius: 34px; background: #d4c3b6; box-shadow: 0 24px 55px rgba(53, 32, 24, .16); }
.professional-pair figure::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(13, 10, 9, .72)); }
.professional-pair figure > img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .7s var(--ease); }
.professional-pair figure:hover > img { transform: scale(1.025); }
.professional-pair figcaption { position: absolute; z-index: 1; right: 19px; bottom: 19px; left: 19px; color: var(--white); }
.professional-pair figcaption strong, .professional-pair figcaption span { display: block; }
.professional-pair figcaption strong { font-size: 1.08rem; }
.professional-pair figcaption span { margin-top: 2px; color: rgba(255, 255, 255, .62); font-size: .66rem; }
.pair-bridge { z-index: 3; align-self: center; display: flex; align-items: center; gap: 10px; margin-top: 14px; padding: 9px 14px 9px 9px; border: 1px solid rgba(255, 255, 255, .74); border-radius: 18px; background: rgba(255, 255, 255, .94); color: var(--ink); box-shadow: 0 12px 28px rgba(31, 19, 14, .14); backdrop-filter: blur(14px); white-space: nowrap; }
.pair-bridge img { border-radius: 10px; }
.pair-bridge p { margin: 0; }
.pair-bridge strong, .pair-bridge span { display: block; }
.pair-bridge strong { font-size: .7rem; }
.pair-bridge span { color: var(--muted); font-size: .56rem; }

.stage-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: .8rem;
  font-weight: 600;
}
.stage-note span { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(0, 166, 126, .13); }

/* ---------------- Section heading ---------------- */
.section-heading { max-width: 720px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.centered .eyebrow { justify-content: center; }
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--orange); }
.section-heading h2 { margin-bottom: 14px; font-size: clamp(2.3rem, 4.4vw, 3.4rem); font-weight: 800; }
.section-heading > p:last-of-type { max-width: 54ch; margin-bottom: 0; color: var(--ink-soft); font-size: 1.06rem; }
.centered > p:last-of-type { margin-inline: auto; }

/* ---------------- Ato 1 · Problema ---------------- */
.business-problem { overflow: hidden; background: #19181a; color: var(--white); }
.problem-editorial { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(48px, 7vw, 94px); align-items: center; }
.problem-photo { min-height: 720px; position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, .08); border-radius: 40px; background: #2a2523; box-shadow: 0 30px 70px rgba(0, 0, 0, .3); }
.problem-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(12, 9, 8, .72)); }
.problem-photo > img { width: 100%; height: 100%; position: absolute; object-fit: cover; object-position: 52% center; }
.empty-chair-note { position: absolute; z-index: 1; right: 24px; bottom: 24px; left: 24px; display: flex; align-items: center; gap: 13px; padding: 16px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 20px; background: rgba(20, 17, 16, .74); backdrop-filter: blur(12px); }
.empty-chair-note > span { width: 11px; height: 11px; flex: 0 0 auto; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(255, 90, 36, .13); }
.empty-chair-note p { margin: 0; }
.empty-chair-note strong, .empty-chair-note small { display: block; }
.empty-chair-note strong { font-size: .82rem; }
.empty-chair-note small { margin-top: 3px; color: rgba(255, 255, 255, .48); font-size: .65rem; }
.problem-content .section-heading { margin-bottom: 35px; }
.problem-content .eyebrow { color: #ff9d7a; }
.problem-content .section-heading h2 { color: var(--white); font-size: clamp(2.8rem, 5vw, 4.8rem); line-height: .96; letter-spacing: -.055em; }
.problem-content .section-heading > p:last-of-type { color: rgba(255, 255, 255, .53); }
.problem-list { display: grid; }
.problem-list article { display: grid; grid-template-columns: 40px 1fr; gap: 15px; padding: 19px 0; border-top: 1px solid rgba(255, 255, 255, .1); }
.problem-list article > span { color: #ff8d64; font-size: .7rem; font-weight: 900; }
.problem-list h3 { margin-bottom: 5px; font-size: 1.12rem; font-weight: 800; letter-spacing: -.025em; }
.problem-list p { margin: 0; color: rgba(255, 255, 255, .5); font-size: .86rem; }
.problem-turn { margin: 25px 0 0; color: rgba(255, 255, 255, .5); font-size: 1rem; }
.problem-turn strong { color: var(--white); }

/* ---------------- Ato 2 · Jornada animada ---------------- */
.story { overflow: clip; background: #f4efeb; }
.story-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: clamp(48px, 8vw, 112px); align-items: start; }
.story-rail { display: grid; }
.story-step {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 30px 26px;
  border: 1px solid transparent;
  border-bottom-color: rgba(23, 23, 25, .1);
  border-radius: 24px;
  opacity: .5;
  cursor: pointer;
  transition: opacity .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s var(--ease);
}
.story-step:hover { opacity: .8; }
.story-hit { position: absolute; z-index: 2; inset: 0; border-radius: inherit; background: transparent; cursor: pointer; }
.story-hit:focus-visible { outline: 3px solid rgba(255, 90, 36, .28); outline-offset: 3px; }
.story-step.active { transform: translateX(8px); border-color: rgba(255, 90, 36, .14); background: var(--white); opacity: 1; box-shadow: 0 20px 50px rgba(64, 42, 32, .09); }
.story-number { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--ink-soft); font-size: .73rem; font-weight: 900; transition: color .3s ease, background .3s ease, border-color .3s ease; }
.story-step.active .story-number { border-color: var(--orange); background: var(--orange); color: var(--white); }
.story-kicker { margin: 1px 0 7px; color: var(--orange-dark); font-size: .69rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.story-step h3 { margin-bottom: 8px; font-size: clamp(1.55rem, 2.4vw, 2rem); font-weight: 850; letter-spacing: -.04em; }
.story-step h3 + p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.story-outcome { display: inline-flex; align-items: center; gap: 8px; margin-top: 17px; color: #08725d; font-size: .78rem; font-weight: 800; }
.story-outcome::before { content: "→"; }
.story-stage { min-height: 680px; position: sticky; top: 84px; display: grid; place-items: center; align-self: start; overflow: hidden; border: 1px solid rgba(255, 255, 255, .08); border-radius: 42px; background: radial-gradient(circle at 50% 42%, #414044, #242326 54%, #19181a 100%); box-shadow: 0 34px 80px rgba(35, 24, 21, .22); }
.story-glow { width: 420px; height: 420px; position: absolute; border-radius: 50%; background: rgba(255, 90, 36, .2); filter: blur(60px); }
.story-phone { --rx: 0deg; --ry: 0deg; width: 292px; height: 596px; position: relative; z-index: 1; overflow: hidden; border: 9px solid #080809; border-radius: 48px; background: #f8f7f6; box-shadow: 0 36px 70px rgba(0, 0, 0, .45), inset 0 0 0 1px rgba(255, 255, 255, .1); transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .24s ease; }
.story-island { width: 86px; height: 24px; position: absolute; z-index: 8; top: 10px; left: 50%; transform: translateX(-50%); border-radius: 20px; background: #060607; }
.story-screen { position: absolute; inset: 0; padding: 52px 17px 18px; background: #f8f7f6; opacity: 0; transform: translateY(18px) scale(.985); pointer-events: none; transition: opacity .42s ease, transform .5s var(--ease); }
.story-screen.active { opacity: 1; transform: none; pointer-events: auto; }
.story-appbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.story-appbar strong { font-size: 1.17rem; letter-spacing: -.035em; }
.story-appbar > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 12px; background: var(--orange-soft); color: var(--orange-dark); font-size: .62rem; font-weight: 900; }
.story-search { min-height: 44px; display: flex; align-items: center; gap: 9px; padding: 0 13px; border: 1px solid rgba(23, 23, 25, .07); border-radius: 14px; background: var(--white); color: var(--muted); font-size: .72rem; box-shadow: 0 7px 18px rgba(23, 23, 25, .04); }
.story-search svg { width: 16px; height: 16px; fill: none; stroke: var(--orange); }
.story-map { height: 210px; position: relative; margin: 11px 0; overflow: hidden; border-radius: 18px; background: #e5e0dc; }
.story-map::before, .story-map::after, .story-map i { content: ""; position: absolute; background: rgba(255, 255, 255, .82); }
.story-map::before { width: 28px; height: 130%; top: -18%; left: 42%; transform: rotate(25deg); }
.story-map::after { width: 120%; height: 20px; top: 48%; left: -10%; transform: rotate(-8deg); }
.story-map i:nth-child(1) { width: 18px; height: 120%; left: 12%; transform: rotate(-28deg); }
.story-map i:nth-child(2) { width: 120%; height: 15px; top: 17%; left: -10%; transform: rotate(7deg); }
.story-map i:nth-child(3) { width: 120%; height: 14px; bottom: 12%; left: -10%; transform: rotate(15deg); }
.map-pin { width: 30px; height: 30px; position: absolute; z-index: 2; display: block; border: 7px solid var(--white); border-radius: 50% 50% 50% 3px; background: var(--orange); box-shadow: 0 8px 16px rgba(88, 57, 44, .22); transform: rotate(-45deg); }
.pin-one { top: 58px; left: 130px; }
.pin-two { right: 42px; bottom: 42px; background: var(--mint); transform: rotate(-45deg) scale(.82); }
.story-shop-card { display: grid; grid-template-columns: 39px 1fr auto; gap: 10px; align-items: center; margin-top: 8px; padding: 11px; border: 1px solid rgba(23, 23, 25, .06); border-radius: 16px; background: var(--white); box-shadow: 0 8px 20px rgba(23, 23, 25, .045); }
.story-shop-card.muted { opacity: .57; }
.shop-avatar { width: 39px; height: 39px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; background: var(--orange-soft); color: var(--orange-dark); font-size: .62rem; font-weight: 900; }
.story-shop-card strong, .story-shop-card small, .selected-shop strong, .selected-shop small { display: block; }
.story-shop-card strong, .selected-shop strong { font-size: .72rem; }
.story-shop-card small, .selected-shop small { margin-top: 2px; color: var(--muted); font-size: .58rem; }
.story-shop-card > span { padding: 5px 7px; border-radius: 99px; background: var(--mint-soft); color: #08725d; font-size: .51rem; font-weight: 850; }
.selected-shop { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; padding: 13px; border-radius: 17px; background: var(--white); box-shadow: 0 8px 24px rgba(23, 23, 25, .05); }
.story-days { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin-bottom: 22px; }
.story-days > span { display: grid; gap: 5px; place-items: center; padding: 9px 3px; border: 1px solid var(--line); border-radius: 13px; color: var(--muted); font-size: .5rem; font-weight: 800; }
.story-days small { font-size: .75rem; }
.story-days .active { border-color: var(--orange); background: var(--orange); color: var(--white); }
.slot-label { margin: 0 0 10px; font-size: .67rem; font-weight: 800; }
.story-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.story-slots span { display: grid; min-height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: var(--white); color: var(--ink-soft); font-size: .65rem; font-weight: 800; }
.story-slots .active { border-color: var(--orange); background: var(--orange-soft); color: var(--orange-dark); }
.booking-confirm { position: absolute; right: 17px; bottom: 18px; left: 17px; padding: 14px; border-radius: 17px; background: var(--ink); color: var(--white); text-align: center; }
.booking-confirm span, .booking-confirm strong { display: block; }
.booking-confirm span { margin-bottom: 5px; color: rgba(255, 255, 255, .5); font-size: .58rem; }
.booking-confirm strong { font-size: .7rem; }
.return-hero { min-height: 170px; display: flex; flex-direction: column; justify-content: flex-end; margin-bottom: 12px; padding: 19px; border-radius: 22px; background: linear-gradient(140deg, #211f20, #383136); color: var(--white); }
.return-hero span, .return-hero strong, .return-hero small { display: block; }
.return-hero span { margin-bottom: auto; color: #ff9d7a; font-size: .58rem; font-weight: 850; text-transform: uppercase; }
.return-hero strong { margin-bottom: 5px; font-size: 1.15rem; letter-spacing: -.04em; }
.return-hero small { color: rgba(255, 255, 255, .52); font-size: .62rem; }
.story-loyalty-card { position: relative; padding: 16px; border: 1px solid rgba(0, 166, 126, .15); border-radius: 19px; background: var(--white); box-shadow: 0 9px 25px rgba(23, 23, 25, .05); }
.story-loyalty-card > div span, .story-loyalty-card > div strong, .story-loyalty-card > small { display: block; }
.story-loyalty-card > div span { color: var(--muted); font-size: .55rem; text-transform: uppercase; }
.story-loyalty-card > div strong { margin-top: 3px; font-size: .76rem; }
.story-loyalty-card > b { position: absolute; top: 16px; right: 16px; color: #008f6c; font-size: .58rem; }
.story-loyalty-card > i { height: 7px; display: block; margin: 14px 0 9px; overflow: hidden; border-radius: 99px; background: #e5ece9; }
.story-loyalty-card > i span { width: 72%; height: 100%; display: block; border-radius: inherit; background: var(--mint); }
.story-loyalty-card > small { color: var(--muted); font-size: .56rem; }
.return-list { display: grid; gap: 7px; margin-top: 11px; }
.return-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 9px; align-items: center; padding: 10px; border-radius: 15px; background: var(--white); }
.return-list > div > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: var(--orange-soft); color: var(--orange-dark); }
.return-list p { margin: 0; }
.return-list strong, .return-list small { display: block; }
.return-list strong { font-size: .68rem; }
.return-list small { color: var(--muted); font-size: .55rem; }
.story-stage-note { position: absolute; bottom: 17px; left: 50%; z-index: 2; display: flex; align-items: center; gap: 8px; margin: 0; transform: translateX(-50%); color: rgba(255, 255, 255, .5); font-size: .64rem; font-weight: 750; white-space: nowrap; }
.story-stage-note span { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(0, 200, 150, .13); }

/* ---------------- Ato 3 · Recursos ---------------- */
.features { background: var(--white); }

/* ---------------- Produto em funcionamento ---------------- */
.features-section { background: var(--white); }
.features-section > .container > .section-heading { max-width: 780px; }
.features-section > .container > .section-heading h2 { font-size: clamp(2.8rem, 5.8vw, 5rem); font-weight: 850; line-height: .98; }
.product-showcases { display: grid; gap: 28px; }
.product-showcase {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding: clamp(38px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: linear-gradient(135deg, #fffaf7, #fff 72%);
  box-shadow: var(--shadow-m);
}
.showcase-loyalty { background: linear-gradient(135deg, #f2fffb, #fff 72%); }
.showcase-haircut { background: linear-gradient(135deg, #fff5ef, #fff 72%); }
.product-showcase-reverse .product-demo { order: 2; }
.product-demo {
  width: min(100%, 480px);
  min-height: 510px;
  position: relative;
  isolation: isolate;
  justify-self: center;
  padding: 24px;
  border: 1px solid rgba(23, 23, 25, .08);
  border-radius: 34px;
  background: #f3eeea;
  box-shadow: 0 28px 70px rgba(58, 34, 24, .16), inset 0 1px 0 #fff;
}
.product-demo::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 310px;
  height: 310px;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 90, 36, .12);
  filter: blur(4px);
}
.demo-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.demo-topbar small, .demo-topbar strong { display: block; }
.demo-topbar small { margin-bottom: 3px; color: var(--muted); font-size: .68rem; font-weight: 700; }
.demo-topbar strong { font-size: 1.32rem; letter-spacing: -.035em; }
.demo-topbar > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 14px; background: var(--orange-soft); color: var(--orange-dark); font-size: .72rem; font-weight: 900; }
.demo-period { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-bottom: 14px; padding: 4px; border: 1px solid rgba(23, 23, 25, .05); border-radius: 999px; background: #fff; }
.demo-period span { display: grid; min-height: 35px; place-items: center; border-radius: 999px; color: var(--muted); font-size: .67rem; font-weight: 850; }
.demo-period .active { background: var(--orange); color: #fff; box-shadow: 0 7px 15px rgba(255, 90, 36, .23); }
.revenue-card { min-height: 145px; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 22px; border: 1px solid rgba(255, 90, 36, .13); border-radius: 25px; background: #fff; box-shadow: 0 12px 30px rgba(52, 29, 21, .06); }
.revenue-card small, .revenue-card strong, .revenue-card span { display: block; }
.revenue-card small, .metric-row small, .goal-card small { margin-bottom: 12px; color: var(--muted); font-size: .62rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.revenue-card strong { margin-bottom: 10px; color: var(--orange); font-size: 1.55rem; letter-spacing: -.04em; }
.revenue-card span { color: var(--ink-soft); font-size: .7rem; font-weight: 650; }
.revenue-card > i { width: 40px; height: 40px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 14px; background: var(--orange-soft); color: var(--orange-dark); font-style: normal; font-weight: 900; }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.metric-row > div { min-height: 102px; padding: 16px; border: 1px solid rgba(23, 23, 25, .06); border-radius: 20px; background: #fff; }
.metric-row small { display: block; margin-bottom: 12px; }
.metric-row strong { font-size: .78rem; }
.goal-card { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 10px; padding: 17px; border-radius: 20px; background: #211f20; color: #fff; }
.goal-card small { display: block; margin-bottom: 3px; color: rgba(255, 255, 255, .43); }
.goal-card strong { display: block; margin-bottom: 10px; font-size: .84rem; }
.goal-card div > span { width: 180px; height: 5px; display: block; overflow: hidden; border-radius: 99px; background: rgba(255, 255, 255, .1); }
.goal-card div > span i { width: 68%; height: 100%; display: block; border-radius: inherit; background: var(--orange); }
.product-showcase.visible .goal-card div > span i { animation: goalProgress 1.2s var(--ease) both; }
.goal-card > b { width: 52px; height: 52px; display: grid; place-items: center; border: 5px solid rgba(255, 90, 36, .22); border-top-color: var(--orange); border-radius: 50%; color: #fff; font-size: .57rem; }
.showcase-copy { max-width: 510px; }
.showcase-copy h3 { margin-bottom: 18px; font-size: clamp(2.35rem, 4vw, 4rem); font-weight: 850; line-height: .98; letter-spacing: -.055em; }
.showcase-copy > p:not(.card-label) { margin-bottom: 28px; color: var(--ink-soft); font-size: 1.04rem; }
.card-label { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--orange-dark); font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.card-label span { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }
.card-label.business span { background: var(--orange); }
.benefit-list { display: grid; margin: 0; padding: 0; list-style: none; }
.benefit-list li { display: grid; grid-template-columns: 34px 1fr; gap: 13px; padding: 15px 0; border-top: 1px solid var(--line); }
.benefit-list > li > span { color: var(--orange); font-size: .7rem; font-weight: 900; }
.benefit-list strong, .benefit-list small { display: block; }
.benefit-list strong { margin-bottom: 3px; }
.benefit-list small { color: var(--ink-soft); font-size: .8rem; }
.loyalty-demo { background: #f3eeea; }
.mint-avatar { background: rgba(0, 200, 150, .13) !important; color: #009b73 !important; }
.loyalty-status { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; padding: 11px 14px; border-radius: 14px; background: #201f21; color: #fff; font-size: .68rem; }
.loyalty-status span { color: rgba(255, 255, 255, .53); }
.loyalty-status b { color: #77e6c9; }
.loyalty-card { padding: 22px; border: 1px solid rgba(0, 200, 150, .14); border-radius: 25px; background: #fff; box-shadow: 0 15px 36px rgba(31, 53, 47, .08); }
.loyalty-brand { display: flex; align-items: center; gap: 11px; }
.loyalty-brand > i { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 14px; background: rgba(0, 200, 150, .14); color: #009b73; font-size: .68rem; font-style: normal; font-weight: 900; }
.loyalty-brand > div { min-width: 0; flex: 1; }
.loyalty-brand strong, .loyalty-brand small { display: block; }
.loyalty-brand strong { font-size: .83rem; }
.loyalty-brand small { color: var(--muted); font-size: .68rem; }
.loyalty-brand > span { padding: 5px 8px; border-radius: 999px; background: rgba(0, 200, 150, .12); color: #008967; font-size: .58rem; font-weight: 900; }
.loyalty-track { height: 9px; position: relative; margin: 25px 0 17px; overflow: hidden; border-radius: 99px; background: #e8eeeb; }
.loyalty-track i { width: 74%; height: 100%; display: block; position: relative; overflow: hidden; border-radius: inherit; background: var(--mint); }
.product-showcase.visible .loyalty-track i { animation: loyaltyProgress 1.3s var(--ease) both; }
.loyalty-track i::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .65), transparent); animation: trackShine 2.8s ease-in-out infinite 1s; }
.loyalty-card p { margin: 0; color: var(--ink-soft); font-size: .74rem; }
.reward-ready { display: flex; align-items: center; gap: 12px; margin-top: 12px; padding: 16px; border-radius: 20px; background: #fff; box-shadow: 0 12px 28px rgba(31, 53, 47, .06); }
.reward-ready > i { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #fff; font-style: normal; font-weight: 900; }
.reward-ready small, .reward-ready strong { display: block; }
.reward-ready small { color: var(--muted); font-size: .62rem; }
.reward-ready strong { font-size: .78rem; }
.plain-checks { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.plain-checks li { color: #494449; font-size: .9rem; font-weight: 700; }
.plain-checks li::before { content: ""; width: 8px; height: 8px; display: inline-block; margin-right: 12px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(0, 166, 126, .1); }
.haircut-demo { background: #1d1b1c; color: #fff; }
.haircut-demo .demo-topbar small { color: rgba(255, 255, 255, .44); }
.haircut-demo .demo-topbar > span { background: rgba(255, 90, 36, .17); color: #ff9d7a; }
.cut-photo { height: 290px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; overflow: hidden; border-radius: 25px; background: #171516; }
.cut-photo::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(12, 9, 9, .82)); }
.cut-photo > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center 28%; }
.cut-photo > span { position: absolute; z-index: 1; top: 15px; left: 15px; padding: 6px 9px; border-radius: 999px; background: rgba(0, 0, 0, .42); font-size: .62rem; font-weight: 800; backdrop-filter: blur(9px); }
.cut-photo > b { position: relative; z-index: 1; font-size: 1.25rem; letter-spacing: -.03em; }
.cut-note { margin-top: 11px; padding: 17px; border: 1px solid rgba(255, 255, 255, .07); border-radius: 20px; background: rgba(255, 255, 255, .055); }
.cut-note > div { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.cut-note strong { font-size: .8rem; }
.cut-note span { color: #ffc857; font-size: .7rem; letter-spacing: 2px; }
.cut-note p { margin: 9px 0 0; color: rgba(255, 255, 255, .48); font-size: .68rem; }
.operation-stories { display: grid; gap: 28px; margin-bottom: 28px; }
.operation-card { min-height: 590px; display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(40px, 6vw, 84px); align-items: center; padding: clamp(36px, 5vw, 66px); overflow: hidden; border: 1px solid var(--line); border-radius: 40px; background: linear-gradient(135deg, #fff, #fff7f2); box-shadow: var(--shadow-m); }
.operation-card-reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); background: linear-gradient(135deg, #f1fffb, #fff 68%); }
.operation-copy h3 { margin-bottom: 16px; font-size: clamp(2.25rem, 4vw, 3.6rem); font-weight: 850; line-height: .99; letter-spacing: -.052em; }
.operation-copy > p:not(.card-label) { margin-bottom: 24px; color: var(--ink-soft); font-size: 1rem; }
.story-points { display: grid; gap: 0; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.story-points li { padding: 12px 0 12px 24px; position: relative; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: .87rem; font-weight: 700; }
.story-points li::before { content: ""; width: 8px; height: 8px; position: absolute; top: 18px; left: 1px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px var(--orange-soft); }
.agenda-visual, .service-visual { width: min(100%, 500px); justify-self: center; padding: 23px; border: 1px solid rgba(23, 23, 25, .07); border-radius: 30px; background: #f1ece8; box-shadow: 0 24px 52px rgba(60, 38, 29, .14), inset 0 1px 0 var(--white); }
.agenda-head, .agenda-person, .agenda-row, .service-top, .service-line, .stock-action, .service-total { display: flex; align-items: center; }
.agenda-head, .service-top { justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.agenda-head small, .agenda-head strong, .agenda-person strong, .agenda-person small, .agenda-row strong, .agenda-row small, .service-top small, .service-top strong, .service-line strong, .service-line small, .stock-action small, .stock-action strong { display: block; }
.agenda-head small, .service-top small { margin-bottom: 3px; color: var(--muted); font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.agenda-head strong, .service-top strong { font-size: 1rem; }
.agenda-head > span { padding: 7px 10px; border-radius: 99px; background: var(--orange); color: var(--white); font-size: .58rem; font-weight: 850; }
.agenda-person { gap: 10px; margin-bottom: 10px; padding: 12px; border-radius: 16px; background: var(--ink); color: var(--white); }
.agenda-person i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 12px; background: rgba(255, 255, 255, .1); color: #ff9d7a; font-size: .68rem; font-style: normal; font-weight: 900; }
.agenda-person div { flex: 1; }
.agenda-person strong { font-size: .72rem; }
.agenda-person small { margin-top: 2px; color: rgba(255, 255, 255, .42); font-size: .56rem; }
.agenda-person b { color: #7be6ca; font-size: .63rem; }
.agenda-row { gap: 12px; margin-top: 8px; padding: 13px; border: 1px solid rgba(23, 23, 25, .06); border-radius: 16px; background: var(--white); }
.agenda-row time { width: 40px; flex: 0 0 auto; color: var(--ink-soft); font-size: .64rem; font-weight: 850; }
.agenda-row div { min-width: 0; flex: 1; }
.agenda-row strong { font-size: .7rem; }
.agenda-row small { margin-top: 2px; color: var(--muted); font-size: .56rem; }
.agenda-row > span { padding: 5px 7px; border-radius: 99px; background: var(--mint-soft); color: #08725d; font-size: .49rem; font-weight: 850; }
.agenda-row.active { border-color: rgba(255, 90, 36, .24); box-shadow: 0 10px 24px rgba(255, 90, 36, .07); }
.agenda-row.active > span { background: var(--orange-soft); color: var(--orange-dark); }
.agenda-row.empty { border-style: dashed; background: rgba(255, 255, 255, .44); }
.agenda-row.empty > span { background: var(--ink); color: var(--white); }
.service-visual { background: #222124; color: var(--white); box-shadow: 0 24px 52px rgba(23, 23, 25, .23); }
.service-top > span { padding: 7px 9px; border-radius: 99px; background: rgba(0, 200, 150, .14); color: #7be6ca; font-size: .53rem; font-weight: 850; }
.service-top small { color: rgba(255, 255, 255, .38); }
.service-line { gap: 11px; padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.service-line i { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; background: rgba(255, 255, 255, .06); color: rgba(255, 255, 255, .48); font-size: .57rem; font-style: normal; }
.service-line div { flex: 1; }
.service-line strong { font-size: .72rem; }
.service-line small { margin-top: 3px; color: rgba(255, 255, 255, .38); font-size: .56rem; }
.service-line b { font-size: .7rem; }
.stock-action { gap: 10px; margin: 16px 0; padding: 14px; border-radius: 16px; background: rgba(0, 200, 150, .1); }
.stock-action > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: var(--mint); color: #073b30; font-weight: 900; }
.stock-action small { color: #73d8bd; font-size: .54rem; }
.stock-action strong { margin-top: 2px; font-size: .64rem; }
.service-total { justify-content: space-between; padding-top: 15px; }
.service-total span { color: rgba(255, 255, 255, .46); font-size: .65rem; }
.service-total strong { color: #ff9d7a; font-size: 1.25rem; }
.operation-card-reverse .service-visual { order: 1; }
.operation-card-reverse .operation-copy { order: 2; }
.product-showcases { margin-bottom: 28px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.capability-card { min-height: 400px; position: relative; display: flex; flex-direction: column; padding: 30px 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: #f5f0ec; }
.capability-index { position: absolute; top: 20px; right: 22px; color: rgba(23, 23, 25, .17); font-size: 2rem; font-weight: 900; letter-spacing: -.06em; }
.capability-card h3 { margin-bottom: 13px; font-size: 1.7rem; font-weight: 850; line-height: 1.05; letter-spacing: -.045em; }
.capability-card > p:not(.card-label) { color: var(--ink-soft); font-size: .91rem; }
.capability-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 24px; }
.capability-tags span { padding: 7px 9px; border: 1px solid var(--line); border-radius: 99px; background: rgba(255, 255, 255, .68); color: var(--ink-soft); font-size: .58rem; font-weight: 800; }
.capability-card.dark { border-color: #29282b; background: #1c1b1d; color: var(--white); }
.capability-card.dark .capability-index { color: rgba(255, 255, 255, .13); }
.capability-card.dark .card-label { color: #7be6ca; }
.capability-card.dark > p:not(.card-label) { color: rgba(255, 255, 255, .52); }
.capability-card.dark .capability-tags span { border-color: rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .055); color: rgba(255, 255, 255, .66); }
.capability-card.network { background: linear-gradient(155deg, #fff7f2, #fff); }
.unit-map { display: flex; align-items: center; margin-top: auto; padding-top: 28px; }
.unit-map span { min-width: 65px; padding: 9px 7px; border: 1px solid rgba(255, 90, 36, .18); border-radius: 11px; background: var(--white); color: var(--orange-dark); font-size: .55rem; font-weight: 850; text-align: center; box-shadow: var(--shadow-s); }
.unit-map i { height: 1px; flex: 1; background: repeating-linear-gradient(90deg, var(--orange) 0 4px, transparent 4px 8px); }

/* ---------------- Onde você usa ---------------- */
.where { overflow: hidden; background: #1a191b; color: var(--white); }
.where .section-heading > p:last-child { color: rgba(255, 255, 255, .52); }
.where .eyebrow { color: #ff9d7a; }
.device-story { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(42px, 7vw, 92px); align-items: center; }
.device-stage { min-height: 620px; position: relative; display: grid; place-items: center; padding: 46px; border: 1px solid rgba(255, 255, 255, .07); border-radius: 42px; background: radial-gradient(circle at 65% 45%, rgba(255, 90, 36, .17), transparent 33%), #242326; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04); }
.browser-device { width: 96%; position: relative; z-index: 1; align-self: start; margin-top: 38px; overflow: hidden; border: 7px solid #0c0c0d; border-radius: 22px; background: #f5f2f0; box-shadow: 0 30px 60px rgba(0, 0, 0, .4); }
.browser-bar { height: 32px; display: flex; align-items: center; gap: 6px; padding: 0 11px; background: #151416; }
.browser-bar i { width: 6px; height: 6px; border-radius: 50%; background: #48464a; }
.browser-bar i:first-child { background: var(--orange); }
.browser-bar span { margin-left: 10px; color: rgba(255, 255, 255, .36); font-size: .52rem; }
.browser-device picture { display: block; }
.browser-device img { display: block; width: 100%; height: auto; }
.mobile-device { width: 190px; height: 385px; position: absolute; z-index: 2; right: 22px; bottom: 34px; overflow: hidden; border: 7px solid #080809; border-radius: 34px; background: #080809; box-shadow: 0 30px 55px rgba(0, 0, 0, .48); transform: rotate(3deg); }
.mobile-device picture, .mobile-device img { display: block; width: 100%; height: 100%; }
.mobile-device img { object-fit: cover; object-position: top; }
.mobile-island { width: 63px; height: 17px; position: absolute; z-index: 2; top: 7px; left: 50%; transform: translateX(-50%); border-radius: 15px; background: #050506; }
.sync-pill { position: absolute; z-index: 3; bottom: 30px; left: 38px; display: flex; align-items: center; gap: 8px; margin: 0; padding: 10px 13px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 99px; background: rgba(17, 16, 18, .82); color: rgba(255, 255, 255, .66); font-size: .6rem; font-weight: 800; backdrop-filter: blur(10px); }
.sync-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(0, 200, 150, .1); }
.device-contexts { display: grid; }
.device-contexts article { padding: 30px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.device-contexts article:first-child { padding-top: 0; }
.device-contexts article:last-child { padding-bottom: 0; border-bottom: 0; }
.device-label { display: inline-flex; margin-bottom: 15px; padding: 6px 9px; border-radius: 99px; background: rgba(255, 90, 36, .14); color: #ff9d7a; font-size: .64rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.device-label.mobile { background: rgba(0, 200, 150, .11); color: #7be6ca; }
.device-contexts h3 { margin-bottom: 10px; font-size: clamp(1.7rem, 2.6vw, 2.25rem); font-weight: 850; line-height: 1.02; letter-spacing: -.04em; }
.device-contexts p { color: rgba(255, 255, 255, .5); font-size: .93rem; }
.device-contexts ul { display: grid; gap: 8px; margin: 17px 0 19px; padding: 0; list-style: none; }
.device-contexts li { position: relative; padding-left: 18px; color: rgba(255, 255, 255, .7); font-size: .78rem; font-weight: 700; }
.device-contexts li::before { content: ""; width: 6px; height: 6px; position: absolute; top: .55em; left: 0; border-radius: 50%; background: var(--mint); }
.device-contexts .text-link { color: var(--white); font-size: .84rem; }

/* ---------------- Calculadora de oportunidade ---------------- */
.opportunity { background: var(--orange); }
.opportunity-shell { display: grid; grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr); gap: clamp(42px, 7vw, 92px); align-items: center; padding: clamp(38px, 6vw, 76px); border-radius: 44px; background: #1b1a1c; color: var(--white); box-shadow: 0 30px 75px rgba(77, 28, 10, .24); }
.opportunity-copy .eyebrow { color: #ff9d7a; }
.opportunity-copy h2 { margin-bottom: 18px; font-size: clamp(2.6rem, 5vw, 4.6rem); font-weight: 850; line-height: .96; letter-spacing: -.055em; }
.opportunity-copy h2 em { color: #ff8b61; }
.opportunity-copy > p:not(.eyebrow) { max-width: 47ch; color: rgba(255, 255, 255, .52); }
.estimate-rule { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.estimate-rule > span { width: 62px; height: 62px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255, 255, 255, .1); border-radius: 20px; background: rgba(255, 90, 36, .13); color: #ff9d7a; font-weight: 900; }
.estimate-rule p { margin: 0; }
.estimate-rule strong, .estimate-rule small { display: block; }
.estimate-rule strong { margin-bottom: 3px; font-size: .8rem; }
.estimate-rule small { max-width: 32ch; color: rgba(255, 255, 255, .38); font-size: .68rem; }
.calculator { padding: clamp(24px, 4vw, 38px); border-radius: 32px; background: var(--white); color: var(--ink); box-shadow: 0 24px 55px rgba(0, 0, 0, .28); }
.calculator-field { margin-bottom: 23px; }
.calculator-field > div { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 10px; }
.calculator-field label { color: var(--ink-soft); font-size: .76rem; font-weight: 750; }
.calculator-field output { color: var(--ink); font-size: 1.02rem; font-weight: 900; white-space: nowrap; }
.calculator-field input { width: 100%; height: 6px; accent-color: var(--orange); cursor: pointer; }
.calculator-field input:focus-visible { outline: 3px solid rgba(255, 90, 36, .24); outline-offset: 6px; }
.calculator-result { margin-top: 28px; padding: 23px; border-radius: 24px; background: var(--orange-soft); }
.calculator-result > span { display: block; margin-bottom: 6px; color: var(--orange-dark); font-size: .65rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.calculator-result > strong { display: block; color: var(--orange); font-size: clamp(2.05rem, 4vw, 3.25rem); line-height: 1; letter-spacing: -.055em; }
.calculator-result p { margin: 9px 0 0; color: var(--ink-soft); font-size: .72rem; }
.calculator-result b { color: var(--ink); }
.calculator-breakdown { display: flex; justify-content: space-between; gap: 20px; margin-top: 13px; padding: 14px 3px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: .72rem; }
.calculator-breakdown strong { color: var(--ink); }
.calculator-note { margin: 13px 0 0; color: var(--muted); font-size: .62rem; line-height: 1.45; }

/* ---------------- Comparativo cliente ---------------- */
.human-compare { overflow: hidden; background: var(--white); }
.compare-editorial { display: grid; grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr); gap: clamp(48px, 6vw, 82px); align-items: center; }
.compare-photo { min-height: 740px; position: relative; overflow: hidden; border-radius: 40px; background: #c8aa91; box-shadow: 0 30px 70px rgba(61, 38, 29, .18); }
.compare-photo::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(20, 13, 10, .72)); }
.compare-photo > img { width: 100%; height: 100%; position: absolute; object-fit: cover; object-position: 58% center; }
.compare-photo > div { position: absolute; z-index: 1; right: 28px; bottom: 28px; left: 28px; color: var(--white); }
.compare-photo > div span, .compare-photo > div strong { display: block; }
.compare-photo > div span { margin-bottom: 7px; color: #ffab8c; font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.compare-photo > div strong { max-width: 17ch; font-size: 1.65rem; line-height: 1.04; letter-spacing: -.04em; }
.compare-content .section-heading h2 { font-size: clamp(2.8rem, 5vw, 4.8rem); line-height: .96; letter-spacing: -.055em; }
.comparison-paths { display: grid; gap: 16px; }
.comparison-path { min-height: 214px; display: flex; flex-direction: column; gap: 22px; padding: 25px 28px; border: 1px solid var(--line); border-radius: 26px; background: var(--paper); }
.comparison-path.cutspot { border-color: #242225; background: #1c1b1d; color: var(--white); box-shadow: 0 20px 45px rgba(23, 23, 25, .16); }
.path-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.path-head > span { color: var(--ink-soft); font-size: .78rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.path-head > b { padding: 7px 10px; border-radius: 99px; background: #e8e1dc; color: #625b58; font-size: .67rem; }
.comparison-path.cutspot .path-head > span { color: #ff9d7a; }
.comparison-path.cutspot .path-head > b { background: rgba(0, 200, 150, .12); color: #7be6ca; }
.path-statement { margin: auto 0 0; }
.path-statement strong, .path-statement small { display: block; }
.path-statement strong { font-size: clamp(1.3rem, 2vw, 1.8rem); line-height: 1.05; letter-spacing: -.035em; }
.path-statement small { margin-top: 8px; color: #6c6562; font-size: .8rem; }
.comparison-path.cutspot .path-head, .comparison-path.cutspot .path-flow { border-color: rgba(255, 255, 255, .11); }
.comparison-path.cutspot .path-statement small { color: rgba(255, 255, 255, .58); }
.path-flow { display: flex; align-items: center; gap: 9px; padding-top: 14px; border-top: 1px solid var(--line); color: #756d69; font-size: .68rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.path-flow i { color: var(--orange); font-size: .9rem; font-style: normal; }
.comparison-path.cutspot .path-flow { color: #7be6ca; }
.comparison-path.cutspot .path-flow i { color: #ff9d7a; }

/* ---------------- Avaliações ---------------- */
.client-reviews { overflow: hidden; background: var(--white); }
.client-review-marquee { width: 100vw; margin-left: calc(50% - 50vw); overflow-x: auto; scrollbar-width: none; }
.client-review-marquee::-webkit-scrollbar { display: none; }
.client-review-marquee.is-animated { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.client-review-track { width: max-content; }
.client-review-marquee.is-animated .client-review-track { display: flex; animation: client-review-scroll 92s linear infinite; }
.client-review-marquee.is-animated:hover .client-review-track,
.client-review-marquee.is-animated:focus-within .client-review-track { animation-play-state: paused; }
.client-review-grid { display: flex; flex: 0 0 auto; gap: 16px; padding: 4px 8px 16px; }
.client-review-card { width: min(380px, calc(100vw - 48px)); min-height: 255px; display: flex; flex: 0 0 auto; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, #fff, #fff8f4); box-shadow: var(--shadow-s); }
.client-review-card:nth-child(3n + 2) { background: linear-gradient(145deg, #f2fffb, #fff); }
.review-mark { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 13px; background: var(--orange-soft); color: var(--orange); font-family: Georgia, serif; font-size: 2rem; font-weight: 900; line-height: 1; }
.client-review-card blockquote { margin: 0 0 25px; color: #302d30; font-size: 1.02rem; font-weight: 650; line-height: 1.5; }
.client-review-card blockquote strong { color: var(--ink); font-weight: 850; }
.client-review-card footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.client-review-card footer strong, .client-review-card footer span { display: block; }
.client-review-card footer strong { font-size: .78rem; }
.client-review-card footer .review-stars { color: #f2a900; font-size: .82rem; letter-spacing: .08em; text-align: right; }
@keyframes client-review-scroll { to { transform: translateX(-50%); } }

.business-reviews { position: relative; overflow: hidden; background: #171618; color: var(--white); }
.business-reviews::before { content: ""; width: 680px; height: 680px; position: absolute; top: -360px; right: -240px; border-radius: 50%; background: rgba(255, 90, 36, .2); filter: blur(100px); pointer-events: none; }
.business-reviews > .container { position: relative; }
.business-reviews-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: clamp(40px, 8vw, 120px); align-items: end; margin-bottom: 60px; }
.business-reviews-heading .eyebrow { color: #ff9b76; }
.business-reviews-heading h2 { max-width: 15ch; margin: 0; color: var(--white); font-size: clamp(3.1rem, 5.2vw, 5.1rem); font-weight: 850; line-height: .94; letter-spacing: -.06em; }
.business-reviews-heading > p { margin: 0; color: rgba(255, 255, 255, .56); font-size: 1.06rem; }
.client-logo-showcase { margin-bottom: 55px; padding: 25px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 32px; background: rgba(255, 255, 255, .055); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05); }
.client-logo-showcase > p { margin: 0 0 18px; color: rgba(255, 255, 255, .48); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.client-logo-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 8px; }
.client-logo-grid > div { min-width: 0; height: 92px; display: grid; place-items: center; overflow: hidden; padding: 12px; border: 1px solid rgba(255, 255, 255, .07); border-radius: 18px; background: #f7f4f1; transition: transform .28s var(--ease), background .28s ease; }
.client-logo-grid > div:hover { z-index: 1; background: var(--white); transform: translateY(-4px) scale(1.03); }
.client-logo-grid img { width: auto; max-width: 100%; height: auto; max-height: 100%; display: block; margin: auto; object-fit: contain; object-position: center; }

.business-review-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-flow: dense; gap: 14px; }
.business-review-card { min-height: 285px; display: flex; flex-direction: column; padding: 27px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 28px; background: #222124; box-shadow: 0 22px 55px rgba(0, 0, 0, .2); }
.business-review-card.featured { min-height: 390px; grid-column: span 2; background: #f7f3ef; color: var(--ink); }
.business-review-card.wide, .business-review-card.solo { grid-column: span 2; }
.business-review-card.accent { background: linear-gradient(145deg, #ff5a24, #e74616); }
.business-review-card.solo { background: linear-gradient(145deg, #243a35, #1b2825); }
.review-index { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 30px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; color: #ff9d7a; font-size: .66rem; font-weight: 900; }
.business-review-card.featured .review-index { border-color: var(--line); background: var(--orange-soft); color: var(--orange-dark); }
.business-review-card.accent .review-index { border-color: rgba(255, 255, 255, .28); color: var(--white); }
.business-review-card blockquote { margin: 0 0 30px; color: rgba(255, 255, 255, .84); font-size: 1rem; font-weight: 650; line-height: 1.48; }
.business-review-card blockquote strong { color: var(--white); font-weight: 850; }
.business-review-card.featured blockquote { max-width: 22ch; color: var(--ink); font-size: clamp(1.65rem, 3vw, 2.25rem); line-height: 1.14; letter-spacing: -.035em; }
.business-review-card.featured blockquote strong { color: var(--ink); }
.business-review-card.accent blockquote { color: var(--white); }
.business-review-card footer { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .1); }
.business-review-card.featured footer { border-color: var(--line); }
.business-review-card footer strong, .business-review-card footer span { display: block; }
.business-review-card footer strong { font-size: .78rem; }
.business-review-card footer .review-stars { margin-top: 7px; color: #ffc247; font-size: .78rem; letter-spacing: .08em; }
.business-review-card.featured footer .review-stars { color: #e59d00; }
.business-review-card.accent footer .review-stars { color: var(--white); }

/* ---------------- Ato 5 · Planos ---------------- */
.pricing { background: var(--white); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.p-card {
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--white);
  box-shadow: var(--shadow-s);
}
.p-featured { border-color: var(--orange); box-shadow: 0 20px 48px rgba(255, 90, 36, .16); }
.p-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.p-row span { padding: 6px 10px; border-radius: 999px; background: var(--orange-soft); color: var(--orange-dark); font-size: .68rem; font-weight: 800; }
.p-name { margin-bottom: 16px; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.p-price { margin-bottom: 14px; font-size: clamp(2.4rem, 3.6vw, 3.1rem); font-weight: 800; line-height: 1; letter-spacing: -.045em; }
.p-price sup { margin-right: 3px; font-size: .95rem; vertical-align: super; letter-spacing: 0; }
.p-price small { margin-left: 4px; color: var(--muted); font-size: .82rem; font-weight: 600; letter-spacing: 0; }
.p-price.p-contact { font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: -.035em; }
.p-desc { min-height: 52px; margin-bottom: 22px; color: var(--ink-soft); font-size: .94rem; }
.p-list { display: grid; gap: 11px; margin: 0 0 28px; padding: 0; list-style: none; }
.p-list li { display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); font-size: .94rem; }
.p-list li::before { content: "✓"; color: var(--orange); font-weight: 800; }
.p-card .button { margin-top: auto; }
.price-note { max-width: 62ch; margin: 26px auto 0; color: var(--muted); font-size: .84rem; text-align: center; }
.price-note strong { color: var(--ink-soft); }
.billing-toggle {
  width: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: -20px auto 34px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow-s);
}
.billing-toggle button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 750;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}
.billing-toggle button.active { background: var(--ink); color: var(--white); box-shadow: 0 7px 16px rgba(23, 23, 25, .18); }
.billing-toggle button span { margin-left: 5px; color: var(--orange-dark); font-size: .72rem; }
.billing-toggle button.active span { color: #ff9b76; }
.p-equivalent { min-height: 20px; margin: -6px 0 10px; color: var(--orange-dark); font-size: .82rem; font-weight: 750; }

/* ---------------- Ato 6 · FAQ ---------------- */
.faq { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.faq-layout .section-heading { position: sticky; top: 106px; margin-bottom: 0; }
.faq-layout .text-link { margin-top: 22px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; }
.text-link span { color: var(--orange); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(3px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  font-size: 1.04rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  transition: transform .2s ease;
}
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 64ch; margin: -2px 44px 22px 0; color: var(--ink-soft); }

/* ---------------- Ato 7 · CTA final ---------------- */
.final {
  padding: 104px 0;
  background: linear-gradient(180deg, var(--white), #fff2eb);
  text-align: center;
}
.final-inner { display: flex; flex-direction: column; align-items: center; }
.final-inner h2 { margin-bottom: 16px; font-size: clamp(2.5rem, 5.4vw, 4.1rem); font-weight: 800; }
.final-inner > p { max-width: 46ch; margin-bottom: 28px; color: var(--ink-soft); font-size: 1.1rem; }
.final-note { margin: 18px 0 0; color: var(--muted); font-size: .84rem; font-weight: 600; }

/* ---------------- Faixa cliente ---------------- */
.client-strip { padding: 46px 0; border-top: 1px solid var(--line); background: var(--white); }
.client-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.client-label { margin-bottom: 6px; color: var(--orange-dark); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.client-inner h2 { margin-bottom: 6px; font-size: 1.7rem; font-weight: 800; }
.client-inner p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.client-inner .button { flex: none; }

/* ---------------- Footer ---------------- */
.site-footer { padding: 62px 0 26px; background: #151416; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 44px; }
.footer-brand p { max-width: 260px; margin-top: 14px; color: rgba(255, 255, 255, .48); font-size: .93rem; }
.footer-column h2 { margin-bottom: 15px; color: rgba(255, 255, 255, .4); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-column a { display: block; padding: 5px 0; color: rgba(255, 255, 255, .7); font-size: .92rem; font-weight: 600; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .38); font-size: .8rem; }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------------- Entrada da página ----------------
   `motion-ready` só existe quando JavaScript está disponível. Assim, um
   navegador sem JavaScript nunca recebe conteúdo inicialmente oculto. */
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pageEnterVisual {
  from { opacity: 0; transform: translateY(28px) scale(.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.motion-ready .site-header .nav > * {
  animation: pageEnter .62s var(--ease) both;
}
.motion-ready .site-header .brand { animation-delay: .04s; }
.motion-ready .site-header .switch { animation-delay: .1s; }
.motion-ready .site-header .desktop-nav { animation-delay: .16s; }
.motion-ready .site-header .nav-actions { animation-delay: .22s; }

:root.motion-ready[data-view="cliente"] .switch-hero,
:root.motion-ready[data-view="negocio"] .switch-hero {
  animation: pageEnter .64s var(--ease) .1s both;
}
:root.motion-ready[data-view="cliente"] .hero[data-when="cliente"] .hero-kicker,
:root.motion-ready[data-view="negocio"] .hero[data-when="negocio"] .hero-kicker {
  animation: pageEnter .64s var(--ease) .18s both;
}
:root.motion-ready[data-view="cliente"] .hero[data-when="cliente"] h1,
:root.motion-ready[data-view="negocio"] .hero[data-when="negocio"] h1 {
  animation: pageEnter .72s var(--ease) .25s both;
}
:root.motion-ready[data-view="cliente"] .hero[data-when="cliente"] .hero-copy,
:root.motion-ready[data-view="negocio"] .hero[data-when="negocio"] .hero-copy {
  animation: pageEnter .64s var(--ease) .34s both;
}
:root.motion-ready[data-view="cliente"] .hero[data-when="cliente"] .hero-actions,
:root.motion-ready[data-view="negocio"] .hero[data-when="negocio"] .hero-actions {
  animation: pageEnter .64s var(--ease) .42s both;
}
:root.motion-ready[data-view="cliente"] .hero[data-when="cliente"] .hero-proof,
:root.motion-ready[data-view="negocio"] .hero[data-when="negocio"] .hero-proof {
  animation: pageEnter .64s var(--ease) .5s both;
}
:root.motion-ready[data-view="cliente"] .hero[data-when="cliente"] .hero-visual,
:root.motion-ready[data-view="negocio"] .hero[data-when="negocio"] .hero-visual {
  animation: pageEnterVisual .82s var(--ease) .3s both;
}

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; font-size: .88rem; }
  .professional-pair, .client-hero-scene { min-height: 560px; }
  .story-layout { gap: 44px; }
  .device-story { gap: 38px; }
  .faq-layout { gap: 48px; }
}

@media (max-width: 940px) {
  .hero { padding: 116px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 52px; text-align: center; }
  .hero-copy { max-width: 34ch; margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual-human { max-width: 760px; width: 100%; margin-inline: auto; }
  .professional-pair, .client-hero-scene { min-height: 620px; }
  .problem-editorial, .compare-editorial { grid-template-columns: 1fr; }
  .problem-photo, .compare-photo { min-height: 520px; }
  .problem-content, .compare-content { max-width: 760px; }
  .story-layout { display: flex; flex-direction: column; }
  .story-stage { width: 100%; min-height: 560px; position: sticky; z-index: 2; top: 76px; order: -1; }
  .story-phone { width: 242px; height: 494px; border-width: 8px; border-radius: 41px; }
  .story-rail { width: 100%; }
  .operation-card, .operation-card-reverse { grid-template-columns: 1fr; gap: 38px; min-height: 0; }
  .operation-card-reverse .operation-copy { order: 1; }
  .operation-card-reverse .service-visual { order: 2; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .capability-card.network { grid-column: 1 / -1; min-height: 330px; }
  .device-story, .opportunity-shell { grid-template-columns: 1fr; }
  .device-contexts { grid-template-columns: 1fr 1fr; gap: 28px; }
  .device-contexts article, .device-contexts article:first-child, .device-contexts article:last-child { padding: 0; border-bottom: 0; }
  .business-reviews-heading { grid-template-columns: 1fr; gap: 22px; }
  .business-reviews-heading > p { max-width: 62ch; }
  .client-logo-grid { grid-template-columns: repeat(5, 1fr); }
  .business-review-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .p-desc { min-height: 0; }
  .faq-layout { grid-template-columns: 1fr; gap: 34px; }
  .faq-layout .section-heading { position: static; }
  .client-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu {
    height: calc(100dvh - 66px);
    position: fixed;
    inset: 66px 0 0;
    display: flex;
    flex-direction: column;
    padding: 22px 22px 30px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .24s ease, transform .24s var(--ease), visibility .24s;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu > a:not(.button) {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
    font-weight: 700;
  }
  .mobile-menu .button { margin-top: auto; }
  .mobile-menu-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
  .mobile-menu-actions .button { width: 100%; margin-top: 0; }
  .section { padding: 76px 0; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card.network { grid-column: auto; }
  .device-contexts { grid-template-columns: 1fr; gap: 0; }
  .device-contexts article, .device-contexts article:first-child, .device-contexts article:last-child { padding: 28px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .device-contexts article:first-child { padding-top: 0; }
  .device-contexts article:last-child { padding-bottom: 0; border-bottom: 0; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(var(--container), calc(100% - 32px)); }
  .section { padding: 64px 0; }
  .section-heading { margin-bottom: 38px; }
  .hero { padding: 104px 0 60px; }
  .nav-actions > [data-cta] { display: none; }
  .button-login { min-height: 40px; padding-inline: 12px; }
  .hero h1 { font-size: clamp(2.7rem, 12vw, 3.4rem); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-proof { flex-direction: column; align-items: center; gap: 8px; }
  .professional-pair { min-height: 480px; gap: 8px; }
  .professional-pair figure { border-radius: 25px; }
  .professional-pair figcaption { right: 12px; bottom: 12px; left: 12px; }
  .professional-pair figcaption strong { font-size: .86rem; }
  .professional-pair figcaption span { font-size: .54rem; }
  .pair-bridge { gap: 7px; margin-top: 11px; padding: 7px 10px 7px 7px; border-radius: 14px; }
  .pair-bridge img { width: 28px; height: 28px; }
  .pair-bridge strong { font-size: .59rem; }
  .pair-bridge span { font-size: .48rem; }
  .client-hero-scene { min-height: 470px; border-radius: 28px; }
  .client-hero-scene > img { object-position: 55% center; }
  .hero-app-float { width: 122px; height: 250px; right: 13px; bottom: 13px; border-width: 5px; border-radius: 24px; }
  .hero-app-island { width: 42px; height: 12px; top: 5px; }
  .scene-caption { right: 146px; bottom: 20px; left: 18px; font-size: .59rem; text-align: left; }
  .problem-photo, .compare-photo { min-height: 430px; border-radius: 29px; }
  .problem-content .section-heading h2, .compare-content .section-heading h2 { font-size: 2.8rem; }
  .empty-chair-note { right: 14px; bottom: 14px; left: 14px; padding: 13px; border-radius: 16px; text-align: left; }
  .comparison-path { min-height: 0; padding: 22px; }
  .path-head { gap: 12px; padding: 0 0 17px; border-bottom: 1px solid var(--line); }
  .path-head > span { font-size: .72rem; }
  .path-head > b { font-size: .64rem; }
  .comparison-path.cutspot .path-head { border-bottom-color: rgba(255, 255, 255, .11); }
  .path-statement strong { font-size: 1.35rem; }
  .path-statement small { font-size: .76rem; }
  .path-flow { gap: 6px; font-size: .6rem; }
  .client-review-grid { gap: 12px; padding-inline: 6px; }
  .client-review-card { width: min(82vw, 330px); }
  .client-review-marquee.is-animated { -webkit-mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent); mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent); }
  .client-logo-grid::-webkit-scrollbar { display: none; }
  .business-reviews-heading { margin-bottom: 38px; }
  .business-reviews-heading h2 { font-size: 3rem; }
  .business-reviews-heading > p { font-size: .96rem; }
  .client-logo-showcase { margin-bottom: 38px; padding: 18px 14px; border-radius: 25px; }
  .client-logo-showcase > p::after { content: " · deslize →"; color: #ff9d7a; }
  .client-logo-grid { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .client-logo-grid > div { min-width: 108px; height: 88px; flex: 0 0 108px; scroll-snap-align: start; }
  .business-review-grid { grid-template-columns: 1fr; }
  .business-review-card, .business-review-card.featured, .business-review-card.wide, .business-review-card.solo { min-height: 0; grid-column: auto; padding: 24px; }
  .business-review-card.featured blockquote { font-size: 1.65rem; }
  .story-stage { min-height: 450px; top: 70px; border-radius: 29px; }
  .story-phone { width: 194px; height: 396px; border-width: 6px; border-radius: 34px; }
  .story-island { width: 61px; height: 17px; top: 7px; }
  .story-screen { padding: 38px 11px 12px; }
  .story-appbar { margin-bottom: 10px; }
  .story-appbar strong { font-size: .86rem; }
  .story-appbar > span { width: 26px; height: 26px; border-radius: 9px; font-size: .48rem; }
  .story-search { min-height: 33px; padding-inline: 9px; font-size: .56rem; }
  .story-map { height: 132px; margin: 7px 0; border-radius: 13px; }
  .map-pin { width: 23px; height: 23px; border-width: 5px; }
  .pin-one { top: 37px; left: 85px; }
  .pin-two { right: 28px; bottom: 26px; }
  .story-shop-card { grid-template-columns: 29px 1fr auto; gap: 7px; margin-top: 5px; padding: 7px; border-radius: 11px; }
  .shop-avatar { width: 29px; height: 29px; border-radius: 9px; font-size: .48rem; }
  .story-shop-card strong, .selected-shop strong { font-size: .55rem; }
  .story-shop-card small, .selected-shop small { font-size: .45rem; }
  .story-shop-card > span { font-size: .4rem; }
  .selected-shop { margin-bottom: 11px; padding: 8px; border-radius: 12px; }
  .story-days { margin-bottom: 12px; }
  .story-days > span { padding: 5px 2px; border-radius: 9px; font-size: .39rem; }
  .story-days small { font-size: .56rem; }
  .slot-label { margin-bottom: 6px; font-size: .52rem; }
  .story-slots { gap: 5px; }
  .story-slots span { min-height: 29px; border-radius: 8px; font-size: .49rem; }
  .booking-confirm { right: 11px; bottom: 12px; left: 11px; padding: 9px; border-radius: 12px; }
  .booking-confirm span { font-size: .45rem; }
  .booking-confirm strong { font-size: .53rem; }
  .return-hero { min-height: 118px; margin-bottom: 7px; padding: 12px; border-radius: 15px; }
  .return-hero span { font-size: .43rem; }
  .return-hero strong { font-size: .82rem; }
  .return-hero small { font-size: .46rem; }
  .story-loyalty-card { padding: 10px; border-radius: 13px; }
  .story-loyalty-card > b { top: 10px; right: 10px; font-size: .44rem; }
  .story-loyalty-card > i { margin: 8px 0 6px; }
  .story-loyalty-card > div span, .story-loyalty-card > small { font-size: .43rem; }
  .story-loyalty-card > div strong { font-size: .58rem; }
  .return-list { gap: 4px; margin-top: 7px; }
  .return-list > div { grid-template-columns: 25px 1fr; gap: 6px; padding: 6px; border-radius: 10px; }
  .return-list > div > span { width: 25px; height: 25px; border-radius: 8px; font-size: .65rem; }
  .return-list strong { font-size: .51rem; }
  .return-list small { font-size: .42rem; }
  .story-stage-note { bottom: 10px; font-size: .5rem; }
  .story-step { grid-template-columns: 45px 1fr; gap: 14px; padding: 23px 18px; }
  .story-step.active { transform: none; }
  .story-number { width: 40px; height: 40px; }
  .operation-card { padding: 27px 21px; border-radius: 30px; }
  .operation-copy h3 { font-size: 2.35rem; }
  .agenda-visual, .service-visual { padding: 16px; border-radius: 23px; }
  .capability-card { min-height: 350px; padding: 26px 22px; }
  .device-stage { min-height: 480px; padding: 20px; border-radius: 30px; }
  .browser-device { width: 100%; margin-top: 25px; border-width: 5px; }
  .mobile-device { width: 132px; height: 268px; right: 12px; bottom: 25px; border-width: 5px; border-radius: 26px; }
  .sync-pill { bottom: 18px; left: 17px; font-size: .49rem; }
  .opportunity { padding-inline: 0; }
  .opportunity-shell { gap: 32px; padding: 30px 20px; border-radius: 30px; }
  .calculator { padding: 21px 17px; border-radius: 25px; }
  .calculator-result { padding: 18px; }
  .problem-turn { font-size: 1.06rem; }
  .p-card { padding: 28px 24px; }
  .billing-toggle { width: 100%; }
  .billing-toggle button { padding-inline: 10px; font-size: .84rem; }
  .billing-toggle button span { display: block; margin: -4px 0 4px; font-size: .62rem; }
  .faq-list summary { min-height: 66px; font-size: .98rem; }
  .faq-list details p { margin-right: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* "Como funciona" no celular: o telefone fica fixo em cima dos passos. Em
   tela baixa ele encolhe para sobrar espaço para o passo ativo aparecer
   inteiro embaixo dele. */
@media (max-width: 620px) and (max-height: 780px) {
  .story-stage { min-height: 380px; }
  .story-phone { zoom: .84; }
}
@media (max-width: 620px) and (max-height: 690px) {
  .story-stage { min-height: 320px; top: 66px; }
  .story-phone { zoom: .7; }
  .story-stage-note { bottom: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .motion-ready .site-header .nav > *,
  :root.motion-ready .switch-hero,
  :root.motion-ready .hero .hero-kicker,
  :root.motion-ready .hero h1,
  :root.motion-ready .hero .hero-copy,
  :root.motion-ready .hero .hero-actions,
  :root.motion-ready .hero .hero-proof,
  :root.motion-ready .hero .hero-visual {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   SISTEMA DE VISÕES — cliente x negócio
   O HTML carrega as duas; só a escolhida fica no fluxo.
   `hidden` de verdade (não opacity) para leitor de tela e
   busca não enxergarem conteúdo duplicado.
   ========================================================= */
/* Esconde só o que NÃO é da visão atual. Nada precisa ser "mostrado" — assim
   cada elemento mantém o próprio display (flex do menu, block do rodapé) em vez
   de um `revert` genérico atropelar tudo. Funciona sem JS: o data-view já vem
   escrito no <html>. */
:root[data-view="negocio"] [data-when="cliente"],
:root[data-view="cliente"] [data-when="negocio"] { display: none !important; }

/* troca de visão: fade curto, sem empurrar layout */
.view-fading main { opacity: 0; }
main { opacity: 1; transition: opacity .18s ease; }

/* ---------------- Pill de troca de visão ---------------- */
.switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-s);
}
.switch button {
  position: relative;
  z-index: 1;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: color .3s var(--ease);
}
.switch button[aria-selected="true"] { color: var(--white); }
/* Os dois botões ocupam metades iguais, então o polegar é 50% menos o padding
   e anda exatamente a própria largura. Sem medição por JS: não existe instante
   em que ele tenha largura 0 — que era o que deixava o rótulo ativo branco
   sobre fundo branco quando o seletor aparecia na barra do topo. */
.switch-thumb {
  position: absolute;
  z-index: 0;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 6px 16px rgba(23, 23, 25, .22);
  transition: transform .38s var(--ease);
}
:root[data-view="cliente"] .switch-thumb { transform: translateX(0); }
:root[data-view="negocio"] .switch-thumb { transform: translateX(100%); }
:root[data-view="cliente"] .switch button[data-view-btn="cliente"],
:root[data-view="negocio"] .switch button[data-view-btn="negocio"] { color: var(--white); }

.switch-hero { margin: 0 auto; }
.hero-zone .container:has(.switch-hero) { display: flex; justify-content: center; padding-top: 104px; }
.switch-hero button { min-height: 46px; padding: 0 26px; font-size: 1rem; }
.switch-hero .switch-thumb { background: var(--orange); box-shadow: 0 8px 20px rgba(255, 90, 36, .3); }

.switch-compact { display: none; }
.switch-compact button { min-height: 34px; padding: 0 15px; font-size: .82rem; }

/* o compacto do topo só entra depois que o do herói sai de vista */
.site-header.scrolled .switch-compact { display: grid; }

/* ---------------- Zona do herói ---------------- */
.hero-zone {
  position: relative;
  isolation: isolate;
  background: linear-gradient(170deg, #fff3ec 0%, var(--paper) 52%, var(--white) 100%);
}
.hero-zone .hero { background: none; padding-top: 40px; }

/* =========================================================
   FOTOGRAFIA — tratamento único para tudo integrar
   ========================================================= */
.photo, .band-photo, .final-bg {
  background-color: var(--paper-deep);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.photo-negocio-corte { background-image: url("photos/business-band.webp"), linear-gradient(140deg, #2a1a12, #45261a); }
.photo-cliente-cta { background-image: url("photos/client-final.webp"), linear-gradient(140deg, #241812, #3d2318); }
.photo-negocio-cta { background-image: url("photos/business-final.webp"), linear-gradient(140deg, #241812, #3d2318); }

/* ---- Faixa sangrada: foto de largura inteira com texto por cima ---- */
.band {
  position: relative;
  isolation: isolate;
  padding: 128px 0;
  color: var(--white);
  text-align: center;
}
.band-photo { position: absolute; z-index: -2; inset: 0; }
.band-scrim {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 8, .74), rgba(20, 12, 8, .58) 45%, rgba(20, 12, 8, .8));
}
.band-inner { max-width: 720px; margin-inline: auto; }
.band-eyebrow {
  margin-bottom: 14px;
  color: #ff9068;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.band h2 { margin-bottom: 16px; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
.band h2 em { color: #ff8a5c; }
.band-inner > p { margin: 0; color: rgba(255, 255, 255, .76); font-size: 1.1rem; }

/* ---- CTA final sobre foto ---- */
.final-photo { position: relative; isolation: isolate; background: none; color: var(--white); }
.final-bg { position: absolute; z-index: -2; inset: 0; }
.final-scrim {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 11, 7, .8), rgba(18, 11, 7, .66) 50%, rgba(18, 11, 7, .88));
}
.final-photo h2 { color: var(--white); }
.final-photo h2 em { color: #ff8a5c; }
.final-photo .final-inner > p { color: rgba(255, 255, 255, .78); }
.final-photo .final-note { color: rgba(255, 255, 255, .5); }

/* planos com dois cards (visão cliente) */

@media (max-width: 940px) {
  .band { padding: 96px 0; }
}

@media (max-width: 820px) {
  .switch-hero button { padding: 0 16px; font-size: .9rem; }
  .hero-zone .container:has(.switch-hero) { padding-top: 92px; }
  .site-header.scrolled .switch-compact { display: none; }
}

@media (max-width: 620px) {
  .switch-hero { width: 100%; }
  .switch-hero button { padding: 0 8px; font-size: .84rem; }
  .band { padding: 76px 0; }
}

/* =========================================================
   VISÃO CLIENTE — blocos próprios
   ========================================================= */
.compare { background: var(--paper); }

/* ---- Jornada e controle do cliente ---- */
.client-story { background: #f3f0ed; }
.client-story .story-stage { background: radial-gradient(circle at 50% 42%, #3b4744, #252827 52%, #181a19 100%); }
.client-glow { background: rgba(0, 200, 150, .16); }
.client-map { background: #e3e4e0; }
.confirmation-hero { min-height: 205px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 12px; padding: 20px; border-radius: 22px; background: linear-gradient(145deg, #e5fff8, #fff); text-align: center; }
.confirmation-hero i { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 13px; border-radius: 50%; background: var(--mint); color: var(--white); font-size: 1.3rem; font-style: normal; font-weight: 900; box-shadow: 0 10px 22px rgba(0, 166, 126, .22); }
.confirmation-hero span, .confirmation-hero strong, .confirmation-hero small { display: block; }
.confirmation-hero span { margin-bottom: 7px; color: #008765; font-size: .58rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.confirmation-hero strong { font-size: .94rem; letter-spacing: -.025em; }
.confirmation-hero small { margin-top: 5px; color: var(--muted); font-size: .58rem; }
.appointment-reminder { display: flex; align-items: center; gap: 10px; padding: 13px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.appointment-reminder > span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 12px; background: var(--orange-soft); font-size: .84rem; }
.appointment-reminder small, .appointment-reminder strong { display: block; }
.appointment-reminder small { color: var(--muted); font-size: .52rem; }
.appointment-reminder strong { margin-top: 2px; font-size: .66rem; }
.appointment-details { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 8px; }
.appointment-details > div { padding: 12px; border-radius: 14px; background: var(--white); }
.appointment-details span, .appointment-details strong { display: block; }
.appointment-details span { color: var(--muted); font-size: .5rem; }
.appointment-details strong { margin-top: 3px; font-size: .65rem; }
.appointment-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 8px; }
.appointment-actions span { display: grid; min-height: 37px; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink-soft); font-size: .58rem; font-weight: 800; }
.appointment-actions span:first-child { border-color: var(--orange); background: var(--orange-soft); color: var(--orange-dark); }

.client-control-story { min-height: 650px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(48px, 7vw, 96px); align-items: center; padding: clamp(40px, 6vw, 72px); overflow: hidden; border: 1px solid var(--line); border-radius: 40px; background: linear-gradient(135deg, #fffaf7, #fff 64%); box-shadow: var(--shadow-m); }
.client-control-copy h3 { margin-bottom: 17px; font-size: clamp(2.5rem, 4.6vw, 4.2rem); font-weight: 850; line-height: .98; letter-spacing: -.055em; }
.client-control-copy > p:not(.card-label) { margin-bottom: 25px; color: var(--ink-soft); font-size: 1rem; }
.client-appointment-demo { width: min(100%, 430px); justify-self: center; padding: 25px; border: 1px solid rgba(23, 23, 25, .07); border-radius: 32px; background: #eee9e5; box-shadow: 0 28px 65px rgba(61, 38, 29, .17), inset 0 1px 0 var(--white); }
.appointment-demo-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 17px; }
.appointment-demo-top > span { color: var(--muted); font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.appointment-demo-top > b { padding: 6px 8px; border-radius: 99px; background: var(--mint-soft); color: #08725d; font-size: .54rem; }
.appointment-date { display: flex; align-items: center; gap: 15px; padding: 19px; border-radius: 22px; background: var(--ink); color: var(--white); }
.appointment-date > strong { color: #ff9d7a; font-size: 2.9rem; line-height: 1; letter-spacing: -.06em; }
.appointment-date div span, .appointment-date div b { display: block; }
.appointment-date div span { color: rgba(255, 255, 255, .47); font-size: .62rem; }
.appointment-date div b { margin-top: 3px; font-size: 1.12rem; }
.appointment-place { display: flex; align-items: center; gap: 11px; margin-top: 10px; padding: 15px; border-radius: 18px; background: var(--white); }
.appointment-place i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--orange-soft); color: var(--orange-dark); font-size: .62rem; font-style: normal; font-weight: 900; }
.appointment-place strong, .appointment-place small { display: block; }
.appointment-place strong { font-size: .76rem; }
.appointment-place small { margin-top: 3px; color: var(--muted); font-size: .59rem; }
.appointment-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 9px; }
.appointment-meta > span { padding: 14px; border-radius: 16px; background: var(--white); }
.appointment-meta small, .appointment-meta strong { display: block; }
.appointment-meta small { color: var(--muted); font-size: .54rem; }
.appointment-meta strong { margin-top: 5px; font-size: .72rem; }
.appointment-demo-note { display: flex; align-items: center; gap: 10px; margin-top: 9px; padding: 14px; border-radius: 16px; background: #e8fff9; }
.appointment-demo-note > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: var(--white); font-size: .74rem; }
.appointment-demo-note p { margin: 0; }
.appointment-demo-note strong, .appointment-demo-note small { display: block; }
.appointment-demo-note strong { font-size: .67rem; }
.appointment-demo-note small { margin-top: 2px; color: #428273; font-size: .54rem; }
.appointment-demo-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 9px; }
.appointment-demo-actions span { display: grid; min-height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 14px; background: var(--white); color: var(--ink-soft); font-size: .61rem; font-weight: 850; }
.appointment-demo-actions span:last-child { border-color: var(--orange); background: var(--orange); color: var(--white); }
.client-control-story + .product-showcases { margin-top: 28px; }

/* ---- Financeiro: os mesmos blocos e nomes usados pela tela real do app ---- */
.finance-preview {
  width: min(100%, 430px);
  padding: 26px;
  border: 1px solid #ffd5c5;
  border-radius: 34px;
  background: #fffaf7;
  box-shadow: var(--shadow-l);
}
.finance-head, .finance-goal > div:first-child, .finance-ranking > div { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.finance-head span:first-child { color: var(--orange-dark); font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.finance-head h4 { margin: 2px 0 0; font-size: 1.6rem; letter-spacing: -.035em; }
.finance-period { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink-soft); font-size: .78rem; font-weight: 750; }
.finance-revenue { margin: 24px 0 14px; padding: 22px; border-radius: 24px; background: var(--ink); color: var(--white); }
.finance-revenue span, .finance-metrics span, .finance-goal span, .finance-ranking > span { display: block; color: var(--muted); font-size: .75rem; font-weight: 700; }
.finance-revenue span { color: rgba(255, 255, 255, .58); }
.finance-revenue strong { display: block; margin-top: 5px; font-size: 2rem; letter-spacing: -.04em; }
.finance-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.finance-metrics > div { padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.finance-metrics strong { display: block; margin-top: 4px; font-size: 1.08rem; }
.finance-goal { margin-top: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.finance-progress { height: 7px; margin-top: 11px; overflow: hidden; border-radius: 999px; background: var(--line-soft); }
.finance-progress span { width: 82%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--orange), #ff916a); }
.finance-ranking { margin-top: 18px; }
.finance-ranking > span { margin-bottom: 7px; color: var(--ink-soft); }
.finance-ranking > div { padding: 9px 2px; border-bottom: 1px solid var(--line-soft); font-size: .84rem; }
.finance-ranking > div span { color: var(--ink-soft); }

/* ---- Convite: o cliente traz a própria barbearia ---- */
.invite { background: var(--paper); }
.invite-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto 26px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--white);
  box-shadow: var(--shadow-m);
}
.invite-msg-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
/* balão no formato de mensagem: o cliente vê exatamente o que vai enviar */
.invite-bubble {
  position: relative;
  margin: 0;
  padding: 20px 22px;
  border-radius: 20px 20px 20px 6px;
  background: var(--mint-soft);
  color: #14554a;
  font-size: 1rem;
  line-height: 1.5;
}
.invite-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -7px;
  width: 14px;
  height: 14px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: var(--mint-soft);
}
.invite-actions { display: grid; gap: 10px; }
.invite-note { margin: 6px 0 0; color: var(--muted); font-size: .82rem; text-align: center; }
.invite-note.done { color: var(--mint); font-weight: 700; }

@media (max-width: 940px) {
  .product-showcase { grid-template-columns: 1fr; gap: 38px; padding: 42px; }
  .product-showcase .showcase-copy { max-width: none; order: 1; }
  .product-showcase .product-demo { order: 2; }
  .client-control-story { min-height: 0; grid-template-columns: 1fr; gap: 38px; padding: 42px; }
  .invite-card { grid-template-columns: 1fr; gap: 26px; padding: 28px; }
}

@media (max-width: 620px) {
  .confirmation-hero { min-height: 136px; margin-bottom: 7px; padding: 12px; border-radius: 15px; }
  .confirmation-hero i { width: 34px; height: 34px; margin-bottom: 7px; font-size: .83rem; }
  .confirmation-hero span { margin-bottom: 4px; font-size: .43rem; }
  .confirmation-hero strong { font-size: .69rem; }
  .confirmation-hero small { margin-top: 3px; font-size: .44rem; }
  .appointment-reminder { gap: 6px; padding: 8px; border-radius: 12px; }
  .appointment-reminder > span { width: 26px; height: 26px; border-radius: 8px; font-size: .61rem; }
  .appointment-reminder small { font-size: .4rem; }
  .appointment-reminder strong { font-size: .5rem; }
  .appointment-details, .appointment-actions { gap: 5px; margin-top: 5px; }
  .appointment-details > div { padding: 8px; border-radius: 9px; }
  .appointment-details span { font-size: .38rem; }
  .appointment-details strong { font-size: .49rem; }
  .appointment-actions span { min-height: 27px; border-radius: 8px; font-size: .44rem; }
  .client-control-story { gap: 30px; padding: 28px 22px; border-radius: 30px; }
  .client-control-copy h3 { font-size: 2.55rem; }
  .client-appointment-demo { padding: 17px; border-radius: 25px; }
  .product-showcase { min-height: 0; gap: 32px; padding: 28px 22px; border-radius: 30px; }
  .showcase-copy h3 { font-size: 2.55rem; }
  .product-demo { min-height: 485px; padding: 18px; border-radius: 27px; }
  .goal-card div > span { width: min(40vw, 150px); }
  .cut-photo { height: 270px; }
  .finance-preview { padding: 18px; border-radius: 28px; }
  .finance-revenue strong { font-size: 1.7rem; }
  .invite-card { padding: 22px; }
  .invite-bubble { font-size: .94rem; }
}

@keyframes goalProgress { from { width: 0; } }
@keyframes loyaltyProgress { from { width: 0; } }
@keyframes trackShine { 0%, 35% { transform: translateX(-100%); } 75%, 100% { transform: translateX(100%); } }

@media (max-width: 430px) {
  .product-demo { min-height: 460px; padding: 15px; }
  .revenue-card { min-height: 134px; padding: 17px; }
  .revenue-card strong { font-size: 1.22rem; }
  .metric-row > div { min-height: 96px; padding: 13px; }
  .goal-card { padding: 14px; }
  .goal-card div > span { width: 120px; }
  .loyalty-card { padding: 17px; }
  .cut-photo { height: 255px; }
}
