/* ============================================================
   PuggyConsig — Landing Page Final · Design System
   Plataforma completa para corbans · fintech B2B premium
   Palette: azul petróleo, preto fosco, off-white, grafite,
   azul/teal neon suave, verde nos CTAs (WhatsApp)
   ============================================================ */

:root {
  /* Matte black / petrol surfaces */
  --black-1000: #050B0E;
  --black-900:  #071014;
  --petrol-900: #08151B;
  --petrol-850: #0A1A22;
  --petrol-800: #0C2129;
  --petrol-700: #103039;
  --petrol-600: #16414C;
  --line-dark:  rgba(255, 255, 255, 0.07);
  --line-dark-2: rgba(255, 255, 255, 0.13);

  /* Light surfaces */
  --offwhite: #F6F9FA;
  --paper-2:  #EDF2F4;
  --paper-3:  #E2E9EC;
  --line:     #DBE3E7;
  --line-2:   #C6D2D7;

  /* Ink (graphite) */
  --ink-900: #07151B;
  --ink-700: #21353E;
  --ink-500: #465A64;
  --ink-400: #6A7E88;
  --ink-300: #93A4AC;

  /* Brand — teal/petrol neon */
  --teal-500: #14C0BE;
  --teal-400: #2BD6CF;
  --teal-300: #5FE6DE;
  --teal-200: #A4F1EC;
  --teal-700: #0E9C9C;
  --teal-900: #06403F;
  --teal-ink: #0A7A78;
  --teal-glow: rgba(20, 192, 190, 0.35);
  --teal-glow-soft: rgba(20, 192, 190, 0.12);

  /* Petrol accent (azul neon suave) */
  --neon: #3BA7D6;
  --neon-soft: rgba(59, 167, 214, 0.14);

  /* Green — CTAs / WhatsApp / success */
  --green-500: #1FB95D;
  --green-400: #28CC6B;
  --green-300: #5CDD90;
  --green-600: #169A4B;
  --green-glow: rgba(31, 185, 93, 0.35);
  --wa: #25D366;

  --warning: #F2B33D;
  --danger:  #F26D6D;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display",
               "SF Pro Text", "Segoe UI", system-ui, sans-serif;

  --r-xs: 6px; --r-sm: 10px; --r-md: 14px; --r-lg: 20px;
  --r-xl: 28px; --r-2xl: 36px; --r-pill: 999px;

  --sh-light: 0 1px 2px rgba(7,21,27,0.04), 0 14px 36px -18px rgba(7,21,27,0.16);
  --sh-mockup: 0 60px 120px -40px rgba(0,0,0,0.7), 0 30px 60px -30px rgba(20,192,190,0.18);
  --sh-green: 0 10px 30px -8px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.25);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11", "cv09";
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: var(--petrol-900);
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
:focus-visible { outline: 2px solid var(--teal-400); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

.section { position: relative; padding: 112px 0; isolation: isolate; }
.section--dark { background: var(--petrol-900); color: #fff; }
.section--darker { background: var(--black-1000); color: #fff; }
.section--petrol { background: var(--petrol-850); color: #fff; }
.section--light { background: var(--offwhite); color: var(--ink-900); }
@media (max-width: 720px) { .section { padding: 76px 0; } }
.section > .container { position: relative; z-index: 1; }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 600; color: var(--teal-400);
}
.eyebrow--ink { color: var(--teal-ink); }
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: var(--r-pill);
  background: currentColor; box-shadow: 0 0 14px currentColor;
}
.display {
  font-size: clamp(38px, 5.6vw, 76px); line-height: 1.04;
  letter-spacing: -0.034em; font-weight: 700; margin: 0; text-wrap: balance;
}
.h1 {
  font-size: clamp(32px, 4.2vw, 54px); line-height: 1.07;
  letter-spacing: -0.03em; font-weight: 700; margin: 0; text-wrap: balance;
}
.h2 {
  font-size: clamp(24px, 2.4vw, 34px); line-height: 1.18;
  letter-spacing: -0.022em; font-weight: 600; margin: 0; text-wrap: balance;
}
.h3 { font-size: 21px; line-height: 1.25; letter-spacing: -0.015em; font-weight: 600; margin: 0; }
.lead {
  font-size: clamp(16px, 1.35vw, 19px); line-height: 1.55;
  color: rgba(255,255,255,0.72); margin: 0; text-wrap: pretty; max-width: 60ch;
}
.section--light .lead { color: var(--ink-500); }
.grad-text {
  background: linear-gradient(100deg, var(--teal-300) 0%, var(--teal-400) 50%, var(--neon) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.teal-text { color: var(--teal-400); }
.section--light .teal-text { color: var(--teal-ink); }
.green-text { color: var(--green-400); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 24px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 600; letter-spacing: -0.005em; white-space: nowrap;
  transition: transform .2s var(--ease), background .25s var(--ease), box-shadow .3s var(--ease), color .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--wa {
  background: var(--green-500); color: #fff; box-shadow: var(--sh-green);
}
.btn--wa:hover { background: var(--green-400); transform: translateY(-1px); box-shadow: 0 16px 38px -8px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn--primary { background: var(--teal-500); color: var(--petrol-900); box-shadow: 0 8px 26px -8px var(--teal-glow), inset 0 1px 0 rgba(255,255,255,0.25); }
.btn--primary:hover { background: var(--teal-400); transform: translateY(-1px); }
.btn--ghost { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid var(--line-dark-2); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.btn--ink-ghost { background: transparent; color: var(--ink-900); border: 1px solid var(--line-2); }
.btn--ink-ghost:hover { background: var(--paper-2); border-color: var(--ink-300); }
.btn--sm { height: 42px; padding: 0 18px; font-size: 13.5px; }
.btn--lg { height: 58px; padding: 0 30px; font-size: 16px; }
.btn__wa-icon { width: 20px; height: 20px; }

/* ---------- Chip / badge ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px 7px 11px; border-radius: var(--r-pill);
  background: rgba(20,192,190,0.08); border: 1px solid rgba(20,192,190,0.22);
  color: var(--teal-300); font-size: 12.5px; font-weight: 500;
}
.chip svg { width: 14px; height: 14px; }
.chip--dot::before { content: ""; width: 6px; height: 6px; border-radius: var(--r-pill); background: var(--teal-400); box-shadow: 0 0 10px var(--teal-400); }

/* ---------- Section heading ---------- */
.section-head { display: grid; gap: 18px; max-width: 760px; margin-bottom: 60px; justify-items: start; }
.section-head .h1, .section-head .h2, .section-head .lead, .section-head .proof__intro { justify-self: stretch; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; justify-items: center; }
.section-head--center .lead { margin-left: auto; margin-right: auto; }
.section-head--center .eyebrow { justify-self: center; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes pulse-glow { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:.9;transform:scale(1.05)} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ---------- Glow ---------- */
.glow-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 0; transition: padding .3s var(--ease); }
.hdr__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 10px 12px 10px 18px; border-radius: var(--r-pill);
  background: rgba(7,16,20,0.66); backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line-dark); box-shadow: 0 12px 40px -20px rgba(0,0,0,0.7);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -0.02em; font-size: 17px; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(160deg, var(--petrol-700), var(--petrol-900));
  border: 1px solid rgba(20,192,190,0.3);
  display: grid; place-items: center; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 4px 12px -4px var(--teal-glow);
  overflow: hidden;
}
.brand__mark img {
  width: 24px; height: 24px; object-fit: contain;
  background: url("assets/diggy-mark.png") center / contain no-repeat;
  color: transparent; font-size: 0;
}
.hdr__nav { display: flex; gap: 2px; }
.hdr__nav a { padding: 8px 13px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.7); transition: all .2s var(--ease); }
.hdr__nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.hdr__cta { display: flex; align-items: center; gap: 8px; }
.hdr__cta .btn { height: 42px; }
@media (max-width: 1080px) { .hdr__nav { display: none; } }
@media (max-width: 460px) { .brand span.brand__name { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; padding: 150px 0 88px; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 30% -5%, rgba(20,192,190,0.16) 0%, transparent 58%),
    radial-gradient(ellipse 50% 50% at 95% 30%, rgba(59,167,214,0.09) 0%, transparent 60%),
    var(--petrol-900);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 65% 60% at 40% 30%, black, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 65% 60% at 40% 30%, black, transparent 78%);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 1000px) { .hero__inner { grid-template-columns: 1fr; gap: 52px; } }
.hero__copy { display: grid; gap: 22px; justify-items: start; }
.hero__copy .h1, .hero__copy .display, .hero__copy .lead { justify-self: stretch; }
.hero__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.hero__badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: var(--r-pill); background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); font-size: 12.5px; color: rgba(255,255,255,0.78); font-weight: 500; }
.hero__badge svg { width: 14px; height: 14px; color: var(--teal-400); }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero__trust { display: flex; align-items: center; gap: 10px; margin-top: 6px; color: rgba(255,255,255,0.5); font-size: 13px; }
.hero__trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-400); box-shadow: 0 0 10px var(--green-400); flex-shrink: 0; }

