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

/* ============================================================
   AppCo — Layout "rafael" (HTML/CSS estático)
   Identidade: Hanken Grotesk, magenta #F02A5B, navy #0E1621,
   cantos arredondados, brand-glow, fundo branco/soft.
   ============================================================ */

:root {
  --magenta: #F02A5B;
  --magenta-dark: #C41E48;
  --ink: #0E1621;
  --bg: #ffffff;
  --bg-soft: #F6F6F8;
  --zinc-700: #3f3f46;
  --zinc-600: #52525b;
  --zinc-500: #71717a;
  --zinc-400: #a1a1aa;
  --border: rgba(14, 22, 33, 0.08);
  --border-2: rgba(14, 22, 33, 0.12);
  --glow: 0 0 0 2px rgba(240, 42, 91, 0.20), 0 8px 32px rgba(240, 42, 91, 0.25);
  --shadow-sm: 0 1px 2px rgba(14, 22, 33, 0.06);
  --shadow-md: 0 12px 30px rgba(14, 22, 33, 0.10);
  --font: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--magenta); outline-offset: 3px; border-radius: 6px; }

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

/* SVG icon sprite helper */
.ico { width: 1.5rem; height: 1.5rem; flex: none; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ico-fill { fill: currentColor; stroke: none; }

/* ---------- Layout helpers ---------- */
.rf-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .rf-container { padding: 0 32px; } }
.rf-narrow-6 { max-width: 1152px; }
.rf-narrow-5 { max-width: 1024px; }
.rf-narrow-4 { max-width: 896px; }
.rf-narrow-3 { max-width: 768px; }

.rf-section { padding: 96px 0; position: relative; }
@media (min-width: 768px) { .rf-section { padding: 128px 0; } }
.rf-section.soft { background: var(--bg-soft); }

.rf-center { text-align: center; }
.rf-magenta { color: var(--magenta); }

