:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --accent: #06b6d4;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f8fafc;
    --wpp: #25d366;
    --danger: #ef4444;
    --soon: #f59e0b;
    --grad: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--dark); line-height: 1.6; background: #fff;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── HEADER ── */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,.8); backdrop-filter: blur(14px);
    border-bottom: 1px solid #e2e8f0; transition: .3s;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 24px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: flex; align-items: center; gap: 8px;}
.logo img { max-width: 150px; max-height: 100px; width: auto; height: auto; }
.logo span.emoji { -webkit-text-fill-color: initial; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; transition: .2s; }
.nav-links a:hover { color: var(--primary); }
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px;
    border-radius: 10px; font-weight: 600; text-decoration: none; cursor: pointer;
    border: none; transition: .25s; font-size: 15px;
}
.btn-primary { background: var(--grad); color: #fff; background-size: 150% 150%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(79,70,229,.4); }
.btn-wpp { background: var(--wpp); color: #fff; }
.btn-wpp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn-outline { background: transparent; border: 2px solid #e2e8f0; color: var(--dark); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.menu-toggle { display: none; font-size: 26px; background: none; border: none; cursor: pointer; }

.nav-links .btn-primary {
    background: linear-gradient(135deg, #e63329 0%, #b91c1c 100%);
    background-size: auto; color: #fff; padding: 11px 24px; font-weight: 700;
    box-shadow: 0 6px 18px rgba(230,51,41,.38);
}
.nav-links .btn-primary:hover {
    background: linear-gradient(135deg, #c81e1e 0%, #991b1b 100%);
    transform: translateY(-2px); box-shadow: 0 10px 26px rgba(230,51,41,.5); color: #fff;
}

/* ── HERO ── */
.hero { padding: 160px 0 90px; background: radial-gradient(1200px 600px at 80% -10%, #e0e7ff 0%, transparent 60%), linear-gradient(135deg, #f5f7ff 0%, #eef2ff 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(28px, 5vw, 50px); line-height: 1.1; margin-bottom: 18px; font-weight: 800; }
.hero h1 span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { font-size: clamp(15px, 2vw, 19px); color: var(--gray); margin-bottom: 28px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 18px; margin-top: 22px; flex-wrap: wrap; color: var(--gray); font-size: 14px; }
.hero-trust span { display: flex; align-items: center; gap: 6px; }

/* ── MOCKUP DASHBOARD ── */
.dash-mock {
    background: linear-gradient(160deg, #ffffff 0%, #f1f5f9 100%);
    border-radius: 20px; padding: 18px; position: relative; overflow: hidden;
    box-shadow: 0 30px 70px rgba(15,23,42,.22); border: 1px solid #e2e8f0; min-height: 380px;
}
.dm-topbar { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.dm-dots { display: flex; gap: 6px; }
.dm-dots span { width: 11px; height: 11px; border-radius: 50%; background: #cbd5e1; }
.dm-dots span:nth-child(1){background:#f87171;} .dm-dots span:nth-child(2){background:#fbbf24;} .dm-dots span:nth-child(3){background:#34d399;}
.dm-brand { font-size: 13px; font-weight: 700; color: #0f172a; }
.dm-kpis { display: grid; grid-template-columns: repeat(5,1fr); gap: 7px; margin-bottom: 16px; }
.dm-kpi { background: #fff; border-radius: 10px; padding: 9px; box-shadow: 0 4px 14px rgba(15,23,42,.05); border: 1px solid #eef2f7; }
.dm-kpi small { color: #64748b; font-size: 8.5px; display: block; margin-bottom: 3px; line-height: 1.2; }
.dm-kpi b { font-size: 14px; color: #0f172a; font-variant-numeric: tabular-nums; }
.dm-kpi-alert { background: #fffbeb; border-color: #fde68a; }
.dm-kpi-alert b { color: #f8961e; }
.dm-chart { background: #fff; border-radius: 12px; padding: 14px; margin-bottom: 14px; box-shadow: 0 4px 14px rgba(15,23,42,.05); border: 1px solid #eef2f7; }
.dm-chart-title { font-size: 11px; font-weight: 700; color: #64748b; margin-bottom: 10px; }
.dm-legend { display: flex; gap: 12px; margin-bottom: 8px; }
.dm-legend span { display: flex; align-items: center; gap: 4px; font-size: 9px; color: #64748b; }
.dm-legend i { width: 9px; height: 9px; border-radius: 2px; display: inline-block; }
.dm-bars { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; height: 110px; position: relative; }
.dm-bar-group { display: flex; align-items: flex-end; gap: 3px; flex: 1; height: 100%; }
.dm-bar { flex: 1; border-radius: 4px 4px 0 0; height: 0; align-self: flex-end; animation: barGrow 1s cubic-bezier(.16,1,.3,1) forwards; }
.dm-bar.b1 { background: linear-gradient(180deg, #4361ee, #6c8cff); }
.dm-bar.b2 { background: linear-gradient(180deg, #f72585, #f76aaa); }
.dm-bar-group:nth-child(1) .dm-bar{animation-delay:.1s} .dm-bar-group:nth-child(2) .dm-bar{animation-delay:.2s}
.dm-bar-group:nth-child(3) .dm-bar{animation-delay:.3s} .dm-bar-group:nth-child(4) .dm-bar{animation-delay:.4s}
.dm-bar-group:nth-child(5) .dm-bar{animation-delay:.5s} .dm-bar-group:nth-child(6) .dm-bar{animation-delay:.6s}
@keyframes barGrow { to { height: var(--h); } }
.dm-line { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.dm-line path { fill: none; stroke: #4cc9f0; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 600; stroke-dashoffset: 600; animation: drawLine 1.6s ease .6s forwards; filter: drop-shadow(0 2px 4px rgba(76,201,240,.4)); }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.dm-bottom { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.dm-donut-wrap { text-align: center; }
.dm-donut { position: relative; width: 92px; height: 92px; margin: 0 auto; }
.dm-donut svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.dm-ring-bg { fill: none; stroke: #e2e8f0; stroke-width: 3.5; }
.dm-seg { fill: none; stroke-width: 3.5; stroke-linecap: butt; stroke-dasharray: 0 100; }
.dm-seg.s1 { stroke: #4361ee; animation: seg1 1s ease .8s forwards; }
.dm-seg.s2 { stroke: #f72585; stroke-dashoffset: -45; animation: seg2 1s ease 1s forwards; }
.dm-seg.s3 { stroke: #4cc9f0; stroke-dashoffset: -75; animation: seg3 1s ease 1.2s forwards; }
@keyframes seg1 { to { stroke-dasharray: 45 100; } }
@keyframes seg2 { to { stroke-dasharray: 30 100; } }
@keyframes seg3 { to { stroke-dasharray: 25 100; } }
.dm-donut-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.dm-donut-label b { font-size: 18px; color: #0f172a; }
.dm-donut-label small { font-size: 8px; color: #64748b; }
.dm-donut-title { font-size: 9.5px; font-weight: 700; color: #64748b; margin-top: 8px; }
.dm-table { background: #fff; border-radius: 12px; padding: 12px 14px; box-shadow: 0 4px 14px rgba(15,23,42,.05); border: 1px solid #eef2f7; }
.dm-table-title { font-size: 10px; font-weight: 700; color: #64748b; margin-bottom: 8px; }
.dm-row { display: grid; grid-template-columns: 1.6fr 1fr .9fr; gap: 6px; align-items: center; font-size: 10px; padding: 5px 0; border-bottom: 1px solid #f1f5f9; }
.dm-row:last-child { border-bottom: none; }
.dm-row span:nth-child(1) { color: #0f172a; font-weight: 600; }
.dm-row span:nth-child(2) { color: #64748b; }
.dm-row-head span { color: #64748b !important; font-weight: 700 !important; font-size: 9px; }
.dm-row b { font-size: 8.5px; padding: 2px 6px; border-radius: 20px; text-align: center; }
.dm-row b.late  { background: #fef2f2; color: #ef4444; }
.dm-row b.today { background: #fffbeb; color: #f8961e; }
.dm-row b.soon  { background: #eff6ff; color: #4361ee; }
.dm-shimmer { position: absolute; top: 0; left: -60%; width: 50%; height: 100%; background: linear-gradient(110deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-18deg); animation: shimmer 4.5s ease-in-out infinite; }
@keyframes shimmer { 0%,100% { left: -60%; } 50% { left: 120%; } }

/* ── PROVA SOCIAL ── */
.social-bar { background: var(--dark); color: #fff; padding: 48px 0; background-image: radial-gradient(800px 300px at 50% -50%, rgba(99,102,241,.18), transparent 70%); }
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.social-grid .num { font-size: 38px; font-weight: 800; line-height: 1.1; background: linear-gradient(135deg, #818cf8, #67e8f9); -webkit-background-clip: text; background-clip: text; color: transparent; }
.social-grid .num.txt { font-size: 30px; }
.social-grid .lbl { color: #cbd5e1; font-size: 14px; margin-top: 6px; }

/* ── SECTION ── */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-head .tag { display: inline-block; background: #eef2ff; color: var(--primary); padding: 6px 16px; border-radius: 30px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(23px, 4vw, 38px); font-weight: 800; margin-bottom: 14px; }
.section-head p { font-size: clamp(15px, 2vw, 18px); color: var(--gray); }

/* ── DORES ── */
.pains { background: linear-gradient(180deg, #fff 0%, #fff5f5 100%); }
.pains-cta { text-align: center; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 36px; }
.pains-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pain-card { background: #fff; border-radius: 18px; padding: 30px 26px; border: 1px solid #fee2e2; box-shadow: 0 4px 16px rgba(239,68,68,.04); transition: .3s; display: flex; flex-direction: column; }
.pain-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(239,68,68,.12); border-color: #fecaca; }
.pain-card .ico { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; background: linear-gradient(135deg, #fee2e2 0%, #fff1f2 100%); }
.pain-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--dark); font-weight: 700; }
.pain-card p { font-size: 14px; color: var(--gray); flex-grow: 1; }
.pain-result { margin-top: 16px; background: #fef2f2; border-radius: 10px; padding: 10px 14px; font-size: 13px; color: #b91c1c; border-left: 3px solid var(--danger); }
.pain-result b { font-weight: 700; }
.pain-card .feature-soon { align-self: flex-start; margin-top: 12px; }
.pains-bottom { text-align: center; margin-top: 52px; }
.pains-bottom p { font-size: 18px; color: var(--gray); margin-bottom: 6px; }
.pains-highlight { font-size: 23px !important; color: var(--dark) !important; font-weight: 600; }
.pains-highlight b { color: var(--danger); }
.pains-bridge { display: inline-block; margin-top: 22px !important; font-size: 17px !important; color: var(--primary) !important; font-weight: 700; background: #eef2ff; padding: 12px 24px; border-radius: 30px; }

/* ── FEATURES ── */
.features { background: var(--light); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: #fff; padding: 32px; border-radius: 16px; border: 1px solid #e2e8f0; transition: .3s; position: relative; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(79,70,229,.1); border-color: transparent; }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p { color: var(--gray); font-size: 15px; }
.feature-soon { display:inline-block; margin-top:8px; font-size:11px; font-weight:700; color:var(--soon); background:#fffbeb; padding:3px 10px; border-radius:20px; }
.feature-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--primary); text-decoration: none; transition: .2s; }
.feature-link:hover { gap: 10px; color: var(--accent); }

/* ── COBRANÇA AUTOMÁTICA ── */
.billing { background: linear-gradient(160deg, #f0fdf4 0%, #ecfeff 100%); }
.billing-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.billing-tag { display: inline-block; background: #dcfce7; color: #15803d; padding: 6px 16px; border-radius: 30px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
.billing h2 { font-size: clamp(23px, 4vw, 36px); font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.billing h2 span { color: var(--wpp); }
.billing-sub { font-size: clamp(15px, 2vw, 17px); color: var(--gray); margin-bottom: 28px; }
.billing-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.bill-step { display: flex; gap: 16px; align-items: flex-start; }
.bill-step .dot { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: #fff; box-shadow: 0 4px 14px rgba(15,23,42,.08); }
.bill-step h4 { font-size: 16px; margin-bottom: 2px; }
.bill-step p { font-size: 14px; color: var(--gray); }
.billing-channels { display: flex; gap: 12px; flex-wrap: wrap; }
.bill-channel { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: #fff; border-radius: 12px; font-weight: 600; font-size: 14px; box-shadow: 0 4px 14px rgba(15,23,42,.06); }
.wpp-phone { max-width: 340px; margin: 0 auto; background: #0b141a; border-radius: 30px; padding: 12px; box-shadow: 0 30px 70px rgba(15,23,42,.25); border: 1px solid #1f2c34; }
.wpp-screen { background: #0b141a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23223' /%3E%3C/svg%3E"); border-radius: 20px; overflow: hidden; }
.wpp-head { background: #1f2c34; padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.wpp-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.wpp-name { color: #fff; font-size: 14px; font-weight: 600; }
.wpp-status { color: #8696a0; font-size: 11px; }
.wpp-body { padding: 18px 14px; display: flex; flex-direction: column; gap: 12px; min-height: 360px; }
.wpp-bubble { max-width: 82%; padding: 9px 12px; border-radius: 10px; font-size: 13px; line-height: 1.45; position: relative; opacity: 0; transform: translateY(10px); animation: bubbleIn .5s ease forwards; }
.wpp-bubble.out { align-self: flex-end; background: #005c4b; color: #e9edef; border-bottom-right-radius: 3px; }
.wpp-bubble.in { align-self: flex-start; background: #202c33; color: #e9edef; border-bottom-left-radius: 3px; }
.wpp-bubble .time { display: block; font-size: 9.5px; color: #8696a0; text-align: right; margin-top: 4px; }
.wpp-bubble.out .time { color: #8bb9af; }
.wpp-bubble b { color: #fff; }
.wpp-bubble:nth-child(1){ animation-delay: .3s; }
.wpp-bubble:nth-child(2){ animation-delay: 1.3s; }
.wpp-system{ animation-delay: 2.4s; }
@keyframes bubbleIn { to { opacity: 1; transform: none; } }
.wpp-tagline { text-align: center; font-size: 11px; color: #8696a0; margin: 6px 0; }
.wpp-system { align-self: center; max-width: 90%; text-align: center; background: rgba(37,211,102,.12); color: #25d366; font-size: 11.5px; font-weight: 600; padding: 8px 14px; border-radius: 10px; border: 1px solid rgba(37,211,102,.3); opacity: 0; transform: translateY(10px); animation: bubbleIn .5s ease forwards; }
.wpp-system b { color: #25d366; }

/* ── VITRINE PÚBLICA ── */
.showcase { background: linear-gradient(160deg, #eff6ff 0%, #f5f3ff 100%); }
.showcase-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.showcase-tag { display: inline-block; background: #dbeafe; color: #1d4ed8; padding: 6px 16px; border-radius: 30px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
.showcase h2 { font-size: clamp(23px, 4vw, 36px); font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.showcase h2 span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.showcase-sub { font-size: clamp(15px, 2vw, 17px); color: var(--gray); margin-bottom: 28px; }
.showcase-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.sc-step { display: flex; gap: 16px; align-items: flex-start; }
.sc-step .dot { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: #fff; box-shadow: 0 4px 14px rgba(15,23,42,.08); }
.sc-step h4 { font-size: 16px; margin-bottom: 2px; }
.sc-step p { font-size: 14px; color: var(--gray); }
.showcase-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.sc-mock { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px rgba(15,23,42,.22); border: 1px solid #e2e8f0; min-height: 440px; background: #e8eef3; }
.sc-map { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(219,234,254,.4), rgba(219,234,254,.4)), repeating-linear-gradient(0deg, #dfe7ee 0 1px, transparent 1px 46px), repeating-linear-gradient(90deg, #dfe7ee 0 1px, transparent 1px 46px), #eef3f7; }
.sc-road { position: absolute; background: #fff; box-shadow: 0 0 0 1px #e2e8f0; }
.sc-road.r1 { top: 35%; left: -5%; width: 110%; height: 14px; transform: rotate(-6deg); }
.sc-road.r2 { top: -10%; left: 60%; width: 16px; height: 120%; transform: rotate(8deg); }
.sc-road.r3 { top: 70%; left: -5%; width: 110%; height: 10px; transform: rotate(3deg); }
.sc-pin { position: absolute; width: 26px; height: 26px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); border: 2px solid #fff; box-shadow: 0 3px 8px rgba(0,0,0,.3); display: flex; align-items: center; justify-content: center; animation: pinDrop .5s cubic-bezier(.16,1,.3,1) backwards; }
.sc-pin::after { content: ""; width: 8px; height: 8px; background: #fff; border-radius: 50%; transform: rotate(45deg); }
.sc-pin.blue { background: #2563eb; }
.sc-pin.green { background: #16a34a; }
.sc-pin.p1 { top: 28%; left: 22%; animation-delay: .2s; }
.sc-pin.p2 { top: 50%; left: 45%; animation-delay: .35s; }
.sc-pin.p3 { top: 38%; left: 68%; animation-delay: .5s; }
.sc-pin.p4 { top: 66%; left: 32%; animation-delay: .65s; }
.sc-pin.p5 { top: 60%; left: 74%; animation-delay: .8s; }
@keyframes pinDrop { from { opacity: 0; transform: rotate(-45deg) translateY(-20px); } }
.sc-topbar { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; align-items: center; gap: 10px; background: #fff; padding: 8px 14px; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,.12); border-top: 3px solid #16a34a; white-space: nowrap; }
.sc-topbar .sc-logo { width: 28px; height: 28px; border-radius: 7px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.sc-topbar b { font-size: 13px; color: #111; }
.sc-topbar .sc-wpp { display: inline-flex; align-items: center; gap: 5px; background: #25d366; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.sc-card { position: absolute; left: 18px; bottom: 18px; z-index: 5; width: 230px; background: #fff; border-radius: 12px; padding: 10px; display: flex; gap: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.18); border: 2px solid #2563eb; }
.sc-card .sc-thumb { width: 56px; height: 56px; border-radius: 8px; flex-shrink: 0; background: linear-gradient(135deg, #93c5fd, #2563eb); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.sc-card .sc-info { min-width: 0; flex: 1; }
.sc-card .sc-info b { font-size: 13px; color: #111; display: block; }
.sc-card .sc-info p { font-size: 11px; color: #6b7280; margin: 2px 0 0; }
.sc-card .sc-info small { font-size: 10px; color: #9ca3af; }
.sc-card .sc-plus { align-self: center; width: 28px; height: 28px; border-radius: 50%; background: #16a34a; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; flex-shrink: 0; }
.sc-cart { position: absolute; top: 16px; right: 16px; z-index: 5; width: 48px; height: 48px; border-radius: 12px; background: #2563eb; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 6px 20px rgba(37,99,235,.4); }
.sc-cart .sc-badge { position: absolute; top: -6px; right: -6px; background: #ef4444; color: #fff; font-size: 11px; font-weight: 700; min-width: 20px; height: 20px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }

/* ── DIFERENCIAIS ── */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.diff-card { display: flex; gap: 18px; padding: 28px; border-radius: 16px; background: linear-gradient(135deg, #eef2ff 0%, #fff 100%); border: 1px solid #e0e7ff; }
.diff-card .ico { width: 52px; height: 52px; flex-shrink: 0; border-radius: 12px; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.diff-card h3 { font-size: 18px; margin-bottom: 6px; }
.diff-card p { color: var(--gray); font-size: 14px; }

/* ── CONTRATOS DIGITAIS ── */
.contracts { background: linear-gradient(160deg, #faf5ff 0%, #eef2ff 100%); }
.contracts-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.ct-tag { display: inline-block; background: #f3e8ff; color: #7c3aed; padding: 6px 16px; border-radius: 30px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
.contracts h2 { font-size: clamp(23px, 4vw, 36px); font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.contracts h2 span { background: linear-gradient(135deg, #7c3aed, #4f46e5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ct-sub { font-size: clamp(15px, 2vw, 17px); color: var(--gray); margin-bottom: 28px; }
.ct-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.ct-step { display: flex; gap: 16px; align-items: flex-start; }
.ct-step .dot { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: #fff; box-shadow: 0 4px 14px rgba(15,23,42,.08); }
.ct-step h4 { font-size: 16px; margin-bottom: 2px; }
.ct-step p { font-size: 14px; color: var(--gray); }
.ct-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.ct-badge-item { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: #fff; border-radius: 12px; font-weight: 600; font-size: 14px; box-shadow: 0 4px 14px rgba(15,23,42,.06); }
.ct-doc { position: relative; max-width: 360px; margin: 0 auto; background: #fff; border-radius: 14px; padding: 28px 26px; box-shadow: 0 30px 70px rgba(124,58,237,.18); border: 1px solid #ede9fe; overflow: hidden; }
.ct-doc::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, #7c3aed, #4f46e5); }
.ct-doc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px dashed #e2e8f0; }
.ct-doc-logo { width: 36px; height: 36px; border-radius: 9px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.ct-doc-head b { font-size: 13px; color: #0f172a; display: block; }
.ct-doc-head small { font-size: 10px; color: #94a3b8; }
.ct-doc-head .ct-auto { margin-left: auto; font-size: 9px; font-weight: 700; color: #7c3aed; background: #f3e8ff; padding: 3px 9px; border-radius: 999px; }
.ct-doc-title { font-size: 13px; font-weight: 800; color: #0f172a; text-align: center; margin-bottom: 16px; letter-spacing: .3px; }
.ct-lines { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.ct-line { height: 7px; border-radius: 4px; background: #eef2f7; opacity: 0; transform: translateX(-8px); animation: ctIn .5s ease forwards; }
.ct-line.fill { background: #ede9fe; }
.ct-line:nth-child(1){width:100%;animation-delay:.2s} .ct-line:nth-child(2){width:92%;animation-delay:.3s}
.ct-line:nth-child(3){width:96%;animation-delay:.4s} .ct-line:nth-child(4){width:60%;animation-delay:.5s}
@keyframes ctIn { to { opacity: 1; transform: none; } }
.ct-sign { border: 1.5px dashed #c4b5fd; border-radius: 10px; padding: 14px; text-align: center; background: #faf5ff; position: relative; margin-bottom: 16px; }
.ct-sign .ct-scribble { font-family: 'Segoe Script', cursive; font-size: 22px; color: #4f46e5; font-style: italic; opacity: 0; transform: scale(.8); animation: ctSign .6s cubic-bezier(.16,1,.3,1) 1.4s forwards; }
@keyframes ctSign { to { opacity: 1; transform: none; } }
.ct-sign small { display: block; font-size: 9px; color: #94a3b8; margin-top: 4px; }
.ct-status { display: flex; align-items: center; justify-content: center; gap: 8px; background: #dcfce7; color: #15803d; font-size: 12px; font-weight: 700; padding: 10px; border-radius: 10px; opacity: 0; animation: ctIn .5s ease 2s forwards; }
.ct-status .ct-check { width: 18px; height: 18px; border-radius: 50%; background: #16a34a; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.ct-seal { position: absolute; bottom: 18px; right: 18px; width: 64px; height: 64px; border-radius: 50%; background: rgba(22,163,74,.08); border: 2px solid #16a34a; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: rotate(-12deg) scale(0); opacity: 0; animation: ctSeal .5s cubic-bezier(.34,1.56,.64,1) 2.3s forwards; }
.ct-seal b { font-size: 16px; line-height: 1; }
.ct-seal small { font-size: 6px; font-weight: 700; color: #16a34a; text-transform: uppercase; letter-spacing: .3px; text-align: center; margin-top: 2px; }
@keyframes ctSeal { to { transform: rotate(-12deg) scale(1); opacity: 1; } }

/* ── TEAMZAP ── */
.teamzap { background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 100%); color: #fff; overflow: hidden; }
.teamzap-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.tz-tag { display: inline-block; background: rgba(99,102,241,.2); color: #a5b4fc; padding: 6px 16px; border-radius: 30px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; border: 1px solid rgba(99,102,241,.3); }
.teamzap h2 { font-size: clamp(23px, 4vw, 38px); font-weight: 800; margin-bottom: 16px; line-height: 1.15; color: #fff; }
.teamzap h2 span { background: linear-gradient(135deg, #818cf8, #22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tz-sub { font-size: clamp(15px, 2vw, 17px); color: #94a3b8; margin-bottom: 28px; }
.tz-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 30px; }
.tz-feat { display: flex; gap: 12px; align-items: flex-start; }
.tz-feat .ico { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; font-size: 18px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.tz-feat h4 { font-size: 14px; margin-bottom: 1px; color: #fff; }
.tz-feat p { font-size: 12.5px; color: #94a3b8; line-height: 1.4; }
.tz-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.tz-chip { font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #cbd5e1; }
.tz-mock { position: relative; border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 30px 70px rgba(0,0,0,.4); border: 1px solid #e2e8f0; display: grid; grid-template-columns: 56px 1fr 1.2fr; min-height: 420px; }
.tz-rail { background: #4f46e5; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 16px 0; }
.tz-rail .tz-r-logo { width: 30px; height: 30px; border-radius: 8px; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 15px; }
.tz-rail .tz-r-ic { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,.6); }
.tz-rail .tz-r-ic.on { background: rgba(255,255,255,.18); color: #fff; }
.tz-list { border-right: 1px solid #eef2f7; background: #fafbfc; overflow: hidden; }
.tz-list-head { padding: 12px 14px; font-size: 12px; font-weight: 700; color: #0f172a; border-bottom: 1px solid #eef2f7; display: flex; align-items: center; justify-content: space-between; }
.tz-list-head small { font-size: 9px; color: #fff; background: #16a34a; padding: 2px 7px; border-radius: 999px; }
.tz-conv { display: flex; gap: 9px; padding: 10px 12px; border-bottom: 1px solid #f1f5f9; cursor: default; opacity: 0; transform: translateX(-10px); animation: tzIn .5s ease forwards; }
.tz-conv:nth-child(2){animation-delay:.2s} .tz-conv:nth-child(3){animation-delay:.35s}
.tz-conv:nth-child(4){animation-delay:.5s} .tz-conv:nth-child(5){animation-delay:.65s}
.tz-conv.active { background: #eef2ff; }
@keyframes tzIn { to { opacity: 1; transform: none; } }
.tz-av { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; position: relative; }
.tz-av .tz-badge { position: absolute; bottom: -2px; right: -2px; width: 14px; height: 14px; border-radius: 50%; border: 2px solid #fafbfc; font-size: 8px; display: flex; align-items: center; justify-content: center; }
.tz-conv-info { min-width: 0; flex: 1; }
.tz-conv-info b { font-size: 12px; color: #0f172a; display: block; }
.tz-conv-info p { font-size: 10.5px; color: #64748b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tz-conv-tag { font-size: 8px; font-weight: 700; padding: 1px 6px; border-radius: 999px; margin-top: 2px; display: inline-block; }
.tz-conv-tag.vendas { background: #dcfce7; color: #15803d; }
.tz-conv-tag.suporte { background: #dbeafe; color: #1d4ed8; }
.tz-conv-tag.fin { background: #fef3c7; color: #b45309; }
.tz-chat { display: flex; flex-direction: column; background: #efeae2; }
.tz-chat-head { background: #fff; padding: 10px 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #eef2f7; }
.tz-chat-head .tz-av { width: 30px; height: 30px; font-size: 12px; }
.tz-chat-head b { font-size: 12px; color: #0f172a; }
.tz-chat-head small { font-size: 9px; color: #16a34a; display: block; }
.tz-chat-head .tz-q { margin-left: auto; font-size: 8.5px; font-weight: 700; color: #15803d; background: #dcfce7; padding: 3px 8px; border-radius: 999px; }
.tz-chat-body { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.tz-msg { max-width: 78%; padding: 7px 10px; border-radius: 8px; font-size: 11px; line-height: 1.4; opacity: 0; transform: translateY(8px); animation: tzIn .4s ease forwards; }
.tz-msg.in { background: #fff; align-self: flex-start; color: #0f172a; }
.tz-msg.out { background: #d9fdd3; align-self: flex-end; color: #0f172a; }
.tz-msg.bot { background: #ede9fe; align-self: flex-end; color: #5b21b6; border: 1px solid #ddd6fe; }
.tz-msg .t { display: block; font-size: 8px; color: #94a3b8; text-align: right; margin-top: 2px; }
.tz-msg:nth-child(1){animation-delay:.6s} .tz-msg:nth-child(2){animation-delay:1.2s}
.tz-msg:nth-child(3){animation-delay:1.9s} .tz-msg:nth-child(4){animation-delay:2.6s}
.tz-chat-input { background: #fff; padding: 8px 12px; display: flex; align-items: center; gap: 8px; border-top: 1px solid #eef2f7; }
.tz-chat-input .box { flex: 1; height: 28px; background: #f1f5f9; border-radius: 999px; }
.tz-chat-input .ai-btn { font-size: 9px; font-weight: 700; color: #fff; background: var(--wpp); padding: 5px 12px; border-radius: 999px; white-space: nowrap; }

/* ── ECONOMIA (CALCULADORA) ── */
.economy { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.economy::before { content: ""; position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(79,70,229,.25) 0%, rgba(6,182,212,.12) 40%, transparent 70%); filter: blur(20px); }
.economy .container { position: relative; z-index: 1; }
.economy .section-head h2 { color: #fff; }
.economy .section-head p { color: #94a3b8; }
.economy .section-head .tag { background: #1e293b; color: #67e8f9; }
.calc-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 36px; align-items: stretch; }
.calc-controls { background: rgba(30,41,59,.55); border: 1px solid #334155; border-radius: 20px; padding: 32px; backdrop-filter: blur(6px); }
.calc-controls h3 { font-size: 18px; margin-bottom: 4px; }
.calc-controls .hint { font-size: 13px; color: #94a3b8; margin-bottom: 26px; }
.calc-field { margin-bottom: 26px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field .lbl { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.calc-field .lbl span { font-size: 14px; color: #cbd5e1; display: flex; align-items: center; gap: 8px; }
.calc-field .lbl b { font-size: 17px; font-weight: 800; color: #fff; background: rgba(230,51,41,.15); border: 1px solid rgba(230,51,41,.35); padding: 3px 12px; border-radius: 999px; white-space: nowrap; }
.calc-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: #334155; outline: none; cursor: pointer; }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #e63329, #b91c1c); border: 3px solid #fff; box-shadow: 0 2px 10px rgba(230,51,41,.6); transition: .15s; }
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #e63329, #b91c1c); border: 3px solid #fff; box-shadow: 0 2px 10px rgba(230,51,41,.6); cursor: pointer; }
.calc-result { border-radius: 20px; padding: 34px 32px; position: relative; overflow: hidden; background: linear-gradient(160deg, #1e293b 0%, #0b1220 100%); border: 1px solid #334155; display: flex; flex-direction: column; }
.calc-result .shine { position: absolute; top: 0; left: -60%; width: 50%; height: 100%; background: linear-gradient(110deg, transparent, rgba(255,255,255,.06), transparent); transform: skewX(-18deg); animation: shimmer 5s ease-in-out infinite; }
.calc-loss-label { font-size: 14px; color: #fca5a5; font-weight: 600; margin-bottom: 4px; }
.calc-loss-value { font-size: clamp(36px, 6vw, 52px); font-weight: 800; line-height: 1; color: #f87171; font-variant-numeric: tabular-nums; margin-bottom: 4px; }
.calc-loss-sub { font-size: 13px; color: #94a3b8; margin-bottom: 22px; }
.calc-breakdown { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.calc-line { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.calc-line span { color: #cbd5e1; display: flex; align-items: center; gap: 8px; }
.calc-line b { color: #fca5a5; font-variant-numeric: tabular-nums; }
.calc-bar { height: 5px; border-radius: 999px; background: #334155; overflow: hidden; margin-top: 3px; }
.calc-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #ef4444, #f87171); transition: width .4s ease; }
.calc-divider { height: 1px; background: rgba(255,255,255,.1); margin: 6px 0 18px; }
.calc-save { border-radius: 16px; padding: 22px; margin-bottom: 18px; background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%); position: relative; overflow: hidden; text-align: center; }
.calc-save::before { content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 60%); animation: ecoGlow 4s ease-in-out infinite; }
@keyframes ecoGlow { 0%,100%{transform:scale(1);opacity:.6;} 50%{transform:scale(1.2);opacity:1;} }
.calc-save .csv-top { position: relative; z-index: 1; }
.calc-save .csv-top small { font-size: 12.5px; opacity: .92; display: block; margin-bottom: 2px; }
.calc-save .csv-top b { font-size: 24px; font-weight: 800; font-variant-numeric: tabular-nums; }
.calc-year-hero { position: relative; z-index: 1; margin-top: 14px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.25); }
.calc-year-hero .yh-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: .9; margin-bottom: 2px; }
.calc-year-hero .yh-value { font-size: clamp(34px, 5vw, 46px); font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; text-shadow: 0 2px 14px rgba(0,0,0,.25); letter-spacing: -1px; }
.calc-year-hero .yh-sub { font-size: 12.5px; opacity: .9; margin-top: 4px; }
.calc-cost { text-align: center; font-size: 14px; color: #cbd5e1; margin: 4px 0 18px; }
.calc-cost b { color: #fff; }
.calc-result .btn-primary { width: 100%; justify-content: center; }
.calc-disclaimer { font-size: 11px; color: #64748b; margin-top: 14px; line-height: 1.5; text-align: center; }

/* ── PLANOS ── */
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.plan { background: #fff; border: 1px solid #e2e8f0; border-radius: 18px; padding: 32px 26px; display: flex; flex-direction: column; position: relative; transition: .3s; }
.plan:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(15,23,42,.12); border-color: #c7d2fe; }
.plan.popular { border: 2px solid var(--primary); box-shadow: 0 20px 44px rgba(79,70,229,.16); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 18px rgba(79,70,229,.4); }
.plan-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.plan h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.plan .price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.plan .price b { font-size: 34px; font-weight: 800; color: var(--dark); }
.plan .price span { font-size: 15px; color: var(--gray); }
.plan .desc { font-size: 14px; color: var(--gray); margin-bottom: 22px; min-height: 60px; }
.plan ul { list-style: none; margin: 0 0 24px; padding: 0; flex-grow: 1; }
.plan ul li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; font-size: 13.5px; color: var(--dark); border-bottom: 1px solid #f1f5f9; line-height: 1.4; }
.plan ul li:last-child { border-bottom: none; }
.plan ul li.off { color: #94a3b8; }
.plan ul li small { display: block; font-size: 11px; color: #94a3b8; font-weight: 600; margin-top: 1px; }
.plan ul li .ic { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; font-size: 11px; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.plan ul li .ic.yes { background: #dcfce7; color: #16a34a; }
.plan ul li .ic.no  { background: #fef2f2; color: var(--danger); }
.plan ul li .ic.soon { background: #fffbeb; }
.soon-tag { display: inline-block; font-size: 10px; font-weight: 700; color: var(--soon); background: #fffbeb; padding: 2px 8px; border-radius: 999px; margin-top: 3px; }
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ── TABELA ── */
.compare { background: var(--light); }
.scroll-hint { display: none; align-items: center; justify-content: center; gap: 8px; text-align: center; font-size: 13px; font-weight: 600; color: var(--primary); background: #eef2ff; padding: 10px 16px; border-radius: 30px; max-width: 320px; margin: 0 auto 18px; }
.scroll-hint .hand { animation: swipeHint 1.4s ease-in-out infinite; }
@keyframes swipeHint { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
.table-wrap { overflow-x: auto; border-radius: 16px; box-shadow: 0 10px 30px rgba(15,23,42,.06); -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; background: #fff; min-width: 720px; }
th, td { padding: 14px 18px; text-align: center; border-bottom: 1px solid #eef2f7; font-size: 14px; }
th:first-child, td:first-child { text-align: left; min-width: 260px; font-weight: 500; }
thead th { background: #f1f5f9; font-weight: 700; }
thead th.hl { background: #eef2ff; color: var(--primary); }
tbody tr:hover { background: #f8fafc; }
td.hl { background: #eef2ff3d; }
.yes { color: #16a34a; font-weight: 700; }
.no { color: var(--danger); font-weight: 700; }
.soon-cell { color: var(--soon); font-weight: 700; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 16px; transition: .2s; }
.faq-q:hover { background: #f8fafc; }
.faq-q .arrow { transition: .3s; color: var(--primary); font-size: 20px; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--gray); font-size: 15px; }

/* ── CTA FINAL ── */
.cta-final { background: var(--grad); color: #fff; text-align: center; border-radius: 24px; padding: 64px 30px; margin: 60px auto; position: relative; overflow: hidden; }
.cta-final h2 { font-size: clamp(23px, 4vw, 36px); margin-bottom: 14px; }
.cta-final p { font-size: 18px; opacity: .92; margin-bottom: 30px; }
.cta-final .btn-wpp { background: #fff; color: var(--primary); }
.cta-final .btn-wpp:hover { background: #eef2ff; }
.cta-trust { display: flex; gap: 20px; justify-content: center; margin-top: 24px; flex-wrap: wrap; font-size: 14px; opacity: .9; }

/* ── FOOTER ── */
footer { background: var(--dark); color: #cbd5e1; padding: 50px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
footer .logo { color: #fff; -webkit-text-fill-color: #fff; margin-bottom: 14px; }
footer h4 { color: #fff; margin-bottom: 16px; font-size: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer a { color: #cbd5e1; text-decoration: none; transition: .2s; }
footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; padding-bottom: 40px; text-align: center; font-size: 13px; color: #64748b; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: .7s cubic-bezier(.16,1,.3,1); }
.reveal.show { opacity: 1; transform: none; }

/* ── WPP FLUTUANTE ── */
.wpp-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: var(--wpp); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; z-index: 999; box-shadow: 0 8px 24px rgba(37,211,102,.5); text-decoration: none; animation: pulse 2s infinite; }
.wpp-float svg { width: 34px; height: 34px; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVIDADE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .section { padding: 70px 0; }
    .hero { padding: 130px 0 70px; }
    .plans-grid, .features-grid, .pains-grid { grid-template-columns: repeat(2, 1fr); }
    .social-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .diff-grid { grid-template-columns: 1fr; }
    .billing-grid { grid-template-columns: 1fr; gap: 40px; }
    .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
    .contracts-grid { grid-template-columns: 1fr; gap: 40px; }
    .teamzap-grid { grid-template-columns: 1fr; gap: 40px; }
    .tz-mock { grid-template-columns: 48px 1fr 1.2fr; }
    .calc-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    .container { padding: 0 18px; }
    .section { padding: 56px 0; }
    .menu-toggle { display: block; }
    .nav-links { position: absolute; top: 70px; left: 0; width: 100%; background: #fff; flex-direction: column; padding: 20px; gap: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.1); display: none; }
    .nav-links.open { display: flex; }
    .hero { padding: 110px 0 50px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 34px; }
    .hero-cta, .hero-trust { justify-content: center; }
    .features-grid, .plans-grid, .pains-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    footer .logo { justify-content: center; }
    .dash-mock { min-height: auto; padding: 14px; max-width: 440px; margin: 0 auto; }
    .dm-kpis { grid-template-columns: repeat(2,1fr); }
    .dm-bottom { grid-template-columns: 1fr; }
    .dm-bars { height: 90px; }
    .wpp-body { min-height: 300px; }
    .sc-mock { min-height: 400px; max-width: 480px; margin: 0 auto; }
    .ct-doc { max-width: 100%; }
    .tz-feats { grid-template-columns: 1fr; }
    .tz-mock { grid-template-columns: 1fr; min-height: auto; }
    .tz-rail { flex-direction: row; justify-content: center; padding: 10px; }
    .tz-list { display: none; }
    .cta-final { margin: 40px auto; padding: 48px 22px; }
    .cta-final .btn { width: 100%; justify-content: center; }
    .scroll-hint { display: flex; }
    .table-wrap {
        position: relative;
        background:
            linear-gradient(to right, #fff 30%, rgba(255,255,255,0)),
            linear-gradient(to right, rgba(255,255,255,0), #fff 70%) 100% 0,
            radial-gradient(farthest-side at 0 50%, rgba(15,23,42,.14), transparent),
            radial-gradient(farthest-side at 100% 50%, rgba(15,23,42,.14), transparent) 100% 0;
        background-repeat: no-repeat;
        background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
        background-attachment: local, local, scroll, scroll;
    }
    th:first-child, td:first-child { position: sticky; left: 0; z-index: 2; min-width: 180px; background: #fff; box-shadow: 2px 0 6px rgba(15,23,42,.06); }
    thead th:first-child { background: #f1f5f9; z-index: 3; }
    th, td { padding: 12px 10px; font-size: 13px; }
    table { min-width: 600px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }
    .nav { padding: 14px 16px; }
    .logo img { max-width: 120px; }
    .hero { padding: 100px 0 44px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-trust { justify-content: center; gap: 10px 16px; font-size: 13px; }
    .dash-mock { padding: 12px; border-radius: 16px; }
    .dm-kpis { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .dm-kpi-alert { grid-column: 1 / -1; }
    .dm-kpi small { font-size: 9px; }
    .dm-kpi b { font-size: 13px; }
    .dm-bars { height: 78px; }
    .dm-donut { width: 76px; height: 76px; }
    .social-bar { padding: 38px 0; }
    .social-grid { gap: 24px 16px; }
    .social-grid .num { font-size: 30px; }
    .social-grid .num.txt { font-size: 22px; }
    .social-grid .lbl { font-size: 13px; }
    .section-head { margin-bottom: 38px; }
    .pain-card { padding: 24px 20px; }
    .pains-highlight { font-size: 19px !important; }
    .pains-bridge { font-size: 15px !important; padding: 10px 18px; }
    .wpp-phone { max-width: 100%; padding: 10px; }
    .wpp-body { min-height: 260px; padding: 14px 12px; }
    .sc-mock { min-height: 350px; }
    .sc-card { width: calc(100% - 32px); left: 16px; bottom: 16px; }
    .sc-topbar { font-size: 11px; padding: 6px 10px; gap: 6px; max-width: calc(100% - 32px); }
    .sc-topbar b { font-size: 11px; overflow: hidden; text-overflow: ellipsis; }
    .ct-doc { padding: 22px 18px; }
    .ct-badges .ct-badge-item { font-size: 13px; padding: 9px 14px; }
    .showcase-cta { flex-direction: column; }
    .showcase-cta .btn { width: 100%; justify-content: center; }
    .teamzap .showcase-cta .btn { width: 100%; }
    .tz-mock { min-height: auto; }
    .calc-controls { padding: 20px; }
    .calc-result { padding: 24px 18px; }
    .calc-field .lbl { flex-wrap: wrap; gap: 6px; }
    .calc-field .lbl span { font-size: 13px; }
    .calc-line { font-size: 12px; }
    .calc-save .csv-top b { font-size: 20px; }
    .plan { padding: 26px 20px; }
    .plan .desc { min-height: auto; }
    .faq-q { padding: 16px 18px; font-size: 15px; }
    .faq-a p { padding: 0 18px 16px; font-size: 14px; }
    .cta-final { padding: 40px 18px; border-radius: 18px; }
    .cta-final p { font-size: 15px; }
    .cta-trust { gap: 8px 16px; font-size: 13px; }
    .wpp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
    .wpp-float svg { width: 30px; height: 30px; }
}

@media (max-width: 360px) {
    .dm-kpis { gap: 5px; }
    .social-grid { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   🔒 CONTENÇÃO DE OVERFLOW — SEM ESMAGAR O LAYOUT
   ═══════════════════════════════════════════════════════════ */
html, body { overflow-x: hidden; max-width: 100%; }
body { position: relative; }

.sc-mock, .dash-mock, .tz-mock, .ct-doc, .wpp-phone,
.calc-result, .calc-controls { overflow: hidden; max-width: 100%; }

.economy, .teamzap, .hero, .showcase, .contracts, .billing { overflow: hidden; }

img, svg, video, canvas { max-width: 100%; height: auto; }

.table-wrap { max-width: 100%; overflow-x: auto; }
table { min-width: 600px; }


/* ═══════════════════════════════════════════════════════════
   📱 AJUSTE FINO MOBILE — LEGIBILIDADE REAL
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

    /* respiro lateral */
    .container { padding: 0 20px; }

    /* corpo de texto legível */
    body { font-size: 16px; }

    /* ── DASHBOARD: parar de espremer 5 KPIs ── */
    .dm-kpis { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .dm-kpi small { font-size: 10px; }
    .dm-kpi b { font-size: 15px; }
    .dm-chart-title, .dm-table-title, .dm-donut-title { font-size: 12px; }
    .dm-row, .dm-row-head span { font-size: 11px; }

    /* ── WHATSAPP mock: balões legíveis ── */
    .wpp-bubble { font-size: 14px; max-width: 88%; }
    .wpp-name { font-size: 15px; }

    /* ── TEAMZAP: esconder o que não cabe, ampliar o resto ── */
    .tz-msg { font-size: 13px; max-width: 85%; }
    .tz-conv-info b { font-size: 13px; }
    .tz-chat-head b { font-size: 13px; }

    /* ── CALCULADORA: números e labels maiores ── */
    .calc-field .lbl span { font-size: 14px; }
    .calc-field .lbl b { font-size: 16px; }
    .calc-line { font-size: 13px; }

    /* ── VITRINE/MAPA: card não colar nas bordas ── */
    .sc-card { width: calc(100% - 24px); left: 12px; bottom: 12px; }
    .sc-card .sc-info b { font-size: 14px; }

    /* ── CONTRATO: texto do doc legível ── */
    .ct-doc-title { font-size: 15px; }
    .ct-scribble { font-size: 26px; }

    /* ── PLANOS: features legíveis ── */
    .plan ul li { font-size: 15px; padding: 11px 0; }
    .plan .price b { font-size: 38px; }
    .plan h3 { font-size: 24px; }

    /* ── TABELA COMPARATIVA: fonte usável na rolagem ── */
    th, td { padding: 14px 12px; font-size: 14px; }
    th:first-child, td:first-child { min-width: 200px; }
}


/* ═══ FORÇAR ESCALA MOBILE REAL ═══ */
@media (max-width: 768px) {

    html { font-size: 17px; }              /* base maior */
    body { font-size: 1rem; line-height: 1.65; }

    .container { padding: 0 18px; }

    /* títulos com escala fluida */
    h1  { font-size: clamp(30px, 8vw, 42px); line-height: 1.15; }
    h2  { font-size: clamp(26px, 6.5vw, 34px); }
    h3  { font-size: clamp(19px, 5vw, 24px); }
    p, li { font-size: clamp(15px, 4vw, 17px); }

    /* seções com respiro vertical decente */
    section { padding: 56px 0; }

    /* MOCKUPS: parar de manter tamanho desktop.
       ocupam largura total e crescem o texto interno */
    .sc-mock, .dash-mock, .tz-mock, .wpp-phone,
    .ct-doc, .calc-result, .calc-controls {
        width: 100%;
        max-width: 100%;
        transform: none;   /* mata qualquer scale() herdado */
    }

    /* qualquer texto interno de mockup fica legível */
    .sc-mock *, .dash-mock *, .tz-mock *, .wpp-phone * {
        font-size: clamp(11px, 3vw, 14px);
    }

    /* grids de 2+ colunas viram 1 no celular */
    .pain-grid, .feat-grid, .plans-grid,
    .why-grid, .cob-list { grid-template-columns: 1fr !important; }

    /* KPIs do dashboard: 2 colunas, não 5 */
    .dm-kpis { grid-template-columns: repeat(2, 1fr) !important; }
}