/* Hero visual */
.hero__visual { position: relative; min-height: 520px; }
.hero__visual-glow { position: absolute; inset: -8%; background: radial-gradient(circle at 55% 45%, var(--teal-glow) 0%, transparent 55%); filter: blur(20px); z-index: 0; }
.hero__dash {
  position: absolute; top: 2%; left: -4%; width: 92%; z-index: 1;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line-dark-2);
  box-shadow: var(--sh-mockup);
  transform: perspective(1700px) rotateY(-7deg) rotateX(3deg); transform-origin: center;
}
.hero__wa {
  position: absolute; bottom: 4%; right: -3%; width: 33%; min-width: 230px; z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.hero__diggy {
  position: absolute; bottom: -4%; left: -3%; width: 115px; height: auto; aspect-ratio: auto; object-fit: contain; z-index: 4;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.55));
  animation: float 5.5s ease-in-out infinite; animation-delay: 1s;
}
@media (max-width: 1000px) {
  .hero__visual { min-height: 440px; }
  .hero__dash { transform: none; left: 0; width: 90%; }
  .hero__wa { right: -2%; width: 40%; }
  .hero__diggy { left: -2%; width: 100px; height: auto; object-fit: contain; }
}
@media (max-width: 540px) {
  .hero { padding: 128px 0 60px; }
  .hero__visual { min-height: 380px; }
  .hero__dash { width: 86%; top: 4%; }
  .hero__wa { width: 46%; bottom: 2%; right: -4%; }
  .hero__diggy { width: 84px; height: auto; left: 0; bottom: -2%; object-fit: contain; }
}

/* ============================================================
   DASHBOARD MOCKUP
   ============================================================ */
.dash { background: var(--black-1000); font-size: 11px; color: rgba(255,255,255,0.85); display: grid; grid-template-rows: auto 1fr; min-height: 440px; }
.dash__chrome { display: flex; align-items: center; gap: 7px; padding: 10px 14px; background: var(--petrol-800); border-bottom: 1px solid var(--line-dark); }
.dash__dot { width: 10px; height: 10px; border-radius: 50%; }
.dash__url { margin-left: 12px; flex: 1; background: rgba(255,255,255,0.05); border-radius: 6px; padding: 4px 10px; color: rgba(255,255,255,0.5); font-size: 10px; display: flex; align-items: center; gap: 6px; }
.dash__body { display: grid; grid-template-columns: 138px 1fr; }
.dash__side { background: var(--petrol-850); border-right: 1px solid var(--line-dark); padding: 12px 9px; display: flex; flex-direction: column; gap: 3px; }
.dash__brand { display: flex; align-items: center; gap: 7px; padding: 4px 7px 12px; margin-bottom: 4px; font-weight: 700; font-size: 11.5px; border-bottom: 1px solid var(--line-dark); }
.dash__brand-mark { width: 18px; height: 18px; border-radius: 5px; background: linear-gradient(160deg, var(--petrol-700), var(--petrol-900)); border: 1px solid rgba(20,192,190,0.35); display: grid; place-items: center; }
.dash__brand-mark img { width: 13px; height: 13px; }
.dash__nav { display: flex; align-items: center; gap: 9px; padding: 7px 8px; border-radius: 7px; font-size: 10.5px; color: rgba(255,255,255,0.55); font-weight: 500; }
.dash__nav-ic { width: 12px; height: 12px; border-radius: 3px; background: currentColor; opacity: 0.5; }
.dash__nav--active { background: rgba(20,192,190,0.12); color: var(--teal-300); }
.dash__nav--active .dash__nav-ic { opacity: 1; }
.dash__main { padding: 13px 15px; display: grid; gap: 12px; align-content: start; }
.dash__top { display: flex; align-items: center; justify-content: space-between; }
.dash__greet { font-size: 13px; font-weight: 700; }
.dash__greet-sub { font-size: 9.5px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.dash__top-right { display: flex; align-items: center; gap: 7px; }
.dash__pill { background: rgba(255,255,255,0.05); padding: 5px 9px; border-radius: 999px; font-size: 9px; color: rgba(255,255,255,0.62); border: 1px solid var(--line-dark); }
.dash__avatar { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-300), var(--teal-700)); }
.dash__kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.dash__kpi { background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); border-radius: 9px; padding: 9px; }
.dash__kpi-l { font-size: 8px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.04em; }
.dash__kpi-v { font-size: 15px; font-weight: 700; margin-top: 3px; letter-spacing: -0.02em; }
.dash__kpi-t { font-size: 8.5px; color: var(--green-400); margin-top: 2px; }
.dash__row2 { display: grid; grid-template-columns: 1.3fr 1fr; gap: 8px; }
.dash__panel { background: rgba(255,255,255,0.025); border: 1px solid var(--line-dark); border-radius: 10px; padding: 11px; display: grid; gap: 8px; align-content: start; }
.dash__panel-h { display: flex; justify-content: space-between; align-items: center; }
.dash__panel-t { font-size: 10px; font-weight: 600; }
.dash__tag { font-size: 8px; padding: 2px 7px; border-radius: 999px; background: rgba(20,192,190,0.12); color: var(--teal-300); }
.dash__chart-svg { width: 100%; height: 64px; display: block; }
.dash__match { display: grid; gap: 6px; }
.dash__match-row { display: flex; align-items: center; gap: 7px; font-size: 9px; }
.dash__match-k { color: rgba(255,255,255,0.45); width: 40px; flex-shrink: 0; }
.dash__match-v { color: rgba(255,255,255,0.88); font-weight: 600; }
.dash__match-badge { margin-left: auto; font-size: 8px; padding: 2px 6px; border-radius: 999px; background: rgba(31,185,93,0.14); color: var(--green-300); }
.dash__props { display: grid; gap: 5px; }
.dash__prop { display: flex; align-items: center; gap: 8px; padding: 6px 8px; background: rgba(255,255,255,0.03); border-radius: 7px; font-size: 9.5px; }
.dash__prop-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dash__prop-name { font-weight: 600; }
.dash__prop-meta { color: rgba(255,255,255,0.45); font-size: 8.5px; }
.dash__prop-status { margin-left: auto; font-size: 8px; padding: 2px 7px; border-radius: 999px; }

/* ============================================================
   WHATSAPP MOCKUP
   ============================================================ */
