/* ---------- Caderno de Obra — Landing Page ---------- */

:root {
  --green-900: #0a2e23;
  --green-800: #0f4d3a;
  --green-700: #166448;
  --green-600: #1e7f5c;
  --green-100: #d8ebe2;
  --green-50:  #ecf5f0;

  --terra-700: #a23d18;
  --terra-600: #c24a1f;
  --terra-500: #db6532;
  --terra-100: #f7e1d4;

  --purple-700: #4a3c73;
  --purple-600: #5b4b8a;
  --purple-100: #e3def0;

  --blue-700:  #3d6280;
  --blue-600:  #4f7a9c;
  --blue-100:  #dee8f0;

  --wa-green:  #25d366;
  --wa-dark:   #128c7e;

  --bg:        #faf8f4;
  --bg-warm:   #f3efe7;
  --paper:     #ffffff;
  --ink:       #0c1614;
  --ink-soft:  #3a4742;
  --ink-mute:  #6b7873;
  --line:      #e8e2d6;
  --line-soft: #efeae0;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(12,22,20,.06), 0 2px 6px rgba(12,22,20,.04);
  --shadow:    0 8px 24px -8px rgba(12,22,20,.12), 0 2px 6px rgba(12,22,20,.06);
  --shadow-lg: 0 24px 60px -20px rgba(12,22,20,.22), 0 8px 24px -12px rgba(12,22,20,.12);

  --font-sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-tight { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 500;
}
.h1 {
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
}
.h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  text-wrap: balance;
}
.h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  line-height: 1.5;
  text-wrap: pretty;
}
.muted { color: var(--ink-mute); }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum"; }

/* ---------- Liquid Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 999px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
  white-space: nowrap;
  isolation: isolate;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-1px); }

/* Liquid primary — WhatsApp green, glass style */
.btn-liquid {
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
  background:
    linear-gradient(180deg, rgba(58, 226, 124, 0.95), rgba(20, 158, 92, 0.95));
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -10px 22px rgba(8, 60, 30, 0.30),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 12px 28px -8px rgba(20, 160, 90, 0.55),
    0 2px 5px rgba(0, 0, 0, 0.06);
  text-shadow: 0 1px 0 rgba(0, 70, 30, 0.25);
}
.btn-liquid::before {
  content: "";
  position: absolute;
  inset: 1px 1px 50% 1px;
  border-radius: 999px 999px 60% 60% / 999px 999px 100% 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.btn-liquid::after {
  content: "";
  position: absolute;
  inset: 50% 6px 4px 6px;
  border-radius: 999px;
  background: radial-gradient(60% 100% at 50% 100%, rgba(255, 255, 255, 0.22), transparent 70%);
  pointer-events: none;
  filter: blur(2px);
}
.btn-liquid:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -10px 24px rgba(8, 60, 30, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 18px 40px -10px rgba(20, 160, 90, 0.7),
    0 4px 8px rgba(0, 0, 0, 0.08);
}

/* Compact / minimalist liquid for header */
.btn-liquid.btn-sm {
  padding: 9px 16px;
  font-size: 13.5px;
}

/* ============================================
   Liquid Glass Button — light by default,
   morphs into green liquid on hover with
   shimmer sweep + bouncy scale.
   ============================================ */
.btn-liquid-glass {
  position: relative;
  isolation: isolate;
  color: var(--green-800);
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 14px 24px;
  border-radius: 999px;
  overflow: hidden;
  white-space: nowrap;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 252, 250, 0.78) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 0 0 1px rgba(15, 77, 58, 0.12),
    inset 0 -8px 18px rgba(15, 77, 58, 0.06),
    0 12px 28px -8px rgba(15, 77, 58, 0.18),
    0 2px 5px rgba(12, 22, 20, 0.06);
  transition:
    color 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-liquid-glass.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

/* Liquid green fill — starts as a small blob bottom-center
   and expands to fill on hover (the "liquid" effect) */
.btn-liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(120% 100% at 50% 110%,
      rgba(58, 226, 124, 1) 0%,
      rgba(20, 158, 92, 1) 40%,
      rgba(15, 100, 60, 0.95) 70%,
      transparent 100%);
  opacity: 0;
  transform: scale(0.3) translateY(40%);
  transform-origin: center bottom;
  transition:
    opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -2;
}

/* Glossy top highlight that becomes visible on hover */
.btn-liquid-glass::after {
  content: "";
  position: absolute;
  inset: 1px 1px 50% 1px;
  border-radius: 999px 999px 60% 60% / 999px 999px 100% 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.4s 0.1s ease-out;
  pointer-events: none;
  z-index: -1;
}

.btn-liquid-glass .btn-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-liquid-glass svg {
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--wa-dark);
}

