


@font-face {
  font-family: Inter;
  src: url('./assets/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: Sora;
  src: url('./assets/sora.woff2') format('woff2');
  font-weight: 100 800;
  font-display: swap;
}
@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-border: var(--border);
  --color-muted-foreground: var(--muted-foreground);
  --color-ring: var(--ring);
  --color-muted: var(--muted);
  --font-sans: Inter, Arial, sans-serif;
  --radius-lg: 12px;
}
:root {
  --background: #fffaf5;
  --foreground: #181920;
  --border: #ead7c7;
  --muted-foreground: #57575f;
  --muted: #ffead7;
  --ring: #a83b00;
  --orange: #ff6a00;
  --orange-bright: #ff8a00;
  --orange-neon: #ffb000;
  --orange-text: #a83b00;
  --coral: #ff4d00;
  --ink: #181920;
  --paper: #ffead7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding: 130px 0 110px;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 6% 7%, #ffae0018 0 13%, transparent 31%),
    var(--background);
  color: var(--ink);
  font:
    1rem/1.7 Inter,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 85px;
}
[hidden] {
  display: none !important;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 4px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: Sora, Arial, sans-serif;
  font-weight: 550;
  letter-spacing: -0.05em;
  line-height: 1.2;
}
h2 {
  font-size: clamp(1.9rem, 5.6vw, 2.8rem);
}
h2 > span {
  color: var(--orange-text);
}
p {
  color: var(--muted-foreground);
}
svg {
  flex-shrink: 0;
}
.wrap {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}
.section {
  padding-block: 60px;
}
.section strong,
.workflow strong,
.pre-registration-lead strong,
.isy-heading > p strong {
  color: var(--ink);
  font-weight: 780;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.6;
  color: #815039;
  margin-bottom: 17px;
}
.eyebrow > span {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex: none;
}
.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}
.brand img {
  width: 130px;
  height: auto;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fffaf7f5;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 10px;
  padding-top: 12px;
}
.header-nav {
  order: 3;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #eee5df;
  margin-top: 11px;
}
.header-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #51545a;
  white-space: nowrap;
}
.header-nav a:hover {
  color: var(--orange-text);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  min-height: 56px;
  padding: 14px 21px;
  border: 1px solid var(--orange);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange-bright), var(--coral));
  color: #192029;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  transition:
    background 0.16s,
    transform 0.16s,
    box-shadow 0.16s;
}
.button:hover {
  background: linear-gradient(135deg, #ff9d16, #ff5a12);
  border-color: #ff5a12;
  box-shadow: 0 10px 24px #ff5f0033;
  transform: translateY(-2px);
}
.button-small {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 0.75rem;
  gap: 7px;
}
.header .button {
  background: #fff3e8;
  border-color: #e6ba92;
}
.header .button:hover {
  background: #ffe6cf;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  color: var(--orange-text);
  font-size: 0.875rem;
  font-weight: 650;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero {
  display: grid;
  gap: 30px;
  padding-block: 32px 30px;
  position: relative;
}
.hero-copy {
  min-width: 0;
}
.hero-copy > * {
  animation: hero-rise 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-copy > h1 {
  animation-delay: 0.05s;
}
.hero-copy > .hero-lead {
  animation-delay: 0.1s;
}
.hero-copy > .hero-action,
.hero-copy > .hero-facts {
  animation-delay: 0.15s;
}
.hero h1 {
  font-size: clamp(2.05rem, 8.8vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.065em;
  text-wrap: balance;
}
.hero h1 > strong {
  display: block;
  color: var(--coral);
  font-weight: 750;
}
.hero h1 > .hero-icp {
  display: block;
  margin-bottom: 0.55rem;
  color: #7b3c15;
  font-size: clamp(1.1rem, 0.46em, 1.7rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.neon-mark {
  display: inline;
  color: var(--ink);
  background: linear-gradient(transparent 58%, #ffb000 58% 93%, transparent 93%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding-inline: 0.04em;
}
.hero-lead {
  font-size: 1rem;
  line-height: 1.75;
  margin: 20px 0 23px;
  max-width: 560px;
}
.hero-lead strong {
  color: var(--ink);
  font-weight: 760;
}
.hero-action {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}
.hero-action .button {
  width: 100%;
}
.hero-action .text-link {
  margin-inline: auto;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid #f0c29d;
  border-radius: 999px;
  background: #fff5e8;
  color: #68452e;
  font-size: 0.75rem;
  line-height: 1.35;
  box-shadow: 0 7px 18px #b54c0010;
}
.hero-facts li:first-child {
  border-color: #ff8a00;
  background: #ffb000;
  color: #241400;
}
.hero-facts strong {
  color: inherit;
  font-weight: 800;
}
.hero-facts svg {
  color: var(--orange-text);
}
.hero-stage {
  position: relative;
  min-width: 0;
  animation: hero-stage-in 0.7s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid #ffab65;
  border-radius: 24px;
  background: #ffb469;
  box-shadow: 0 24px 60px #b748002e;
}
.hero-photo > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center 44%;
}
.hero-product {
  position: relative;
  z-index: 2;
  margin: 16px 0 0;
  background: #fffaf2f2;
  border: 1px solid #ffc38f;
  border-radius: 19px;
  padding: 17px;
  min-width: 0;
  box-shadow: 0 24px 55px #6b26002e;
  backdrop-filter: blur(14px);
}
.hero-product-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.59375rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #8b4e23;
}
.product-label > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.product-online {
  font-size: 0.625rem;
  color: #715540;
  white-space: nowrap;
}
.hero-product-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0 16px;
  gap: 20px;
}
.hero-product-title h2 {
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.06em;
}
.hero-product-title h2 > span {
  color: var(--coral);
  font-weight: 750;
}
.hero-product-title > img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}
.hero-screen {
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 12px 28px #814a1514;
  background: white;
}
.screen-link {
  display: block;
  width: 100%;
  border: 1px solid #e0d9d3;
  border-radius: 10px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  text-align: left;
  transition:
    border-color 0.16s,
    box-shadow 0.16s,
    transform 0.16s;
}
.screen-link:hover {
  border-color: #ff7800;
  box-shadow: 0 11px 28px #a84a0018;
  transform: translateY(-2px);
}
.hero-screen .screen-link {
  border: 0;
  border-radius: 0;
}
.hero-screen .screen-link > img {
  width: 100%;
  height: auto;
}
.screen-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  min-height: 48px;
  border-top: 1px solid #eae3dd;
  background: #fff;
  color: #61594f;
}
.screen-bar > span:first-child {
  font-size: 0.5625rem;
  font-weight: 650;
  letter-spacing: 0.07em;
}
.screen-bar > span:last-child {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--orange-text);
}
.hero-product-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin: 15px 4px 0;
  color: #ad8464;
}
.hero-product-flow > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #714728;
}
.hero-product-flow > span svg {
  width: 17px;
}
.scope-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 10px;
  text-align: center;
  padding-block: 23px;
  border-block: 1px solid #f2b078;
  color: #6c3a18;
  font-size: 0.75rem;
  font-weight: 720;
  background: linear-gradient(90deg, #fff4e6 0%, #ffe4ca 50%, #fff4e6 100%);
  box-shadow: inset 0 1px #ffffffcc;
}
.workflow {
  padding-top: 30px;
}
.workflow ol {
  display: grid;
  gap: 19px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.workflow li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid #f0c6a2;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff 0%, #fff5ea 100%);
  box-shadow: 0 12px 30px #8d3d000d;
}
.step-number {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--orange-neon), var(--orange-bright));
  font-family: Sora, Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #2d1800;
  box-shadow: 0 7px 16px #ff7a0026;
}
.workflow h3 {
  font-size: 1rem;
  letter-spacing: -0.025em;
}
.workflow p {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-top: 4px;
}
.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}
.section-heading > p {
  max-width: 380px;
  font-size: 0.9375rem;
  line-height: 1.75;
}
.product-tour {
  border: 1px solid #efb886;
  border-radius: 21px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 65px #8d3d0012;
}
.tour-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 12px;
  border-bottom: 1px solid var(--border);
  background: #fffcf9;
}
.tour-choices button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  min-height: 67px;
  padding: 9px 4px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 9px;
  font-size: 0.6875rem;
  line-height: 1.45;
  font-weight: 550;
  cursor: pointer;
  text-align: center;
  color: #606268;
  transition:
    transform 0.16s,
    background 0.16s,
    border-color 0.16s;
}
.tour-choices button:hover {
  background: #fff0e2;
  transform: translateY(-2px);
}
.tour-choices button[aria-pressed='true'] {
  border-color: #ff7a00;
  background: linear-gradient(145deg, #ffc93b, #ff8a00);
  color: #2f1700;
  box-shadow: 0 8px 20px #ff78002b;
}
.tour-panel {
  display: grid;
  gap: 24px;
  padding: 25px 17px;
}
.tour-panel + .tour-panel {
  border-top: 1px solid var(--border);
}
.tour-number {
  display: block;
  font:
    500 0.875rem/1.5 Sora,
    Arial,
    sans-serif;
  color: var(--coral);
  margin-bottom: 15px;
}
.tour-number > span {
  color: #a39c96;
}
.tour-copy h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.055em;
  max-width: 370px;
}
.tour-copy > p {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-top: 15px;
}
.tour-copy > p strong {
  color: var(--ink);
  font-weight: 780;
  background: linear-gradient(transparent 65%, #ffd05a 65% 94%, transparent 94%);
}
.tour-benefit {
  margin-top: 20px;
  padding-left: 12px;
  border-left: 2px solid var(--orange);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #785231;
}
.tour-visual {
  min-width: 0;
  align-self: center;
}
.screen-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 145px;
  background: #f7f8f8;
  padding: 7px;
}
.screen-image img {
  width: 100%;
  height: auto;
  max-height: 355px;
  object-fit: contain;
}
.tour-visual figcaption {
  font-size: 0.75rem;
  line-height: 1.6;
  margin-top: 9px;
  color: #77716b;
}
.tour-panel-financeiro .screen-image img {
  max-height: 300px;
}
.tour-panel-envio .screen-image {
  min-height: 0;
}
.tour-screen-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-color: #d5a27b #fff4e9;
}
.tour-screen-card {
  flex: 0 0 min(88%, 520px);
  min-width: 0;
  scroll-snap-align: start;
}
.tour-screen-card .screen-image {
  aspect-ratio: 2.08 / 1;
  min-height: 0;
  padding: 5px;
}
.tour-screen-card .screen-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}
.tour-screen-card .screen-bar {
  min-height: 44px;
}
.tour-screen-card figcaption {
  min-height: 3.2em;
}
.product-after {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-top: 21px;
}
.product-after p {
  font-size: 0.875rem;
}
.pre-registration {
  padding-top: 16px;
  padding-bottom: 60px;
}
.pre-registration-shell {
  display: grid;
  gap: 30px;
  overflow: hidden;
  border: 1px solid #f0a967;
  border-radius: 20px;
  background:
    radial-gradient(circle at 93% 8%, #ffb0003d 0, transparent 35%),
    linear-gradient(145deg, #fff 0%, #fff0df 100%);
  padding: 28px 17px;
  box-shadow: 0 22px 60px #7b3a0e18;
}
.pre-registration-copy h2 {
  margin-top: 13px;
}
.pre-registration-copy h2 .neon-mark,
.section-heading h2 .neon-mark,
.isy-heading h2 .neon-mark {
  color: var(--ink);
}
.pre-registration-lead {
  max-width: 570px;
  margin-top: 18px;
  font-size: 0.9375rem;
  line-height: 1.75;
}
.pre-registration-benefits {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 23px 0 0;
  padding: 0;
}
.pre-registration-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #4e514f;
  font-size: 0.875rem;
  line-height: 1.55;
}
.pre-registration-benefits svg {
  flex: none;
  margin-top: 2px;
  color: #9c4608;
}
.pre-registration-visual {
  min-width: 0;
  align-self: center;
}
.pre-registration-visual .screen-image {
  min-height: 0;
  padding: 7px;
}
.pre-registration-visual .screen-image img {
  width: 100%;
  max-height: 410px;
  object-fit: contain;
}
.pre-registration-visual figcaption {
  margin-top: 9px;
  color: #77716b;
  font-size: 0.75rem;
  line-height: 1.6;
}
.plans {
  padding-top: 60px;
}
.trial-banner {
  display: grid;
  gap: 21px;
  padding: 26px 21px;
  background:
    radial-gradient(circle at 8% 25%, #ffba1f5c 0 8%, transparent 28%),
    linear-gradient(120deg, #fff6e5 0%, #ffd6b1 100%);
  border: 1px solid #ff9a43;
  border-radius: 19px;
  margin-bottom: 55px;
}
.trial-number {
  display: none;
}
.trial-banner .eyebrow {
  margin-bottom: 10px;
}
.trial-banner h2 {
  font-size: 1.7rem;
  line-height: 1.3;
}
.trial-banner-copy > p:last-child {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 620px;
}
.trial-banner-action .button {
  width: 100%;
}
.trial-banner-action > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.75rem;
  color: #7a583c;
  margin-top: 12px;
}
.plans-intro {
  display: grid;
  gap: 8px;
  max-width: 470px;
}
.plans-intro > strong {
  font:
    650 0.9375rem/1.55 Inter,
    Arial,
    sans-serif;
  color: #3b312a;
}
.plans-intro > p {
  font-size: 0.9375rem;
  line-height: 1.7;
}
.plan-grid {
  display: grid;
  gap: 19px;
}
.plan {
  display: flex;
  flex-direction: column;
  padding: 25px 22px;
  border: 1px solid #ded8d1;
  border-radius: 17px;
  background: #fff;
  min-width: 0;
  box-shadow: 0 12px 35px #7a36000b;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    border-color 0.18s;
}
.plan:hover {
  transform: translateY(-4px);
  border-color: #ed9b57;
  box-shadow: 0 20px 45px #7a360019;
}
.plan-ai {
  background:
    radial-gradient(circle at 100% 0, #ffc43d3d 0 17%, transparent 38%),
    linear-gradient(155deg, #fff9f3 0%, #ffe5cc 100%);
  border-color: #ff7a00;
  box-shadow: 0 18px 42px #ff6a001b;
}
.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 21px;
}
.plan-top > span:last-child {
  max-width: 220px;
  text-align: right;
  font-size: 0.65625rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  line-height: 1.45;
  color: #746052;
}
.plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff0e2;
  color: var(--orange-text);
}
.plan-ai .plan-icon {
  background: #ffdfc2;
}
.plan-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.plan h3 {
  font-size: 1.5rem;
}
.plan-ai-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border: 1px solid #e3aa7b;
  border-radius: 999px;
  background: #fff8f1;
  color: #873b00;
  font-size: 0.625rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.plan-description {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-top: 9px;
  min-height: 2.9em;
}
.plan-price {
  margin-top: 21px;
}
.plan-old-price {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #766f69;
}
.plan-old-price s {
  text-decoration-thickness: 1px;
}
.price {
  font:
    550 clamp(2.15rem, 9vw, 2.9rem)/1.35 Sora,
    Arial,
    sans-serif;
  letter-spacing: -0.07em;
  color: var(--ink);
  white-space: nowrap;
  text-shadow: 0 8px 24px #ff7b0016;
}
.price > span {
  font:
    500 0.875rem/1.5 Inter,
    Arial,
    sans-serif;
  letter-spacing: 0;
}
.price > small {
  font:
    400 0.875rem/1.5 Inter,
    Arial,
    sans-serif;
  letter-spacing: 0;
  color: #766f69;
}
.plan-inherits {
  margin-top: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #694526;
}
.plan-benefits {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 19px 0;
  margin: 18px 0;
  border-top: 1px solid var(--border);
}
.plan-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #4f4c48;
}
.plan-benefits li svg {
  color: var(--orange-text);
  margin-top: 2px;
}
.plan-credit-box {
  display: grid;
  gap: 9px;
  padding: 16px;
  border: 1px solid #e7bf9e;
  border-radius: 13px;
  background: #fffaf6;
  margin-bottom: 20px;
}
.plan-credit-box > p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #5f4d40;
}
.plan-credit-title {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #743400 !important;
}
.plan-recharge {
  display: grid;
  gap: 2px;
  border-top: 1px solid #efcfb4;
  padding-top: 10px;
  margin-top: 2px;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #5f4d40;
}
.plan-recharge strong {
  color: #433328;
}
.plan-additional-user {
  border-top: 1px solid #efcfb4;
  padding-top: 9px;
}
.plan-no-credits {
  padding: 13px 15px;
  margin: 0 0 20px;
  border-radius: 11px;
  background: #f7f3ef;
  color: #5f5a55;
  font-size: 0.8125rem;
  font-weight: 650;
}
.plan .button {
  width: 100%;
  margin-top: auto;
  font-size: 0.8125rem;
  padding-inline: 10px;
  gap: 8px;
}
.plan:not(.plan-ai) .button {
  background: #fff3e8;
  border-color: #e2b38b;
}
.plan:not(.plan-ai) .button:hover {
  background: #ffe1c5;
}
.isy-credit-policy {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 23px;
  border: 1px solid #e4b78f;
  border-radius: 15px;
  background: #fff4e9;
}
.isy-credit-policy-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7a3500;
}
.isy-credit-policy h3 {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 750;
  letter-spacing: 0.035em;
}
.isy-credit-policy p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #5e4d40;
}
.faq {
  display: grid;
  gap: 27px;
  border-top: 1px solid var(--border);
}
.faq-heading > p:not(.eyebrow) {
  font-size: 0.9375rem;
  margin-top: 16px;
}
.faq-heading .text-link {
  margin-top: 10px;
}
.faq-heading h2 br {
  display: none;
}
.faq-list {
  min-width: 0;
}
.portable-faq details {
  border-bottom: 1px solid var(--border);
}
.portable-faq details:first-child {
  border-top: 1px solid var(--border);
}
.portable-faq summary {
  font:
    600 0.9375rem/1.6 Inter,
    Arial,
    sans-serif;
  padding: 20px 37px 20px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.portable-faq summary::-webkit-details-marker {
  display: none;
}
.portable-faq summary:after {
  content: '+';
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 1.2rem;
  font-weight: 400;
  width: 27px;
  height: 27px;
  text-align: center;
  line-height: 25px;
  color: var(--orange-text);
}
.portable-faq details[open] summary:after {
  content: '−';
}
.portable-faq summary:hover {
  color: var(--orange-text);
}
.portable-faq details > p {
  font-size: 0.9375rem;
  line-height: 1.8;
  padding-bottom: 20px;
}
.closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 23px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 86% 18%, #ffd454 0 8%, transparent 32%),
    linear-gradient(135deg, #ff9f00 0%, #ff6900 55%, #ff4d00 100%);
  border: 1px solid #ffb01f;
  border-radius: 20px;
  box-shadow: 0 25px 60px #a83b0026;
}
.closing .eyebrow {
  color: #553317;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
}
.closing h2 {
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.15;
}
.neon-mark-inverse {
  color: #17181d;
  background: linear-gradient(transparent 54%, #ffe65a 54% 94%, transparent 94%);
}
.closing p:not(.eyebrow) {
  font-size: 0.9375rem;
  color: #482c15;
  margin-top: 19px;
}
.closing .button {
  margin-top: 25px;
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  width: 100%;
  font-size: 0.875rem;
}
.closing .button:hover {
  background: #313a43;
}
.closing-note {
  display: block;
  color: #50331a;
  font-size: 0.6875rem;
  margin-top: 12px;
}
.closing-symbol {
  display: none;
}
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-stage-in {
  from {
    opacity: 0;
    transform: translate3d(18px, 10px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-block: 32px;
}
.footer .brand img {
  width: 145px;
}
.footer-brand > p {
  font-size: 0.75rem;
  margin-top: 10px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 22px;
  align-items: center;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #65564a;
}
.footer-links a:hover {
  color: var(--orange-text);
}
.footer-links .instagram-icon {
  color: #98556c;
}
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 25;
  background: #fffaf7f5;
  border-top: 1px solid #e3d9cd;
  backdrop-filter: blur(12px);
  padding: 11px 18px calc(11px + env(safe-area-inset-bottom, 0px));
}
.mobile-cta .button {
  width: 100%;
  min-height: 52px;
  font-size: 0.875rem;
}
.skip-link {
  position: fixed;
  z-index: 60;
  top: -100px;
  left: 18px;
  padding: 12px;
  background: white;
  border: 2px solid var(--orange);
}
.skip-link:focus {
  top: 12px;
}
@media (min-width: 600px) {
  .wrap {
    width: min(1240px, calc(100% - 64px));
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-photo {
    min-height: 560px;
  }
  .hero-photo > img {
    min-height: 560px;
  }
  .hero-product {
    margin: 18px 0 0;
    padding: 22px;
  }
  .hero-product-title h2 {
    font-size: 1.65rem;
  }
  .product-label {
    font-size: 0.6875rem;
  }
  .product-online {
    font-size: 0.75rem;
  }
  .hero-action .button {
    width: auto;
  }
  .hero-action .text-link {
    margin: 0;
  }
  .scope-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    font-size: 0.75rem;
  }
  .closing .button {
    width: auto;
  }
  .closing-symbol {
    display: block;
    opacity: 0.85;
    flex: 0 0 120px;
  }
  .closing-symbol img {
    width: 120px;
  }
  .product-after {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .trial-banner h2 {
    font-size: 2rem;
  }
}
@media (min-width: 980px) {
  html {
    scroll-padding-top: 105px;
  }
  body {
    padding-bottom: 0;
  }
  .header-inner {
    min-height: 86px;
    flex-wrap: nowrap;
    padding: 0;
    gap: 28px;
  }
  .brand img {
    width: 160px;
  }
  .header-nav {
    order: 0;
    width: auto;
    border: 0;
    margin: 0 0 0 auto;
    gap: 28px;
  }
  .header-nav a {
    font-size: 0.8125rem;
  }
  .button-small {
    font-size: 0.8125rem;
    padding: 11px 15px;
  }
  .hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    gap: 54px;
    align-items: start;
    padding-block: 68px 54px;
  }
  .hero h1 {
    font-size: clamp(3.1rem, 4.2vw, 4.25rem);
    line-height: 1.04;
  }
  .hero .eyebrow {
    font-size: 0.6875rem;
  }
  .hero-lead {
    font-size: 1rem;
    margin-top: 23px;
    margin-bottom: 27px;
  }
  .hero-action {
    gap: 9px 16px;
  }
  .hero-action .button {
    padding-inline: 18px;
  }
  .hero-action .text-link {
    font-size: 0.8125rem;
  }
  .hero-stage {
    min-height: 0;
  }
  .hero-photo {
    position: relative;
    inset: auto;
    min-height: 0;
    height: 470px;
    border-radius: 30px;
  }
  .hero-photo > img {
    height: 100%;
    min-height: 0;
    object-position: center 46%;
  }
  .hero-product {
    position: relative;
    left: auto;
    bottom: auto;
    display: grid;
    grid-template-columns: minmax(190px, 0.76fr) minmax(0, 1.34fr);
    grid-template-areas:
      'heading screen'
      'title screen'
      'flow flow';
    gap: 8px 18px;
    width: 100%;
    margin: 16px 0 0;
    padding: 17px;
    border-radius: 23px;
  }
  .hero-product-heading {
    grid-area: heading;
  }
  .hero-product-title {
    grid-area: title;
    align-self: center;
    margin: 6px 0;
    gap: 8px;
  }
  .hero-product-title h2 {
    font-size: 1.15rem;
  }
  .hero-product-title > img {
    width: 34px;
    height: 34px;
  }
  .hero-screen {
    grid-area: screen;
    align-self: center;
  }
  .hero-product-flow {
    grid-area: flow;
    margin: 6px 5px 0;
  }
  .hero-product-flow > span {
    font-size: 0.75rem;
  }
  .scope-strip {
    font-size: 0.8125rem;
    padding-block: 24px;
  }
  .workflow {
    padding-top: 31px;
  }
  .workflow ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
  .workflow li + li {
    border-left-color: #f0c6a2;
    padding-left: 18px;
  }
  .workflow h3 {
    font-size: 0.9375rem;
  }
  .workflow p {
    font-size: 0.75rem;
  }
  .section {
    padding-block: 86px;
  }
  .section-heading {
    grid-template-columns: 1.3fr 1fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 34px;
  }
  .section-heading > p {
    justify-self: end;
    font-size: 0.9375rem;
  }
  .tour-choices {
    padding: 13px;
    gap: 7px;
  }
  .tour-choices button {
    flex-direction: row;
    font-size: 0.8125rem;
    min-height: 56px;
    gap: 9px;
  }
  .tour-choices button:nth-child(2) {
    font-size: 0.71875rem;
  }
  .tour-panel {
    grid-template-columns: 0.74fr 1.35fr;
    gap: 40px;
    align-items: center;
    min-height: 428px;
    padding: 40px;
  }
  .tour-copy h3 {
    font-size: 1.8rem;
  }
  .tour-copy > p {
    font-size: 0.9375rem;
  }
  .tour-benefit {
    margin-top: 24px;
  }
  .screen-image {
    min-height: 235px;
    padding: 11px;
  }
  .tour-panel-envio .tour-visual {
    max-width: 550px;
    width: 100%;
    justify-self: center;
  }
  .tour-panel-financeiro .screen-image img {
    max-height: 320px;
  }
  .tour-panel + .tour-panel {
    border-top: 0;
  }
  .product-tour:not([data-enhanced]) .tour-panel + .tour-panel {
    border-top: 1px solid var(--border);
  }
  .screen-bar > span:first-child {
    font-size: 0.59375rem;
  }
  .screen-bar > span:last-child {
    font-size: 0.8125rem;
  }
  .trial-banner {
    grid-template-columns: 110px 1fr;
    gap: 25px 35px;
    align-items: center;
    padding: 36px 40px;
    margin-bottom: 73px;
  }
  .trial-number {
    display: block;
    grid-row: 1/3;
    text-align: center;
    color: var(--orange-text);
    font:
      500 6.8rem/0.95 Sora,
      Arial,
      sans-serif;
    letter-spacing: -0.08em;
  }
  .trial-number > span {
    display: block;
    font:
      700 0.625rem/1.5 Inter,
      Arial,
      sans-serif;
    letter-spacing: 0.1em;
    margin-top: 15px;
  }
  .trial-banner-action {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .trial-banner-action .button {
    width: auto;
  }
  .trial-banner-action > span {
    margin: 0;
    font-size: 0.75rem;
  }
  .plans-heading {
    margin-bottom: 32px;
  }
  .plans-intro {
    justify-self: end;
  }
  .plan {
    padding: 33px 35px;
  }
  .plan h3 {
    font-size: 1.75rem;
  }
  .plan-description {
    font-size: 0.875rem;
  }
  .plan-top > span:last-child {
    font-size: 0.6875rem;
  }
  .price {
    font-size: 3.1rem;
  }
  .plan-benefits li {
    font-size: 0.9375rem;
  }
  .plan .button {
    font-size: 0.9375rem;
  }
  .faq {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 90px;
    padding-top: 70px;
  }
  .faq-heading h2 br {
    display: block;
  }
  .closing {
    padding: 54px 61px;
  }
  .closing h2 {
    font-size: 3.15rem;
  }
  .closing-symbol {
    flex-basis: 205px;
    margin-right: 20px;
  }
  .closing-symbol img {
    width: 205px;
  }
  .closing .button {
    font-size: 0.9375rem;
  }
  .closing .eyebrow {
    font-size: 0.6875rem;
  }
  .closing-note {
    font-size: 0.75rem;
  }
  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-block: 35px;
  }
  .mobile-cta {
    display: none;
  }
}
@media (max-width: 359px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .brand img {
    width: 111px;
  }
  .header .button {
    font-size: 0.6875rem;
    padding-inline: 8px;
  }
  .header-nav {
    gap: 9px;
  }
  .header-nav a {
    font-size: 0.75rem;
  }
  .hero h1 {
    font-size: 1.95rem;
  }
  .product-label {
    font-size: 0.53125rem;
  }
  .hero-product {
    padding: 13px;
  }
  .hero-product-flow > span {
    font-size: 0.6875rem;
  }
  .hero-product-title h2 {
    font-size: 1.35rem;
  }
  .plan {
    padding: 23px 18px;
  }
  .plan li {
    font-size: 0.75rem;
  }
  .tour-choices button {
    font-size: 0.625rem;
  }
  .closing {
    padding: 29px 19px;
  }
  .trial-banner {
    padding: 24px 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
.channel-icon {
  display: inline-block;
  flex: none;
  vertical-align: middle;
}
.whatsapp-icon {
  color: #167849;
}
.instagram-icon {
  color: #ad356d;
}
.inline-channel {
  display: inline-flex;
  gap: 0.25em;
  align-items: center;
  white-space: nowrap;
}
.inline-channel svg {
  flex: none;
}
.inline-channel .lucide-mail {
  color: #a24e0d;
}
.channel-pair,
.feature-top > .feature-channel-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: none;
}
.feature-channel-icons .lucide-mail {
  color: #a24e0d;
}
.hero-facts > span .channel-pair svg {
  padding: 0;
  background: none;
  border-radius: 0;
  color: inherit;
}
.hero-facts > span .channel-pair .whatsapp-icon {
  color: #167849;
}
.hero-facts > span .channel-pair .lucide-mail {
  color: #a24e0d;
}
.delivery-demo {
  --channel: #167849;
  --channel-tint: #edf8f0;
  --channel-line: #b7d9c0;
  border: 1px solid #d8e7db;
  background: linear-gradient(145deg, #f5faf5, #fffdf7);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.9rem;
  min-width: 0;
  text-align: left;
}
.delivery-demo[data-channel='email'] {
  --channel: #a24e0d;
  --channel-tint: #fff3e6;
  --channel-line: #e9c9a9;
  border-color: #e9dacd;
  background: linear-gradient(145deg, #fff8ee, #fffdf7);
}
.delivery-demo-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5f6a5e;
  line-height: 1.5;
  margin-bottom: 0.85rem;
}
.delivery-demo-dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--channel);
}
.delivery-channel-picker {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.delivery-demo[data-enhanced='true'] .delivery-channel-picker {
  display: grid;
}
.delivery-channel-picker button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  min-width: 0;
  padding: 0.5rem 0.4rem;
  border: 1px solid #dedfd6;
  border-radius: 9px;
  background: #fff;
  font:
    600 0.875rem/1.3 Inter,
    Arial,
    sans-serif;
  color: #536056;
  cursor: pointer;
}
.delivery-channel-picker button[aria-pressed='true'] {
  border-color: var(--channel);
  background: var(--channel-tint);
  color: var(--channel);
  box-shadow: inset 0 0 0 1px var(--channel);
}
.delivery-channel-picker button:hover {
  border-color: var(--channel);
}
.delivery-channel-picker button:focus-visible,
.delivery-replay:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid #a74300;
  outline-offset: 3px;
}
.delivery-channel-picker button .whatsapp-icon {
  color: inherit;
}
.delivery-stage {
  min-width: 0;
}
.delivery-document {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.9rem 0.8rem;
  border: 1px solid #e3ddd0;
  border-radius: 10px;
  background: white;
  box-shadow: 0 5px 15px #58472606;
}
.delivery-file-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 47px;
  border: 1px solid #ecd2ba;
  border-radius: 6px 12px 6px 6px;
  background: #fff5e9;
  color: #a24e0d;
}
.delivery-document > span:nth-child(2) {
  min-width: 0;
}
.delivery-document strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  color: #30372f;
}
.delivery-document small {
  display: block;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: #6b7068;
  margin-top: 0.15rem;
}
.delivery-ready-check {
  color: var(--channel);
  margin-left: auto;
  flex: none;
}
.delivery-journey {
  height: 58px;
  position: relative;
  margin-left: 28px;
}
.delivery-track {
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 2px;
  background: var(--channel-line);
}
.delivery-track:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--channel-line);
  border-bottom: 2px solid var(--channel-line);
  transform: rotate(45deg);
}
.delivery-packet {
  position: absolute;
  left: -14px;
  top: -8px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--channel);
  color: white;
  border-radius: 8px;
  opacity: 0;
  z-index: 1;
}
.delivery-travel-label {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding-left: 22px;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: #7d8277;
}
.delivery-message {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.8rem;
  min-height: 77px;
  border: 1px solid var(--channel-line);
  border-radius: 11px 11px 11px 3px;
  background: #fff;
  box-shadow: 0 4px 12px #254c2d05;
}
.delivery-receiver-icon {
  width: 41px;
  height: 41px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--channel-tint);
  color: var(--channel);
}
.delivery-receiver-icon .whatsapp-icon {
  color: inherit;
}
.delivery-email {
  display: none;
}
.delivery-demo[data-channel='email'] .delivery-email {
  display: block;
}
.delivery-demo[data-channel='email'] .delivery-whatsapp {
  display: none;
}
.delivery-message-copy {
  display: block;
  flex: 1;
  min-width: 0;
}
.delivery-message-copy > span {
  display: block;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: #697567;
}
.delivery-message-copy strong {
  display: block;
  color: var(--channel);
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 600;
}
.delivery-sent-check {
  flex: none;
  color: var(--channel);
  opacity: 1;
}
.delivery-demo[data-phase='sending'] .delivery-sent-check {
  opacity: 0;
}
.delivery-demo[data-phase='sending'] .delivery-message-copy strong {
  color: #6a7267;
}
.delivery-replay {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  width: 100%;
  margin: 0.55rem 0 -0.35rem;
  padding: 0.6rem 0.4rem;
  border: 0;
  background: transparent;
  color: #53694e;
  font:
    500 0.75rem/1.5 Inter,
    Arial,
    sans-serif;
  cursor: pointer;
}
.delivery-demo[data-enhanced='true'] .delivery-replay {
  display: flex;
}
.delivery-replay:disabled {
  opacity: 0.45;
  cursor: default;
}
.delivery-demo[data-state='playing'] .delivery-packet {
  animation: deliver-pdf 2.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.delivery-demo[data-state='playing'] .delivery-document {
  animation: prepare-pdf 0.8s ease both;
}
.delivery-demo[data-state='playing'][data-phase='sent'] .delivery-sent-check {
  animation: confirm-delivery 0.45s ease both;
}
.delivery-demo[data-state='playing'][data-phase='sent'] .delivery-message {
  animation: receive-pdf 0.45s ease both;
}
.product-feature-envio .screen-image {
  height: auto;
  padding: 0.6rem;
  min-height: 0;
  aspect-ratio: 473/138;
}
.product-feature-envio .screen-image img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}
.product-feature-envio .feature-screen {
  margin-top: 0;
}
@keyframes deliver-pdf {
  0%,
  10% {
    opacity: 0;
    transform: translateY(-12px) scale(0.7);
  }
  20% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  75% {
    opacity: 1;
    transform: translateY(39px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(56px) scale(0.65);
  }
}
@keyframes prepare-pdf {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
}
@keyframes confirm-delivery {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes receive-pdf {
  from {
    transform: translateY(3px);
    opacity: 0.7;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* v8: ampliação na própria LP, com controles acessíveis no celular. */
button.screen-link {
  width: 100%;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: zoom-in;
}
.screen-viewer {
  position: fixed;
  inset: 0;
  width: calc(100% - 24px);
  max-width: 1280px;
  height: 90vh;
  height: 90dvh;
  max-height: 940px;
  margin: auto;
  padding: 0;
  border: 1px solid #e5d9cd;
  border-radius: 18px;
  background: #fff;
  color: #2c2017;
  box-shadow: 0 28px 90px #1d10084d;
  overflow: hidden;
}
.screen-viewer:not([open]) {
  display: none;
}
.screen-viewer[open] {
  display: flex;
  flex-direction: column;
}
.screen-viewer::backdrop {
  background: #20170fc7;
  backdrop-filter: blur(4px);
}
.viewer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #e9dfd5;
  flex-shrink: 0;
}
.viewer-header h2 {
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: normal;
  margin: 0;
  min-width: 0;
}
.screen-viewer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  flex-shrink: 0;
  padding: 10px 12px;
  border: 1px solid #dfcfbf;
  border-radius: 10px;
  background: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: #713606;
  cursor: pointer;
}
.screen-viewer button:hover {
  background: #fff2e6;
}
.screen-viewer button:focus-visible,
.viewer-viewport:focus-visible {
  outline: 3px solid #a74300;
  outline-offset: -3px;
}
.viewer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 10px 16px;
  flex-shrink: 0;
}
.viewer-toolbar p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #63564b;
  flex: 1 1 210px;
}
.viewer-viewport {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
  min-width: 0;
  padding: 16px;
  overflow: auto;
  overscroll-behavior: contain;
  touch-action: pan-x pan-y pinch-zoom;
  background: #f7f4f0;
}
.viewer-viewport img {
  display: block;
  flex: none;
  max-width: none;
  object-fit: contain;
}
.viewer-viewport.is-zoomed {
  display: block;
}
.viewer-viewport.is-zoomed img {
  margin: 0 auto;
}
@media (max-width: 600px) {
  .screen-viewer {
    height: 94vh;
    height: 94dvh;
    max-height: none;
    width: calc(100% - 16px);
    border-radius: 14px;
  }
  .viewer-header {
    padding: 8px 10px;
  }
  .viewer-header h2 {
    font-size: 0.9375rem;
  }
  .viewer-close span {
    display: none;
  }
  .viewer-close {
    min-width: 48px;
  }
  .viewer-toolbar {
    padding: 8px 10px;
    gap: 8px;
  }
  .viewer-toolbar p {
    font-size: 0.8125rem;
    flex-basis: 100%;
  }
  .viewer-toolbar button {
    width: 100%;
  }
  .viewer-viewport {
    padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }
}

