:root {
  --bg: #fff8ef;
  --bg-2: #f5eaff;
  --ink: #14111f;
  --muted: #625b70;
  --soft: rgba(255, 255, 255, 0.72);
  --glass: rgba(255, 255, 255, 0.62);
  --line: rgba(74, 45, 112, 0.16);
  --orange: #ff8f43;
  --orange-2: #ff6f00;
  --yellow: #ffd500;
  --pink: #ff1744;
  --cyan: #20b8ff;
  --purple: #7b2cff;
  --violet: #d7b8ff;
  --blue: #142448;
  --shadow: 0 24px 80px rgba(52, 35, 85, 0.16);
  --radius: 22px;
  --header-h: 74px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 10%, rgba(255, 143, 67, 0.28), transparent 32vw),
    radial-gradient(circle at 82% 0%, rgba(123, 44, 255, 0.18), transparent 34vw),
    radial-gradient(circle at 72% 48%, rgba(32, 184, 255, 0.12), transparent 30vw),
    linear-gradient(145deg, #fff8ef 0%, #f6edff 42%, #effaff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(123, 53, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 53, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' opacity='0.22' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

a { color: inherit; }

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 500;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

.top-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 220;
  height: 3px;
  background: rgba(123, 53, 255, 0.08);
}

.top-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--pink), var(--purple), var(--cyan));
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.55);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 200;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 239, 0.72);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav a,
.btn,
.mobile-sticky-cta {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: 126px;
  height: auto;
  display: block;
}

.brand span {
  padding-left: 10px;
  border-left: 1px solid rgba(123, 44, 255, 0.18);
  color: #3c245b;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.main-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(123, 44, 255, 0.13);
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 20px 60px rgba(55, 37, 84, 0.16);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a.is-active,
.main-nav a:hover {
  background: rgba(123, 53, 255, 0.1);
  color: var(--ink);
}

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

.menu-toggle {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  gap: 3px;
  border: 1px solid rgba(123, 44, 255, 0.14);
  border-radius: 11px;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 12px 34px rgba(55, 37, 84, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: #4b2b68;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.section-rail {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 140;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
}

.section-rail a {
  position: relative;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(123, 53, 255, 0.32);
  border-radius: 50%;
  background: rgba(255,255,255,0.64);
}

.section-rail a.is-active {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.72);
}

.section-rail span {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
}

.section-rail a:hover span { opacity: 1; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 146px 24px 86px;
  isolation: isolate;
}

.hero-video,
.hero-canvas,
.hero-aurora,
.hero-spotlight {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -5;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.12) contrast(1.06);
  transition: opacity 900ms ease;
}

.hero-video.is-ready { opacity: 0.28; }

.hero-canvas {
  z-index: -4;
  opacity: 0.58;
}

.hero-aurora {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(251,247,241,0.94), rgba(251,247,241,0.62) 44%, rgba(245,238,255,0.84)),
    radial-gradient(circle at 68% 35%, rgba(134, 200, 61, 0.22), transparent 24vw),
    radial-gradient(circle at 76% 42%, rgba(32, 184, 255, 0.16), transparent 24vw),
    radial-gradient(circle at 78% 18%, rgba(123, 44, 255, 0.22), transparent 30vw);
}

