/* ============================================================
   Seu Secretário · CSS compartilhado das páginas de serviço
   Mesmo design system do index.html (tokens, nav, footer)
   ============================================================ */
:root {
  --ink: #0f2137;
  --ink-80: rgba(15,33,55,0.8);
  --ink-50: rgba(15,33,55,0.5);
  --ink-20: rgba(15,33,55,0.2);
  --ink-08: rgba(15,33,55,0.08);
  --ink-04: rgba(15,33,55,0.04);
  --paper: #f8fafc;
  --paper-dark: #eef3f8;
  --white: #ffffff;

  --dash-green: #4ade80;
  --dash-red: #f87171;
  --dash-blue: #60a5fa;
  --dash-yellow: #fbbf24;
  --dash-purple: #a78bfa;
  --dash-orange: #fb923c;

  --wa-bg: #0B141A;
  --wa-out: #005C4B;
  --wa-in: #1F2C34;
  --wa-green: #25D366;
  --ig-pink: #e1306c;

  /* accent da página: cada página sobrescreve no <style> local */
  --pg: #c084fc;
  --pg2: #e879f9;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-dash: 'Space Grotesk', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.06);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--paper); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--ink-08);
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled { background: rgba(250,250,248,0.97); box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { color: var(--ink-50); text-decoration: none; font-size: 14px; font-weight: 500; padding: 6px 14px; border-radius: var(--radius-full); transition: color 0.15s, background 0.15s; display: inline-flex; align-items: center; gap: 5px; }
.nav-links a:hover { color: var(--ink); background: var(--ink-08); }
.nav-links a.nav-atual { color: var(--ink); background: var(--ink-08); }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.btn-ghost { background: transparent; color: var(--ink); padding: 8px 18px; border-radius: var(--radius-full); font-weight: 500; font-size: 14px; font-family: var(--font-body); text-decoration: none; border: 1.5px solid var(--ink-20); cursor: pointer; transition: all 0.15s; display: inline-flex; align-items: center; gap: 6px; }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink-04); }
.btn-solid { background: var(--ink); color: var(--white); padding: 9px 20px; border-radius: var(--radius-full); font-weight: 500; font-size: 14px; font-family: var(--font-body); text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; letter-spacing: -0.01em; }
.btn-solid:hover { opacity: 0.85; transform: translateY(-1px); }

/* Dropdown Recursos */
.nav-drop { position: relative; }
.nav-drop > a svg { transition: transform 0.2s; }
.nav-drop:hover > a svg, .nav-drop:focus-within > a svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 280px;
  background: var(--white); border: 1px solid var(--ink-08); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 110;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop-menu a { display: flex !important; align-items: center; gap: 12px; padding: 10px 12px !important; border-radius: var(--radius-md) !important; color: var(--ink) !important; }
.nav-drop-menu a:hover { background: var(--ink-04) !important; }
.nav-drop-ico { width: 34px; height: 34px; border-radius: var(--radius-sm); border: 1px solid var(--ink-08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--paper); }
.nav-drop-ico svg { width: 16px; height: 16px; stroke: var(--ink); fill: none; stroke-width: 1.7; transform: none !important; }
.nav-drop-tit { font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.nav-drop-sub { font-size: 11.5px; color: var(--ink-50); font-weight: 400; margin-top: 2px; }
.nav-drop-novo { font-size: 9px; font-weight: 700; font-family: var(--font-mono); letter-spacing: 0.08em; color: var(--white); background: linear-gradient(135deg, var(--pg), var(--pg2)); padding: 2px 7px; border-radius: var(--radius-full); margin-left: 6px; vertical-align: 2px; }

/* Hamburger + menu mobile */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; border-radius: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-entrar, .nav-mobile-cta { display: none; }
#mobile-menu {
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ink-08);
  z-index: 99; padding: 16px 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform .25s ease, opacity .25s ease, visibility .25s;
  max-height: calc(100dvh - 68px); overflow-y: auto;
}
#mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
#mobile-menu ul { list-style: none; margin-bottom: 16px; }
#mobile-menu ul li a { display: block; padding: 13px 4px; font-size: 15px; font-weight: 500; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink-08); }
#mobile-menu ul li:last-child a { border-bottom: none; }
#mobile-menu .mm-grupo { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-50); padding: 14px 4px 6px; }
.mobile-menu-actions { display: flex; gap: 10px; }
.mobile-menu-actions a { flex: 1; justify-content: center; }

