@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #f3f7f8;
  --bg-2: #eef4f6;
  --card: #ffffff;
  --ink: #0f1b2d;
  --muted: #5f7186;
  --line: #e6ecf2;
  --line-2: #eef2f6;

  --brand: #0d9488;        /* teal */
  --brand-2: #14b8a6;
  --brand-ink: #0f766e;
  --brand-soft: #d6f2ee;

  --accent: #f97316;       /* coral/laranja */
  --accent-ink: #c2410c;
  --accent-soft: #ffe9d6;

  --ok: #16a34a;
  --danger: #e2495b;

  --grad: linear-gradient(135deg, #0d9488 0%, #17b8a6 100%);
  --grad-soft: linear-gradient(135deg, #e7f7f4 0%, #eaf3ff 100%);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 16px 40px rgba(15, 27, 45, 0.10);
  --shadow-sm: 0 4px 14px rgba(15, 27, 45, 0.06);
  --shadow-pop: 0 24px 60px rgba(13, 148, 136, 0.20);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Space Grotesk', 'Plus Jakarta Sans', -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* textura sutil (2%) — tira o ar de "template limpo demais" */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background:
    radial-gradient(760px 320px at 88% -6%, #d3efe9 0%, rgba(211,239,233,0) 62%),
    radial-gradient(680px 300px at -8% -4%, #e7efe6 0%, rgba(231,239,230,0) 60%);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: var(--brand-ink); }
h1, h2, h3 { letter-spacing: -0.02em; }
h1, h2 { font-family: var(--font-display); letter-spacing: -0.03em; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 40;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--ink); text-decoration: none; letter-spacing: -0.03em; }
.brand .logo {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad); box-shadow: 0 6px 16px rgba(13, 148, 136, 0.35);
  display: grid; place-items: center; color: #fff; font-size: 18px;
}
.brand .logo svg { width: 19px; height: 19px; }
.nav { display: flex; align-items: center; gap: 20px; font-size: 14.5px; font-weight: 600; }
.nav a { color: var(--muted); text-decoration: none; white-space: nowrap; transition: color .15s; }
.nav a:hover { color: var(--ink); }
.nav-account {
  appearance: none; border: none; background: var(--grad); color: #fff;
  font-family: inherit; font-weight: 700; font-size: 14px; padding: 9px 18px; border-radius: 999px;
  cursor: pointer; white-space: nowrap; box-shadow: 0 6px 16px rgba(13, 148, 136, 0.28); transition: transform .12s, box-shadow .15s;
}
.nav-account:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(13, 148, 136, 0.34); }
.nav-account.is-pro { background: var(--ink); box-shadow: 0 6px 16px rgba(15, 27, 45, 0.25); }
.nav-toggle { display: none; appearance: none; border: none; background: none; font-size: 26px; line-height: 1; cursor: pointer; color: var(--ink); padding: 4px 6px; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 8px 0; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 20px; border-bottom: 1px solid var(--line-2); color: var(--ink); }
  .nav-account { margin: 12px 20px 8px; text-align: center; }
}

/* ---------- Hero ---------- */
.hero { padding: 58px 0 10px; text-align: center; position: relative; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--brand-ink); border: 1px solid var(--brand-soft);
  font-size: 13px; font-weight: 700; padding: 7px 14px; border-radius: 999px;
  margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.hero h1 { font-size: clamp(30px, 5.4vw, 52px); line-height: 1.06; margin: 0 0 16px; font-weight: 800; }
