:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --text: #142a3b;
  --text-strong: #0c1d2c;
  --muted: #667085;
  --line: #e8ecf3;
  --line-strong: #d8dde7;
  --brand: #dea335;
  --brand-light: #f0ba4d;
  --brand-dark: #142a3b;
  --brand-soft: rgba(222, 163, 53, 0.12);
  --navy-950: #081522;
  --navy-900: #0c1d2c;
  --navy-800: #142a3b;
  --navy-700: #1d3a51;
  --success: #22a447;
  --danger: #f07575;
  --danger-soft: rgba(240, 117, 117, 0.12);
  --shadow-sm: 0 2px 6px rgba(12, 29, 44, 0.04), 0 8px 24px rgba(12, 29, 44, 0.05);
  --shadow: 0 4px 12px rgba(12, 29, 44, 0.05), 0 20px 48px rgba(12, 29, 44, 0.09);
  --shadow-lg: 0 8px 20px rgba(12, 29, 44, 0.08), 0 36px 80px rgba(12, 29, 44, 0.16);
  --shadow-brand: 0 10px 20px rgba(222, 163, 53, 0.25), 0 22px 44px rgba(222, 163, 53, 0.18);
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: min(1240px, calc(100% - 48px));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-height: 100vh;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

h1, h2, h3, h4 {
  color: var(--text-strong);
  line-height: 1.12;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.7rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 800;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

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

::selection {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: top 0.2s ease;
}

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

.text-brand {
  color: var(--brand);
}

.grad-text {
  background: linear-gradient(100deg, var(--brand-light) 0%, var(--brand) 60%, #b8842a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--brand-soft);
  color: #a1751f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.eyebrow-ondark {
  background: rgba(222, 163, 53, 0.14);
  color: var(--brand-light);
  border: 1px solid rgba(222, 163, 53, 0.25);
}

/* ----- Buttons ------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(222, 163, 53, 0.4);
  outline-offset: 3px;
}

.btn-lg {
  min-height: 54px;
  padding: 0 28px;
  font-size: 1rem;
}

.btn-xl {
  min-height: 60px;
  padding: 0 32px;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  color: #fff;
  box-shadow: var(--shadow-brand), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(222, 163, 53, 0.32), 0 28px 56px rgba(222, 163, 53, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: var(--surface);
  color: var(--text-strong);
  border: 1.5px solid var(--line-strong);
}

.btn-outline-dark:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: var(--brand-soft);
  transform: translateY(-2px);
}

/* ----- Topbar ------------------------------------------------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 21, 34, 0.72);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.topbar.is-scrolled {
  background: rgba(8, 21, 34, 0.92);
  box-shadow: 0 10px 30px rgba(8, 21, 34, 0.35);
}

.topbar-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.top-logo img {
  height: 38px;
  width: auto;
}

.top-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 16px;
}

.top-nav a {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.2s ease, color 0.2s ease;
}

.top-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.top-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.top-actions .btn {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.9rem;
}

.top-menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
}

.top-menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.top-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.top-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.top-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  width: var(--container);
  margin: 0 auto 12px;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(12, 29, 44, 0.96);
}

.mobile-nav:not([hidden]) {
  display: grid;
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav .mobile-cta {
  margin-top: 8px;
  justify-content: center;
  color: #fff;
}

/* ----- Reveal ------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--stagger, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ----- Check / cross ------------------------------------------------- */

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  flex: 0 0 auto;
  position: relative;
}

.check::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2.2px solid currentColor;
  border-bottom: 2.2px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

.cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--danger-soft);
  color: var(--danger);
  flex: 0 0 auto;
  position: relative;
}

.cross::before,
.cross::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 2.2px;
  background: currentColor;
  border-radius: 2px;
}

.cross::before { transform: rotate(45deg); }
.cross::after { transform: rotate(-45deg); }

/* ----- Hero ---------------------------------------------------------- */

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: #fff;
  overflow: hidden;
  margin-top: -71px;
  padding-top: 71px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 30%, transparent 75%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(222, 163, 53, 0.22) 0%, transparent 65%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -260px;
  left: -200px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(91, 143, 185, 0.16) 0%, transparent 65%);
}

.hero-inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 88px 0 72px;
}

.hero-copy {
  display: grid;
  gap: 26px;
  justify-items: start;
}

.hero-copy h1 {
  color: #fff;
}