.hero-spotlight {
  z-index: -2;
  background: radial-gradient(circle at var(--x, 70%) var(--y, 36%), rgba(255, 143, 67, 0.24), transparent 24vw);
  transition: background 80ms linear;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.85fr);
  gap: clamp(32px, 5vw, 72px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #7540dc;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.3vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.hero-sub,
.section-heading p,
.diagnostic-copy p,
.launch-card p,
.authority-card p,
.final-card p {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.72;
}

.badge-row,
.chip-cloud,
.objection-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-row {
  margin: 28px 0 30px;
}

.badge-row span,
.chip-cloud span,
.objection-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(123, 53, 255, 0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  color: #3f3458;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(70, 44, 105, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

.btn {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 950;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -35%;
  width: 40%;
  height: 180%;
  transform: rotate(25deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transition: left 520ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after { left: 110%; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--pink) 48%, var(--purple));
  color: #fff;
  box-shadow: 0 20px 54px rgba(255, 122, 26, 0.34), 0 0 28px rgba(123, 44, 255, 0.16);
}

.btn-secondary {
  border-color: rgba(123, 44, 255, 0.28);
  background: linear-gradient(135deg, #42226d, var(--purple));
  color: #fff;
  box-shadow: 0 14px 34px rgba(73, 48, 105, 0.1);
}

.btn-wide {
  width: fit-content;
  margin: 18px 0 10px;
}

.microcopy {
  max-width: 640px;
  margin: 16px 0 0;
  color: #6e6578;
  font-size: 13px;
  line-height: 1.6;
}

.microcopy.strong {
  color: #4e3b68;
  font-weight: 850;
}

.hero-panel,
.manifest-card,
.lead-form,
.price-card,
.launch-card,
.authority-card,
.final-card,
.compare-board {
  border: 1px solid rgba(255,255,255,0.7);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.78), rgba(255,255,255,0.46)),
    linear-gradient(135deg, rgba(255,122,26,0.08), rgba(123,53,255,0.08));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-panel {
  position: relative;
  min-height: 620px;
  padding: 24px;
  border-radius: 32px;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -80px;
  width: 360px;
  height: 288px;
  opacity: 0.11;
  background: url("assets/camaleao-colorido.png") center / contain no-repeat;
  pointer-events: none;
}

.hero-panel::before,
.featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,143,67,0.75), rgba(255,23,68,0.5), rgba(123,44,255,0.5), rgba(32,184,255,0.52));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.panel-top,
.metric-strip {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.panel-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-top strong {
  font-size: 22px;
}

.live-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(32,184,255,0.15);
  color: #205b80;
  font-size: 12px;
  font-weight: 900;
}

.live-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(32,184,255,0.86);
  animation: pulse 1.4s ease-in-out infinite;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 24px 0 28px;
}

.channel-grid span {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(123, 53, 255, 0.13);
  border-radius: 14px;
  background: rgba(255,255,255,0.55);
  color: #4a405f;
  font-size: 12px;
  font-weight: 900;
}

.floating-stack {
  position: relative;
  min-height: 348px;
}

.event-card {
  position: absolute;
  width: min(315px, 86%);
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 20px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 18px 46px rgba(49, 31, 77, 0.15);
  animation: float 5.2s ease-in-out infinite;
}

.event-card:nth-child(1) { top: 0; left: 3%; animation-delay: -0.4s; }
.event-card:nth-child(2) { top: 82px; right: 0; animation-delay: -1.6s; }
.event-card:nth-child(3) { top: 174px; left: 12%; animation-delay: -2.7s; }
.event-card:nth-child(4) { top: 264px; right: 9%; animation-delay: -3.6s; }

.event-card::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 6px;
  height: 42px;
  border-radius: 99px;
  background: linear-gradient(var(--orange), var(--pink), var(--purple));
  box-shadow: 0 0 18px rgba(255,122,26,0.38);
}

.event-card small,
.event-card strong,
.event-card p {
  display: block;
  margin-left: 16px;
}

.event-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.event-card strong {
  margin-top: 6px;
  font-size: 16px;
}

.event-card p {
  margin-top: 6px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.event-card.is-hot {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,237,215,0.9));
  box-shadow: 0 18px 52px rgba(255,122,26,0.18);
}

.metric-strip {
  margin-top: 8px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.62);
}

.metric-strip div {
  display: grid;
  gap: 4px;
}

.metric-strip strong {
  color: #6b32da;
  font-size: 22px;
}

