@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
}
/* Linha Âmbar. Cinco tamanhos para a página; o mockup usa a escala própria da conversa. */
:root {
  color-scheme: dark;
  --bg: #191a1f;
  --surface: #202127;
  --soft: #292b33;
  --text: #f1f2f5;
  --muted: #b1b5c2;
  --accent: #f2b441;
  --on-accent: #1a1405;
  --line: #363841;
  --radius: 8px;
  --font: Inter, Arial, sans-serif;
  --small: 12px;
  --body: 16px;
  --lead: 24px;
  --section: 40px;
  --display: 64px;
  --space: 8px;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--bg);
  scroll-padding-top: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  font: 400 var(--body)/1.6 var(--font);
  color: var(--text);
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  text-wrap: balance;
}
h1 {
  font-size: var(--display);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h2 {
  font-size: var(--section);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
h3 {
  font-size: var(--lead);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
p {
  color: var(--muted);
  text-wrap: pretty;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
button,
summary {
  cursor: pointer;
}
::selection {
  background: var(--accent);
  color: var(--on-accent);
}
.wrap {
  width: min(1248px, calc(100% - 96px));
  margin-inline: auto;
}
.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skip-link {
  position: fixed;
  z-index: 3;
  top: 16px;
  left: 16px;
  padding: 16px;
  background: var(--accent);
  color: var(--on-accent);
  transform: translateY(-180%);
  border-radius: 8px;
}
.skip-link:not(:focus) {
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
}
.skip-link:focus {
  transform: none;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.035em;
  min-height: 48px;
}
.brand svg {
  color: var(--accent);
  width: 32px;
  height: 32px;
}
.brand .suffix {
  font-weight: 400;
}
.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  background: #191a1f66;
}
.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: var(--small);
  font-weight: 500;
}
nav a:hover {
  color: var(--accent);
}
nav .nav-price {
  border: 1px solid #f1f2f580;
  border-radius: 8px;
  padding: 0 16px;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 880px;
  min-height: max(880px, 100svh);
  display: grid;
  align-items: center;
  padding: 128px 0 48px;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(25, 26, 31, 0.94) 0%,
      rgba(25, 26, 31, 0.79) 36%,
      rgba(25, 26, 31, 0.28) 72%,
      rgba(25, 26, 31, 0.4)
    ),
    linear-gradient(0deg, #191a1f 0%, transparent 35%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 368px;
  gap: 72px;
  align-items: center;
}
.hero-copy {
  padding-bottom: 48px;
}
.eyebrow {
  color: #f3c46e;
  font-size: var(--small);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero h1 {
  max-width: 680px;
}
.hero h1 span {
  color: var(--accent);
}
.intro {
  font-size: var(--lead);
  line-height: 1.5;
  color: #e1e2e7;
  max-width: 560px;
  margin-top: 24px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 24px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  font-weight: 600;
  transition:
    background-color 150ms,
    transform 150ms;
}
.button:hover {
  background: #ffca65;
}
.button:active {
  transform: scale(0.96);
}
.button .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  font-size: var(--small);
}
.text-link .icon {
  width: 16px;
  height: 16px;
}
.offer-note {
  font-size: var(--small);
  color: #d2d4dc;
  margin-top: 16px;
  max-width: 480px;
}
.hero-demo {
  width: min(100%, 344px);
  min-width: 0;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.demo-controls {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: var(--small);
  color: #d2d4dc;
}
.demo-controls button {
  border: 1px solid #777b87;
  background: var(--surface);
  border-radius: 8px;
  color: var(--text);
  padding: 8px 16px;
  min-height: 44px;
  font-size: var(--small);
}
.demo-controls button:hover {
  border-color: var(--accent);
}
.section {
  padding: 112px 0;
}
.section-intro {
  max-width: 736px;
  margin-bottom: 40px;
}
.section-intro p {
  margin-top: 16px;
  max-width: 620px;
}
.demo-section {
  padding-top: 80px;
}
.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #17181d;
  outline: 1px solid #ffffff1a;
}
.video-shell video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  background: #191a1f;
}
.video-note {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  margin-top: 16px;
  font-size: var(--small);
  color: var(--muted);
}
.video-note strong {
  font-weight: 500;
  color: var(--text);
}
.video-note a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.cases-section {
  background: var(--surface);
}
.cases-intro {
  display: grid;
  grid-template-columns: 1fr 248px;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}
.cases-intro p {
  margin-top: 16px;
  max-width: 640px;
}
.case-aside {
  font-size: var(--small);
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}
.cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.case {
  grid-column: auto;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  background: var(--bg);
  border-radius: 8px;
  align-items: center;
}
.case:last-child {
  grid-column: 1/-1;
}
.case h3 {
  font-size: var(--body);
  line-height: 1.4;
  margin-top: 8px;
}
.case p {
  font-size: var(--body);
  line-height: 1.65;
  margin-top: 16px;
}
.case .case-tag {
  font-size: var(--small);
  color: var(--accent);
  margin: 0;
}
.case-phone {
  border: 4px solid #53565f;
  padding: 3px;
  border-radius: 16px;
  background: #101115;
  overflow: hidden;
  outline: 1px solid #ffffff1a;
}
.case-phone img {
  width: 100%;
  height: auto;
  border-radius: 9px;
}
.case-phone:hover {
  outline-color: var(--accent);
}
.case-response {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.case-response span,
.case-screen span {
  display: block;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 4px;
}
.case-copy {
  min-width: 0;
  overflow-wrap: break-word;
}
.case-screen span {
  font-size: var(--small);
}
.how-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.how-photo {
  overflow: hidden;
  border-radius: 8px;
  outline: 1px solid #ffffff1a;
}
.how-photo img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: 53% center;
}
.steps {
  padding: 0;
  list-style: none;
  margin: 40px 0 0;
  display: grid;
  gap: 32px;
}
.steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
}
.steps .icon {
  color: var(--accent);
  margin-top: 4px;
}
.steps h3 {
  font-size: var(--body);
  margin-bottom: 8px;
}
.steps p {
  font-size: var(--body);
}
.price-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0;
}
.price-photo {
  position: absolute;
  inset: -8px;
  z-index: -2;
}
.price-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: blur(3px);
}
.price-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #191a1fe8, #191a1f99);
  z-index: -1;
}
.price-layout {
  display: grid;
  grid-template-columns: 1fr 456px;
  gap: 104px;
  align-items: center;
}
.price-copy h2 {
  max-width: 520px;
  font-size: var(--display);
  line-height: 1.4;
}
.price-copy p {
  font-size: var(--lead);
  max-width: 520px;
  margin-top: 24px;
  color: #e1e2e7;
}
.price-card {
  background: var(--surface);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #777b87;
}
.trial {
  color: var(--accent);
  font-size: var(--lead);
  font-weight: 600;
}
.price-caption {
  margin-top: 32px;
  font-size: var(--small);
}
.price {
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.15;
  margin: 8px 0 24px;
  font-variant-numeric: tabular-nums;
}
.amount {
  font-size: var(--display);
  font-weight: 600;
  letter-spacing: -0.05em;
}
.currency {
  font-size: var(--lead);
}
.price-card .button {
  width: 100%;
}
.payment-note {
  font-size: var(--small);
  margin: 16px 0 24px;
}
.price-fine {
  font-size: var(--small);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.about-layout {
  display: grid;
  grid-template-columns: 256px minmax(0, 1fr);
  gap: 80px;
  max-width: 960px;
  margin-inline: auto;
  align-items: center;
}
.rafael-photo {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.rafael-photo img {
  width: 100%;
  height: auto;
}
.about-copy p {
  margin-top: 24px;
  max-width: 600px;
}
.signature {
  font-size: var(--small);
  color: var(--accent) !important;
}
.faq-section {
  padding-top: 16px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 96px;
}
.faq-intro p {
  margin-top: 16px;
  max-width: 320px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  list-style: none;
  font-weight: 500;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  color: var(--accent);
  font-size: var(--lead);
}
details[open] summary::after {
  content: "−";
}
details p {
  padding: 0 32px 24px 0;
}
.footer {
  padding: 40px 0;
  background: #17181d;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer p,
.contact {
  font-size: var(--small);
}
.contact {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
}
.contact .icon {
  width: 16px;
  height: 16px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 1600px) {
  :root {
    --display: 72px;
  }
  .hero {
    min-height: 960px;
  }
  .hero-grid {
    gap: 112px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero-grid {
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) 344px;
  }
  :root {
    --display: 56px;
    --section: 40px;
  }
  .intro {
    font-size: var(--body);
  }
  .cases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case,
  .case:nth-child(n + 3) {
    grid-column: auto;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
  }
  .case:last-child {
    grid-column: 1/-1;
    grid-template-columns: 96px minmax(0, 1fr);
    max-width: none;
  }
  .case:last-child .case-copy {
    max-width: 640px;
  }
  .how-layout {
    gap: 40px;
  }
  .price-layout {
    gap: 48px;
    grid-template-columns: 1fr 400px;
  }
  .price-copy h2 {
    font-size: var(--section);
  }
  .faq-layout {
    gap: 48px;
  }
  .cases-intro {
    grid-template-columns: 1fr 200px;
    gap: 32px;
  }
}
@media (max-width: 760px) {
  :root {
    --display: 40px;
    --section: 32px;
  }
  .wrap {
    width: calc(100% - 48px);
  }
  .header-inner {
    height: 72px;
    gap: 16px;
  }
  .brand {
    font-size: var(--body);
  }
  nav a:not(.nav-price) {
    display: none;
  }
  nav .nav-price {
    padding: 0 12px;
    font-size: var(--small);
    min-height: 44px;
  }
  nav {
    gap: 0;
  }
  .hero {
    padding: 120px 0 48px;
    min-height: 0;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    max-width: 540px;
  }
  .eyebrow {
    margin-bottom: 16px;
    max-width: 280px;
  }
  .intro {
    font-size: var(--body);
    max-width: 400px;
    margin-top: 24px;
  }
  .hero-actions {
    margin-top: 32px;
    gap: 8px 24px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .offer-note {
    max-width: 340px;
    margin-top: 8px;
  }
  .hero-demo {
    justify-self: center;
  }
  .hero-image {
    height: 800px;
  }
  .hero-image img {
    object-position: 40% center;
  }
  .hero::before {
    background:
      linear-gradient(0deg, #191a1f 12%, #191a1f88 68%, #191a1fbf),
      linear-gradient(90deg, #191a1f99, transparent);
  }
  .hero h1 {
    font-size: var(--display);
    line-height: 1.4;
  }
  h2 {
    line-height: 1.4;
  }
  .section {
    padding: 72px 0;
  }
  .section-intro {
    margin-bottom: 32px;
  }
  .video-shell video {
    aspect-ratio: 9/16;
  }
  .video-note {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }
  .cases-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }
  .case-aside {
    padding-left: 16px;
    max-width: 320px;
  }
  .cases {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .case,
  .case:nth-child(n + 3),
  .case:last-child {
    grid-column: auto;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 16px;
  }
  .case h3 {
    font-size: var(--body);
  }
  .how-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-photo {
    order: 2;
  }
  .how-photo img {
    height: 400px;
    object-position: 55% center;
  }
  .steps {
    gap: 24px;
    margin-top: 32px;
  }
  .price-section {
    padding: 64px 0;
  }
  .price-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .price-copy p {
    font-size: var(--body);
  }
  .price-copy h2 {
    font-size: var(--section);
    line-height: 1.4;
    max-width: 350px;
  }
  .price-card {
    padding: 32px 24px;
  }
  .amount {
    font-size: var(--display);
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rafael-photo {
    width: 100%;
    max-width: 320px;
  }
  .about-copy p {
    margin-top: 16px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-section {
    padding-top: 0;
  }
  summary {
    min-height: 72px;
    font-size: var(--body);
    gap: 16px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .demo-controls {
    gap: 8px;
  }
  .demo-controls button {
    padding: 8px 12px;
  }
}
@media (max-width: 374px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .phone {
    width: 100%;
  }
  .hero h1 {
    font-size: 40px;
  }
  .header nav .nav-price {
    padding: 0 8px;
  }
  .case,
  .case:nth-child(n + 3) {
    grid-template-columns: 80px minmax(0, 1fr);
    padding: 16px 12px;
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .button:active {
    transform: none;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }
  .hero-copy {
    max-width: 640px;
    padding-bottom: 0;
  }
  .hero-demo {
    justify-self: center;
  }
  .hero {
    padding-top: 128px;
  }
  .hero-image {
    height: 100%;
  }
  .hero::before {
    background: linear-gradient(0deg, #191a1f 0%, #191a1fa6 65%, #191a1fbb);
  }
  .price-layout {
    grid-template-columns: 1fr 360px;
    gap: 32px;
  }
  .price-card {
    padding: 32px 24px;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .cases {
    grid-template-columns: 1fr;
  }
  .case:last-child {
    grid-column: auto;
  }
  .cases-intro h2,
  .price-copy h2 {
    line-height: 1.4;
  }
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
@media (forced-colors: active) {
  :focus-visible {
    outline-color: Highlight;
  }
}
#video-erro {
  margin-top: 16px;
}
.transcript {
  margin-top: 24px;
}
.transcript ol {
  padding-inline-start: 24px;
  max-width: 75ch;
}
.transcript li {
  margin-bottom: 16px;
}
.transcript p {
  padding: 0;
}
.demo-controls [hidden] {
  display: none;
}