/* HOVER STATE — liquid fills and color shifts to white */
.btn-liquid-glass:hover {
  color: white;
  transform: translateY(-2px) scale(1.02);
  text-shadow: 0 1px 0 rgba(0, 70, 30, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 -10px 24px rgba(8, 60, 30, 0.35),
    0 22px 44px -10px rgba(20, 160, 90, 0.7),
    0 6px 12px rgba(12, 22, 20, 0.1);
}
.btn-liquid-glass:hover::before {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.btn-liquid-glass:hover::after {
  opacity: 1;
}
.btn-liquid-glass:hover svg {
  color: white;
  transform: scale(1.15) rotate(-6deg);
}
.btn-liquid-glass:hover .btn-label {
  transform: translateX(2px);
}

.btn-liquid-glass:active {
  transform: translateY(0) scale(0.99);
  transition-duration: 0.15s;
}

/* Continuous subtle pulse — soft shimmer to draw the eye */
@keyframes liquid-shimmer {
  0%, 100% { box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 0 0 1px rgba(15, 77, 58, 0.12),
    inset 0 -8px 18px rgba(15, 77, 58, 0.06),
    0 12px 28px -8px rgba(15, 77, 58, 0.18),
    0 2px 5px rgba(12, 22, 20, 0.06),
    0 0 0 0 rgba(37, 211, 102, 0.0); }
  50% { box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 0 0 1px rgba(15, 77, 58, 0.18),
    inset 0 -8px 18px rgba(15, 77, 58, 0.08),
    0 16px 36px -8px rgba(15, 77, 58, 0.22),
    0 2px 5px rgba(12, 22, 20, 0.06),
    0 0 0 6px rgba(37, 211, 102, 0.08); }
}
.btn-liquid-glass:not(:hover) {
  animation: liquid-shimmer 3.6s ease-in-out infinite;
}

/* Liquid dark — glass over dark green */
.btn-liquid-dark {
  color: #fff;
  font-weight: 500;
  background:
    linear-gradient(180deg, rgba(40, 95, 75, 0.95), rgba(10, 46, 35, 0.95));
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -10px 22px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 12px 28px -10px rgba(0, 0, 0, 0.5),
    0 2px 5px rgba(0, 0, 0, 0.06);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}
.btn-liquid-dark::before {
  content: "";
  position: absolute;
  inset: 1px 1px 50% 1px;
  border-radius: 999px 999px 60% 60% / 999px 999px 100% 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.btn-liquid-dark:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -10px 24px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 18px 40px -12px rgba(0, 0, 0, 0.55);
}

/* Ghost glass — for header secondary */
.btn-glass {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.55));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 0 0 1px rgba(12,22,20,.08),
    0 4px 14px -4px rgba(12,22,20,.12);
}
.btn-glass:hover { background: linear-gradient(180deg, #fff, rgba(255,255,255,.7)); }

.btn-ghost {
  color: var(--ink-soft);
  padding: 10px 14px;
  font-size: 14px;
}
.btn-ghost:hover { color: var(--ink); }

/* Anchor arrow */
.arrow {
  display: inline-block;
  transition: transform .25s;
}
.btn:hover .arrow { transform: translate(2px, -2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 14px 0;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(250, 248, 244, 0.75);
  border-bottom: 1px solid rgba(232, 226, 214, 0.6);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.02em; font-size: 17px; color: var(--green-800); }
.brand img { height: 32px; width: auto; }
.brand-badge {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
}
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-links a { white-space: nowrap; }
.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

@media (max-width: 1100px) {
  .nav-links { gap: 16px; font-size: 13.5px; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 85% 20%, rgba(37, 211, 102, 0.08), transparent 60%),
    radial-gradient(50% 40% at 10% 80%, rgba(15, 77, 58, 0.06), transparent 60%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 12px 7px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.hero-kicker .dot {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--wa-green);
  display: grid; place-items: center;
  color: white;
}
.hero h1 .em {
  color: var(--green-800);
}
.hero h1 .em em {
  font-style: italic;
  font-family: "Geist", serif;
  font-weight: 500;
}
.hero-sub { margin-top: 22px; max-width: 540px; }
.hero-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-fineprint {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-mute);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero-fineprint span { display: flex; align-items: center; gap: 6px; white-space: nowrap; font-size: 11.5px; }
.hero-fineprint .check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.18);
  color: var(--wa-green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.8 6.5L9 1' stroke='%2325d366' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
}

/* Hero visual container */
.hero-visual {
  position: relative;
  width: 100%;
  min-height: 540px;
  overflow: visible;
}
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

/* Laptop with dashboard in background — MacBook style */
.hero-laptop {
  position: absolute;
  top: 0;
  right: -40px;
  width: 96%;
  z-index: 1;
  perspective: 2000px;
  filter: drop-shadow(0 50px 60px rgba(10, 50, 38, 0.22))
          drop-shadow(0 20px 30px rgba(12, 22, 20, 0.15));
}
.laptop-bezel {
  background:
    radial-gradient(160% 100% at 50% -10%, #2c3137 0%, #1d2126 35%, #14181b 70%);
  border-radius: 16px 16px 4px 4px;
  padding: 14px 14px 14px;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.5),
    inset 0 -2px 6px rgba(0, 0, 0, 0.6);
  transform: rotateX(2deg);
  transform-origin: bottom center;
}
.laptop-bezel::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: radial-gradient(circle, #1a1d20 30%, #0a0c0e 100%);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.4);
}
.laptop-bezel::after {
  content: "";
  position: absolute;
  inset: 4px 4px 4px 4px;
  border-radius: 12px 12px 2px 2px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.laptop-screen {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10.3;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 30px rgba(0, 0, 0, 0.4);
}
.laptop-screen::before {
  /* Glass reflection overlay */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 28%, rgba(255,255,255,0) 72%, rgba(255,255,255,0.06) 100%);
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: screen;
}
.laptop-screen::after {
  /* subtle vignette */
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 5;
}
.laptop-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.laptop-base {
  height: 18px;
  width: calc(100% + 80px);
  margin-left: -40px;
  position: relative;
  background:
    linear-gradient(180deg, #2a2e33 0%, #1c1f23 5%, #c0c4c9 8%, #d6d9dd 22%, #aab0b6 60%, #6a7077 90%, #3d4248 100%);
  border-radius: 0 0 14px 14px;
  box-shadow:
    0 30px 50px -20px rgba(12, 22, 20, 0.4),
    0 12px 24px -10px rgba(12, 22, 20, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.25);
  transform: perspective(800px) rotateX(38deg);
  transform-origin: top center;
  margin-top: -1px;
}
.laptop-base::before {
  /* MacBook trackpad notch */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 5px;
  background: linear-gradient(180deg, #1a1d20, #2c3137);
  border-radius: 0 0 10px 10px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}
.laptop-base::after {
  /* reflective stripe on base */
  content: "";
  position: absolute;
  inset: 0 0 50% 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent);
  border-radius: 0 0 0 0;
  pointer-events: none;
}
/* Ground reflection */
.hero-laptop::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -50px;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(12, 22, 20, 0.28), transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(8px);
}

/* Hero phone */
.hero-phone {
  position: absolute;
  right: -80px;
  bottom: -60px;
  width: 250px;
  aspect-ratio: 9 / 19.2;
  background: #111;
  border-radius: 36px;
  padding: 7px;
  z-index: 3;
  box-shadow:
    inset 0 0 0 2px #2a2a2a,
    inset 0 0 0 3px #000,
    0 40px 60px -20px rgba(10, 50, 38, .45),
    0 20px 40px -10px rgba(12, 22, 20, .35);
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 30px;
  background: #efeae3;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 18px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.wa-header {
  background: #075e54;
  color: #fff;
  padding: 28px 10px 8px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
}
.wa-header .avatar {
  width: 26px; height: 26px; border-radius: 999px;
  background: #fff;
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.wa-header .avatar img { width: 70%; height: auto; }
.wa-header .who { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.wa-header .who b { font-weight: 600; font-size: 11.5px; }
.wa-header .who small { font-size: 9px; opacity: .8; }
.wa-header .icons { margin-left: auto; display: flex; gap: 9px; opacity: .8; flex-shrink: 0; }
.wa-header .icons svg { width: 13px; height: 13px; }
.wa-body {
  flex: 1;
  background:
    repeating-linear-gradient(45deg, rgba(15,77,58,.025) 0 1px, transparent 1px 22px),
    #ece5da;
  padding: 10px 8px 8px;
  display: flex; flex-direction: column; gap: 5px;
  overflow: hidden;
}
.bubble {
  max-width: 80%;
  padding: 6px 8px 4px;
  border-radius: 10px;
  font-size: 10.5px;
  line-height: 1.32;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
  position: relative;
}
.bubble .time { display: block; text-align: right; font-size: 8px; color: rgba(0,0,0,.45); margin-top: 1px; }

/* WhatsApp text input bar at bottom of phone */
.wa-input {
  background: #f0eee6;
  padding: 6px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.wa-input .field {
  flex: 1;
  background: white;
  border-radius: 999px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8e8e8e;
  font-size: 10px;
  min-height: 24px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}
.wa-input .field .placeholder {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-input .field .ico {
  width: 14px; height: 14px;
  color: #54656f;
  flex-shrink: 0;
}
.wa-input .mic {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: #00a884;
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 168, 132, 0.4);
}
.wa-input .mic svg {
  width: 14px; height: 14px;
}
.bubble.me {
  background: #dcf8c6;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.bubble.them {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.bubble.them.card {
  padding: 0;
  overflow: hidden;
  width: 86%;
  max-width: 86%;
}
.recpt {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12.5px;
  line-height: 1.4;
}
.recpt .top { display: flex; justify-content: space-between; align-items: baseline; font-size: 11px; color: var(--ink-mute); }
.recpt .title { font-weight: 600; font-size: 13.5px; color: var(--ink); margin: 4px 0 2px; }
.recpt .row { display: flex; justify-content: space-between; padding: 4px 0; border-top: 1px dashed var(--line); margin-top: 4px; }
.recpt .total { font-weight: 600; }
.recpt .total .v { color: var(--terra-600); font-family: var(--font-mono); }
.audio {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
}
.audio .play {
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--wa-dark); color: white;
  display: grid; place-items: center;
}
.audio .play svg { width: 12px; height: 12px; }
.audio .wave {
  flex: 1; height: 18px;
  background:
    linear-gradient(to right, var(--wa-dark) 40%, rgba(0,0,0,.25) 40%) center/100% 2px no-repeat;
  position: relative;
}
.audio .wave::before {
  content: "";
  position: absolute; left: 40%; top: 50%; transform: translate(-50%,-50%);
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--wa-dark);
}

/* ---------- Dashboard v2: custom report mock ---------- */
.dash-body-v2 {
  background: linear-gradient(180deg, #ffffff, #fafaf6);
  padding: 36px 44px 40px;
  color: var(--ink);
}

.rpt-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.rpt-brand { display: flex; align-items: flex-start; gap: 14px; }
.rpt-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-800);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--green-100);
}
.rpt-logo svg { width: 24px; height: 24px; }
.rpt-title {
  font-size: 26px;
  letter-spacing: -0.025em;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
}
.rpt-sub {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 4px;
}
.rpt-meta { text-align: right; }
.rpt-meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: var(--green-800);
  text-transform: uppercase;
}
.rpt-meta-sub {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* KPI cards */
.rpt-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.rpt-kpi {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}
.rpt-kpi-accent {
  background: linear-gradient(180deg, #f1f9f4, #e8f4ed);
  border-color: rgba(15, 77, 58, 0.16);
}
.rpt-kpi-label {
  font-size: 11.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.rpt-kpi-value {
  font-size: 26px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.rpt-kpi-accent .rpt-kpi-value { color: var(--green-800); }
.rpt-kpi-cents {
  font-size: 16px;
  color: var(--ink-mute);
  font-weight: 400;
}
.rpt-kpi-accent .rpt-kpi-cents { color: rgba(15, 77, 58, 0.5); }
.rpt-kpi-trend {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--green-700);
  font-family: var(--font-mono);
}
.rpt-kpi-trend svg {
  width: 50px; height: 16px;
  color: var(--green-600);
  flex-shrink: 0;
}
.rpt-kpi-pill {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.rpt-kpi-pill[data-tone="warn"] {
  background: rgba(194, 74, 31, 0.1);
  color: var(--terra-700);
}
.rpt-kpi-pill[data-tone="ok"] {
  background: rgba(15, 77, 58, 0.1);
  color: var(--green-800);
}

/* Progress bar */
.rpt-progress { margin-bottom: 36px; }
.rpt-progress-track {
  position: relative;
  height: 12px;
  background: var(--line-soft);
  border-radius: 99px;
  overflow: visible;
}
.rpt-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-700) 0%, var(--green-600) 60%, var(--green-500, #25996c) 100%);
  border-radius: 99px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 2px 4px rgba(15,77,58,0.25);
}
.rpt-progress-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.rpt-progress-marker-dot {
  width: 16px; height: 16px;
  border-radius: 999px;
  background: white;
  border: 3px solid var(--green-700);
  box-shadow: 0 2px 8px rgba(15,77,58,0.3);
}
.rpt-progress-marker-label {
  position: absolute;
  top: -34px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--ink);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
}
.rpt-progress-marker-label::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.rpt-progress-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-mute);
}

/* Sections */
.rpt-section { margin-bottom: 32px; }
.rpt-section:last-child { margin-bottom: 0; }
.rpt-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.rpt-section-head h6 {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-800);
  font-weight: 500;
}
.rpt-section-sub {
  font-size: 12px;
  color: var(--ink-mute);
}
.rpt-link {
  font-size: 12px;
  color: var(--green-700);
  font-weight: 500;
  cursor: pointer;
}
.rpt-link:hover { color: var(--green-800); }