.metric-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.section-pad {
  padding: 78px 24px;
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.section-heading {
  width: min(860px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.pain-grid,
.benefit-grid,
.pricing-grid,
.bonus-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.stats-ribbon {
  position: relative;
  width: min(1180px, 100%);
  margin: -6px auto 26px;
  overflow: hidden;
  border: 1px solid rgba(123, 44, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255,248,239,0.94), rgba(255,255,255,0.82)),
    linear-gradient(135deg, rgba(255,143,67,0.08), rgba(123,44,255,0.08));
  box-shadow: 0 14px 40px rgba(55, 37, 84, 0.08);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.stats-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 10px 0;
  animation: ticker 42s linear infinite;
  will-change: transform;
}

.stats-ribbon:hover .stats-track {
  animation-play-state: paused;
}

.stats-track span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border: 1px solid rgba(123, 44, 255, 0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  color: #4c405d;
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
}

.stats-track strong {
  color: var(--orange-2);
  font-size: 17px;
  font-weight: 950;
}

.stats-track em {
  color: #7b2cff;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.tilt-card,
.benefit,
.price-card {
  border: 1px solid rgba(123, 53, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.62);
  box-shadow: 0 16px 44px rgba(57, 37, 83, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.tilt-card {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  padding: 18px;
  cursor: pointer;
}

.tilt-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
}

.tilt-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.tilt-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 240ms ease, opacity 240ms ease, transform 240ms ease, margin 240ms ease;
}

.tilt-card:hover,
.tilt-card:focus-within,
.benefit:hover,
.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 143, 67, 0.72);
  box-shadow: 0 20px 54px rgba(123, 53, 255, 0.12), 0 0 24px rgba(255,143,67,0.17);
}

.tilt-card:hover p,
.tilt-card.is-active p {
  max-height: 90px;
  margin-top: 10px;
  opacity: 1;
  transform: translateY(0);
}

.impact,
.center-call {
  width: min(900px, 100%);
  margin: 34px auto 0;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,143,67,0.15), rgba(255,213,0,0.11), rgba(123,44,255,0.11));
  color: #352248;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
}

.compare-board {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  width: min(1040px, 100%);
  margin: 0 auto;
  border-radius: 32px;
  padding: 28px;
}

.compare-col {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.55);
}

.compare-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.before .compare-tag { background: rgba(255,122,26,0.14); color: #9f4300; }
.after .compare-tag { background: rgba(32,184,255,0.14); color: #205b80; }

.compare-col ul,
.check-list,
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-col li,
.check-list li,
.price-card li {
  position: relative;
  padding: 11px 0 11px 24px;
  color: #514762;
  line-height: 1.45;
}

.compare-col li::before,
.check-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255,122,26,0.5);
}

.after li::before,
.check-list li::before,
.featured li::before {
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(32,184,255,0.42);
}

.transform-line {
  display: grid;
  place-items: center;
}

.transform-line span {
  width: 3px;
  height: 82%;
  border-radius: 99px;
  background: linear-gradient(var(--orange), var(--pink), var(--purple), var(--cyan));
  box-shadow: 0 0 28px rgba(123,53,255,0.32);
  animation: glowline 2.8s ease-in-out infinite;
}

.solution-layout,
.diagnostic,
.launch-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.quote-box {
  margin-top: 22px;
  padding: 20px;
  border-left: 4px solid var(--orange);
  border-radius: 18px;
  background: rgba(255,255,255,0.58);
  color: #352248;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-grid.compact {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benefit {
  position: relative;
  min-height: 92px;
  overflow: hidden;
  padding: 18px;
  font-weight: 900;
  cursor: pointer;
}

.benefit::before {
  content: "";
  position: absolute;
  inset: auto 16px 12px 16px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.benefit strong {
  display: block;
  margin-bottom: 7px;
}

.benefit p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 240ms ease, opacity 240ms ease, transform 240ms ease;
}

.benefit:hover::before,
.benefit.is-active::before {
  transform: scaleX(1);
}