/* ===== HERO ===== */
.hero { min-height: 92vh; padding: 140px 40px 80px; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(15,33,55,0.05) 0%, transparent 60%), var(--paper); pointer-events: none; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(15,33,55,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(15,33,55,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 70%); }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-inner > * { min-width: 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: var(--ink-50); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--ink-50); display: inline-block; }
.hero-eyebrow .novo-chip { background: linear-gradient(135deg, var(--pg), var(--pg2)); color: white; padding: 3px 10px; border-radius: var(--radius-full); font-size: 10px; letter-spacing: 0.08em; }
h1 { font-family: var(--font-display); font-size: clamp(38px, 5vw, 62px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 28px; }
h1 em { font-style: normal; background: linear-gradient(120deg, var(--pg), var(--pg2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 17px; color: var(--ink-50); line-height: 1.75; margin-bottom: 44px; max-width: 460px; font-weight: 400; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-hero { background: var(--ink); color: var(--white); padding: 15px 32px; border-radius: var(--radius-full); font-family: var(--font-body); font-weight: 500; font-size: 15px; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; letter-spacing: -0.01em; position: relative; overflow: hidden; }
.btn-hero::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.55s; }
.btn-hero:hover::after { left: 100%; }
.btn-hero:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-hero { background: transparent; color: var(--ink); padding: 15px 28px; border-radius: var(--radius-full); font-family: var(--font-body); font-weight: 500; font-size: 15px; text-decoration: none; border: 1.5px solid var(--ink-20); cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-hero:hover { border-color: var(--ink); }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }

/* ===== SEÇÕES ===== */
section { padding: 100px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: var(--ink-50); letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.section-label::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--ink-50); }
h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--ink); margin-bottom: 24px; }
h2 em { font-style: normal; }
.section-sub { font-size: 17px; color: var(--ink-50); line-height: 1.75; max-width: 520px; font-weight: 400; }

/* Seção escura */
.sec-dark { background: var(--ink); }
.sec-dark h2 { color: white; }
.sec-dark .section-label { color: rgba(255,255,255,0.35); }
.sec-dark .section-label::before { background: rgba(255,255,255,0.35); }
.sec-dark .section-sub { color: rgba(255,255,255,0.45); }

/* Grade de recursos (mesma da home) */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 72px; background: var(--ink-08); border-radius: var(--radius-lg); overflow: hidden; }
.feat { background: var(--paper); padding: 40px 36px; transition: background 0.2s; position: relative; overflow: hidden; }
.feat::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--pg), transparent); transform: scaleX(0); transition: transform 0.3s; }
.feat:hover { background: var(--paper-dark); }
.feat:hover::after { transform: scaleX(1); }
.feat-icon { width: 44px; height: 44px; border: 1px solid var(--ink-20); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: border-color 0.2s, transform 0.2s; }
.feat:hover .feat-icon { border-color: var(--pg); transform: scale(1.05); }
.feat-icon svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.5; }
.feat h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.02em; }
.feat p { font-size: 14px; color: var(--ink-50); line-height: 1.7; }