/* Category bars */
.rpt-cats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rpt-cat {
  display: grid;
  grid-template-columns: 200px 1fr 100px;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}
.rpt-cat-name {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rpt-cat-track {
  height: 10px;
  background: var(--line-soft);
  border-radius: 99px;
  overflow: hidden;
}
.rpt-cat-track i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green-700), var(--green-600));
  border-radius: 99px;
  position: relative;
}
.rpt-cat-track i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
  border-radius: 99px;
}
.rpt-cat-value {
  font-family: var(--font-mono);
  text-align: right;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

/* Expense rows */
.rpt-rows {
  display: flex;
  flex-direction: column;
}
.rpt-row {
  display: grid;
  grid-template-columns: 50px 100px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
}
.rpt-row:first-child { border-top: 0; }
.rpt-row-date {
  font-family: var(--font-mono);
  color: var(--ink-mute);
  font-size: 12px;
}
.rpt-row-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 99px;
  text-align: center;
  font-weight: 500;
}
.rpt-row-tag[data-cat="fund"] { background: rgba(15,77,58,0.1); color: var(--green-800); }
.rpt-row-tag[data-cat="proj"] { background: rgba(91,75,138,0.12); color: var(--purple-700); }
.rpt-row-tag[data-cat="parede"] { background: rgba(194,74,31,0.1); color: var(--terra-700); }
.rpt-row-tag[data-cat="terreno"] { background: rgba(79,122,156,0.12); color: var(--blue-700); }
.rpt-row-name { color: var(--ink); }
.rpt-row-name small {
  color: var(--ink-mute);
  font-size: 11.5px;
  margin-left: 4px;
}
.rpt-row-value {
  font-family: var(--font-mono);
  color: var(--ink);
  font-weight: 500;
  font-size: 13.5px;
}