.wa { background: #0B141A; border-radius: 22px; overflow: hidden; border: 1px solid var(--line-dark-2); box-shadow: var(--sh-mockup); display: grid; grid-template-rows: auto 1fr auto; }
.wa__hdr { display: flex; align-items: center; gap: 9px; padding: 12px 13px; background: #1F2C33; }
.wa__av { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(160deg, var(--petrol-700), var(--petrol-900)); border: 1px solid rgba(20,192,190,0.4); display: grid; place-items: center; flex-shrink: 0; }
.wa__av img { width: 22px; height: 22px; }
.wa__name { font-size: 12px; font-weight: 600; color: #E9EDEF; }
.wa__status { font-size: 9px; color: var(--green-300); display: flex; align-items: center; gap: 4px; }
.wa__status::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green-400); }
.wa__body { padding: 12px 11px; display: grid; gap: 8px; align-content: start; background: linear-gradient(180deg, #0B141A, #0A1318); min-height: 200px; }
.wa__msg { max-width: 82%; padding: 7px 10px; border-radius: 10px; font-size: 10.5px; line-height: 1.4; }
.wa__msg--in { background: #1F2C33; color: #E9EDEF; border-top-left-radius: 3px; justify-self: start; }
.wa__msg--out { background: #144D37; color: #E9EDEF; border-top-right-radius: 3px; justify-self: end; }
.wa__msg-time { font-size: 8px; color: rgba(255,255,255,0.4); margin-top: 3px; text-align: right; }
.wa__ai-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 8px; color: var(--teal-300); margin-bottom: 2px; font-weight: 600; }
.wa__bar { padding: 9px 11px; background: #1F2C33; display: flex; align-items: center; gap: 8px; }
.wa__input { flex: 1; background: #2A3942; border-radius: 999px; padding: 7px 12px; font-size: 9.5px; color: rgba(255,255,255,0.4); }
.wa__send { width: 26px; height: 26px; border-radius: 50%; background: var(--green-500); display: grid; place-items: center; flex-shrink: 0; }
.wa__send svg { width: 13px; height: 13px; color: #fff; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  display: flex; align-items: center; gap: 11px; padding: 11px 18px 11px 13px;
  background: var(--green-500); color: #fff; border-radius: 999px; font-weight: 600; font-size: 14px;
  box-shadow: 0 14px 34px -8px var(--green-glow), 0 6px 16px -6px rgba(0,0,0,0.4);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -8px var(--green-glow); }
.wa-float__ic { width: 26px; height: 26px; }
.wa-float__label { white-space: nowrap; }
@media (max-width: 540px) { .wa-float { padding: 13px; bottom: 16px; right: 16px; } .wa-float__label { display: none; } }

/* ============================================================
   MERCADO MUDOU
   ============================================================ */
.market__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .market__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .market__grid { grid-template-columns: 1fr; } }
.market__card { padding: 26px; border-radius: var(--r-lg); background: var(--offwhite); border: 1px solid var(--line); display: grid; gap: 12px; transition: transform .2s var(--ease), border-color .2s var(--ease); }
.market__card:hover { transform: translateY(-4px); border-color: var(--teal-500); }
.market__ic { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(150deg, var(--petrol-800), var(--petrol-900)); color: var(--teal-400); display: grid; place-items: center; }
.market__card h3 { font-size: 16px; font-weight: 600; margin: 0; letter-spacing: -0.012em; }
.market__card p { font-size: 13.5px; line-height: 1.5; color: var(--ink-500); margin: 0; }
.market__stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px; padding: 28px 32px; background: var(--paper-2); border-radius: var(--r-lg); }
.market__stat { display: grid; gap: 4px; }
.market__stat-v { font-size: clamp(26px, 3vw, 38px); font-weight: 700; letter-spacing: -0.03em; color: var(--ink-900); }
.market__stat-v span { color: var(--teal-ink); }
.market__stat-l { font-size: 13px; color: var(--ink-400); max-width: 26ch; }
.market__src { margin-top: 18px; font-size: 11.5px; color: var(--ink-300); }

/* ============================================================
   PROBLEMA
   ============================================================ */
.prob__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .prob__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .prob__grid { grid-template-columns: 1fr; } }
.prob__card { padding: 22px; border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); border: 1px solid var(--line-dark); display: flex; gap: 14px; align-items: flex-start; }
.prob__ic { width: 34px; height: 34px; border-radius: 10px; background: rgba(242,109,109,0.1); border: 1px solid rgba(242,109,109,0.22); color: var(--danger); display: grid; place-items: center; flex-shrink: 0; }
.prob__card p { margin: 0; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.86); line-height: 1.4; }
.prob__close { margin-top: 40px; padding: 28px 32px; border-radius: var(--r-xl); background: linear-gradient(120deg, rgba(20,192,190,0.1), rgba(59,167,214,0.06)); border: 1px solid rgba(20,192,190,0.2); display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.prob__close-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--teal-500); color: var(--petrol-900); display: grid; place-items: center; flex-shrink: 0; }
.prob__close p { margin: 0; font-size: clamp(16px, 1.6vw, 20px); font-weight: 500; line-height: 1.45; flex: 1; min-width: 280px; }
.prob__close strong { color: var(--teal-300); font-weight: 600; }

/* ============================================================
   PLATAFORMA COMPLETA
   ============================================================ */
.feat__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1080px) { .feat__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feat__grid { grid-template-columns: 1fr; } }
.feat__card { position: relative; padding: 24px; border-radius: var(--r-lg); background: var(--offwhite); border: 1px solid var(--line); display: grid; gap: 13px; align-content: start; transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease); }
.feat__card:hover { transform: translateY(-5px); border-color: var(--teal-500); box-shadow: 0 22px 44px -24px rgba(14,156,156,0.3); }
.feat__ic { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(150deg, var(--petrol-800), var(--petrol-900)); color: var(--teal-400); display: grid; place-items: center; }
.feat__card h3 { font-size: 16.5px; font-weight: 600; margin: 0; letter-spacing: -0.015em; }
.feat__card p { font-size: 13.5px; line-height: 1.5; color: var(--ink-500); margin: 0; }
.feat__badge { position: absolute; top: 18px; right: 18px; font-size: 9px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; background: rgba(14,156,156,0.1); color: var(--teal-ink); }

/* ============================================================
   COMPARATIVA
   ============================================================ */
.cmp { overflow: hidden; }
.cmp__wrap { border-radius: var(--r-xl); border: 1px solid var(--line-dark); overflow: hidden; background: rgba(255,255,255,0.02); }
.cmp__table { width: 100%; border-collapse: collapse; }
.cmp__table th, .cmp__table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-dark); }
.cmp__table thead th { font-size: 14px; font-weight: 600; vertical-align: bottom; }
.cmp__feat-col { font-size: 14px; color: rgba(255,255,255,0.78); font-weight: 500; width: 30%; }
.cmp__col-label { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }
.cmp__col-pug { position: relative; }
.cmp__pug-head { display: grid; gap: 6px; }
.cmp__pug-head .brand { font-size: 16px; }
.cmp__pug-tag { font-size: 10px; color: var(--teal-300); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.cmp__table td { text-align: center; }
.cmp__table td:first-child { text-align: left; }
.cmp__table th:not(:first-child) { text-align: center; }
.cmp__col-pug-cell { background: rgba(20,192,190,0.06); }
.cmp__yes { color: var(--green-400); }
.cmp__partial { color: var(--warning); }
.cmp__no { color: rgba(255,255,255,0.25); }
.cmp__ic { display: inline-grid; place-items: center; width: 26px; height: 26px; }
.cmp__table tbody tr:last-child td { border-bottom: none; }
.cmp__note { margin-top: 18px; font-size: 12.5px; color: rgba(255,255,255,0.45); }
.cmp__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 760px) { .cmp__table { min-width: 620px; } }

/* ============================================================
   SPLIT (PuggyMatch / PuggySales)
   ============================================================ */
.split { position: relative; overflow: hidden; }
.split__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.split__inner--rev { grid-template-columns: 1.05fr 1fr; }
@media (max-width: 980px) { .split__inner, .split__inner--rev { grid-template-columns: 1fr; gap: 44px; } }
.split__copy { display: grid; gap: 22px; justify-items: start; }
.split__copy .h1, .split__copy .lead, .split__copy .ps__grid, .split__copy .split__bullets, .split__copy .ps__note, .split__copy .split__disc, .split__copy .hero__ctas { justify-self: stretch; width: 100%; }
.split__bullets { display: grid; gap: 13px; margin-top: 4px; }
.split__bullet { display: flex; gap: 13px; align-items: flex-start; }
.split__bullet-ic { width: 32px; height: 32px; border-radius: 10px; background: rgba(20,192,190,0.1); border: 1px solid rgba(20,192,190,0.25); color: var(--teal-400); display: grid; place-items: center; flex-shrink: 0; }
.split__bullet-tx { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,0.75); }
.split__bullet-tx strong { color: #fff; font-weight: 600; }
.split__disc { font-size: 12.5px; color: rgba(255,255,255,0.45); border-top: 1px solid var(--line-dark); padding-top: 16px; margin-top: 8px; line-height: 1.55; max-width: 58ch; }

/* PuggyMatch UI card */
.pm-card { background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)); border: 1px solid var(--line-dark-2); border-radius: var(--r-xl); padding: 24px; box-shadow: var(--sh-mockup); max-width: 480px; margin: 0 auto; }
.pm-card__h { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line-dark); margin-bottom: 16px; }
.pm-card__title { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.pm-card__title-ic { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(150deg, var(--teal-400), var(--teal-700)); display: grid; place-items: center; color: var(--petrol-900); }
.pm-card__score { font-size: 12px; color: var(--green-300); display: flex; align-items: center; gap: 6px; }
.pm-card__rows { display: grid; gap: 11px; }
.pm-card__row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--line-dark); border-radius: 12px; }
.pm-card__row--hl { background: rgba(20,192,190,0.08); border-color: rgba(20,192,190,0.25); }
.pm-card__row-ic { width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,0.05); display: grid; place-items: center; color: var(--teal-300); flex-shrink: 0; }
.pm-card__row-k { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.04em; }
.pm-card__row-v { font-size: 13.5px; font-weight: 600; margin-top: 1px; }
.pm-card__row-badge { margin-left: auto; font-size: 10px; font-weight: 600; padding: 4px 9px; border-radius: 999px; flex-shrink: 0; }
.pm-card__next { margin-top: 14px; padding: 13px 15px; border-radius: 12px; background: linear-gradient(110deg, rgba(31,185,93,0.14), rgba(20,192,190,0.08)); border: 1px solid rgba(31,185,93,0.25); display: flex; align-items: center; gap: 11px; }
.pm-card__next-ic { width: 30px; height: 30px; border-radius: 9px; background: var(--green-500); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.pm-card__next-k { font-size: 10px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; }
.pm-card__next-v { font-size: 13.5px; font-weight: 600; }

/* PuggySales cards */
.ps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px; }
@media (max-width: 640px) { .ps__grid { grid-template-columns: 1fr 1fr; } }
.ps__card { padding: 16px; border-radius: var(--r-md); background: rgba(255,255,255,0.03); border: 1px solid var(--line-dark); display: grid; gap: 9px; }
.ps__ic { width: 32px; height: 32px; border-radius: 9px; background: rgba(20,192,190,0.1); color: var(--teal-400); display: grid; place-items: center; }
.ps__card h4 { margin: 0; font-size: 13.5px; font-weight: 600; }
.ps__card p { margin: 0; font-size: 11.5px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.ps__note { margin-top: 18px; padding: 14px 18px; background: rgba(59,167,214,0.07); border-left: 3px solid var(--neon); border-radius: 0 var(--r-md) var(--r-md) 0; font-size: 12.5px; color: rgba(255,255,255,0.62); line-height: 1.5; }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.flow__track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; position: relative; }
@media (max-width: 1000px) { .flow__track { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .flow__track { grid-template-columns: 1fr; } }
.flow__step { padding: 22px; background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); border: 1px solid var(--line-dark); border-radius: var(--r-lg); display: grid; gap: 11px; align-content: start; }
.flow__num { width: 32px; height: 32px; border-radius: 9px; background: rgba(20,192,190,0.12); color: var(--teal-300); display: grid; place-items: center; font-weight: 700; font-size: 14px; }
.flow__step h3 { font-size: 15px; font-weight: 600; margin: 0; letter-spacing: -0.012em; }
.flow__step p { font-size: 13px; line-height: 1.45; color: rgba(255,255,255,0.6); margin: 0; }