.benefit:hover p,
.benefit.is-active p {
  max-height: 90px;
  opacity: 1;
  transform: translateY(0);
}

.benefit.rich {
  min-height: 190px;
}

.benefit.rich strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit.rich p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-weight: 500;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.timeline-item {
  min-height: 240px;
  border: 1px solid rgba(123,53,255,0.14);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,0.58);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.timeline-item span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: rgba(123,53,255,0.1);
  color: #6731ce;
  font-weight: 950;
}

.timeline-item strong {
  display: block;
  font-size: 18px;
}

.timeline-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.6;
  transition: max-height 260ms ease, margin 260ms ease;
}

.timeline-item.is-active,
.timeline-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,122,26,0.48);
  background: rgba(255,255,255,0.78);
}

.timeline-item.is-active p,
.timeline-item:hover p {
  max-height: 170px;
  margin-top: 14px;
}

.chip-cloud {
  width: min(950px, 100%);
  justify-content: center;
  margin: 0 auto;
}

.diagnostic {
  align-items: start;
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255,255,255,0.42), rgba(245,236,255,0.52));
}

.lead-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 30px;
}

.lead-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(32,184,255,0.62), rgba(255,122,26,0.54), rgba(123,53,255,0.62));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.form-head {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,143,67,0.16), rgba(255,213,0,0.12), rgba(123,44,255,0.12));
}

.form-head span {
  display: block;
  margin-bottom: 6px;
  color: #7040da;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.form-head strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.03em;
}

label {
  display: grid;
  gap: 7px;
  color: #3e334f;
  font-size: 13px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(123,53,255,0.18);
  border-radius: 16px;
  padding: 0 14px;
  background: rgba(255,255,255,0.74);
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus {
  border-color: rgba(255,122,26,0.7);
  box-shadow: 0 0 0 4px rgba(255,122,26,0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.form-success {
  display: none;
  padding: 14px;
  border-radius: 16px;
  background: rgba(32,184,255,0.14);
  color: #215574;
  font-weight: 900;
}

.form-success.is-visible { display: block; }

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
}

.price-card p {
  color: var(--muted);
  line-height: 1.55;
}

.price-card ul {
  margin: 18px 0 24px;
}

.price {
  margin-top: auto;
  margin-bottom: 20px;
}

.price span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 850;
}

.price strong {
  display: block;
  color: #5f2fc5;
  font-size: clamp(24px, 2vw, 32px);
  letter-spacing: -0.04em;
}

.featured {
  transform: translateY(-18px);
  border-color: rgba(255,122,26,0.44);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,244,231,0.78)),
    radial-gradient(circle at 70% 0%, rgba(32,184,255,0.14), transparent 44%);
  box-shadow: 0 32px 90px rgba(255, 122, 26, 0.2), 0 0 40px rgba(123,53,255,0.12);
}

.recommended {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.launch-card {
  grid-template-columns: 1.2fr 0.8fr;
  border-radius: 36px;
  padding: 36px;
}

.check-list.columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 12px;
  margin: 22px 0;
}

.founder-counter {
  min-height: 310px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 30%, rgba(32,184,255,0.18), transparent 44%),
    linear-gradient(145deg, rgba(123,44,255,0.13), rgba(255,143,67,0.14), rgba(32,184,255,0.08));
  text-align: center;
}

.founder-counter span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-counter strong {
  color: #5f2fc5;
  font-size: clamp(78px, 8vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.founder-counter p {
  width: min(260px, 100%);
  margin: 0;
  color: #4f4262;
  font-weight: 900;
  line-height: 1.35;
}

.bonus-grid {
  grid-template-columns: repeat(5, 1fr);
}

.authority-card,
.final-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px);
  border-radius: 36px;
  text-align: center;
}

.authority-card strong {
  display: block;
  margin-top: 24px;
  color: #402354;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.18;
}