@media (max-width: 880px) {
  .dash-body-v2 { padding: 24px 22px 28px; }
  .rpt-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .rpt-meta { text-align: left; }
  .rpt-kpis { grid-template-columns: 1fr; }
  .rpt-cat { grid-template-columns: 1fr; gap: 4px; }
  .rpt-cat-value { text-align: left; }
  .rpt-row { grid-template-columns: 60px 1fr auto; }
  .rpt-row-tag { display: none; }
}

/* Dashboard image embed (replaces mock body) */
.dash-image {
  background: white;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.dash-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: cover;
  object-position: top center;
}

/* small floating badge */
.hero-badge {
  position: absolute;
  left: -20px; top: 30%;
  background: white;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  display: flex; align-items: center; gap: 10px;
  z-index: 5;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 999px; background: var(--wa-green);
  box-shadow: 0 0 0 4px rgba(37,211,102,.2);
}

.hero-card-float {
  position: absolute;
  left: -50px; top: -8px;
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  font-size: 12px;
  min-width: 200px;
}
.hero-card-float .label { color: var(--ink-mute); font-size: 11px; }
.hero-card-float .val { font-family: var(--font-mono); font-size: 22px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink); margin-top: 2px; }
.hero-card-float .delta { color: var(--terra-600); font-size: 11px; margin-top: 4px; font-family: var(--font-mono); }
.hero-card-float .bar {
  margin-top: 8px;
  height: 5px; background: var(--line-soft); border-radius: 99px;
  position: relative; overflow: hidden;
}
.hero-card-float .bar::before {
  content: ""; position: absolute; inset: 0;
  width: 16%;
  background: linear-gradient(90deg, var(--green-700), var(--green-600));
  border-radius: 99px;
}

/* ---------- Sections ---------- */
section { padding: 100px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 14px; display: inline-block; }
.section-head p { margin-top: 18px; }

/* Trust bar (logos -> stats) */
.trust {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}
.trust-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.trust-label { font-size: 13px; color: var(--ink-mute); font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.trust-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.tstat .v { font-size: 26px; font-family: var(--font-mono); letter-spacing: -0.02em; color: var(--green-800); font-weight: 500; }
.tstat .l { font-size: 12.5px; color: var(--ink-mute); margin-top: 2px; }

/* ---------- Problem section ---------- */
.problem { background: var(--ink); color: #f1ede4; }
.problem .h2 { color: #fff; }
.problem .lead { color: rgba(255,255,255,.65); }
.problem .eyebrow { color: var(--wa-green); }
.problem-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.problem-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.problem-card.before {
  background: #1c2825;
  border: 1px solid rgba(255,255,255,.08);
}
.problem-card.after {
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(37,211,102,.15), transparent 60%),
    linear-gradient(180deg, #0f4d3a, #0a2e23);
  border: 1px solid rgba(37,211,102,.25);
}
.problem-card .pc-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 99px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  margin-bottom: 18px;
}
.problem-card.after .pc-tag { background: rgba(37,211,102,.2); color: #b6f0cb; }
.problem-card h3 { font-size: 26px; line-height: 1.1; letter-spacing: -0.02em; color: white; margin-bottom: 20px; font-weight: 500; }
.problem-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.problem-card li { display: flex; gap: 12px; align-items: start; font-size: 15px; line-height: 1.45; color: rgba(255,255,255,.72); }
.problem-card li .ico {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 6px;
  display: grid; place-items: center;
  margin-top: 1px;
  font-size: 13px;
}
.problem-card.before li .ico { background: rgba(194,74,31,.18); color: var(--terra-500); }
.problem-card.after  li .ico { background: rgba(37,211,102,.2); color: #b6f0cb; }

/* Pull quote */
.pullquote {
  margin-top: 80px;
  text-align: center;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,.92);
  font-weight: 500;
  text-wrap: balance;
}
.pullquote em { color: var(--wa-green); font-style: normal; }

/* ---------- Bento grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 60px;
}
.bento-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.bento-card h3 {
  font-size: 22px; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 10px; font-weight: 600;
}
.bento-card p { color: var(--ink-soft); font-size: 14.5px; }
.bento-card .ftag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-700); margin-bottom: 16px;
}
.b-wide { grid-column: span 4; }
.b-half { grid-column: span 3; }
.b-third { grid-column: span 2; }

.bento-art { margin-top: auto; padding-top: 24px; }

/* Feature 1 — voice/photo audio ticket */
.fart-audio {
  background: linear-gradient(180deg, var(--green-50), transparent);
  border: 1px solid var(--green-100);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
}
.fart-audio .pl { width: 32px; height: 32px; border-radius: 999px; background: var(--green-800); color: white; display: grid; place-items: center; }
.fart-audio .pl svg { width: 14px; height: 14px; }
.fart-audio .meta { display: flex; flex-direction: column; }
.fart-audio .meta b { font-family: var(--font-mono); font-weight: 500; color: var(--ink); }
.fart-audio .meta small { color: var(--ink-mute); font-size: 11px; }
.fart-audio .tx {
  margin-top: 8px;
  font-size: 12.5px; color: var(--ink-soft);
  font-style: italic;
}

/* Feature 2 — receipt scan */
.receipt-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 12.5px;
  box-shadow: 0 18px 30px -18px rgba(12,22,20,.18);
  transform: rotate(-2deg);
  margin: 8px 14px 0 14px;
}
.receipt-card::before, .receipt-card::after {
  content: ""; position: absolute; left: 0; right: 0; height: 8px;
  background-image: radial-gradient(circle, var(--bg) 3px, transparent 3.5px);
  background-size: 12px 8px;
}
.receipt-card::before { top: -4px; }
.receipt-card::after { bottom: -4px; }
.receipt-card .rh { font-weight: 600; font-size: 13px; color: var(--ink); margin-bottom: 8px; display: flex; justify-content: space-between; }
.receipt-card .ri { display: flex; justify-content: space-between; padding: 3px 0; color: var(--ink-soft); font-family: var(--font-mono); font-size: 12px; }
.receipt-card .rtotal { margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--line); display: flex; justify-content: space-between; font-weight: 600; }
.receipt-card .rtotal .v { color: var(--terra-600); font-family: var(--font-mono); }

/* Feature 3 — categories bars */
.cat-bars { display: flex; flex-direction: column; gap: 10px; }
.cat-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; font-size: 12px; }
.cat-row .cn { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); }
.cat-row .cn::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--c, var(--green-700)); }
.cat-row .cv { font-family: var(--font-mono); color: var(--ink); font-size: 12px; }
.cat-row .track {
  grid-column: 1 / -1;
  height: 5px; background: var(--line-soft); border-radius: 99px;
  overflow: hidden;
}
.cat-row .track::before {
  content: ""; display: block; height: 100%;
  width: var(--w, 50%);
  background: var(--c, var(--green-700));
  border-radius: 99px;
}