/* ============================================================
   POR PRODUTO
   ============================================================ */
.prod__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 820px) { .prod__grid { grid-template-columns: 1fr; } }
.prod__card { padding: 30px; border-radius: var(--r-xl); background: var(--offwhite); border: 1px solid var(--line); display: flex; gap: 20px; align-items: flex-start; }
.prod__logo { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(150deg, var(--petrol-800), var(--petrol-900)); color: var(--teal-400); display: grid; place-items: center; font-weight: 700; font-size: 15px; flex-shrink: 0; letter-spacing: -0.02em; }
.prod__card h3 { margin: 0 0 8px; font-size: 19px; font-weight: 600; letter-spacing: -0.015em; }
.prod__card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-500); }
.prod__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.prod__tag { font-size: 11px; padding: 3px 9px; background: var(--paper-2); color: var(--ink-700); border-radius: 999px; font-weight: 500; }

/* ============================================================
   PARA QUEM É
   ============================================================ */
.who__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 820px) { .who__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .who__grid { grid-template-columns: 1fr; } }
.who__card { padding: 20px; border-radius: var(--r-md); background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); border: 1px solid var(--line-dark); display: flex; align-items: center; gap: 13px; }
.who__ic { width: 34px; height: 34px; border-radius: 10px; background: rgba(20,192,190,0.1); color: var(--teal-400); display: grid; place-items: center; flex-shrink: 0; }
.who__card span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); }

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.ben__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 980px) { .ben__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ben__grid { grid-template-columns: 1fr; } }
.ben__card { padding: 20px; border-radius: var(--r-md); background: var(--offwhite); border: 1px solid var(--line); display: flex; gap: 12px; align-items: flex-start; }
.ben__ic { width: 28px; height: 28px; border-radius: 8px; background: rgba(31,185,93,0.12); color: var(--green-600); display: grid; place-items: center; flex-shrink: 0; }
.ben__card span { font-size: 14px; font-weight: 500; color: var(--ink-700); line-height: 1.4; }

/* ============================================================
   PROVA OPERACIONAL
   ============================================================ */
.proof__panel { border-radius: var(--r-2xl); border: 1px solid var(--line-dark-2); overflow: hidden; background: var(--black-1000); box-shadow: var(--sh-mockup); }
.proof__bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; background: var(--petrol-800); border-bottom: 1px solid var(--line-dark); flex-wrap: wrap; gap: 10px; }
.proof__bar-l { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 600; }
.proof__bar-tabs { display: flex; gap: 6px; }
.proof__bar-tab { font-size: 11px; padding: 5px 11px; border-radius: 999px; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.55); }
.proof__bar-tab--active { background: var(--teal-500); color: var(--petrol-900); font-weight: 600; }
.proof__metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); }
@media (max-width: 860px) { .proof__metrics { grid-template-columns: 1fr 1fr; } }
.proof__metric { background: var(--black-1000); padding: 22px; display: grid; gap: 6px; }
.proof__metric-l { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.proof__metric-v { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; }
.proof__metric-t { font-size: 11px; color: var(--green-400); }
.proof__metric-t--warn { color: var(--warning); }
.proof__funnel { padding: 24px; display: grid; gap: 10px; border-top: 1px solid var(--line-dark); }
.proof__funnel-row { display: grid; grid-template-columns: 130px 1fr 50px; align-items: center; gap: 14px; }
.proof__funnel-k { font-size: 12px; color: rgba(255,255,255,0.65); }
.proof__funnel-bar { height: 22px; border-radius: 6px; background: linear-gradient(90deg, var(--teal-500), var(--teal-300)); }
.proof__funnel-v { font-size: 12px; font-weight: 600; text-align: right; color: rgba(255,255,255,0.8); }
.proof__disc { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.42); display: flex; align-items: center; gap: 8px; }
.proof__disc svg { width: 15px; height: 15px; color: var(--warning); flex-shrink: 0; }

/* ============================================================
   SUPORTE DIGGY
   ============================================================ */
.sup { position: relative; overflow: hidden; }
.sup__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 880px) { .sup__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; } .sup__diggy-wrap { order: -1; } }
.sup__diggy-wrap { position: relative; display: grid; place-items: center; }
.sup__diggy-glow { position: absolute; width: 80%; height: 80%; border-radius: 50%; background: radial-gradient(circle, var(--teal-glow) 0%, transparent 60%); filter: blur(40px); }
.sup__diggy { position: relative; width: 100%; max-width: 320px; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5)); animation: float 6s ease-in-out infinite; }
.sup__copy { display: grid; gap: 22px; justify-items: start; }
.sup__copy .h1, .sup__copy .lead { justify-self: stretch; }
.sup__phone { display: inline-flex; align-items: center; gap: 12px; padding: 14px 20px; border-radius: var(--r-pill); background: rgba(31,185,93,0.08); border: 1px solid rgba(31,185,93,0.25); align-self: start; }
.sup__inner--center .sup__phone, .sup__copy .sup__phone { }
.sup__phone-ic { width: 38px; height: 38px; border-radius: 50%; background: var(--green-500); display: grid; place-items: center; flex-shrink: 0; }
.sup__phone-ic svg { width: 20px; height: 20px; color: #fff; }
.sup__phone-num { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.sup__phone-l { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 880px) { .sup__phone { align-self: center; } .sup__copy .eyebrow { justify-self: center; } .sup__copy .lead { margin: 0 auto; } .sup__ctas { justify-content: center; } }
.sup__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; text-align: left; font-size: 17px; font-weight: 600; color: var(--ink-900); letter-spacing: -0.01em; }
.faq__q-ic { width: 28px; height: 28px; border-radius: 8px; background: var(--paper-2); display: grid; place-items: center; flex-shrink: 0; transition: transform .3s var(--ease), background .2s var(--ease); color: var(--teal-ink); }
.faq__item[open] .faq__q-ic { transform: rotate(45deg); background: var(--teal-500); color: #fff; }
.faq__a { padding: 0 4px 26px; font-size: 15px; line-height: 1.6; color: var(--ink-500); max-width: 72ch; }
details.faq__item summary { list-style: none; cursor: pointer; }
details.faq__item summary::-webkit-details-marker { display: none; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.final { position: relative; background: var(--black-1000); overflow: hidden; }
.final__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(20,192,190,0.22) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 50% 0%, rgba(31,185,93,0.08) 0%, transparent 60%); }
.final__inner { position: relative; z-index: 1; text-align: center; display: grid; gap: 24px; justify-items: center; width: min(100% - 40px, 1120px); margin-inline: auto; }
.final h2 { font-size: clamp(2.25rem, 5.2vw, 4.5rem); line-height: 1.0; letter-spacing: -0.04em; font-weight: 700; margin: 0; max-width: 15ch; margin-inline: auto; text-wrap: balance; overflow-wrap: normal; }
.final .lead { max-width: 46ch; color: rgba(255,255,255,0.86); font-size: clamp(16px, 1.5vw, 19px); }
.final__ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; width: 100%; }
.final__mini { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.final__diggy-wrap { position: relative; display: grid; place-items: center; margin-bottom: 2px; isolation: isolate; }
.final__diggy-wrap::before { content: ""; position: absolute; left: 50%; top: 54%; width: 150%; height: 150%; transform: translate(-50%, -50%); background: radial-gradient(ellipse at center, rgba(20,192,190,0.30) 0%, transparent 62%); filter: blur(20px); z-index: -1; pointer-events: none; }
.final__diggy { display: block; width: clamp(120px, 12vw, 190px); height: auto; margin-inline: auto; object-fit: contain; filter: drop-shadow(0 18px 34px rgba(0,0,0,0.45)); }
@media (max-width: 520px) { .final__ctas { flex-direction: column; } .final__ctas .btn { width: 100%; } .final__diggy { width: clamp(105px, 34vw, 135px); } }

/* ============================================================
   FOOTER
   ============================================================ */
.ftr { background: var(--black-1000); color: rgba(255,255,255,0.7); padding: 72px 0 30px; border-top: 1px solid var(--line-dark); }
.ftr__top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 44px; margin-bottom: 50px; }
@media (max-width: 820px) { .ftr__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .ftr__top { grid-template-columns: 1fr; } }
.ftr__brand { display: grid; gap: 16px; max-width: 320px; }
.ftr__desc { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.52); margin: 0; }
.ftr__wa { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--green-300); }
.ftr__wa svg { width: 18px; height: 18px; }
.ftr__col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.42); margin: 0 0 16px; font-weight: 600; }
.ftr__col ul { display: grid; gap: 10px; }
.ftr__col a { font-size: 14px; color: rgba(255,255,255,0.68); transition: color .2s var(--ease); }
.ftr__col a:hover { color: var(--teal-400); }
.ftr__bottom { border-top: 1px solid var(--line-dark); padding-top: 22px; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 14px; }
.ftr__legal { font-size: 11.5px; color: rgba(255,255,255,0.4); max-width: 640px; line-height: 1.6; }
.ftr__copy { font-size: 11.5px; color: rgba(255,255,255,0.4); }