.hero-lead {
  font-size: 1.13rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.hero-statement {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-statement strong {
  color: var(--brand-light);
  font-weight: 700;
}

/* Mockup */

.hero-visual {
  position: relative;
  perspective: 1400px;
}

.mock-window {
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 60px 120px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(2.5deg);
  animation: mockFloat 8s ease-in-out infinite;
}

@keyframes mockFloat {
  0%, 100% { transform: rotateY(-6deg) rotateX(2.5deg) translateY(0); }
  50% { transform: rotateY(-6deg) rotateX(2.5deg) translateY(-10px); }
}

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #f2f4f8;
  border-bottom: 1px solid var(--line);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9dee8;
}

.mock-dot:nth-child(1) { background: #f37f74; }
.mock-dot:nth-child(2) { background: #f0ba4d; }
.mock-dot:nth-child(3) { background: #4fc463; }

.mock-url {
  margin-left: 10px;
  flex: 1;
  max-width: 260px;
  padding: 5px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.mock-body {
  display: grid;
  grid-template-columns: 148px 1fr;
}

.mock-side {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.66);
  padding: 16px 12px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.mock-side-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  padding: 4px 8px;
}

.mock-side-mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  flex: 0 0 auto;
}

.mock-side-nav {
  list-style: none;
  display: grid;
  gap: 2px;
  font-size: 0.78rem;
  font-weight: 600;
}

.mock-side-nav li {
  padding: 8px 10px;
  border-radius: 8px;
}

.mock-side-nav li.is-active {
  background: rgba(222, 163, 53, 0.16);
  color: var(--brand-light);
}

.mock-main {
  padding: 18px;
  display: grid;
  gap: 14px;
  align-content: start;
  background: #fbfcfe;
}

.mock-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.mock-head strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-strong);
}

.mock-head span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-stat {
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  gap: 2px;
}

.mock-stat span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mock-stat strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}

.mock-stat em {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
}

.mock-stat em.up {
  color: var(--success);
}

.mock-rows {
  display: grid;
  gap: 8px;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.mock-row strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-strong);
}

.mock-row span:not(.mock-pill) {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
}

.mock-pill {
  flex: 0 0 auto;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

.mock-pill.is-prod {
  background: var(--brand-soft);
  color: #a1751f;
}

.mock-pill.is-wait {
  background: rgba(102, 112, 133, 0.12);
  color: var(--muted);
}

.mock-pill.is-done {
  background: rgba(34, 164, 71, 0.12);
  color: var(--success);
}

/* Floating chips */

.hero-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  animation: chipFloat 7s ease-in-out infinite;
}

.hero-chip strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.25;
}

.hero-chip span:not(.chip-icon) {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

.chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  flex: 0 0 auto;
}

.chip-icon svg {
  width: 20px;
  height: 20px;
}

.chip-icon-gold {
  background: var(--brand-soft);
  color: var(--brand);
}

.chip-icon-green {
  background: rgba(34, 164, 71, 0.12);
  color: var(--success);
}

.hero-chip-one {
  bottom: -22px;
  left: -18px;
}

.hero-chip-two {
  top: -18px;
  right: -10px;
  animation-delay: -3.5s;
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Hero strip (subhead) */

.hero-strip {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
}

.hero-strip p {
  width: var(--container);
  margin: 0 auto;
  padding: 26px 0;
  text-align: center;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.hero-strip strong {
  color: var(--brand-light);
  font-weight: 800;
}

/* ----- Prova social (placeholder — ativado quando houver logos) ------- */

.social-proof {
  width: var(--container);
  margin: 0 auto;
  padding: 56px 0 0;
}

.social-proof-inner {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.social-proof-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
}

.social-proof-logos img {
  height: 36px;
  width: auto;
  opacity: 0.65;
  filter: grayscale(1);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.social-proof-logos img:hover {
  opacity: 1;
  filter: none;
}

/* ----- Section heading ----------------------------------------------- */

.section-head {
  display: grid;
  gap: 14px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  justify-self: center;
}

.section-head p {
  font-size: 1.08rem;
}

/* ----- Problem -------------------------------------------------------- */

.problem {
  width: var(--container);
  margin: 0 auto;
  padding: 104px 0 88px;
}

.problem-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-copy {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.problem-copy .lead {
  font-size: 1.15rem;
}

.problem-copy p strong,
.problem-copy .dark {
  color: var(--text-strong);
}

.problem-copy .btn {
  margin-top: 8px;
}

.problem-card {
  position: relative;
  background: linear-gradient(155deg, var(--navy-800) 0%, var(--navy-700) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  gap: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.problem-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 68%);
  opacity: 0.3;
  pointer-events: none;
}

.problem-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.problem-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 0.99rem;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.problem-list .cross {
  margin-top: 0;
  background: rgba(240, 117, 117, 0.16);
}

/* ----- Promise (flow) -------------------------------------------------- */

.promise {
  width: var(--container);
  margin: 0 auto;
  padding: 40px 0 104px;
}

.flow-track {
  position: relative;
  padding-top: 8px;
}

.flow-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}

.flow-steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand) 12%, var(--brand) 88%, transparent);
  opacity: 0.35;
}