.rf-h2 { font-size: clamp(1.9rem, 5vw, 3rem); color: var(--ink); }
.rf-lead { margin-top: 20px; font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--zinc-600); line-height: 1.65; }
.rf-lead-narrow { max-width: 720px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.gradient-magenta {
  background: linear-gradient(120deg, #0E1621 30%, #F02A5B 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Grid ---------- */
.rf-grid { display: grid; gap: 20px; }
.rf-grid.gap-6 { gap: 24px; }
.g-2 { grid-template-columns: 1fr; }
.g-3 { grid-template-columns: 1fr; }
.g-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .g-2 { grid-template-columns: repeat(2, 1fr); } .g-4 { grid-template-columns: repeat(2, 1fr); } .g-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .g-3 { grid-template-columns: repeat(3, 1fr); } .g-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .g-3-md { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; line-height: 1; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap; text-align: center;
}
.btn:hover { transform: scale(1.05); }
.btn-pill { border-radius: 999px; }
.btn-2xl { border-radius: 16px; }
.btn-3xl { border-radius: 24px; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-md { padding: 12px 22px; font-size: .95rem; }
.btn-lg { padding: 16px 32px; font-size: 1.125rem; }
.btn-primary { background: var(--magenta); color: #fff; box-shadow: var(--glow); }
.btn-primary:hover { background: var(--magenta-dark); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.btn-outline:hover { background: rgba(14,22,33,0.05); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-full { width: 100%; }

.link-magenta { color: var(--magenta); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.link-magenta:hover { text-decoration: underline; }
.link-magenta .ico { width: 1.15rem; height: 1.15rem; }

/* ---------- Header ---------- */
.rf-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.rf-header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 768px) { .rf-header-inner { height: 80px; } }
.rf-logo { height: 34px; width: auto; object-fit: contain; }
@media (min-width: 768px) { .rf-logo { height: 40px; } }
.rf-nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .rf-nav { display: flex; } }
.rf-nav a:not(.btn) { font-size: .9rem; font-weight: 500; color: var(--zinc-600); transition: color .2s; }
.rf-nav a:not(.btn):hover { color: var(--ink); }
.rf-menu-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: none; border: 0; color: var(--ink); cursor: pointer; }
@media (min-width: 1024px) { .rf-menu-btn { display: none; } }
.rf-menu-btn .ico { width: 26px; height: 26px; }
.rf-mobile-nav { display: none; flex-direction: column; gap: 18px; padding: 24px 20px; background: #fff; border-top: 1px solid var(--border); }
.rf-mobile-nav.open { display: flex; }
.rf-mobile-nav a:not(.btn) { color: var(--zinc-700); font-weight: 500; }
main { padding-top: 64px; }
@media (min-width: 768px) { main { padding-top: 80px; } }

/* ---------- Hero ---------- */
.rf-hero { position: relative; overflow: hidden; background: #fff; padding: 96px 0 112px; text-align: center; }
.rf-hero .rf-container { position: relative; z-index: 1; max-width: 900px; }
.rf-hero::before, .rf-hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; pointer-events: none; }
.rf-hero::before { width: 36rem; height: 36rem; top: -10rem; right: -10rem; background: rgba(240,42,91,0.10); }
.rf-hero::after { width: 32rem; height: 32rem; bottom: -12rem; left: -10rem; background: rgba(240,42,91,0.07); }
.rf-hero-logo { height: 96px; width: auto; margin: 0 auto 40px; object-fit: contain; }
@media (min-width: 768px) { .rf-hero-logo { height: 128px; } }
.rf-hero h1 { font-size: clamp(2.25rem, 7vw, 4.5rem); color: var(--ink); line-height: 1.08; }
.rf-hero-sub { margin: 24px auto 0; max-width: 640px; font-size: clamp(1.1rem, 2.4vw, 1.35rem); color: var(--zinc-600); line-height: 1.6; }
.rf-hero-actions { margin-top: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
@media (min-width: 640px) { .rf-hero-actions { flex-direction: row; } }
.rf-hero-actions .btn { width: 100%; }
@media (min-width: 640px) { .rf-hero-actions .btn { width: auto; } }
.rf-hero-wa { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--zinc-500); transition: color .2s; }
.rf-hero-wa:hover { color: var(--ink); }
.rf-hero-wa .ico { width: 1rem; height: 1rem; color: var(--magenta); }

/* ---------- Cards ---------- */
.rf-card {
  height: 100%; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.rf-card.r-28 { border-radius: 28px; }
.rf-card.r-32 { border-radius: 32px; }
.rf-card.p-6 { padding: 24px; }
.rf-card.p-7 { padding: 28px; }
.rf-card.p-8 { padding: 32px; }
.rf-card.lift:hover { transform: translateY(-8px); border-color: rgba(240,42,91,0.5); box-shadow: var(--glow); }
.rf-card.hoverline:hover { border-color: rgba(240,42,91,0.4); }

.icon-badge { display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; background: rgba(240,42,91,0.12); color: var(--magenta); }
.icon-badge.sz-12 { width: 48px; height: 48px; }
.icon-badge.sz-14 { width: 56px; height: 56px; border-radius: 18px; }
.icon-badge .ico { width: 26px; height: 26px; }
.icon-solo { color: var(--magenta); }

.card-title { font-size: 1.15rem; color: var(--ink); font-weight: 700; }
.card-title.lg { font-size: 1.5rem; }
.card-desc { color: var(--zinc-600); line-height: 1.6; }
.card-desc.sm { font-size: .9rem; }

/* ---------- Como funciona (steps) ---------- */
.step-num { font-size: 3rem; font-weight: 800; color: rgba(240,42,91,0.8); line-height: 1; }

/* ---------- App screens scroller ---------- */
.rf-screens { margin-top: 56px; display: flex; gap: 20px; overflow-x: auto; padding-bottom: 24px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.rf-screens img { height: 480px; width: auto; flex: none; scroll-snap-align: center; border-radius: 32px; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.rf-screens::-webkit-scrollbar { height: 8px; }
.rf-screens::-webkit-scrollbar-thumb { background: rgba(14,22,33,0.15); border-radius: 999px; }

/* ---------- Two-column image sections ---------- */
.rf-split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .rf-split { grid-template-columns: 1fr 1fr; gap: 56px; } }
.rf-split-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 32px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); background: var(--bg-soft); }
.rf-check-list { margin-top: 32px; display: grid; gap: 16px; }
.rf-check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--zinc-700); line-height: 1.6; }
.rf-check-list .ico { width: 1.25rem; height: 1.25rem; color: var(--magenta); margin-top: 3px; }

/* ---------- Benefícios (problema/solução) ---------- */
.benef-prob { margin-top: 12px; font-size: .9rem; color: var(--zinc-500); font-style: italic; line-height: 1.55; }
.benef-sol { margin-top: 12px; font-size: .9rem; color: var(--zinc-700); line-height: 1.6; }

/* ---------- Depoimentos ---------- */
.rf-quote .ico { width: 2rem; height: 2rem; color: rgba(240,42,91,0.3); }
.rf-stars { margin-top: 24px; display: flex; gap: 4px; }
.rf-stars .ico { width: 1rem; height: 1rem; color: var(--magenta); fill: var(--magenta); }
.rf-author { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(14,22,33,0.06); }
.rf-author .nm { font-weight: 600; color: var(--ink); }
.rf-author .rl { font-size: .875rem; color: var(--zinc-500); }

/* ---------- Planos ---------- */
.rf-plan-grid { margin-top: 64px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .rf-plan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .rf-plan-grid { grid-template-columns: repeat(4, 1fr); } }
.rf-plan { display: flex; flex-direction: column; height: 100%; border-radius: 32px; padding: 28px; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.rf-plan:hover { transform: translateY(-8px); }
.rf-plan.destaque { background: rgba(240,42,91,0.04); border-color: rgba(240,42,91,0.6); box-shadow: var(--glow); }
.rf-badge { align-self: flex-start; padding: 5px 12px; border-radius: 999px; font-size: .72rem; font-weight: 700; background: rgba(14,22,33,0.05); color: var(--zinc-600); }
.rf-plan.destaque .rf-badge { background: var(--magenta); color: #fff; }
.rf-plan h3 { margin-top: 20px; font-size: 1.25rem; color: var(--ink); }
.rf-price { margin-top: 12px; display: flex; align-items: baseline; gap: 4px; }
.rf-price .val { font-size: 2.25rem; font-weight: 800; color: var(--ink); line-height: 1; }
.rf-price .per { font-size: .875rem; color: var(--zinc-500); }
.rf-plan-users { margin-top: 8px; display: flex; align-items: center; gap: 6px; font-size: .875rem; color: var(--zinc-600); }
.rf-plan-users .ico { width: 1rem; height: 1rem; color: var(--magenta); }
.rf-plan-base { margin-top: 16px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--zinc-500); }
.rf-plan-feats { margin-top: 12px; display: grid; gap: 10px; flex: 1; }
.rf-plan-feats li { display: flex; align-items: flex-start; gap: 8px; font-size: .875rem; color: var(--zinc-700); }
.rf-plan-feats .ico { width: 1rem; height: 1rem; color: var(--magenta); margin-top: 3px; flex: none; }
.rf-plan .btn { margin-top: 28px; }
.rf-plan-note { margin-top: 40px; text-align: center; color: var(--zinc-600); }
.rf-plan-note strong { color: var(--ink); font-weight: 600; }

/* ---------- FAQ ---------- */
.rf-faq { margin-top: 48px; display: grid; gap: 12px; }
.rf-faq details { background: #fff; border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow-sm); padding: 0 24px; transition: border-color .2s; }
.rf-faq details[open] { border-color: rgba(240,42,91,0.4); }
.rf-faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.rf-faq summary::-webkit-details-marker { display: none; }
.rf-faq summary .chev { width: 20px; height: 20px; color: var(--magenta); transition: transform .25s; flex: none; }
.rf-faq details[open] summary .chev { transform: rotate(180deg); }
.rf-faq details p { color: var(--zinc-600); line-height: 1.65; padding: 0 0 20px; }
.rf-faq-video { margin-top: 32px; text-align: center; }

/* ---------- CTA final ---------- */
.rf-cta { position: relative; overflow: hidden; padding: 96px 0 140px; text-align: center; }
.rf-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(240,42,91,0.06), transparent 60%); pointer-events: none; }
.rf-cta .rf-container { position: relative; z-index: 1; max-width: 900px; }
.rf-cta h2 { font-size: clamp(2rem, 6vw, 3.75rem); color: var(--ink); line-height: 1.08; }
.rf-cta-actions { margin-top: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
@media (min-width: 640px) { .rf-cta-actions { flex-direction: row; } }
.rf-cta-actions .btn { width: 100%; }
@media (min-width: 640px) { .rf-cta-actions .btn { width: auto; } }

/* ---------- Store buttons ---------- */
.rf-stores { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.rf-store { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; font-size: .9rem; font-weight: 600; border-radius: 16px; background: #fff; border: 1px solid var(--border-2); color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .2s, background .2s; }
.rf-store:hover { transform: scale(1.05); background: rgba(14,22,33,0.05); }
.rf-store .ico { width: 1.1rem; height: 1.1rem; color: var(--magenta); }
.rf-store.sm { padding: 8px 16px; font-size: .8rem; }

/* ---------- Footer ---------- */
.rf-footer { background: var(--bg-soft); border-top: 1px solid var(--border); }
.rf-footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
@media (min-width: 768px) { .rf-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.rf-footer-logo { height: 36px; width: auto; }
.rf-footer p.about { margin-top: 16px; font-size: .875rem; color: var(--zinc-500); line-height: 1.6; max-width: 320px; }
.rf-footer h4 { font-size: .875rem; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.rf-footer ul { display: grid; gap: 12px; }
.rf-footer ul a { font-size: .875rem; color: var(--zinc-600); display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.rf-footer ul a:hover { color: var(--ink); }
.rf-footer ul a .ico { width: 1rem; height: 1rem; color: var(--magenta); }
.rf-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.rf-footer-social a { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; border: 1px solid var(--border); background: #fff; color: var(--ink); transition: background .2s, color .2s; }
.rf-footer-social a:hover { background: var(--magenta); color: #fff; border-color: var(--magenta); }
.rf-footer-social .ico { width: 18px; height: 18px; }
.rf-footer-bottom { border-top: 1px solid var(--border); padding: 20px; text-align: center; font-size: .78rem; color: var(--zinc-500); }
.rf-footer-bottom .panda-link { color: var(--zinc-600); font-family: Georgia, serif; font-weight: 800; }
.rf-footer-bottom .panda-link strong { color: #00c853; font-family: Arial, sans-serif; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px rgba(37,211,102,.35); transition: transform .2s, background .2s; }
.wa-float:hover { transform: scale(1.08); background: #1ebe5d; }
.wa-float .ico { width: 30px; height: 30px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.show-now { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .rf-card.lift:hover, .rf-plan:hover, .rf-store:hover, .wa-float:hover { transform: none; }
}

/* ---------- Section heading spacing ---------- */
.rf-head { max-width: 820px; margin: 0 auto; }
.rf-grid-wrap { margin-top: 64px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }

/* ---------- Ajustes finais ---------- */
.icon-solo { display: block; color: var(--magenta); }
.rf-plan-feats li.no { color: var(--zinc-400); }
.rf-plan-feats li.no .ico { color: var(--zinc-400); }
.rf-plan-users .ico, .rf-check-list .ico, .rf-plan-feats .ico, .link-magenta .ico { flex: none; }

/* ==================== Páginas internas ==================== */
/* Funcionalidades */
.func-bullets { margin-top: 12px; display: grid; gap: 8px; }
.func-bullets li { font-size: .875rem; color: var(--zinc-600); line-height: 1.55; padding-left: 16px; position: relative; }
.func-bullets li::before { content: "•"; color: var(--magenta); position: absolute; left: 0; top: -1px; font-weight: 700; }

/* Catálogo — fluxos e nota */
.flow-list { margin-top: 24px; display: grid; gap: 12px; }
.flow-li { display: flex; align-items: center; gap: 12px; color: var(--zinc-700); line-height: 1.5; }
.flow-num { flex: none; width: 32px; height: 32px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: .875rem; background: rgba(240,42,91,0.15); color: var(--magenta); }
.flow-num.alt { background: rgba(14,22,33,0.08); color: var(--ink); }
.rf-note { display: flex; gap: 16px; align-items: flex-start; border: 1px solid rgba(240,42,91,0.3); background: rgba(240,42,91,0.06); border-radius: 28px; padding: 24px; }
.rf-note .ico { color: var(--magenta); flex: none; margin-top: 2px; }
.rf-note p { color: var(--zinc-700); line-height: 1.6; }
.rf-note strong { color: var(--ink); }

/* Contato */
.rf-contact-card { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); border-radius: 24px; padding: 20px; transition: transform .2s, border-color .2s; }
.rf-contact-card:hover { transform: scale(1.02); border-color: rgba(240,42,91,0.5); }
.rf-contact-card b { color: var(--ink); }
.rf-contact-card small { color: var(--zinc-600); }
.rf-form-wrap { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 32px; padding: 28px; }
@media (min-width: 768px) { .rf-form-wrap { padding: 36px; } }
.rf-field { margin-bottom: 16px; }
.rf-field label { display: block; font-size: .875rem; font-weight: 600; color: var(--zinc-700); margin-bottom: 6px; }
.rf-field input, .rf-field select, .rf-field textarea { width: 100%; border-radius: 16px; background: #fff; border: 1px solid var(--border-2); padding: 12px 16px; color: var(--ink); font-family: inherit; font-size: 1rem; transition: border-color .2s, box-shadow .2s; }
.rf-field input:focus, .rf-field select:focus, .rf-field textarea:focus { outline: none; border-color: transparent; box-shadow: 0 0 0 2px var(--magenta); }
.rf-field textarea { resize: vertical; }
.rf-form-err { color: var(--magenta); font-size: .9rem; margin-bottom: 12px; }
.rf-form-hint { margin-top: 12px; text-align: center; font-size: .8rem; color: var(--zinc-500); }

/* Blog */
.rf-blog-card { display: block; height: 100%; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); border-radius: 32px; overflow: hidden; transition: transform .3s, border-color .3s; }
.rf-blog-card:hover { transform: translateY(-6px); border-color: rgba(240,42,91,0.5); }
.rf-blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--bg-soft); }
.rf-blog-body { padding: 28px; }
.rf-blog-meta { display: flex; align-items: center; gap: 12px; font-size: .75rem; }
.rf-blog-cat { font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 4px 10px; border-radius: 999px; background: rgba(240,42,91,0.10); color: var(--magenta); }
.rf-blog-date { color: var(--zinc-500); }
.rf-blog-title { margin-top: 16px; font-size: 1.25rem; color: var(--ink); line-height: 1.3; }
.rf-blog-card:hover .rf-blog-title { color: var(--magenta); }
.rf-blog-resumo { margin-top: 12px; font-size: .9rem; color: var(--zinc-600); line-height: 1.6; }

/* Post */
.rf-post-img { margin-top: 32px; width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: 32px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); background: var(--bg-soft); }
.rf-prose { margin-top: 40px; }
.rf-prose h2 { margin: 40px 0 16px; font-size: 1.6rem; color: var(--ink); }
.rf-prose p { margin-bottom: 20px; color: var(--zinc-700); line-height: 1.75; }
.rf-prose ul, .rf-prose ol { margin: 0 0 20px; padding-left: 24px; color: var(--zinc-700); display: grid; gap: 8px; }
.rf-prose ul { list-style: disc; }
.rf-prose ol { list-style: decimal; }
.rf-prose li { line-height: 1.7; }
.rf-prose strong { color: var(--ink); font-weight: 700; }
.rf-post-cta { margin-top: 56px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 32px; padding: 32px; text-align: center; }

/* ==================== Conteúdo legado (landings SEO, legais, tutoriais) ==================== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 88px 0; } }
.legal-page { background: #fff; }
.legal-hero { padding: 120px 0 32px; }
.legal-hero .container { max-width: 900px; }
.legal-hero h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--ink); margin-top: 8px; line-height: 1.1; }
.legal-hero p { color: var(--zinc-600); margin-top: 12px; line-height: 1.6; }
.eyebrow { display: inline-block; color: var(--magenta); font-weight: 700; text-transform: uppercase; font-size: .78rem; letter-spacing: .06em; margin-bottom: 8px; }
.breadcrumb { font-size: .85rem; color: var(--zinc-500); margin-bottom: 14px; }
.breadcrumb a { color: var(--zinc-500); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--magenta); }
.legal-content { max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 32px; padding: 28px; box-shadow: var(--shadow-sm); }
@media (min-width: 768px) { .legal-content { padding: 40px; } }
.legal-content h2 { margin: 28px 0 12px; font-size: 1.4rem; color: var(--ink); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 20px 0 8px; font-size: 1.1rem; color: var(--ink); }
.legal-content p, .legal-content li { color: var(--zinc-700); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin-bottom: 14px; }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content a { color: var(--magenta); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.legal-content details { border: 1px solid var(--border); border-radius: 20px; padding: 0 20px; margin: 10px 0; box-shadow: var(--shadow-sm); }
.legal-content details[open] { border-color: rgba(240,42,91,.35); }
.legal-content summary { cursor: pointer; padding: 16px 0; font-weight: 600; color: var(--ink); list-style: none; }
.legal-content summary::-webkit-details-marker { display: none; }
.legal-content summary::after { content: "+"; float: right; color: var(--magenta); font-weight: 700; font-size: 1.2rem; line-height: 1; }
.legal-content details[open] summary::after { content: "\2013"; }
.legal-content details p { padding-bottom: 16px; margin-bottom: 0; }
.section-heading { max-width: 820px; margin: 0 auto 32px; text-align: center; }
.section-heading h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--ink); }
.section-heading p { color: var(--zinc-600); margin-top: 10px; line-height: 1.6; }
.closing { max-width: 760px; margin: 0 auto; color: var(--zinc-700); text-align: center; line-height: 1.7; }
/* Botões legados */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 22px; border-radius: 16px; font-weight: 700; border: 1px solid transparent; transition: transform .2s, background .2s, box-shadow .2s; margin: 8px 8px 0 0; }
.button:hover { transform: scale(1.03); }
.button.primary { background: var(--magenta); color: #fff; box-shadow: var(--glow); }
.button.primary:hover { background: var(--magenta-dark); }
.button.secondary { background: #fff; color: var(--ink); border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.button.secondary:hover { background: rgba(14,22,33,.05); }
.button.ghost { background: #fff; color: var(--ink); border-color: var(--border-2); }
.button.text { min-height: auto; padding: 0; background: none; color: var(--magenta); text-decoration: underline; }
.button.small { min-height: 40px; padding: 0 16px; font-size: .9rem; }
/* Tutoriais em vídeo */
.video-toc { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.video-toc a { background: #fff; border: 1px solid var(--border-2); border-radius: 999px; padding: 8px 16px; font-size: .85rem; font-weight: 600; color: var(--ink); }
.video-toc a:hover { background: var(--magenta); border-color: var(--magenta); color: #fff; }
.video-faq-section.alt { background: var(--bg-soft); }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.video-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.video-card h3 { font-size: .95rem; padding: 14px 16px; color: var(--ink); }
.video-embed { position: relative; width: 100%; aspect-ratio: 9/16; background: var(--ink); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-faq-more { margin-top: 32px; text-align: center; }
.video-faq-more a { color: var(--magenta); font-weight: 700; text-decoration: underline; }
.faq-video-link { margin-top: 24px; }
@media (max-width: 1080px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .video-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ---------- Página Baixar ---------- */
.rf-badges { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.rf-badge-img { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform .2s; display: block; }
.rf-badge-img:hover { transform: scale(1.04); }
.rf-badge-img img { display: block; width: 190px; height: auto; }
.rf-trust { display: grid; gap: 12px; max-width: 560px; margin: 0 auto; }
.rf-trust li { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 16px 18px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); }
.rf-trust .ico { color: var(--magenta); flex: none; }
@media (max-width: 480px) { .rf-badge-img img { width: 150px; } }

/* ---------- Marquee: telas do app rolando sozinho ---------- */
.rf-marquee { overflow: hidden; margin-top: 56px; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.rf-marquee-track { display: flex; width: max-content; animation: rf-marquee-scroll 55s linear infinite; will-change: transform; }
.rf-marquee:hover .rf-marquee-track { animation-play-state: paused; }
.rf-marquee-track img { height: 480px; width: auto; flex: none; margin-right: 20px; border-radius: 32px; border: 1px solid var(--border); box-shadow: var(--shadow-md); background: var(--bg-soft); }
@keyframes rf-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 720px) { .rf-marquee-track img { height: 360px; margin-right: 14px; } }
@media (prefers-reduced-motion: reduce) { .rf-marquee { overflow-x: auto; } .rf-marquee-track { animation: none; } }