.hero h1 .hl { background: linear-gradient(120deg, var(--brand) 10%, var(--brand-2) 60%, #22b0d6 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { color: var(--muted); font-size: clamp(16px, 2.3vw, 20px); max-width: 660px; margin: 0 auto; font-weight: 500; }
.trust-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 22px 0 4px; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-size: 13px; font-weight: 600; background: #fff; border: 1px solid var(--line); padding: 8px 13px; border-radius: 999px; box-shadow: var(--shadow-sm); }

/* ---------- Tool card ---------- */
.tool { margin-top: 30px; margin-bottom: 10px; }
.tool-card { background: var(--card); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
@media (max-width: 820px) { .tool-grid { grid-template-columns: 1fr; } }

.panel { padding: 24px; }
.panel + .panel { border-left: 1px solid var(--line); background: linear-gradient(180deg, #fbfdfd, #ffffff); }
@media (max-width: 820px) { .panel + .panel { border-left: none; border-top: 1px solid var(--line); } }
.panel h2 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-ink); margin: 0 0 14px; font-weight: 800; }

/* Doc selector */
.docs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.doc-chip { border: 1.5px solid var(--line); background: #fff; color: var(--ink); padding: 8px 13px; border-radius: 999px; font-size: 13px; cursor: pointer; font-weight: 700; font-family: inherit; transition: all .15s; }
.doc-chip:hover { border-color: var(--brand); color: var(--brand-ink); }
.doc-chip.active { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 6px 14px rgba(13, 148, 136, 0.3); }
.doc-meta { font-size: 13.5px; color: var(--muted); margin: -2px 0 16px; }
.doc-meta b { color: var(--ink); }

/* Upload */
.dropzone { border: 2px dashed #cbd8e2; border-radius: 16px; padding: 30px 16px; text-align: center; cursor: pointer; transition: all .15s; background: #fafcfd; }
.dropzone:hover, .dropzone.drag { border-color: var(--brand); background: var(--brand-soft); }
.dropzone .ic { font-size: 34px; }
.dropzone p { margin: 10px 0 2px; font-weight: 700; }
.dropzone small { color: var(--muted); }
.upload-actions { display: flex; gap: 10px; margin-top: 12px; }

/* Editor */
.stage { position: relative; margin: 0 auto; touch-action: none; border-radius: 12px; overflow: hidden; background: #eef2f6; box-shadow: inset 0 0 0 1px var(--line); }
.stage canvas { display: block; width: 100%; height: auto; }
.guide-oval { position: absolute; inset: 0; pointer-events: none; }
.controls { margin-top: 16px; display: grid; gap: 13px; }
.ctrl-row { display: flex; align-items: center; gap: 10px; }
.ctrl-row label { font-size: 13px; color: var(--muted); min-width: 54px; font-weight: 600; }
input[type="range"] { flex: 1; accent-color: var(--brand); }
.btn-row { display: flex; gap: 8px; flex-wrap: wrap; }
.bg-opts { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.swatch { width: 28px; height: 28px; border-radius: 8px; border: 2px solid var(--line); cursor: pointer; }
.swatch.active { border-color: var(--ink); box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--brand); }
.toggle { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; font-weight: 700; }
.toggle input { width: 42px; height: 23px; accent-color: var(--brand); }

/* Buttons */
.btn { appearance: none; border: none; cursor: pointer; font-family: inherit; font-weight: 700; border-radius: 12px; padding: 12px 18px; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: transform .08s, box-shadow .15s, background .15s, filter .15s; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 22px rgba(13, 148, 136, 0.26); }
.btn-primary:hover { filter: brightness(1.04); transform: translateY(-1px); box-shadow: 0 14px 28px rgba(13, 148, 136, 0.32); }
.btn-ghost { background: #eef3f5; color: var(--ink); }
.btn-ghost:hover { background: #e3ebee; }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 20px; font-size: 16px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* Preview */
.preview-box { background: repeating-conic-gradient(#f1f5f8 0% 25%, #fff 0% 50%) 50% / 22px 22px; border: 1px solid var(--line); border-radius: 14px; min-height: 270px; display: grid; place-items: center; padding: 16px; position: relative; }
.preview-box .placeholder { color: var(--muted); text-align: center; font-size: 14px; background: rgba(255,255,255,.85); padding: 10px 16px; border-radius: 10px; }
.preview-box canvas, .preview-box img { max-height: 360px; width: auto; border-radius: 8px; box-shadow: var(--shadow); }
.price-tag { text-align: center; margin: 16px 0 4px; }
.price-tag .old { color: var(--muted); text-decoration: line-through; font-size: 14px; margin-right: 8px; }
.price-tag .now { font-size: 34px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.price-tag .now small { font-size: 15px; font-weight: 700; color: var(--muted); }
.price-note { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 2px; }
.deliver-list { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 9px; font-size: 14.5px; }
.deliver-list li { display: flex; gap: 10px; align-items: flex-start; }
.deliver-list .ck { color: #fff; background: var(--brand); width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ---------- Modal ---------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(15, 27, 45, 0.55); backdrop-filter: blur(3px); display: none; place-items: center; z-index: 100; padding: 16px; }
.modal-backdrop.open { display: grid; }
.modal { background: #fff; border-radius: 22px; max-width: 430px; width: 100%; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4); overflow: hidden; animation: pop .2s ease; }
@keyframes pop { from { transform: scale(.96) translateY(6px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.modal-head { padding: 20px 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; background: var(--grad-soft); }
.modal-head h3 { margin: 0; font-size: 17px; font-weight: 800; }
.modal-head .x { cursor: pointer; color: var(--muted); font-size: 24px; background: none; border: none; line-height: 1; }
.modal-body { padding: 22px; text-align: center; }
.fld { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; font-size: 15px; margin-bottom: 10px; font-family: inherit; background: #fff; transition: border .15s, box-shadow .15s; }
.fld:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
.form-err { color: var(--danger); font-size: 13px; min-height: 18px; margin-bottom: 6px; text-align: left; font-weight: 600; }
.qr-img { width: 224px; height: 224px; margin: 4px auto 14px; border: 1px solid var(--line); border-radius: 14px; padding: 10px; background: #fff; }
.copia { display: flex; gap: 6px; }
.copia input { flex: 1; font-size: 12px; padding: 12px; border: 1.5px solid var(--line); border-radius: 10px; font-family: ui-monospace, monospace; background: #f7fafb; }
.pix-status { margin-top: 16px; font-size: 14px; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; }
.spinner { width: 16px; height: 16px; border: 2px solid var(--line); border-top-color: var(--brand); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.pix-status.paid { color: var(--brand-ink); font-weight: 800; }

/* Loader overlay */
.busy { position: absolute; inset: 0; background: rgba(255, 255, 255, 0.82); display: none; place-items: center; z-index: 5; border-radius: 12px; }
.busy.on { display: grid; }
.busy .spinner { width: 30px; height: 30px; }

.pro-badge { background: var(--brand-soft); color: var(--brand-ink); font-weight: 800; text-align: center; padding: 12px; border-radius: 12px; margin: 6px 0 14px; }

/* Pacotes de crédito (modal do unlock) */
.ul-packs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.ul-pack { position: relative; border: 1.5px solid var(--line); background: #fff; border-radius: 13px; padding: 13px 10px 11px; cursor: pointer; text-align: center; font-family: inherit; transition: border-color .13s, background .13s, box-shadow .13s; }
.ul-pack b { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); }
.ul-pack .pk-price { display: block; font-size: 18px; font-weight: 800; color: var(--ink); margin-top: 1px; letter-spacing: -0.02em; }
.ul-pack small { display: block; font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.ul-pack:hover { border-color: var(--brand); }
.ul-pack.is-sel { border-color: var(--brand); background: var(--brand-soft); box-shadow: 0 0 0 3px var(--brand-soft); }
.ul-pack .pk-tag { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; padding: 2px 8px; border-radius: 999px; white-space: nowrap; box-shadow: 0 3px 8px rgba(249,115,22,.34); }

/* File list / assinatura */
.filerow { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 10px 13px; background: #f6f9fb; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 6px; font-size: 14px; text-align: left; }
.filerow .rm { background: none; border: none; color: var(--danger); cursor: pointer; font-size: 16px; line-height: 1; }
.sign-pad { border: 2px dashed #cbd8e2; border-radius: 12px; background: #fff; touch-action: none; width: 100%; height: 160px; display: block; }
.sign-stage { position: relative; max-width: 100%; overflow: auto; border: 1px solid var(--line); border-radius: 10px; }
.sign-stage canvas { display: block; max-width: 100%; }
.sign-overlay { position: absolute; border: 1.5px dashed var(--brand); cursor: move; background: rgba(13,148,136,.06); touch-action: none; user-select: none; -webkit-user-select: none; }
.sign-overlay img { width: 100%; height: 100%; display: block; pointer-events: none; -webkit-user-drag: none; }
.sign-overlay::after { content: "✥"; position: absolute; top: -11px; right: -11px; width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 13px; display: grid; place-items: center; box-shadow: 0 2px 6px rgba(13,148,136,.4); }

/* ---------- Tools grid (home) ---------- */
.section-head { text-align: center; margin-bottom: 26px; }
.section-head h2 { font-size: clamp(22px, 3.6vw, 30px); margin: 0 0 8px; font-weight: 800; }
.section-head p { color: var(--muted); margin: 0; font-size: 16px; }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.tool-link { display: flex; gap: 14px; align-items: flex-start; padding: 20px; background: var(--card); border: 1px solid var(--line); border-radius: 18px; text-decoration: none; color: inherit; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s, border-color .15s; }
.tool-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); border-color: transparent; }
.tool-link .ti { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; font-size: 24px; flex-shrink: 0; }
.tool-link h3 { margin: 0 0 4px; font-size: 16.5px; font-weight: 800; }
.tool-link p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.45; }
.tool-link .arrow { margin-left: auto; color: var(--brand); font-weight: 800; align-self: center; }
.ti-teal { background: var(--brand-soft); color: var(--brand-ink); }
.ti-orange { background: var(--accent-soft); color: var(--accent-ink); }
.ti-blue { background: #dbeafe; color: #1d4ed8; }
.ti-violet { background: #ede9fe; color: #6d28d9; }
.ti-rose { background: #ffe4e6; color: #be123c; }

/* ---------- Content sections ---------- */
section.content { padding: 40px 0; }
section.content > h2 { font-size: clamp(22px, 3.6vw, 30px); margin: 0 0 16px; font-weight: 800; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px; box-shadow: var(--shadow-sm); }
.step .n { width: 38px; height: 38px; border-radius: 11px; background: var(--grad); color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: 12px; box-shadow: 0 6px 14px rgba(13,148,136,.28); }
.step h3 { margin: 0 0 6px; font-size: 16.5px; font-weight: 800; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 4px 18px; margin-bottom: 10px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--brand); font-size: 22px; font-weight: 800; }
.faq details[open] summary::after { content: '–'; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq p { color: var(--muted); font-size: 14.5px; }

.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.specs-table th, .specs-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line-2); }
.specs-table th { background: #f6f9fb; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 800; }
.specs-table tr:last-child td { border-bottom: none; }

/* ---------- Footer ---------- */
.site-footer { background: #0c1728; color: #aebccd; padding: 46px 0 34px; margin-top: 30px; font-size: 14px; }
.site-footer a { color: #dbe6f1; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer .cols { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); align-items: start; gap: 30px 26px; }
.site-footer .muted { color: #7c8da0; font-size: 12.5px; margin-top: 30px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }
.fcol { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.fcol.brand-col { grid-column: span 2; max-width: 340px; }
@media (max-width: 560px){ .fcol.brand-col { grid-column: span 1; } }
.fcol b { color: #fff; font-size: 13.5px; margin-bottom: 3px; letter-spacing: .01em; }
.site-footer a { font-size: 13.5px; }
.footer-trust { display:inline-flex; align-items:center; gap:8px; margin-top:14px; color:#9fb0c2; font-size:12.5px; font-weight:600; }
.footer-trust svg { width:16px; height:16px; color:var(--brand-2); flex-shrink:0; }

.toast { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: 13px 20px; border-radius: 12px; font-size: 14px; font-weight: 600; opacity: 0; pointer-events: none; transition: all .25s; z-index: 200; box-shadow: var(--shadow); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hidden { display: none !important; }

/* ============ Ajustes mobile-first ============ */
@media (max-width: 460px) {
  /* inputs de calculadora empilham em telas estreitas */
  .grid2 { grid-template-columns: 1fr !important; }
  .row2 { grid-template-columns: 1fr !important; }
  .hero { padding-top: 34px; }
  .hero-drop { padding: 20px 14px; }
  .tool-card { padding: 18px !important; }
  /* alvos de toque maiores */
  .btn { padding: 13px 18px; }
  .doc-chip { padding: 9px 14px; }
}

/* ============ Ícones (SVG de linha, sem emoji) ============ */
.ico { width: 1.15em; height: 1.15em; vertical-align: -0.15em; flex-shrink: 0; }
.nav-toggle svg { width: 26px; height: 26px; }
.dropzone .ic svg { width: 34px; height: 34px; color: var(--brand); }
.btn svg { width: 18px; height: 18px; }
.trust-row span svg, .price-note svg { color: var(--brand-ink); }
.ti svg, .ri svg { width: 22px; height: 22px; }
.tool-link .ti svg { width: 23px; height: 23px; }
.head-ico { width: 34px; height: 34px; border-radius: 10px; display: inline-grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-ink); flex-shrink: 0; }
.head-ico svg { width: 19px; height: 19px; }
.step .n svg { width: 20px; height: 20px; }
.trust-row span svg { width: 15px; height: 15px; color: var(--brand-ink); }
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 0 3px rgba(22,163,74,.18); }

/* ============ Hierarquia de seção (respiro + variação) ============ */
.cat { padding-top: 34px; }
.cat-head { margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.cat-head .sh-txt { min-width: 0; }
.cat-head .sh-txt h2 { margin: 0; font-size: clamp(19px, 2.6vw, 25px); }
.cat-head .sh-txt p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
.cat-head .sh-count { margin-left: auto; color: var(--muted); font-size: 12.5px; font-weight: 700;
  background: #fff; border: 1px solid var(--line); padding: 4px 11px; border-radius: 999px; align-self: center; white-space: nowrap; }
@media (max-width: 560px){ .cat-head .sh-count { display: none; } }

/* ============ Destaques (cards grandes, quebra a simetria) ============ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px){ .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .features { grid-template-columns: 1fr; } }
.feature { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 22px;
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s, border-color .16s; overflow: hidden; }
.feature::after { content: ""; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px;
  border-radius: 50%; background: radial-gradient(circle, var(--brand-soft), transparent 70%); opacity: .6; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); border-color: transparent; }
.feature .ti { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; position: relative; z-index: 1; }
.feature .ti svg { width: 26px; height: 26px; }
.feature h3 { margin: 0; font-size: 18px; font-weight: 800; position: relative; z-index: 1; }
.feature p { margin: 0; color: var(--muted); font-size: 14px; position: relative; z-index: 1; }
.feature .go { margin-top: auto; color: var(--brand-ink); font-weight: 700; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; position: relative; z-index: 1; }

/* ============ Lista compacta (utilitários: calc, texto, dev, seo) ============ */
.tool-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 8px; }
.tool-row { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--line); text-decoration: none; color: inherit; transition: all .13s; }
.tool-row:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); transform: translateX(2px); }
.tool-row .ri { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.tool-row .rt { min-width: 0; }
.tool-row .rt b { font-weight: 700; font-size: 14px; display: block; line-height: 1.2; }
.tool-row .rt span { color: var(--muted); font-size: 12px; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ============ Selo de crédito discreto (só nas pagas) ============ */
.tool-link, .feature { }
.credit { position: absolute; top: 12px; right: 12px; font-size: 10px; font-weight: 800; letter-spacing: .02em;
  color: var(--accent-ink); background: var(--accent-soft); border-radius: 999px; padding: 3px 8px; text-transform: uppercase; }
.tool-link { position: relative; }
.tool-link.is-pro h3 { padding-right: 60px; }
.tool-link.is-pro { border-color: #f6ddc7; }
.tool-link.is-pro:hover { border-color: transparent; }

/* ============ Hero dropzone interativo ============ */
.hero-action { max-width: 620px; margin: 26px auto 0; }
.hero-drop { display: flex; flex-direction: column; align-items: center; border: 2px dashed color-mix(in srgb, var(--brand) 45%, var(--line)); border-radius: 18px;
  background: color-mix(in srgb, var(--brand) 6%, #fff); backdrop-filter: blur(4px); padding: 24px 20px; text-align: center; cursor: pointer; transition: all .15s; }
.hero-drop:hover, .hero-drop.over { border-color: var(--brand); background: var(--brand-soft); box-shadow: 0 10px 30px color-mix(in srgb, var(--brand) 16%, transparent); }
.hero-drop .hd-ico { width: 46px; height: 46px; border-radius: 14px; background: var(--grad); color: #fff;
  display: grid; place-items: center; margin: 0 auto 10px; box-shadow: 0 8px 18px rgba(13,148,136,.3); }
.hero-drop .hd-ico svg { width: 24px; height: 24px; }
.hero-drop b { font-size: 15.5px; }
.hero-drop small { display: block; color: var(--muted); margin-top: 3px; font-size: 13px; }
.hero-routes { margin-top: 14px; display: none; }
.hero-routes.show { display: block; animation: pop .2s ease; }
.hero-routes .hr-title { font-size: 13.5px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.hero-routes .hr-btns { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.hero-routes a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 11px;
  background: #fff; border: 1px solid var(--line); font-size: 13.5px; font-weight: 700; color: var(--ink); text-decoration: none; transition: all .13s; }
.hero-routes a:hover { border-color: var(--brand); color: var(--brand-ink); transform: translateY(-1px); }
.hero-routes a svg { width: 16px; height: 16px; color: var(--brand-ink); }
.hero-or { color: var(--muted); font-size: 13px; margin: 12px 0 8px; }

/* ============ Identidade de cor por categoria ============ */
.cat { --acc: var(--brand); --acc-ink: var(--brand-ink); }
.cat .head-ico, .cat .ti, .cat .ri { color: var(--acc-ink); background: color-mix(in srgb, var(--acc) 15%, #fff); }
.cat .cat-head h2 { color: var(--ink); }
.cat .cat-head::before { content: ""; width: 4px; align-self: stretch; border-radius: 4px; background: var(--acc); }
.cat .sh-count { color: var(--acc-ink); border-color: color-mix(in srgb, var(--acc) 28%, var(--line)); background: color-mix(in srgb, var(--acc) 6%, #fff); }
.cat .tool-row:hover { border-color: var(--acc); }
.cat .tool-link:hover { box-shadow: 0 20px 44px color-mix(in srgb, var(--acc) 22%, transparent); }

/* ============ Subgrupos (ex.: calculadoras) ============ */
.subhead { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 18px 0 10px; display: flex; align-items: center; gap: 10px; }
.subhead::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.subhead:first-of-type { margin-top: 4px; }

/* ============ Destaque com mini-preview (mostrar, não contar) ============ */
.feature { padding: 0; }
.feature .fpv { height: 132px; border-radius: 20px 20px 0 0; display: grid; place-items: center; overflow: hidden; position: relative; z-index: 1;
  background: linear-gradient(160deg, color-mix(in srgb, var(--acc) 12%, #fff), color-mix(in srgb, var(--acc) 3%, #fff)); border-bottom: 1px solid var(--line); }
.feature .fpv svg { width: 78%; height: 88%; }
.feature .fbody { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.feature h3 { font-size: 17px; }
.feature::after { display: none; }
.feature .credit { top: 14px; right: 14px; z-index: 2; }

/* ============ Kits assimétricos e coloridos ============ */
.kits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.kits-grid .kit { grid-column: span 2; }
.kits-grid .kit:first-child { grid-column: span 2; grid-row: span 2; }
@media (max-width: 820px){ .kits-grid { grid-template-columns: repeat(2, 1fr); } .kits-grid .kit, .kits-grid .kit:first-child { grid-column: span 1; grid-row: auto; } }
@media (max-width: 480px){ .kits-grid { grid-template-columns: 1fr; } }
.kit { position: relative; display: flex; flex-direction: column; gap: 10px; padding: 20px; border-radius: 18px; text-decoration: none; color: inherit; overflow: hidden;
  background: linear-gradient(160deg, color-mix(in srgb, var(--acc) 13%, #fff), #fff); border: 1px solid color-mix(in srgb, var(--acc) 22%, var(--line)); transition: transform .16s, box-shadow .16s; }
.kit:hover { transform: translateY(-4px); box-shadow: 0 20px 44px color-mix(in srgb, var(--acc) 20%, transparent); }
.kit .ti { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: #fff; background: var(--acc); }
.kit .ti svg { width: 24px; height: 24px; }
.kit h3 { margin: 0; font-size: 17px; font-weight: 800; }
.kit p { margin: 0; color: var(--muted); font-size: 13.5px; }
.kit:first-child h3 { font-size: 21px; }
.kit .go { margin-top: auto; color: var(--acc-ink); font-weight: 700; font-size: 13px; }

/* ============ Hero: mais contraste tipográfico ============ */
.hero h1 { font-size: clamp(33px, 6vw, 58px); font-weight: 800; letter-spacing: -0.035em; }
.hero p.sub { font-weight: 500; }
.cat-head .sh-txt p { font-size: 13.5px; }

/* ============ Páginas de Kit ============ */
.kitwrap { --acc: var(--brand); --acc-ink: var(--brand-ink); }
.kitwrap .hl { background: none; -webkit-text-fill-color: currentColor; color: var(--acc-ink); }
.kit-hero { display: flex; gap: 24px; align-items: center; padding: 46px 0 14px; }
@media (max-width: 640px){ .kit-hero { flex-direction: column; text-align: center; gap: 18px; padding-top: 34px; } }
.kit-hero-ico { width: 86px; height: 86px; border-radius: 24px; flex-shrink: 0; display: grid; place-items: center; color: #fff;
  background: linear-gradient(150deg, var(--acc), color-mix(in srgb, var(--acc) 78%, #000)); box-shadow: 0 18px 36px color-mix(in srgb, var(--acc) 34%, transparent); }
.kit-hero-ico svg { width: 42px; height: 42px; }
.kit-hero h1 { margin: 6px 0 10px; }
.kit-hero .badge { margin-bottom: 4px; }
.kit-hero .sub { margin: 0; max-width: 640px; }
.kit-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
@media (max-width: 640px){ .kit-tags { justify-content: center; } }
.kit-tags span { font-size: 12.5px; font-weight: 700; color: var(--acc-ink); background: color-mix(in srgb, var(--acc) 11%, #fff);
  border: 1px solid color-mix(in srgb, var(--acc) 24%, var(--line)); border-radius: 999px; padding: 5px 13px; }
.kitwrap .head-ico { color: var(--acc-ink); background: color-mix(in srgb, var(--acc) 14%, #fff); }
.kitwrap .cat-head::before { content: ""; width: 4px; align-self: stretch; border-radius: 4px; background: var(--acc); }
.kit-tools .tool-link { position: relative; }
.kit-tools .tool-link .ti { color: var(--acc-ink); background: color-mix(in srgb, var(--acc) 14%, #fff); }
.kit-tools .tool-link:hover { border-color: transparent; box-shadow: 0 20px 44px color-mix(in srgb, var(--acc) 22%, transparent); }
.kit-flow { list-style: none; counter-reset: kf; padding: 0; margin: 6px 0 0; }
.kit-flow li { position: relative; padding: 0 0 22px 54px; }
.kit-flow li::before { counter-increment: kf; content: counter(kf); position: absolute; left: 0; top: -2px; width: 34px; height: 34px;
  border-radius: 50%; background: var(--acc); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 15px;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--acc) 34%, transparent); }
.kit-flow li::after { content: ""; position: absolute; left: 16px; top: 36px; bottom: 2px; width: 2px; background: color-mix(in srgb, var(--acc) 28%, var(--line)); }
.kit-flow li:last-child { padding-bottom: 0; }
.kit-flow li:last-child::after { display: none; }
.kit-flow b { color: var(--ink); }
.kit-flow a { color: var(--acc-ink); font-weight: 700; }
.otherkits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 720px){ .otherkits { grid-template-columns: 1fr; } }
.okit { display: flex; align-items: center; gap: 13px; padding: 15px 16px; border-radius: 15px; background: var(--card);
  border: 1px solid var(--line); text-decoration: none; color: inherit; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.okit:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); }
.okit .oi { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; color: #fff; background: var(--oc, var(--brand)); }
.okit .oi svg { width: 22px; height: 22px; }
.okit .ot { display: flex; flex-direction: column; min-width: 0; }
.okit b { font-size: 14.5px; line-height: 1.25; }
.okit .ot small { font-size: 12.5px; color: var(--muted); }