.flow-step {
  position: relative;
  padding: 30px 20px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(222, 163, 53, 0.4);
}

.flow-index {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(222, 163, 53, 0.35);
}

.flow-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.flow-icon svg {
  width: 26px;
  height: 26px;
}

.flow-step h3 {
  font-size: 1.06rem;
}

.flow-step p {
  font-size: 0.88rem;
}

.promise-close {
  text-align: center;
  margin-top: 48px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text);
  font-weight: 700;
}

.promise-close strong {
  color: var(--brand);
  font-weight: 800;
}

/* Vídeo da promessa (YouTube) */

.promise-video {
  max-width: 860px;
  margin: 44px auto 0;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-700) 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(222, 163, 53, 0.25);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 6px;
  place-content: center;
  justify-items: center;
  text-align: center;
  padding: 24px;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(222, 163, 53, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

.video-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  color: #fff;
  box-shadow: var(--shadow-brand);
  margin-bottom: 14px;
}

.video-play svg {
  width: 34px;
  height: 34px;
  margin-left: 3px;
}

.video-placeholder strong {
  color: #fff;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.video-placeholder > span:not(.video-play) {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ----- How it works (dark band) ---------------------------------------- */

.how {
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}

.how::before {
  content: "";
  position: absolute;
  top: -160px;
  left: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(222, 163, 53, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

.how-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
  position: relative;
}

.how-intro {
  display: grid;
  gap: 22px;
  justify-items: start;
  position: sticky;
  top: 110px;
}

.how-intro h2 {
  color: #fff;
}

.how-steps {
  list-style: none;
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.how-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out);
}

.how-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(222, 163, 53, 0.35);
  transform: translateX(6px);
}

.how-number {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex: 0 0 auto;
  line-height: 1.2;
}

.how-step h3 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.how-step p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

/* ----- Results ---------------------------------------------------------- */

.results {
  width: var(--container);
  margin: 0 auto;
  padding: 104px 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.result-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.result-card.is-more:hover {
  border-color: rgba(222, 163, 53, 0.45);
}

.result-card.is-more {
  background: linear-gradient(180deg, #fffdf7 0%, #fff 60%);
}

.result-card h3 {
  font-size: 1.05rem;
}

.result-card p {
  font-size: 0.93rem;
}

/* ----- Pricing ----------------------------------------------------------- */

.pricing {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 112px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}

.plan-card > .btn {
  margin-top: auto;
}

.plan-card:not(.plan-card-featured):hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.plan-head {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.plan-head h3 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.plan-head p {
  font-size: 0.96rem;
}

.plan-meta {
  display: inline-block;
  width: fit-content;
  margin-top: 2px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--brand-soft);
  color: #a1751f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-card-featured .plan-meta {
  background: rgba(222, 163, 53, 0.18);
  color: var(--brand-light);
}

.plans-note {
  margin-top: 26px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.plan-includes {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand);
}

.plan-list {
  list-style: none;
  display: grid;
  gap: 12px;
  align-content: start;
}

.plan-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.96rem;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-soft);
}

.plan-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.plan-card-featured {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-color: rgba(222, 163, 53, 0.35);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

@media (min-width: 1101px) {
  .plan-card-featured {
    transform: scale(1.04);
  }

  .plan-card-featured:hover {
    transform: scale(1.04) translateY(-6px);
  }
}

.plan-card-featured::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 68%);
  opacity: 0.32;
  pointer-events: none;
}

.plan-card-featured .plan-head {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.plan-card-featured .plan-head h3 {
  color: #fff;
}

.plan-card-featured .plan-head p {
  color: rgba(255, 255, 255, 0.72);
}

.plan-card-featured .plan-includes {
  color: var(--brand-light);
}

.plan-card-featured .plan-list li {
  color: rgba(255, 255, 255, 0.88);
}

.plan-card-featured .plan-list li::before {
  background: rgba(222, 163, 53, 0.2);
}

.plan-card-featured .plan-list li::after {
  border-color: var(--brand-light);
}

.plan-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(222, 163, 53, 0.4);
}

/* ----- Differential ------------------------------------------------------- */