.objection-list {
  width: min(1080px, 100%);
  justify-content: center;
  margin: 0 auto;
}

.accordion {
  display: grid;
  gap: 12px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.faq-item {
  width: 100%;
  border: 1px solid rgba(123,53,255,0.14);
  border-radius: 22px;
  padding: 0;
  background: rgba(255,255,255,0.64);
  color: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 42px rgba(56, 37, 82, 0.08);
}

.faq-item span {
  position: relative;
  display: block;
  padding: 22px 58px 22px 22px;
  font-size: 18px;
  font-weight: 950;
}

.faq-item span::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 24px;
}

.faq-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--muted);
  line-height: 1.68;
  transition: max-height 260ms ease, padding 260ms ease;
}

.faq-item.is-open p {
  max-height: 220px;
  padding: 0 22px 22px;
}

.faq-item.is-open span::after { content: "-"; }

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 38px 24px 92px;
  border-top: 1px solid rgba(123,53,255,0.12);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.site-footer img {
  width: 170px;
  height: auto;
}

.site-footer strong {
  color: var(--ink);
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 220;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 50px rgba(255,122,26,0.36);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.55); opacity: 0.55; }
}

@keyframes glowline {
  0%, 100% { opacity: 0.56; transform: scaleY(0.88); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

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

  .stats-track {
    animation: none !important;
    flex-wrap: wrap;
    width: auto;
    padding: 10px;
  }
}

@media (max-width: 1100px) {
  .hero-inner,
  .solution-layout,
  .diagnostic,
  .launch-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 560px;
  }

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

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

  .featured {
    transform: none;
  }

  .section-rail {
    display: none;
  }
}