/* ============================================================
   MULTIPÁGINA — HEADER v2, MENU MOBILE, CTA STICKY
   ============================================================ */
.hdr--scrolled .hdr__inner { padding-top: 8px; padding-bottom: 8px; background: rgba(7,16,20,0.82); }
.hdr__nav-wrap { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.hdr__cta .btn--ghost-line { background: transparent; border: 1px solid var(--line-dark-2); color: #fff; }
.hdr__cta .btn--ghost-line:hover { border-color: var(--teal-400); color: var(--teal-300); }
.hdr__burger { display: none; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.hdr__burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
@media (max-width: 1080px) {
  .hdr__cta .hide-mobile { display: none; }
  .hdr__burger { display: flex; }
}
.mobile-menu { position: fixed; inset: 0; z-index: 120; background: rgba(4,9,11,0.72); backdrop-filter: blur(10px); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease); }
.mobile-menu--open { opacity: 1; visibility: visible; }
.mobile-menu__panel { position: absolute; top: 0; right: 0; width: min(360px, 88vw); height: 100%; background: var(--petrol-900); border-left: 1px solid var(--line-dark); padding: 84px 26px 26px; display: grid; align-content: start; gap: 6px; transform: translateX(20px); transition: transform .3s var(--ease); overflow-y: auto; }
.mobile-menu--open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu a { padding: 13px 14px; border-radius: 12px; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.82); }
.mobile-menu a:hover { background: rgba(255,255,255,0.05); }
.mobile-menu__sep { height: 1px; background: var(--line-dark); margin: 12px 0; }
.mobile-menu__ctas { display: grid; gap: 10px; margin-top: 8px; }
.mobile-menu__ctas .btn { width: 100%; }
.mobile-menu__close { position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: #fff; }

/* Sticky CTA mobile */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; gap: 10px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(7,16,20,0.92); backdrop-filter: blur(14px); border-top: 1px solid var(--line-dark); }
.sticky-cta .btn { flex: 1; height: 50px; }
.sticky-cta__wa { flex: 0 0 auto !important; width: 50px; padding: 0 !important; }
@media (max-width: 720px) { .sticky-cta { display: flex; } .wa-float { display: none; } body { padding-bottom: 78px; } }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.crumb { padding-top: 118px; }
.crumb__list { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); }
.crumb__list a { color: rgba(255,255,255,0.68); }
.crumb__list a:hover { color: var(--teal-300); }
.crumb__sep { opacity: 0.4; }
.crumb__current { color: var(--teal-300); }
.section--light .crumb__list { color: var(--ink-400); }
.section--light .crumb__list a { color: var(--ink-500); }
.section--light .crumb__current { color: var(--teal-ink); }

/* Page hero (interno, mais compacto que a home) */
.phero { position: relative; padding: 40px 0 20px; }
.phero__inner { display: grid; gap: 20px; max-width: 780px; }
.phero--split .phero__inner { max-width: none; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
@media (max-width: 980px) { .phero--split .phero__inner { grid-template-columns: 1fr; } }
.phero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

/* ============================================================
   PRICING / CRÉDITOS
   ============================================================ */
.price { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .price { grid-template-columns: 1fr; } }
.price__card { padding: 30px; border-radius: var(--r-xl); background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)); border: 1px solid var(--line-dark); display: grid; gap: 16px; align-content: start; }
.price__card--hl { border-color: rgba(20,192,190,0.4); background: linear-gradient(180deg, rgba(20,192,190,0.1), rgba(255,255,255,0.02)); }
.price__tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal-300); }
.price__name { font-size: 20px; font-weight: 600; }
.price__value { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.price__value strong { color: #fff; font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.price__list { display: grid; gap: 9px; }
.price__list li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: rgba(255,255,255,0.75); }
.price__list svg { width: 15px; height: 15px; color: var(--green-400); flex-shrink: 0; margin-top: 2px; }
.price__note { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ============================================================
   STEPS numeradas (fluxo comercial vertical)
   ============================================================ */
.vsteps { display: grid; gap: 2px; max-width: 780px; }
.vstep { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); align-items: start; }
.vstep:last-child { border-bottom: none; }
.vstep__n { width: 36px; height: 36px; border-radius: 10px; background: rgba(20,192,190,0.12); color: var(--teal-300); display: grid; place-items: center; font-weight: 700; }
.vstep h3 { font-size: 16px; margin: 0 0 4px; font-weight: 600; }
.vstep p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.5; }
.section--light .vstep { border-color: var(--line); }
.section--light .vstep p { color: var(--ink-500); }
.section--light .vstep__n { background: rgba(14,156,156,0.1); color: var(--teal-ink); }

/* ============================================================
   PROVA / TRUST STRIP (com marcadores TODO)
   ============================================================ */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--r-lg); overflow: hidden; }
@media (max-width: 720px) { .trust { grid-template-columns: 1fr 1fr; } }
.trust__cell { background: var(--petrol-900); padding: 24px; display: grid; gap: 6px; text-align: center; place-items: center; }
.trust__v { font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -0.03em; }
.trust__l { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.trust__todo { font-size: 10.5px; color: var(--warning); background: rgba(242,179,61,0.1); border: 1px dashed rgba(242,179,61,0.4); border-radius: 6px; padding: 2px 7px; }
.trust__intro { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0 0 20px; display: flex; align-items: center; gap: 8px; }
.trust__intro svg { width: 15px; height: 15px; color: var(--warning); }

/* ============================================================
   IN100 BLOCO HOME
   ============================================================ */
.in100 { position: relative; overflow: hidden; }
.in100__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 980px) { .in100__inner { grid-template-columns: 1fr; gap: 40px; } }
.in100__badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(20,192,190,0.1); border: 1px solid rgba(20,192,190,0.25); color: var(--teal-300); font-size: 12.5px; font-weight: 600; width: fit-content; }
.in100__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
@media (max-width: 520px) { .in100__list { grid-template-columns: 1fr; } }
.in100__item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.78); }
.in100__item svg { width: 17px; height: 17px; color: var(--teal-400); flex-shrink: 0; margin-top: 1px; }

/* IN100 result mock */
.in100-mock { border-radius: var(--r-xl); overflow: hidden; background: var(--black-1000); border: 1px solid var(--line-dark-2); box-shadow: var(--sh-mockup); }
.in100-mock__h { padding: 14px 18px; background: var(--petrol-800); border-bottom: 1px solid var(--line-dark); display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; }
.in100-mock__h .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-400); box-shadow: 0 0 8px var(--green-400); }
.in100-mock__body { padding: 18px; display: grid; gap: 10px; }
.in100-mock__row { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--line-dark); border-radius: 10px; font-size: 12.5px; }
.in100-mock__k { color: rgba(255,255,255,0.5); }
.in100-mock__val { font-weight: 600; }
.in100-mock__cta { margin-top: 4px; display: flex; gap: 8px; }
.in100-mock__chip { font-size: 11px; padding: 6px 11px; border-radius: 999px; background: rgba(20,192,190,0.12); color: var(--teal-300); font-weight: 600; }
.in100-mock__chip--g { background: rgba(31,185,93,0.14); color: var(--green-300); }

/* ============================================================
   SOLUÇÕES RESUMO (home) — cards com link
   ============================================================ */