.different {
  background: linear-gradient(165deg, var(--navy-950) 0%, var(--navy-800) 100%);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.different::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(222, 163, 53, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.different-inner {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
  position: relative;
}

.different-nots {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.different-nots li {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
}

.different-inner h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}

.different-inner > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.12rem;
  max-width: 660px;
  line-height: 1.7;
}

/* ----- Audience ------------------------------------------------------------ */

.audience {
  width: var(--container);
  margin: 0 auto;
  padding: 104px 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.audience-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 36px;
  display: grid;
  gap: 22px;
  align-content: start;
}

.audience-panel:not(.audience-panel-not) {
  border-top: 4px solid var(--brand);
}

.audience-panel-not {
  border-top: 4px solid var(--danger);
}

.audience-panel-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-strong);
}

.audience-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.audience-list li {
  position: relative;
  padding: 15px 18px 15px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  color: var(--text);
  font-weight: 600;
  font-size: 0.97rem;
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out);
}

.audience-list li:hover {
  transform: translateX(4px);
}

.audience-list:not(.audience-list-not) li:hover {
  border-color: rgba(222, 163, 53, 0.45);
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 12px;
  height: 6px;
  border-left: 2.2px solid var(--brand);
  border-bottom: 2.2px solid var(--brand);
  transform: translateY(-70%) rotate(-45deg);
}

.audience-list-not li {
  color: var(--muted);
}

.audience-list-not li:hover {
  border-color: rgba(240, 117, 117, 0.4);
}

.audience-list-not li::before {
  width: 11px;
  height: 11px;
  border: 0;
  transform: translateY(-50%);
  background:
    linear-gradient(45deg, transparent 43%, var(--danger) 43%, var(--danger) 57%, transparent 57%),
    linear-gradient(-45deg, transparent 43%, var(--danger) 43%, var(--danger) 57%, transparent 57%);
}

/* ----- Contact (form) -------------------------------------------------------- */

.contact {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 112px;
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 100%);
  height: 70%;
  background: radial-gradient(ellipse, rgba(222, 163, 53, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.contact .ipt-wrap {
  position: relative;
  box-shadow: var(--shadow-lg);
}

/* ----- Footer ------------------------------------------------------------------ */

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 28px;
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.95rem;
  width: fit-content;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--brand-light);
}

.footer-bottom {
  width: var(--container);
  margin: 48px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ----- Sticky mobile CTA ---------------------------------------------------------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(8, 21, 34, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-out);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta:not([hidden]) {
  display: block;
}

@media (min-width: 821px) {
  .sticky-cta {
    display: none !important;
  }
}

/* ----- Responsive ------------------------------------------------------------------- */

@media (max-width: 1180px) {
  .flow-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    row-gap: 30px;
  }

  .flow-steps::before {
    display: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --container: min(1240px, calc(100% - 32px));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 72px;
    padding: 64px 0 80px;
  }

  .hero-visual {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }

  .mock-window {
    transform: none;
    animation: mockFloatFlat 8s ease-in-out infinite;
  }

  @keyframes mockFloatFlat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .how-intro {
    position: static;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 80px;
  }

  .top-nav,
  .top-actions {
    display: none;
  }

  .top-menu-toggle {
    display: inline-flex;
  }

  .topbar-inner {
    padding: 12px 0;
  }

  .hero {
    margin-top: -69px;
    padding-top: 69px;
  }

  .hero-inner {
    padding: 48px 0 72px;
    gap: 56px;
  }

  .hero-chip-one {
    left: 0;
    bottom: -26px;
  }

  .hero-chip-two {
    right: 0;
    top: -22px;
  }

  .mock-side {
    display: none;
  }

  .mock-body {
    grid-template-columns: 1fr;
  }

  .problem,
  .results,
  .audience {
    padding: 72px 0;
  }

  .promise {
    padding: 24px 0 72px;
  }

  .how {
    padding: 72px 0;
  }

  .pricing,
  .contact {
    padding-bottom: 80px;
  }

  .different {
    padding: 80px 0;
  }

  .flow-steps {
    grid-template-columns: 1fr 1fr;
  }

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

  .how-step {
    padding: 20px;
    gap: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 76px;
  }
}

@media (max-width: 540px) {
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .audience-panel {
    padding: 26px;
  }

  .plan-card {
    padding: 28px 24px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .mock-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .mock-stat strong {
    font-size: 1.05rem;
  }

  .hero-chip {
    padding: 10px 14px 10px 10px;
  }

  .chip-icon {
    width: 32px;
    height: 32px;
  }

  h1 {
    font-size: clamp(2.05rem, 8.4vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.65rem, 6.4vw, 2rem);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