/* ISY: personagem oficial, quatro usos e autoria clínica preservada. */
.isy-section {
  padding-top: 48px;
  padding-bottom: 16px;
  scroll-margin-top: 90px;
}
.isy-shell {
  padding: 28px 18px;
  border: 1px solid #f0a15d;
  border-radius: 24px;
  background:
    radial-gradient(circle at 94% 8%, #ffc34257 0 9%, transparent 31%),
    linear-gradient(145deg, #fff8ef 0%, #ffe4cb 100%);
  overflow: hidden;
  box-shadow: 0 24px 65px #84390017;
}
.isy-intro {
  display: grid;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}
.isy-heading {
  max-width: 780px;
}
.isy-heading h2 {
  font-size: clamp(1.85rem, 5.2vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.055em;
}
.isy-heading h2 span {
  color: #a74300;
}
.isy-heading > p:last-child {
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 650px;
  color: #635041;
}
.isy-character {
  display: grid;
  grid-template-columns: 122px 1fr;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 12px;
  border: 1px solid #e8c6a9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px #7c3f0d0c;
}
.isy-character img {
  width: 122px;
  aspect-ratio: 5/6;
  object-fit: cover;
  object-position: center top;
  border-radius: 13px;
  background: #fff;
}
.isy-character figcaption {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  color: #5f4a3a;
  font-size: 0.8125rem;
  line-height: 1.55;
}
.isy-character figcaption svg {
  flex: none;
  margin-top: 2px;
  color: #a74300;
}
.isy-character figcaption strong {
  display: block;
  color: #312920;
  margin-bottom: 3px;
}
.isy-layout {
  display: grid;
  gap: 22px;
  min-width: 0;
}
.isy-choices {
  display: grid;
  gap: 10px;
}
.isy-choice {
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 82px;
  padding: 14px;
  text-align: left;
  font: inherit;
  color: #312920;
  background: #fffcf9;
  border: 1px solid #e4ccb7;
  border-radius: 14px;
  cursor: pointer;
}
.isy-choice-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f9eadc;
  color: #914207;
}
.isy-choice strong {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.isy-choice small {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #65564a;
  margin-top: 4px;
}
.isy-choice > svg {
  color: #9e7d60;
}
.isy-choice[aria-pressed='true'] {
  background: linear-gradient(135deg, #fff 0%, #fff1d0 100%);
  border-color: #ff7200;
  box-shadow:
    inset 4px 0 #ff7200,
    0 8px 20px #a64a0012;
}
.isy-choice[aria-pressed='true'] .isy-choice-icon {
  background: linear-gradient(135deg, #ffc63b, #ff8900);
  color: #2f1700;
}
.isy-choice:hover {
  border-color: #b85a14;
}
.isy-choice:focus-visible {
  outline: 3px solid #a74300;
  outline-offset: 3px;
}
.isy-authorship {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #625040;
  margin-top: 20px;
}
.isy-authorship svg {
  flex: none;
  color: #914207;
  margin-top: 3px;
}
.isy-conversation {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6d8cb;
  border-radius: 18px;
  box-shadow: 0 18px 45px #8b4d1110;
}
.isy-conversation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 17px;
  border-bottom: 1px solid #eee3d9;
}
.isy-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.isy-name > svg {
  flex: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  box-sizing: border-box;
  border-radius: 12px;
  background: #ffead7;
  color: #a74300;
}
.isy-name strong {
  display: block;
  font-family: Sora, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.06em;
}
.isy-name small {
  display: block;
  font-size: 0.8125rem;
  color: #716052;
  margin-top: 2px;
}
.isy-example-label {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #716052;
  max-width: 90px;
  text-align: right;
}
.isy-example {
  padding: 20px 16px;
  min-height: 345px;
}
.isy-example[hidden] {
  display: none;
}
.isy-prompt-label {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #685649;
  margin-bottom: 9px;
}
.isy-prompt {
  padding: 16px 18px;
  margin: 0 0 12px 20px;
  border-radius: 16px 16px 4px 16px;
  background: linear-gradient(135deg, #fff1dc, #ffd7ae);
  border: 1px solid #f2aa65;
  font-size: 1rem;
  line-height: 1.7;
  color: #48301d;
}
.isy-flow-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #fff1e4;
  color: #914207;
}
.isy-result {
  border: 1px solid #efb17b;
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(145deg, #fff 0%, #fff8ef 100%);
}
.isy-result-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 600;
  color: #914207;
  margin-bottom: 10px;
}
.isy-result h3 {
  font-size: 1.0625rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin: 0 0 9px;
  color: #2c2925;
}
.isy-result p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #62574e;
  margin: 0;
}
.isy-result-note {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #eee1d6;
  padding-top: 12px;
  margin-top: 16px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #655547;
}
.isy-result-note svg {
  flex: none;
  color: #914207;
}
.isy-boundary {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid #e6b98f;
  border-radius: 13px;
  background: #fff8f1;
}
.isy-boundary svg {
  flex: none;
  margin-top: 2px;
  color: #914207;
}
.isy-boundary p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #5d4c3f;
}
.isy-boundary strong {
  color: #342c25;
}
.isy-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-top: 1px solid #ead6c4;
  margin-top: 26px;
  padding-top: 21px;
}
.isy-footer strong {
  font-family: Sora, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 550;
  letter-spacing: -0.04em;
}
.isy-footer a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  color: #914207;
  font-size: 0.9375rem;
  font-weight: 600;
}
@media (min-width: 760px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tour-choices {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .tour-choices button {
    min-height: 76px;
  }
  .tour-screen-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
  }
  .tour-screen-card {
    width: auto;
  }
  .tour-screen-card:first-child {
    grid-column: 1 / -1;
  }
  .tour-screen-card:first-child .screen-image {
    aspect-ratio: 2.07 / 1;
  }
  .pre-registration {
    padding-top: 22px;
    padding-bottom: 72px;
  }
  .pre-registration-shell {
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
    align-items: center;
    gap: 42px;
    padding: 40px;
  }
  .pre-registration-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .isy-shell {
    padding: 44px;
  }
  .isy-intro {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 34px;
    margin-bottom: 36px;
  }
  .isy-character {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 14px;
  }
  .isy-character img {
    width: 210px;
  }
  .isy-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: start;
  }
  .isy-conversation-header {
    padding: 20px 24px;
  }
  .isy-example {
    padding: 26px;
    min-height: 380px;
  }
  .isy-choice {
    padding: 17px;
    min-height: 102px;
  }
  .isy-choice strong {
    font-size: 1rem;
  }
  .isy-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .isy-section {
    padding-top: 64px;
    padding-bottom: 24px;
  }
}
@media (max-width: 380px) {
  .isy-shell {
    padding: 24px 13px;
  }
  .isy-choice {
    grid-template-columns: 34px 1fr 16px;
    gap: 9px;
    padding: 12px;
  }
  .isy-choice-icon {
    width: 34px;
    height: 34px;
  }
  .isy-example {
    padding: 18px 12px;
  }
  .isy-prompt {
    margin-left: 8px;
    padding: 14px;
  }
  .isy-character {
    grid-template-columns: 96px 1fr;
  }
  .isy-character img {
    width: 96px;
  }
  .isy-conversation-header {
    padding: 15px 12px;
  }
}
.delivery-demo {
  max-width: 550px;
  margin-inline: auto;
}
.delivery-packet {
  color: #fff;
}
.screen-viewer {
  z-index: 100;
}
.viewer-header h2 {
  letter-spacing: -0.02em;
}
@media (min-width: 980px) {
  .pre-registration-shell {
    gap: 58px;
    padding: 48px;
  }
  .pre-registration-copy h2 {
    font-size: 2.65rem;
  }
  .pre-registration-benefits {
    grid-template-columns: 1fr;
  }
  .isy-shell {
    padding: 45px;
  }
  .isy-intro {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 48px;
  }
  .isy-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
  }
  .isy-choice {
    padding: 16px;
    min-height: 92px;
  }
  .isy-choice strong {
    font-size: 0.9375rem;
  }
  .isy-example {
    min-height: 350px;
  }
  .isy-character img {
    width: 250px;
  }
  .isy-choice small {
    font-size: 0.875rem;
  }
}