.sol__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 980px) { .sol__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .sol__grid { grid-template-columns: 1fr; } }
.sol__card { padding: 22px; border-radius: var(--r-lg); background: var(--offwhite); border: 1px solid var(--line); display: grid; gap: 10px; align-content: start; transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease); }
.sol__card:hover { transform: translateY(-4px); border-color: var(--teal-500); box-shadow: 0 20px 40px -24px rgba(14,156,156,0.25); }
.sol__ic { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(150deg, var(--petrol-800), var(--petrol-900)); color: var(--teal-400); display: grid; place-items: center; }
.sol__card h3 { font-size: 16px; font-weight: 600; margin: 0; letter-spacing: -0.012em; }
.sol__card p { font-size: 13px; color: var(--ink-500); margin: 0; line-height: 1.45; }
.sol__link { margin-top: auto; font-size: 13px; font-weight: 600; color: var(--teal-ink); display: inline-flex; align-items: center; gap: 6px; }
.sol__link svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.sol__card:hover .sol__link svg { transform: translateX(3px); }

/* ============================================================
   ARTIGO / CONTEÚDO
   ============================================================ */
.article { max-width: 760px; margin: 0 auto; }
.article__meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--ink-400); margin: 18px 0 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.article__meta b { color: var(--ink-700); font-weight: 600; }
.article__body { font-size: 16.5px; line-height: 1.7; color: var(--ink-700); }
.article__body h2 { font-size: 26px; margin: 40px 0 14px; letter-spacing: -0.02em; color: var(--ink-900); }
.article__body h3 { font-size: 20px; margin: 28px 0 10px; color: var(--ink-900); }
.article__body p { margin: 0 0 18px; }
.article__body ul { display: grid; gap: 10px; margin: 0 0 20px; padding-left: 4px; }
.article__body li { display: flex; gap: 10px; align-items: flex-start; }
.article__body li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal-500); flex-shrink: 0; margin-top: 9px; }
.article__body a { color: var(--teal-ink); font-weight: 500; border-bottom: 1px solid rgba(14,156,156,0.3); }
.article__body a:hover { border-color: var(--teal-ink); }
.article__tldr { padding: 20px 24px; background: var(--paper-2); border-radius: var(--r-lg); margin: 0 0 32px; }
.article__tldr h2 { font-size: 15px !important; margin: 0 0 8px !important; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal-ink); }
.article__tldr p { margin: 0; font-size: 15px; color: var(--ink-700); }
.article__cta { margin: 36px 0; padding: 26px; border-radius: var(--r-xl); background: var(--petrol-900); color: #fff; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.article__cta p { margin: 0; flex: 1; min-width: 240px; font-size: 16px; }
.article__source { font-size: 13px; color: var(--ink-400); margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); }
.article__source a { color: var(--teal-ink); }

/* Content hub cards */
.hub__cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.hub__cat { padding: 8px 15px; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; }
.hub__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .hub__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hub__grid { grid-template-columns: 1fr; } }
.hub__card { display: grid; gap: 10px; padding: 24px; border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)); border: 1px solid var(--line-dark); align-content: start; transition: transform .2s var(--ease), border-color .2s var(--ease); }
.hub__card:hover { transform: translateY(-4px); border-color: var(--teal-500); }
.hub__card-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal-300); }
.hub__card h3 { font-size: 17px; margin: 0; font-weight: 600; line-height: 1.3; letter-spacing: -0.012em; }
.hub__card p { font-size: 13.5px; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.5; }
.hub__card .sol__link { color: var(--teal-300); }

/* Two-col generic content (sobre/seguranca) */
.prose { max-width: 780px; }
.prose h2 { font-size: 24px; margin: 40px 0 14px; letter-spacing: -0.02em; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.72); margin: 0 0 18px; }
.section--light .prose p { color: var(--ink-500); }
.prose ul { display: grid; gap: 10px; margin: 0 0 20px; }
.prose li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,0.72); }
.section--light .prose li { color: var(--ink-500); }
.prose li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal-500); flex-shrink: 0; margin-top: 9px; }

/* Contact form */
.form { display: grid; gap: 16px; max-width: 560px; }
.form__row { display: grid; gap: 7px; }
.form__row label { font-size: 13px; font-weight: 600; color: var(--ink-700); }
.section--dark .form__row label, .section--petrol .form__row label { color: rgba(255,255,255,0.8); }
.form__row input, .form__row textarea, .form__row select { font-family: inherit; font-size: 15px; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line-2); background: #fff; color: var(--ink-900); }
.section--dark .form__row input, .section--dark .form__row textarea, .section--dark .form__row select { background: rgba(255,255,255,0.04); border-color: var(--line-dark-2); color: #fff; }
.form__row input:focus, .form__row textarea:focus { outline: 2px solid var(--teal-400); border-color: transparent; }

/* Info note (compliance) */
.note-box { padding: 18px 22px; border-radius: var(--r-md); background: rgba(59,167,214,0.07); border: 1px solid rgba(59,167,214,0.2); font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.72); display: flex; gap: 12px; align-items: flex-start; }
.note-box svg { width: 20px; height: 20px; color: var(--neon); flex-shrink: 0; margin-top: 1px; }
.section--light .note-box { color: var(--ink-500); }
.note-box--warn { background: rgba(242,179,61,0.08); border-color: rgba(242,179,61,0.25); }
.note-box--warn svg { color: var(--warning); }

/* 404 */
.err { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 40px; background: var(--petrol-900); }
.err__code { font-size: clamp(80px, 16vw, 180px); font-weight: 700; letter-spacing: -0.05em; line-height: 1; background: linear-gradient(100deg, var(--teal-300), var(--neon)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.err img { width: 120px; margin: 0 auto 20px; }

/* ============================================================
   MEGA-MENU / DROPDOWN NAV
   ============================================================ */
.hdr__nav { align-items: center; }
.nav-item { position: relative; }
.nav-item > a, .nav-item__btn { display: inline-flex; align-items: center; gap: 5px; padding: 8px 13px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.7); transition: all .2s var(--ease); background: none; cursor: pointer; }
.nav-item > a:hover, .nav-item__btn:hover, .nav-item:hover .nav-item__btn, .nav-item:focus-within .nav-item__btn { color: #fff; background: rgba(255,255,255,0.06); }
.nav-item__btn svg { width: 13px; height: 13px; opacity: .7; transition: transform .2s var(--ease); }
.nav-item:hover .nav-item__btn svg, .nav-item:focus-within .nav-item__btn svg { transform: rotate(180deg); }
.nav-item__panel { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 300px; background: rgba(9,20,25,0.96); backdrop-filter: blur(20px) saturate(140%); border: 1px solid var(--line-dark-2); border-radius: var(--r-lg); padding: 10px; box-shadow: 0 24px 60px -20px rgba(0,0,0,0.7); opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease); z-index: 30; display: grid; gap: 2px; }
.nav-item__panel--wide { min-width: 340px; }
.nav-item:hover .nav-item__panel, .nav-item:focus-within .nav-item__panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-item__panel::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-link { display: flex; gap: 11px; align-items: flex-start; padding: 10px 12px; border-radius: 12px; transition: background .18s var(--ease); }
.nav-link:hover { background: rgba(20,192,190,0.08); }
.nav-link__ic { width: 30px; height: 30px; border-radius: 9px; background: rgba(20,192,190,0.1); color: var(--teal-400); display: grid; place-items: center; flex-shrink: 0; }
.nav-link__ic svg { width: 16px; height: 16px; }
.nav-link__t { font-size: 13.5px; font-weight: 600; color: #fff; }
.nav-link__d { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 1px; line-height: 1.35; }

/* Mobile menu accordion groups */
.mm-group { border-bottom: 1px solid var(--line-dark); }
.mm-group__head { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 14px; font-size: 15px; font-weight: 600; color: #fff; background: none; text-align: left; }
.mm-group__head svg { width: 16px; height: 16px; opacity: .6; transition: transform .2s var(--ease); }
.mm-group--open .mm-group__head svg { transform: rotate(180deg); }
.mm-group__body { display: none; padding: 0 8px 10px; }
.mm-group--open .mm-group__body { display: grid; gap: 2px; }
.mm-group__body a { padding: 10px 12px; font-size: 14px; color: rgba(255,255,255,0.72); border-radius: 10px; }

/* ============================================================
   STATUS PILL
   ============================================================ */
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.01em; background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark-2); color: rgba(255,255,255,0.8); }
.status-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.status-pill--disponivel { color: var(--green-300); background: rgba(31,185,93,0.1); border-color: rgba(31,185,93,0.3); }
.status-pill--piloto { color: var(--teal-300); background: rgba(20,192,190,0.1); border-color: rgba(20,192,190,0.3); }
.status-pill--validacao { color: var(--warning); background: rgba(242,179,61,0.1); border-color: rgba(242,179,61,0.3); }

/* Journey strip */
.journey { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-dark); }
.journey__step { flex: 1; min-width: 130px; padding: 20px 18px; background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); border-right: 1px solid var(--line-dark); display: grid; gap: 6px; align-content: start; }
.journey__step:last-child { border-right: none; }
.journey__n { font-size: 11px; color: var(--teal-300); font-weight: 700; letter-spacing: 0.05em; }
.journey__t { font-size: 15px; font-weight: 600; }
.journey__d { font-size: 12.5px; color: rgba(255,255,255,0.58); line-height: 1.4; }
@media (max-width: 760px){ .journey__step { flex: 1 1 45%; border-bottom: 1px solid var(--line-dark); } }