/* Split texto + visual */
.split-sec { padding: 100px 40px; background: #f5f0eb; }
.split-sec.alt { background: #ede8e2; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split > * { min-width: 0; }
.split-badge { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--pg), var(--pg2)); color: white; padding: 7px 16px; border-radius: var(--radius-full); font-size: 13px; font-weight: 600; font-family: var(--font-body); margin-bottom: 20px; }
.split-badge svg { stroke: white; flex-shrink: 0; }
.split-card h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 16px; }
.split-card > p { font-size: 16px; color: #374151; line-height: 1.75; margin-bottom: 28px; max-width: 420px; }
.split-pills { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.split-pills li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #0a0f1e; font-weight: 600; border: 1.5px solid #e2e8f0; border-radius: var(--radius-full); padding: 10px 18px; background: white; transition: border-color 0.2s, box-shadow 0.2s; cursor: default; }
.split-pills li:hover { border-color: var(--pg); box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.split-check { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--pg), var(--pg2)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.split-check svg { stroke: white; }
.split-visual { display: flex; justify-content: center; align-items: center; }

/* Passos (como funciona) */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 72px; background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; }
.step { background: var(--ink); padding: 40px 32px; position: relative; overflow: hidden; }
.step-num { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; margin-bottom: 18px; }
.step h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: white; margin-bottom: 10px; letter-spacing: -0.02em; }
.step p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ===== MOCKUP CELULAR / WHATSAPP ===== */
.phone-scene { position: relative; animation: floatPhone 7s ease-in-out infinite; }
@keyframes floatPhone { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-18px) rotate(1deg); } }
.phone-frame { width: 270px; background: #101010; border-radius: 44px; padding: 12px; border: 2px solid rgba(255,255,255,0.08); box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04), inset 0 0 40px rgba(0,0,0,0.4); position: relative; z-index: 2; }
.phone-notch { width: 80px; height: 22px; background: #101010; border-radius: 0 0 14px 14px; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.notch-cam { width: 9px; height: 9px; background: #1a1a1a; border-radius: 50%; border: 2px solid #2a2a2a; }
.phone-screen { background: var(--wa-bg); border-radius: 34px; overflow: hidden; height: 540px; display: flex; flex-direction: column; }
.wa-header { background: #1F2C34; padding: 10px 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.wa-back { color: rgba(255,255,255,0.6); font-size: 18px; }
.wa-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #0f2137, #3a5a7a); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; color: white; font-weight: 700; font-family: var(--font-body); }
.wa-info { flex: 1; }
.wa-name { font-size: 13px; font-weight: 700; color: white; font-family: var(--font-body); }
.wa-status { font-size: 10.5px; color: var(--wa-green); }
.wa-body { flex: 1; overflow: hidden; padding: 10px 10px 6px; display: flex; flex-direction: column; gap: 6px; position: relative; background: var(--wa-bg); }
.wa-body::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L55 20 L55 40 L30 55 L5 40 L5 20 Z' fill='none' stroke='rgba(255,255,255,0.015)' stroke-width='1'/%3E%3C/svg%3E"); background-size: 40px 40px; pointer-events: none; }
.bub { max-width: 85%; padding: 7px 11px 18px; border-radius: 10px; font-size: 11.5px; line-height: 1.45; position: relative; font-family: var(--font-body); }
.bub.out { background: var(--wa-out); align-self: flex-end; border-radius: 10px 3px 10px 10px; color: rgba(255,255,255,0.95); }
.bub.in { background: var(--wa-in); align-self: flex-start; border-radius: 3px 10px 10px 10px; color: rgba(255,255,255,0.92); }
.bub-time { position: absolute; bottom: 4px; right: 8px; font-size: 9px; color: rgba(255,255,255,0.4); font-family: var(--font-mono); }
.bub.out .bub-time { color: rgba(255,255,255,0.5); }
.wa-input { background: #1F2C34; padding: 8px 12px; display: flex; align-items: center; gap: 8px; }
.wa-field { flex: 1; background: #2A3942; border-radius: 20px; padding: 7px 14px; font-size: 11px; color: rgba(255,255,255,0.5); font-family: var(--font-body); }
.wa-mic { width: 34px; height: 34px; background: var(--wa-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-mic svg { width: 15px; height: 15px; stroke: #06251a; fill: none; stroke-width: 2; }

/* Cartões flutuantes */
.float-card { position: absolute; background: white; border-radius: var(--radius-lg); padding: 12px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; font-family: var(--font-body); border: 1px solid var(--ink-08); z-index: 3; }
.float-card.left { left: -110px; top: 28%; animation: floatCard1 5s ease-in-out infinite; }
.float-card.right { right: -110px; bottom: 22%; animation: floatCard2 6s ease-in-out infinite; }
@keyframes floatCard1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatCard2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.float-icon { width: 32px; height: 32px; border-radius: var(--radius-sm); background: var(--ink-08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-icon svg { width: 16px; height: 16px; }
.float-label { font-size: 10px; color: var(--ink-50); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); }
.float-value { font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; margin-top: 1px; }

/* ===== CTA FINAL ===== */
.cta-section { padding: 110px 40px; }
.cta-inner { max-width: 1200px; margin: 0 auto; background: var(--ink); border-radius: var(--radius-xl); padding: 90px 80px; text-align: center; position: relative; overflow: hidden; }
.cta-inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255,255,255,0.06), transparent 70%); pointer-events: none; }
.cta-inner h2 { color: white; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.45); margin-bottom: 40px; line-height: 1.7; }
.cta-btn-light { background: white; color: var(--ink); padding: 15px 34px; border-radius: var(--radius-full); font-weight: 600; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.cta-btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ===== FOOTER ===== */
footer { background: var(--ink); color: white; padding: 72px 40px 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 40px; }
.footer-brand-name { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: white; margin-bottom: 14px; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.75; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.25); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono); margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.15s, transform 0.15s; }
.footer-col a:hover { color: rgba(255,255,255,0.8); transform: translateX(4px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); font-family: var(--font-mono); }

/* ===== REVEAL ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.35s; opacity: 0; }
.delay-4 { animation-delay: 0.5s; opacity: 0; }
.reveal { opacity: 0; transform: translateY(36px); transition: all 0.75s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.22s; }
.reveal.d3 { transition-delay: 0.34s; }

/* ===== RESPONSIVO ===== */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-desktop-only { display: none !important; }
  .nav-hamburger { display: flex; }
  .nav-mobile-entrar { display: inline-flex; align-items: center; font-size: 13px; font-weight: 600; color: var(--ink); text-decoration: none; padding: 6px 11px; border-radius: 8px; border: 1.5px solid var(--ink); white-space: nowrap; }
  .nav-mobile-cta { display: inline-flex; align-items: center; font-size: 13px; font-weight: 700; color: #fff; background: var(--ink); text-decoration: none; padding: 6px 12px; border-radius: 8px; white-space: nowrap; }
  .nav-logo img { height: 34px !important; }
  .hero { min-height: auto; padding: 110px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .phone-scene { transform: none !important; animation: none !important; }
  .float-card { display: none !important; }
  section { padding: 72px 20px; }
  .split-sec { padding: 72px 20px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.visual-first .split-visual { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 60px 28px; }
  .cta-section { padding: 72px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