/* Feature 4 — alert */
.alert-stack { display: flex; flex-direction: column; gap: 8px; }
.alert {
  display: flex; gap: 12px; align-items: start;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(194,74,31,.07);
  border: 1px solid rgba(194,74,31,.18);
  font-size: 13px;
}
.alert .dot { width: 10px; height: 10px; border-radius: 999px; background: var(--terra-600); margin-top: 5px; flex-shrink: 0; }
.alert b { display: block; color: var(--terra-700); font-size: 12.5px; margin-bottom: 2px; font-family: var(--font-mono); letter-spacing: .04em; text-transform: uppercase; }
.alert p { color: var(--ink); font-size: 13.5px; margin: 0; }

/* ---------- Dashboard ---------- */
.dashboard-section {
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(15,77,58,.05), transparent 60%),
    var(--bg-warm);
}
.dash-frame {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.dash-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #fbfaf6, #f4efe6);
}
.dash-chrome .dots { display: flex; gap: 6px; }
.dash-chrome .dots i { width: 11px; height: 11px; border-radius: 99px; }
.dash-chrome .dots i:nth-child(1) { background: #ff6058; }
.dash-chrome .dots i:nth-child(2) { background: #ffbf30; }
.dash-chrome .dots i:nth-child(3) { background: #2ec844; }
.dash-chrome .url {
  margin-left: 8px;
  background: white; border: 1px solid var(--line);
  padding: 4px 12px; border-radius: 99px; font-size: 12px; color: var(--ink-mute);
  font-family: var(--font-mono);
}
.dash-body {
  display: grid; grid-template-columns: 200px 1fr;
  min-height: 580px;
}
.dash-side {
  background: #faf8f4;
  border-right: 1px solid var(--line-soft);
  padding: 20px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.dash-side .ds-brand {
  display: flex; align-items: center; gap: 8px; padding: 4px 8px 14px;
  font-weight: 600; color: var(--green-800); font-size: 14px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 12px;
}
.dash-side .ds-brand img { width: 22px; height: 22px; }
.dash-side a {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px;
  font-size: 13px; color: var(--ink-soft);
  border-radius: 8px;
}
.dash-side a.active { background: var(--green-100); color: var(--green-800); font-weight: 500; }
.dash-side a .ico { width: 14px; height: 14px; opacity: .7; }
.dash-side .group-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); padding: 14px 10px 4px; }

.dash-main { padding: 24px 28px; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash-head h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.dash-head h4 small { color: var(--ink-mute); font-weight: 400; font-size: 13px; margin-left: 6px; }
.dash-head .filters { display: flex; gap: 6px; font-size: 12px; }
.dash-head .filters span {
  padding: 4px 10px; border: 1px solid var(--line); border-radius: 99px; color: var(--ink-soft);
}
.dash-head .filters .on { background: var(--ink); color: white; border-color: var(--ink); }

.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
.kpi {
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 14px 16px;
}
.kpi .l { font-size: 11.5px; color: var(--ink-mute); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }
.kpi .v { font-size: 24px; font-family: var(--font-mono); letter-spacing: -0.02em; margin-top: 6px; font-weight: 500; }
.kpi .v.green { color: var(--green-700); }
.kpi .v.terra { color: var(--terra-600); }
.kpi .d { margin-top: 4px; font-size: 11.5px; color: var(--ink-mute); font-family: var(--font-mono); }
.kpi .pbar {
  margin-top: 10px; height: 4px; background: var(--line-soft); border-radius: 99px; overflow: hidden;
}
.kpi .pbar i { display: block; height: 100%; background: var(--green-700); width: 16%; border-radius: 99px; }

.dash-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 18px; }
.dash-chart, .dash-list {
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 18px 20px;
}
.dash-chart .ch-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.dash-chart .ch-head h5 { font-size: 14px; font-weight: 600; }
.dash-chart .ch-head small { color: var(--ink-mute); font-size: 12px; }

.dash-list h5 { font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.dash-list .item {
  display: grid; grid-template-columns: 24px 1fr auto; gap: 10px; align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
}
.dash-list .item:first-of-type { border-top: 0; }
.dash-list .item .ic {
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--green-100); color: var(--green-800);
  display: grid; place-items: center; font-size: 11px;
}
.dash-list .item .ic.t { background: var(--terra-100); color: var(--terra-700); }
.dash-list .item .ic.p { background: var(--purple-100); color: var(--purple-700); }
.dash-list .item .ic.b { background: var(--blue-100); color: var(--blue-700); }
.dash-list .item .name b { display: block; font-size: 13px; font-weight: 500; }
.dash-list .item .name small { color: var(--ink-mute); font-size: 11.5px; }
.dash-list .item .v { font-family: var(--font-mono); font-size: 13px; color: var(--ink); }

/* ---------- Report PDF section ---------- */
.report-section {
  background: var(--ink);
  color: #f1ede4;
}
.report-section .h2 { color: white; }
.report-section .lead { color: rgba(255,255,255,.7); }
.report-section .eyebrow { color: var(--wa-green); }
.report-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.report-points { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.report-points li { display: flex; gap: 14px; align-items: start; }
.report-points li .num {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(37,211,102,.15); color: var(--wa-green);
  font-family: var(--font-mono);
  display: grid; place-items: center; font-size: 13px;
  flex-shrink: 0;
  border: 1px solid rgba(37,211,102,.3);
}
.report-points li b { display: block; color: white; margin-bottom: 4px; font-weight: 500; font-size: 16px; }
.report-points li p { color: rgba(255,255,255,.65); font-size: 14.5px; }

/* The PDF visual */
.pdf-mock {
  background: white;
  color: var(--ink);
  border-radius: 14px;
  padding: 32px 36px;
  font-size: 13px;
  box-shadow: 0 60px 100px -40px rgba(0,0,0,.6), 0 30px 50px -20px rgba(0,0,0,.4);
  position: relative;
  transform: rotate(-1.5deg);
}
.pdf-mock::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: rgba(255,255,255,.4);
  border-radius: 14px;
  z-index: -1;
  transform: rotate(3deg);
}
.pdf-head { display: flex; justify-content: space-between; align-items: start; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.pdf-head .proj { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.pdf-head .proj small { display: block; font-weight: 400; color: var(--ink-mute); font-size: 11px; margin-top: 2px; }
.pdf-head .meta { font-family: var(--font-mono); font-size: 10px; color: var(--ink-mute); letter-spacing: .1em; text-transform: uppercase; text-align: right; }
.pdf-mock h6 { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.pdf-totals { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.pdf-total .l { font-size: 10px; font-family: var(--font-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.pdf-total .v { font-family: var(--font-mono); font-size: 28px; font-weight: 500; letter-spacing: -0.02em; margin-top: 2px; }
.pdf-total.green .v { color: var(--green-800); }
.pdf-total.terra .v { color: var(--terra-600); }
.pdf-bar { height: 6px; background: var(--line-soft); border-radius: 99px; margin-top: 12px; overflow: hidden; }
.pdf-bar i { display: block; height: 100%; width: 16%; background: linear-gradient(90deg, var(--green-700), var(--green-600)); border-radius: 99px; }
.pdf-rows { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.pdf-row { display: grid; grid-template-columns: 50px 1fr auto; gap: 10px; padding: 6px 0; border-top: 1px dashed var(--line); font-size: 11.5px; }
.pdf-row .d { font-family: var(--font-mono); color: var(--ink-mute); }
.pdf-row .name { color: var(--ink); font-family: var(--font-mono); font-size: 10.5px; }
.pdf-row .v { font-family: var(--font-mono); color: var(--ink); }
.pdf-cat { display: flex; justify-content: space-between; padding: 6px 0 4px; font-size: 12px; font-weight: 600; }
.pdf-cat .v { font-family: var(--font-mono); }

/* ---------- Bonus cadernos ---------- */
.bonus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px;
}
.bonus-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.bonus-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.bonus-card .b-icon {
  width: 110px;
  height: 110px;
  margin-bottom: 22px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(12, 22, 20, 0.1));
}
.bonus-card h3 { font-size: 22px; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 10px; font-weight: 600; }
.bonus-card p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; }
.bonus-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.bonus-card li { display: flex; gap: 10px; align-items: start; font-size: 13.5px; color: var(--ink-soft); }
.bonus-card li::before {
  content: ""; width: 14px; height: 14px; border-radius: 99px;
  background: var(--accent-bg); flex-shrink: 0; margin-top: 3px;
  border: 1.5px solid var(--accent);
}
.bonus-card .ribbon {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 99px;
  background: var(--accent-bg);
  color: var(--accent);
}

.bonus-card[data-color="terra"]   { --accent: var(--terra-600); --accent-bg: var(--terra-100); }
.bonus-card[data-color="purple"]  { --accent: var(--purple-600); --accent-bg: var(--purple-100); }
.bonus-card[data-color="blue"]    { --accent: var(--blue-600);   --accent-bg: var(--blue-100); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.step {
  position: relative;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step .num {
  font-family: var(--font-mono);
  font-size: 86px;
  line-height: 1;
  color: var(--green-50);
  position: absolute; right: 18px; top: 8px;
  z-index: 0;
}
.step h3 { position: relative; font-size: 20px; margin-bottom: 8px; font-weight: 600; letter-spacing: -0.02em; }
.step p { position: relative; color: var(--ink-soft); font-size: 14.5px; }
.step .tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  padding: 4px 10px; border-radius: 99px;
  margin-bottom: 16px;
  position: relative;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-warm); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.t-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.t-card .stars { color: #e8a83c; font-size: 14px; letter-spacing: 2px; }
.t-card .metric {
  display: inline-block;
  font-size: 22px; letter-spacing: -0.02em; font-weight: 500;
  color: var(--green-800);
  font-family: var(--font-mono);
}
.t-card .metric small { font-size: 13px; color: var(--ink-soft); display: block; font-family: var(--font-sans); font-weight: 400; letter-spacing: 0; }
.t-card blockquote { font-size: 15px; line-height: 1.5; color: var(--ink); text-wrap: pretty; }
.t-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line-soft); }
.t-author .ava { width: 38px; height: 38px; border-radius: 99px; background: var(--green-100); color: var(--green-800); display: grid; place-items: center; font-weight: 600; font-family: var(--font-mono); font-size: 13px; }
.t-author .who b { display: block; font-size: 13.5px; font-weight: 600; }
.t-author .who small { color: var(--ink-mute); font-size: 12px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 50px auto 0; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  width: 28px; height: 28px; border-radius: 99px;
  background: var(--green-50); color: var(--green-700);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s, background .25s;
}
.faq[open] summary .plus { transform: rotate(45deg); background: var(--green-700); color: white; }
.faq .answer { padding: 0 0 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; max-width: 700px; }

/* ---------- Final CTA ---------- */
.cta-final { padding: 60px 0 120px; }
.cta-box {
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(37,211,102,.15), transparent 60%),
    linear-gradient(180deg, #0f4d3a, #082720);
  color: white;
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.cta-box::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 1px, transparent 1px 22px);
  pointer-events: none;
}
.cta-box .eyebrow { color: var(--wa-green); position: relative; }
.cta-box h2 { color: white; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 600; margin-top: 14px; max-width: 700px; position: relative; text-wrap: balance; }
.cta-box p { color: rgba(255,255,255,.7); margin-top: 14px; max-width: 540px; font-size: 16px; position: relative; }
.cta-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; position: relative; }
.cta-fine { margin-top: 16px; color: rgba(255,255,255,.55); font-size: 13px; position: relative; }

/* ============ Pricing CTA section ============ */
.price-box { padding: 56px 56px; }
.price-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
  position: relative;
}
.price-main { position: relative; }
.price-main h2 { margin-top: 14px; }
.price-main > p { margin-top: 14px; max-width: 480px; }

/* Pricing card */
.price-card {
  margin-top: 32px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(37,211,102,0.4), rgba(255,255,255,0.05));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-lead {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wa-green);
  margin-bottom: 14px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: white;
  line-height: 1;
  font-family: var(--font-sans);
  letter-spacing: -0.04em;
}
.price-x {
  font-size: 28px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.price-currency {
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  align-self: flex-start;
  margin-top: 12px;
}
.price-value {
  font-size: 72px;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: -0.04em;
}
.price-cents {
  font-size: 32px;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.02em;
}
.price-foot {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.price-foot b { color: white; font-weight: 500; }

.price-perks {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.4;
}
.price-perks .ck {
  width: 18px;
  height: 18px;
  border-radius: 99px;
  background: rgba(37, 211, 102, 0.18);
  color: var(--wa-green);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-main .cta-actions { margin-top: 28px; }
.price-main .cta-fine { margin-top: 16px; }

/* Right side cadernos */
.price-cadernos {
  padding: 28px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.price-cadernos-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.caderno-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s, background 0.3s;
}
.caderno-row:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}
.caderno-row img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  padding: 8px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  object-fit: contain;
}
.caderno-row[data-tone="green"]  img { background: linear-gradient(135deg, #ffffff, #ecf5f0); }
.caderno-row[data-tone="terra"]  img { background: linear-gradient(135deg, #ffffff, #f7e1d4); }
.caderno-row[data-tone="purple"] img { background: linear-gradient(135deg, #ffffff, #e3def0); }
.caderno-row[data-tone="blue"]   img { background: linear-gradient(135deg, #ffffff, #dee8f0); }
.caderno-row b {
  display: block;
  color: white;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.caderno-row small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .price-box { padding: 36px 28px; }
  .price-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-value { font-size: 60px; }
}
@media (max-width: 600px) {
  .price-value { font-size: 52px; }
  .caderno-row img { width: 52px; height: 52px; }
}
.cta-access {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.cta-access-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-bottom: 18px;
}
.cta-access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cta-access-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s;
}
.cta-access-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 211, 102, 0.25);
}
.cta-access-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  padding: 4px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.cta-access-item span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
@media (max-width: 880px) {
  .cta-access-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .cta-access-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--green-800); margin-bottom: 14px; }
.footer-brand img { height: 30px; }
.footer-top p { color: var(--ink-soft); font-size: 14px; max-width: 320px; }
.footer h6 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer ul a { font-size: 14px; color: var(--ink-soft); }
.footer ul a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line-soft); color: var(--ink-mute); font-size: 13px; }

/* =============================================
   RESPONSIVE — complete mobile-first rewrite
   ============================================= */

/* ---------- 980px: tablet landscape ---------- */
@media (max-width: 980px) {
  section { padding: 70px 0; }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { min-height: 420px; max-width: 520px; margin: 0 auto; }
  .hero-laptop { right: 0; width: 100%; }
  .hero-phone { right: -20px; bottom: -30px; width: 200px; }
  .hero-card-float { left: -10px; }

  /* Sections */
  .problem-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .b-wide, .b-half, .b-third { grid-column: span 1; }
  .bento-card { min-height: 240px; }
  .report-grid { grid-template-columns: 1fr; gap: 40px; }
  .bonus-grid, .steps, .t-grid { grid-template-columns: 1fr; }

  /* Dashboard */
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .dash-row { grid-template-columns: 1fr; }

  /* CTA / Pricing */
  .price-box { padding: 40px 32px; }
  .price-grid { grid-template-columns: 1fr; gap: 36px; }
  .price-value { font-size: 60px; }
  .cta-box { padding: 40px 28px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ---------- 720px: tablet portrait ---------- */
@media (max-width: 720px) {
  /* Nav button: hide label, show icon only */
  .nav-cta .btn-label { display: none; }
  .nav-cta .btn-liquid-glass { padding: 9px 13px; }
  .nav-cta .btn-liquid-glass svg { width: 17px; height: 17px; }

  /* Trust */
  .trust-row { flex-direction: column; gap: 22px; align-items: flex-start; }
  .trust-stats { gap: 28px; flex-wrap: wrap; }

  /* Hero visual: smaller */
  .hero-visual { max-width: 420px; min-height: 360px; }
  .hero-phone { width: 170px; right: -10px; }
  .hero-badge { font-size: 11px; padding: 8px 11px; }
  .hero-card-float { min-width: 170px; font-size: 11px; }
  .hero-card-float .val { font-size: 18px; }

  /* Report PDF mock */
  .pdf-mock { transform: none; }
  .pdf-mock::before { display: none; }

  /* Bonus cards */
  .bonus-card .b-icon { width: 84px; height: 84px; }

  /* Steps */
  .step .num { font-size: 60px; }

  /* Dashboard rpt */
  .rpt-kpis { grid-template-columns: 1fr; }
  .rpt-cat { grid-template-columns: 1fr auto; gap: 10px; }
  .rpt-cat-track { grid-column: 1 / -1; }
  .rpt-row { grid-template-columns: 46px 1fr auto; }
  .rpt-row-tag { display: none; }
  .rpt-cat-name { font-size: 12px; }
  .rpt-cat-value { font-size: 12px; }
  .dash-body-v2 { padding: 24px 20px 28px; }

  /* Price */
  .price-value { font-size: 52px; }
  .price-x { font-size: 22px; }

  /* CTA actions */
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .btn-liquid-glass.btn-lg { padding: 15px 20px; font-size: 15px; }
}

/* ---------- 480px: mobile ---------- */
@media (max-width: 480px) {
  .container, .container-tight { padding: 0 16px; }
  section { padding: 56px 0; }
  .hero { padding: 36px 0 32px; }

  /* Typography */
  .h1 { font-size: clamp(38px, 10vw, 52px); }
  .h2 { font-size: clamp(28px, 8vw, 42px); }
  .section-head { margin-bottom: 40px; }

  /* Header */
  .brand span { display: none; }
  .brand img { height: 28px; }

  /* Hero: stack, hide visual or simplify */
  .hero-grid { gap: 24px; }
  .hero-visual { min-height: 380px !important; max-width: 100% !important; overflow: visible !important; position: relative !important; }
  .hero-laptop { width: 62% !important; left: 0 !important; right: auto !important; top: 60px !important; }
  .hero-phone { width: 190px !important; right: 4px !important; bottom: 32px !important; }
  .hero-sub { font-size: 15px !important; line-height: 1.45 !important; }
  .hero-badge { display: none !important; }
  .hero-kicker { display: none !important; }
  .hero-card-float { min-width: 142px !important; padding: 8px 10px !important; left: 0 !important; top: auto !important; bottom: 14px !important; }
  .hero-card-float .val { font-size: 15px !important; }
  .hero-card-float .delta { font-size: 10px !important; }
  .hero-card-float .label { font-size: 10px !important; }

  /* Kicker */
  .hero-kicker { font-size: 12px; }

  /* Hero CTA */
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-fineprint { grid-template-columns: 1fr !important; gap: 8px !important; font-size: 12px !important; }
  .hero-fineprint > span { margin: 0 !important; padding: 0 !important; width: auto !important; }
  .hero-fineprint > span:nth-child(3) { display: none !important; }

  /* Trust bar */
  .trust { padding: 22px 0 28px; }
  .trust-row { align-items: center !important; text-align: center; }
  .trust-label { text-align: center; width: 100%; }
  .trust-stats { display: flex; flex-wrap: nowrap; gap: 0; justify-content: space-between; width: 100%; }
  .tstat { flex: 1; min-width: 0; text-align: center; }
  .tstat .v { font-size: 16px; letter-spacing: -0.02em; }
  .tstat .l { font-size: 9.5px; line-height: 1.3; white-space: normal; }

  /* Testimonials: remove invasão da seção bonus no mobile */
  .testimonials[style*="margin"] { margin: 0 !important; }

  /* Problem cards */
  .problem-card { padding: 24px 20px; min-height: unset; }
  .problem-card .pc-tag { font-size: 9.5px; letter-spacing: 0.1em; padding: 4px 9px; }
  .pullquote { font-size: clamp(22px, 6vw, 32px); }

  /* Bento */
  .bento { gap: 12px; }
  .bento-card { padding: 22px 20px; }

  /* Dashboard v2 */
  .rpt-head { flex-direction: column; gap: 10px; }
  .rpt-meta { text-align: left; }
  .rpt-title { font-size: 20px; }
  .rpt-kpi-value { font-size: 22px; }
  .rpt-progress-marker-label { font-size: 10px; padding: 3px 6px; }
  .rpt-progress-axis { font-size: 9px; }
  .rpt-cats { gap: 8px; }
  .rpt-row { grid-template-columns: 40px 1fr auto; gap: 8px; }
  .rpt-row-date { font-size: 10px; }
  .rpt-row-value { font-size: 12px; }
  .rpt-section-head h6 { font-size: 10px; }

  /* Report PDF */
  .pdf-mock { padding: 20px 18px; }
  .pdf-totals { grid-template-columns: 1fr; gap: 10px; }
  .pdf-total .v { font-size: 18px; }

  /* Bonus */
  .bonus-card { padding: 24px 20px; }
  .bonus-card .b-icon { width: 72px; height: 72px; margin-bottom: 16px; }
  .bonus-card .ribbon { top: 14px; right: 14px; }

  /* Steps */
  .step { padding: 24px 20px; }
  .step .num { font-size: 50px; right: 12px; }

  /* Testimonials */
  .t-grid { gap: 14px; }
  .t-card { padding: 20px; }

  /* Price / CTA */
  .price-box { padding: 28px 20px 32px; }
  .price-value { font-size: 44px; }
  .price-x { font-size: 20px; }
  .price-currency { font-size: 18px; }
  .price-cents { font-size: 26px; }
  .price-card { padding: 20px 18px; }
  /* Mobile: badge empilhado acima do texto (evita colisão com .price-lead) */
  .price-badge {
    position: static;
    display: inline-block;
    margin-bottom: 14px;
  }
  .cta-box { padding: 28px 20px; }
  .cta-box h2 { font-size: clamp(26px, 7vw, 40px); }
  .caderno-row { gap: 12px; padding: 12px 14px; }
  .caderno-row img { width: 48px; height: 48px; }
  .caderno-row b { font-size: 13.5px; }
  .caderno-row small { font-size: 11.5px; }

  /* FAQ */
  .faq summary { font-size: 15px; padding: 18px 0; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > div:first-child { grid-column: 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer { padding: 40px 0 28px; }
}

/* ---------- 360px: very small ---------- */
@media (max-width: 360px) {
  .hero-phone { width: 60px; }
  .hero-laptop { width: 55%; }
  .price-value { font-size: 38px; }
  .price-x { font-size: 18px; }
  .h1 { font-size: 34px; }
}


/* ============ Barra de promoção (lançamento) ============ */
.promo-bar {
  display: block;
  position: relative;
  z-index: 60;
  background:
    radial-gradient(120% 180% at 100% 0%, rgba(37,211,102,.28), transparent 60%),
    linear-gradient(90deg, var(--green-900), var(--green-800) 55%, var(--green-700));
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.promo-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-top: 9px;
  padding-bottom: 9px;
  text-align: center;
}
.promo-bar .promo-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 3px 11px;
  border-radius: 99px;
  white-space: nowrap;
}
.promo-bar .promo-text {
  font-size: 13.5px;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.005em;
}
.promo-bar .promo-now { font-weight: 600; color: #fff; }
.promo-bar .promo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: border-color .25s;
}
.promo-bar .promo-link .arrow { transition: transform .35s cubic-bezier(0.34,1.56,0.64,1); }
.promo-bar:hover .promo-link { border-color: #fff; }
.promo-bar:hover .promo-link .arrow { transform: translateX(4px); }

/* ============ Preço promocional (selo + valor riscado) ============ */
.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-900);
  background: var(--wa-green);
  padding: 5px 11px;
  border-radius: 99px;
  box-shadow: 0 2px 10px rgba(37,211,102,.35);
}
.price-was {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.price-was .pw-from {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.price-was .pw-strike {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,.62);
  text-decoration: line-through;
  text-decoration-color: rgba(255,90,90,.9);
  text-decoration-thickness: 2px;
}

/* Promo: responsivo */
@media (max-width: 640px) {
  .promo-bar .container { gap: 4px 10px; padding-top: 8px; padding-bottom: 8px; }
  .promo-bar .promo-text { font-size: 12px; }
  .promo-bar .promo-tag { font-size: 9.5px; padding: 2px 8px; }
  .promo-bar .promo-link { font-size: 12px; }
}
/* ============ Modal de demonstração (vídeo) — mobile-first ============ */
.demo-lock { overflow: hidden !important; }

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(6, 16, 13, 0);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  opacity: 0;
  transition: opacity .28s ease, background .28s ease, backdrop-filter .28s ease;
}
.demo-modal[hidden] { display: none; }
.demo-modal.is-open {
  opacity: 1;
  background: rgba(6, 16, 13, .92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.demo-modal__stage {
  position: relative;
  /* 9:16 — limitado pela menor dimensão da tela */
  width: min(100vw, calc(100 * var(--dvh, 1vh) * 9 / 16));
  height: min(100 * var(--dvh, 1vh), calc(100vw * 16 / 9));
  max-width: 100vw;
  transform: scale(.96);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.demo-modal.is-open .demo-modal__stage { transform: scale(1); }

@supports (height: 100dvh) {
  .demo-modal__stage {
    width: min(100vw, calc(100dvh * 9 / 16));
    height: min(100dvh, calc(100vw * 16 / 9));
  }
}

.demo-modal__frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

.demo-modal__player,
.demo-modal__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-modal__spinner {
  position: absolute;
  top: 50%; left: 50%;
  width: 38px; height: 38px;
  margin: -19px 0 0 -19px;
  border: 3px solid rgba(255,255,255,.22);
  border-top-color: rgba(255,255,255,.85);
  border-radius: 50%;
  animation: demoSpin .8s linear infinite;
}
@keyframes demoSpin { to { transform: rotate(360deg); } }

.demo-modal__close {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 10px);
  right: calc(env(safe-area-inset-right, 0px) + 10px);
  z-index: 2;
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 28, 25, .55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.demo-modal__close svg { width: 22px; height: 22px; }
.demo-modal__close:hover { background: rgba(20, 28, 25, .8); }
.demo-modal__close:active { transform: scale(.92); }

/* PC / telas largas: card com cantos e sombra, em pé centralizado */
@media (min-width: 768px) {
  .demo-modal__stage {
    height: min(88dvh, calc(100vw * 16 / 9));
    width: min(94vw, calc(88dvh * 9 / 16));
  }
  .demo-modal__frame {
    border-radius: 18px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  }
  .demo-modal__close {
    top: -6px;
    right: -52px;
    background: rgba(255,255,255,.14);
  }
  .demo-modal__close:hover { background: rgba(255,255,255,.26); }
}