@media (max-width: 820px) {
  :root { --header-h: 64px; }

  body {
    background:
      radial-gradient(circle at 12% 6%, rgba(255,122,26,0.22), transparent 58vw),
      linear-gradient(145deg, #fffaf1 0%, #f3ecff 100%);
  }

  .site-header {
    width: calc(100% - 28px);
    min-height: 52px;
    padding: 8px 0;
  }

  .brand {
    font-size: 14px;
  }

  .brand img {
    width: 108px;
  }

  .brand span {
    font-size: 11px;
    padding-left: 8px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .stats-ribbon {
    margin: -2px auto 20px;
    border-radius: 14px;
  }

  .stats-track {
    animation-duration: 34s;
  }

  .stats-track span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .stats-track strong {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: 108px 18px 62px;
  }

  .hero-video {
    display: none;
  }

  .hero-inner {
    gap: 30px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 46px);
  }

  .hero-actions,
  .hero-actions.center {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-panel {
    min-height: 520px;
    padding: 18px;
    border-radius: 26px;
  }

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

  .event-card {
    width: 90%;
  }

  .metric-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 12px;
  }

  .metric-strip strong {
    font-size: 18px;
  }

  .section-pad {
    padding: 72px 18px;
    content-visibility: visible;
  }

  .pain-grid,
  .benefit-grid,
  .benefit-grid.compact,
  .pricing-grid,
  .bonus-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .compare-board {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .transform-line {
    min-height: 58px;
  }

  .transform-line span {
    width: 82%;
    height: 3px;
  }

  .diagnostic,
  .launch-card {
    border-radius: 28px;
  }

  .launch-card,
  .authority-card,
  .final-card {
    padding: 24px;
  }

  .check-list.columns {
    grid-template-columns: 1fr;
  }

  .founder-counter {
    min-height: 230px;
  }

  .timeline-item {
    min-height: auto;
  }

  .timeline-item p {
    max-height: 170px;
    margin-top: 14px;
  }

  .site-footer {
    justify-content: center;
    padding-bottom: 92px;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

/* === Ajustes finais de navegação, tipografia e cards por rolagem === */
:root {
  --ink: #282234;
  --muted: #6e687a;
}

.site-header {
  z-index: 600;
}

.brand {
  font-weight: 760;
}

.brand span {
  color: #4d4560;
  font-weight: 760;
}

.main-nav {
  position: fixed;
  top: 62px;
  right: max(18px, calc((100vw - 1180px) / 2));
  z-index: 650;
  width: min(260px, calc(100vw - 32px));
  max-height: calc(100svh - 82px);
  overflow: auto;
  gap: 4px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(55, 37, 84, 0.14);
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #6e687a;
  font-size: 12px;
  font-weight: 650;
}

.main-nav a.is-active,
.main-nav a:hover {
  color: #4b405e;
  background: rgba(123, 53, 255, 0.08);
}

h1,
h2,
h3 {
  color: #2b2537;
  font-weight: 760;
}

h1 {
  letter-spacing: -0.055em;
}

h2 {
  letter-spacing: -0.045em;
}

.hero-sub,
.section-heading p,
.diagnostic-copy p,
.launch-card p,
.authority-card p,
.final-card p {
  color: #6e687a;
  font-weight: 480;
}

.eyebrow,
.panel-label,
.tilt-card span,
.stats-track em {
  font-weight: 720;
}

.badge-row span,
.chip-cloud span,
.objection-list span,
.channel-grid span,
.metric-strip span,
.main-nav a,
.form-note,
.microcopy {
  color: #6e687a;
  font-weight: 620;
}

.tilt-card strong,
.benefit strong,
.event-card strong,
.price-card h3 {
  color: #30293a;
  font-weight: 680;
}

.quote-box,
.impact,
.center-call,
.authority-card strong {
  color: #4b3d58;
  font-weight: 650;
}

.btn,
.mobile-sticky-cta,
.header-cta,
.recommended {
  font-weight: 760;
}

.pain-grid.is-expanded .tilt-card p,
.tilt-card.is-active p,
.tilt-card:hover p,
.benefit-grid.compact.is-expanded .benefit p,
.benefit.is-active p,
.benefit:hover p {
  max-height: 110px;
  margin-top: 10px;
  opacity: 1;
  transform: translateY(0);
}

.pain-grid.is-expanded .tilt-card,
.benefit-grid.compact.is-expanded .benefit {
  border-color: rgba(123, 44, 255, 0.18);
}

.benefit-grid.compact.is-expanded .benefit::before,
.benefit.is-active::before,
.benefit:hover::before {
  transform: scaleX(1);
}

@media (max-width: 820px) {
  .main-nav {
    top: 58px;
    right: 14px;
    width: min(230px, calc(100vw - 28px));
    max-height: calc(100svh - 74px);
    padding: 8px;
  }

  .main-nav a {
    padding: 9px 10px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(34px, 12vw, 52px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1.04;
  }
}

/* === Correção final: tipografia mais leve, microcopy alinhada e CTA WhatsApp clicável === */
h1,
h2,
.final-card h2,
.hero-copy h1,
.section-heading h2 {
  color: #3a3346 !important;
  font-weight: 580 !important;
  letter-spacing: -0.038em !important;
}

h1 strong,
h2 strong {
  font-weight: 620 !important;
}

.hero-sub,
.section-heading p,
.final-card p,
.microcopy,
.diagnostic-copy p,
.launch-card p,
.authority-card p {
  color: #716a7c !important;
  font-weight: 400 !important;
}

.final-card .microcopy {
  display: block !important;
  width: min(760px, 100%) !important;
  max-width: 760px !important;
  margin: 22px auto 0 !important;
  text-align: center !important;
  line-height: 1.65 !important;
  color: #716a7c !important;
  font-weight: 430 !important;
}

.final-card .hero-actions {
  position: relative !important;
  z-index: 5 !important;
  justify-content: center !important;
}

.final-card .btn,
.final-card a[data-whatsapp-link],
a[data-whatsapp-link] {
  position: relative !important;
  z-index: 10 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.final-card .btn-secondary {
  color: #ffffff !important;
}

@media (max-width: 820px) {
  h1,
  .hero-copy h1 {
    font-weight: 600 !important;
    letter-spacing: -0.035em !important;
  }

  h2,
  .final-card h2,
  .section-heading h2 {
    font-weight: 580 !important;
    letter-spacing: -0.03em !important;
  }

  .final-card .microcopy {
    margin-top: 18px !important;
    font-size: 14px !important;
  }
}

/* === Refinamento mobile: FAQ leve e cards com conteúdo ao entrar na seção === */
.faq-item span {
  color: #51495f !important;
  font-weight: 600 !important;
  letter-spacing: -0.018em !important;
}

.faq-item p {
  color: #716a7c !important;
  font-weight: 400 !important;
}

.benefit.rich {
  display: flex !important;
  min-height: 150px !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 8px !important;
}

.benefit.rich strong {
  color: #3f374d !important;
  font-weight: 620 !important;
  letter-spacing: -0.018em !important;
}

.benefit.rich p,
.bonus-grid .benefit.rich p,
.practical .benefit.rich p {
  max-height: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
}

.benefit-grid.is-expanded .benefit.rich p,
.bonus-grid.is-expanded .benefit.rich p,
.practical.is-expanded .benefit.rich p,
.bonus.is-expanded .benefit.rich p,
.benefit.rich.is-active p,
.benefit.rich:hover p {
  max-height: 140px !important;
  margin-top: 4px !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.benefit-grid.is-expanded .benefit.rich,
.bonus-grid.is-expanded .benefit.rich,
.practical.is-expanded .benefit.rich,
.bonus.is-expanded .benefit.rich {
  animation: cardFloatIn 720ms ease both;
}

.benefit-grid.is-expanded .benefit.rich:nth-child(2),
.bonus-grid.is-expanded .benefit.rich:nth-child(2) { animation-delay: 70ms; }
.benefit-grid.is-expanded .benefit.rich:nth-child(3),
.bonus-grid.is-expanded .benefit.rich:nth-child(3) { animation-delay: 140ms; }
.benefit-grid.is-expanded .benefit.rich:nth-child(4),
.bonus-grid.is-expanded .benefit.rich:nth-child(4) { animation-delay: 210ms; }
.benefit-grid.is-expanded .benefit.rich:nth-child(5),
.bonus-grid.is-expanded .benefit.rich:nth-child(5) { animation-delay: 280ms; }
.benefit-grid.is-expanded .benefit.rich:nth-child(6),
.bonus-grid.is-expanded .benefit.rich:nth-child(6) { animation-delay: 350ms; }

@keyframes cardFloatIn {
  from {
    opacity: 0.64;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 820px) {
  .faq-item {
    border-radius: 18px !important;
  }

  .faq-item span {
    padding: 18px 50px 18px 18px !important;
    font-size: clamp(18px, 5.2vw, 22px) !important;
    line-height: 1.18 !important;
  }

  .faq-item span::after {
    right: 18px !important;
    font-size: 24px !important;
  }

  .faq-item.is-open p {
    padding: 0 18px 18px !important;
  }

  .benefit.rich {
    min-height: 138px !important;
    padding: 22px 20px !important;
    border-radius: 20px !important;
  }

  .benefit.rich strong {
    font-size: clamp(21px, 6vw, 28px) !important;
    line-height: 1.12 !important;
  }

  .benefit.rich p {
    font-size: 15px !important;
    line-height: 1.48 !important;
  }

  .benefit-grid,
  .bonus-grid {
    gap: 14px !important;
  }
}

/* === Topo final sem menu hambúrguer === */
.site-header {
  justify-content: center !important;
  pointer-events: none !important;
}

.site-header .brand {
  pointer-events: auto !important;
}

.menu-toggle,
.main-nav {
  display: none !important;
}

@media (max-width: 820px) {
  .site-header {
    justify-content: center !important;
  }
}