/* Checklist / do-dont */
.dd { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 720px){ .dd { grid-template-columns: 1fr; } }
.dd__col { padding: 24px; border-radius: var(--r-lg); border: 1px solid var(--line-dark); }
.dd__col--no { background: rgba(242,109,109,0.05); border-color: rgba(242,109,109,0.2); }
.dd__col--yes { background: rgba(31,185,93,0.05); border-color: rgba(31,185,93,0.22); }
.dd__col h3 { font-size: 15px; margin: 0 0 14px; display: flex; align-items: center; gap: 9px; }
.dd__col ul { display: grid; gap: 10px; }
.dd__col li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.45; color: rgba(255,255,255,0.8); }
.dd__col li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.dd__col--no li svg { color: var(--danger); }
.dd__col--yes li svg { color: var(--green-400); }

/* ============================================================
   PUGGYSHOP
   ============================================================ */
.shop-hero { display:grid; grid-template-columns:1.05fr 0.95fr; gap:48px; align-items:center; }
@media (max-width:980px){ .shop-hero { grid-template-columns:1fr; gap:40px; } }
.shop-cashback { display:flex; align-items:center; gap:16px; padding:18px 20px; border-radius:var(--r-lg); background:linear-gradient(135deg, rgba(31,185,93,0.12), rgba(20,192,190,0.06)); border:1px solid rgba(31,185,93,0.25); }
.shop-cashback__ic { width:44px; height:44px; border-radius:12px; background:rgba(31,185,93,0.16); color:var(--green-300); display:grid; place-items:center; flex-shrink:0; }
.shop-cashback__l { font-size:12px; color:rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:0.05em; font-weight:600; }
.shop-cashback__v { font-size:22px; font-weight:700; letter-spacing:-0.02em; color:#fff; }
.shop-cashback__v span { font-size:13px; font-weight:500; color:rgba(255,255,255,0.5); }

/* Partner grid */
.partners { display:grid; grid-template-columns:repeat(5,1fr); gap:12px; }
@media (max-width:900px){ .partners { grid-template-columns:repeat(3,1fr); } }
@media (max-width:520px){ .partners { grid-template-columns:repeat(2,1fr); } }
.partner { position:relative; aspect-ratio:1.5; border-radius:var(--r-md); background:var(--white); border:1px solid var(--line); display:grid; place-items:center; padding:14px; transition:transform .2s var(--ease), box-shadow .2s var(--ease); }
.partner:hover { transform:translateY(-3px); box-shadow:0 16px 32px -20px rgba(0,0,0,0.4); }
.partner__name { font-size:15px; font-weight:700; letter-spacing:-0.02em; text-align:center; }
.partner__cb { position:absolute; top:8px; right:8px; font-size:10px; font-weight:700; padding:3px 7px; border-radius:999px; background:rgba(31,185,93,0.14); color:var(--teal-700); }
.partner--ph { background:var(--paper-2); border-style:dashed; }
.partner--ph .partner__name { color:var(--ink-300); font-weight:600; font-size:13px; }

/* Coupon states */
.coupons { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
@media (max-width:820px){ .coupons { grid-template-columns:1fr; } }
.coupon { border-radius:var(--r-lg); border:1px dashed var(--line-dark-2); background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)); padding:20px; display:grid; gap:10px; }
.coupon__top { display:flex; align-items:center; justify-content:space-between; gap:10px; }
.coupon__store { font-size:15px; font-weight:700; }
.coupon__state { font-size:10.5px; font-weight:700; padding:4px 9px; border-radius:999px; letter-spacing:0.02em; }
.coupon__state--online { background:rgba(20,192,190,0.14); color:var(--teal-300); }
.coupon__state--fisica { background:rgba(59,167,214,0.14); color:var(--neon); }
.coupon__state--pend { background:rgba(242,179,61,0.14); color:var(--warning); }
.coupon__state--val { background:rgba(31,185,93,0.14); color:var(--green-300); }
.coupon__offer { font-size:20px; font-weight:700; letter-spacing:-0.02em; color:#fff; }
.coupon__code { font-family:ui-monospace,Menlo,monospace; font-size:13px; letter-spacing:0.1em; padding:8px 12px; border-radius:8px; background:rgba(0,0,0,0.3); border:1px solid var(--line-dark); color:var(--teal-200); display:flex; justify-content:space-between; align-items:center; }
.coupon__rule { font-size:11.5px; color:rgba(255,255,255,0.5); }

/* Recompensa comparison */
.rewards-tbl { width:100%; border-collapse:collapse; font-size:14px; }
.rewards-tbl th, .rewards-tbl td { text-align:left; padding:14px 16px; border-bottom:1px solid var(--line-dark); vertical-align:top; }
.rewards-tbl thead th { font-size:11px; text-transform:uppercase; letter-spacing:0.06em; color:var(--teal-300); font-weight:700; }
.rewards-tbl td:first-child { font-weight:600; color:#fff; white-space:nowrap; }
.rewards-tbl td { color:rgba(255,255,255,0.7); line-height:1.45; }
.rewards-scroll { overflow-x:auto; border:1px solid var(--line-dark); border-radius:var(--r-lg); }
.rewards-scroll table { min-width:640px; }

/* ============================================================
   TESTE GRÁTIS — selo e faixa
   ============================================================ */
.trial-badge { display:inline-flex; align-items:center; gap:7px; padding:5px 12px 5px 10px; border-radius:999px; background:rgba(31,185,93,0.1); border:1px solid rgba(31,185,93,0.3); color:var(--green-300); font-size:12px; font-weight:600; letter-spacing:0.01em; white-space:nowrap; }
.trial-badge::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--green-400); box-shadow:0 0 8px var(--green-400); }
.trial-badge--sm { padding:3px 9px 3px 8px; font-size:11px; }
.hdr__trial { margin-right:2px; }
@media (max-width:1180px){ .hdr__trial { display:none; } }
.trial-note { display:inline-flex; align-items:center; gap:8px; margin-top:12px; font-size:13.5px; color:var(--green-300); font-weight:500; }
.trial-note svg { width:16px; height:16px; flex-shrink:0; }


/* ============================================================
   NORMALIZAÇÃO DE CONTRASTE — textos, ícones e estados
   ============================================================ */
:is(.hero, .subhero, .page-hero, .section--dark, .section--darker, .section--petrol) { color: #F7FBFC; }
:is(.hero, .subhero, .page-hero, .section--dark, .section--darker, .section--petrol) :is(h1, h2, h3, h4, h5, h6):not(.grad-text):not(.teal-text) { color: #FFFFFF; }
:is(.hero, .subhero, .page-hero, .section--dark, .section--darker, .section--petrol) :is(.lead, .body-copy, .section-head__copy, .muted) { color: rgba(235, 244, 247, 0.76); }
:is(.hero, .subhero, .page-hero, .section--dark, .section--darker, .section--petrol) :is(.eyebrow, .kicker, .overline) { color: var(--teal-300); }
.section--light { color: var(--ink-900); }
.section--light :is(h1, h2, h3, h4, h5, h6):not(.grad-text):not(.teal-text) { color: var(--ink-900); }
.section--light :is(.lead, .body-copy, .section-head__copy, .muted) { color: var(--ink-500); }
.section--light :is(.eyebrow, .kicker, .overline) { color: var(--teal-ink); }
:is(.icon, [class$="__icon"], [class*="__icon "]) svg { color: inherit; }
.btn--primary { color: var(--petrol-900); }
.btn--wa { color: #FFFFFF; }
.btn--ghost, .btn--ghost-line { color: #FFFFFF; }
.section--light :is(.btn--ghost, .btn--ghost-line) { color: var(--ink-900); border-color: var(--line-2); }

/* FAQ em fundo escuro: evita texto invisível */
:is(.section--dark, .section--darker, .section--petrol) .faq__grid { border-top-color: var(--line-dark-2); }
:is(.section--dark, .section--darker, .section--petrol) .faq__item { border-bottom-color: var(--line-dark-2); }
:is(.section--dark, .section--darker, .section--petrol) .faq__q { color: #FFFFFF; }
:is(.section--dark, .section--darker, .section--petrol) .faq__a { color: rgba(235, 244, 247, 0.76); }
:is(.section--dark, .section--darker, .section--petrol) .faq__q-ic { background: rgba(255,255,255,0.08); color: var(--teal-300); border: 1px solid var(--line-dark-2); }

/* Cabeçalho fixo: reserva segura para navegação por âncoras */
html { scroll-padding-top: 118px; }
main :is(section, article, div)[id] { scroll-margin-top: 118px; }
.hdr--scrolled {
  padding: 8px 0;
  background: rgba(7, 16, 20, 0.96);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 12px 32px -18px rgba(0,0,0,0.75);
}
@media (max-width: 720px) {
  html { scroll-padding-top: 92px; }
  main :is(section, article, div)[id] { scroll-margin-top: 92px; }
  .hdr--scrolled { padding: 6px 0; }
}

/* PuggyConsig by PuggyWare */
.ftr__credit {
  flex: 0 0 100%; width: 100%; margin: 14px 0 0;
  padding-top: 14px; border-top: 1px solid var(--line-dark);
  color: rgba(255,255,255,0.58); font-size: 12.5px; line-height: 1.5;
  letter-spacing: 0.01em;
}
.puggyware-story { padding: 92px 0; background: var(--offwhite); color: var(--ink-900); }
.puggyware-story__card {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 56px;
  padding: clamp(30px, 5vw, 64px); border: 1px solid var(--line); border-radius: var(--r-xl);
  background: #FFFFFF; box-shadow: var(--sh-soft);
}
.puggyware-story__label { color: var(--teal-ink); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.puggyware-story h2 { margin: 14px 0 0; color: var(--ink-900); font-size: clamp(34px, 4vw, 58px); line-height: 1.02; letter-spacing: -.04em; }
.puggyware-story__copy { display: grid; gap: 18px; align-content: center; }
.puggyware-story__copy p { margin: 0; color: var(--ink-500); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; }
.puggyware-story__copy strong { color: var(--ink-900); }
@media (max-width: 820px) {
  .puggyware-story { padding: 64px 0; }
  .puggyware-story__card { grid-template-columns: 1fr; gap: 24px; }
}

/* Cards claros dentro de seções escuras: contraste interno correto */
:is(.section--dark, .section--darker, .section--petrol) :is(.market__card, .feat__card, .prod__card, .ben__card, .sol__card) { color: var(--ink-900); }
:is(.section--dark, .section--darker, .section--petrol) :is(.market__card, .feat__card, .prod__card, .ben__card, .sol__card) :is(h2, h3, h4, h5, h6) { color: var(--ink-900); }
:is(.section--dark, .section--darker, .section--petrol) :is(.market__card, .feat__card, .prod__card, .ben__card, .sol__card) :is(p, .muted) { color: var(--ink-500); }
:is(.section--dark, .section--darker, .section--petrol) :is(.market__card, .feat__card, .prod__card, .ben__card, .sol__card) .sol__link { color: var(--teal-ink); }
/* sol__card em seção escura: vence a normalização global de headings (0,3,1) */
:is(.section--dark, .section--darker, .section--petrol) .sol__card :is(h1,h2,h3,h4,h5,h6):not(.grad-text):not(.teal-text) { color: var(--ink-900); }
:is(.section--dark, .section--darker, .section--petrol) .sol__card p { color: var(--ink-500); }
:is(.section--dark, .section--darker, .section--petrol) .sol__card .sol__link { color: var(--teal-ink); }

/* ============================================================
   CONTEÚDOS — hub filtros, destaque, artigos
   ============================================================ */
.hub__chips { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px; }
.chip-filter { display:inline-flex; align-items:center; gap:8px; padding:9px 16px; border-radius:var(--r-pill); background:rgba(255,255,255,0.05); border:1px solid var(--line-dark-2); color:rgba(255,255,255,0.78); font-size:13.5px; font-weight:600; font-family:inherit; cursor:pointer; transition:all .2s var(--ease); }
.chip-filter:hover { border-color:rgba(20,192,190,0.5); color:#fff; }
.chip-filter:focus-visible { outline:2px solid var(--teal-400); outline-offset:2px; }
.chip-filter[aria-pressed="true"] { background:var(--teal-500); border-color:var(--teal-500); color:var(--petrol-900); }
.hub__card { position:relative; }
.hub__card-meta { display:flex; align-items:center; gap:8px; font-size:12px; color:rgba(255,255,255,0.55); margin-top:2px; }
.hub__card-meta svg { width:13px; height:13px; color:var(--teal-300); }
.hub__card p { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.hub__card[hidden] { display:none; }
.hub__featured { margin-bottom:44px; }
.hub__featured-head { display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.hub__featured-head .eyebrow { margin:0; }
.hub__featured-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
@media (max-width:880px){ .hub__featured-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .hub__featured-grid { grid-template-columns:1fr; } }
.hub__card--feat { background:linear-gradient(180deg, rgba(20,192,190,0.09), rgba(255,255,255,0.012)); border-color:rgba(20,192,190,0.28); }
.hub__card--feat .hub__card-cat { color:var(--teal-300); }
.hub__count { font-size:13px; color:rgba(255,255,255,0.5); margin:0 0 20px; }

/* Artigo — índice e caixas */
.article__lead { font-size:clamp(16px,1.5vw,19px); line-height:1.55; color:var(--ink-500); margin:0 0 8px; }
.article__index { background:var(--paper-2); border:1px solid var(--line); border-radius:var(--r-lg); padding:20px 24px; margin:0 0 32px; }
.article__index h2 { font-size:13px !important; text-transform:uppercase; letter-spacing:0.06em; color:var(--teal-ink); margin:0 0 12px !important; }
.article__index ol { margin:0; padding:0; list-style:none; display:grid; gap:8px; counter-reset:idx; }
.article__index li { counter-increment:idx; }
.article__index a { display:flex; gap:10px; align-items:baseline; font-size:14.5px; color:var(--ink-700); border-bottom:none; }
.article__index a::before { content:counter(idx,decimal-leading-zero); font-size:12px; font-weight:700; color:var(--teal-ink); flex-shrink:0; }
.article__index a:hover { color:var(--teal-ink); }
.callout { border-radius:var(--r-md); padding:18px 20px; margin:22px 0; display:grid; gap:6px; border:1px solid var(--line); background:var(--paper-2); }
.callout__t { display:flex; align-items:center; gap:9px; font-size:13px; font-weight:700; letter-spacing:0.01em; margin:0; }
.callout__t svg { width:17px; height:17px; flex-shrink:0; }
.callout p, .callout ul { margin:0; }
.callout ul { display:grid; gap:8px; padding-left:2px; }
.callout li { display:flex; gap:9px; align-items:flex-start; }
.callout li::before { content:""; width:6px; height:6px; border-radius:50%; flex-shrink:0; margin-top:8px; }
.callout--pratica { background:rgba(20,192,190,0.07); border-color:rgba(20,192,190,0.22); }
.callout--pratica .callout__t { color:var(--teal-ink); }
.callout--pratica li::before { background:var(--teal-500); }
.callout--atencao { background:rgba(242,179,61,0.08); border-color:rgba(242,179,61,0.28); }
.callout--atencao .callout__t { color:#b5791a; }
.callout--atencao li::before { background:var(--warning); }
.callout--check { background:rgba(31,185,93,0.07); border-color:rgba(31,185,93,0.24); }
.callout--check .callout__t { color:#158a45; }
.callout--check li::before { background:var(--green-500); }
.article__sources { margin:32px 0; padding:22px 24px; border-radius:var(--r-lg); background:var(--paper-2); border:1px solid var(--line); }
.article__sources h2 { font-size:16px !important; margin:0 0 12px !important; color:var(--ink-900); }
.article__sources ul { display:grid; gap:10px; margin:0; padding:0; list-style:none; }
.article__sources li { display:flex; gap:9px; align-items:flex-start; font-size:14px; line-height:1.45; }
.article__sources li svg { width:15px; height:15px; color:var(--teal-ink); flex-shrink:0; margin-top:3px; }
.article__sources a { color:var(--teal-ink); font-weight:500; word-break:break-word; }
.article__disclaimer { font-size:12.5px; line-height:1.55; color:var(--ink-400); margin:0; padding-top:16px; border-top:1px solid var(--line); }
.readalso { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
@media (max-width:780px){ .readalso { grid-template-columns:1fr; } }

/* Cards feat__card claros dentro de secoes escuras: contraste interno correto */
:is(.section--dark, .section--darker, .section--petrol) .feat__card :is(h3,h4):not(.grad-text):not(.teal-text) { color: var(--ink-900); }
:is(.section--dark, .section--darker, .section--petrol) .feat__card p { color: var(--ink-500); }
:is(.section--dark, .section--darker, .section--petrol) .feat__card a,
:is(.section--dark, .section--darker, .section--petrol) .feat__card a:hover,
:is(.section--dark, .section--darker, .section--petrol) .feat__card a:focus-visible { color: var(--teal-ink); }
