/* ═══════════════════════════════════════════════════════════════════════
   LANDING.CSS — Mobilizza Dark Cartographic Command
   Premium dark-mode only. WhatsApp green identity. Immersive depth.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Scroll & base ── */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: var(--fs-base);
    font-weight: var(--fw-normal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
*, *::before, *::after { box-sizing: border-box; }

/* ── Font display (Sora) ── */
.font-display { font-family: 'Sora', 'Inter', system-ui, sans-serif; }

/* ── Light mode overrides (mínimos, apenas quando admin ativar) ── */
[data-theme="light"] {
    --color-bg: #f9fafb;
    --color-surface: #ffffff;
    --color-surface-2: #f3f4f6;
    --color-border: #e5e7eb;
    --color-text: #111827;
    --color-muted: #6b7280;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.07);
    --color-accent-glow: rgba(37,211,102,0.12);
    --color-success-bg: rgba(37,211,102,0.08);
}

/* ── Container ── */
.lp-container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

/* ═══════════════════════════════════════════════════════════════════════
   ANIMAÇÕES
   ═══════════════════════════════════════════════════════════════════════ */
@keyframes lp-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes lp-pulse-ring {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}
@keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
@keyframes lp-blob-move {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.05); }
    66%       { transform: translate(-20px, 15px) scale(0.97); }
}
@keyframes lp-pin-appear {
    0%   { opacity: 0; transform: translateY(-12px) scale(0.5); }
    80%  { transform: translateY(2px) scale(1.1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lp-card-slide {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes lp-typewriter-caret {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0; }
}
@keyframes lp-split-reveal {
    from { clip-path: inset(0 0 100% 0); }
    to   { clip-path: inset(0 0 0% 0); }
}
@keyframes lp-radar-ping {
    0%   { transform: scale(0); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}
@keyframes lp-noise {
    0%, 100% { transform: translate(0, 0); }
    10%      { transform: translate(-5%, -5%); }
    20%      { transform: translate(-10%, 5%); }
    30%      { transform: translate(5%, -10%); }
    40%      { transform: translate(-5%, 15%); }
    50%      { transform: translate(-10%, 5%); }
    60%      { transform: translate(15%, 0); }
    70%      { transform: translate(0, 10%); }
    80%      { transform: translate(-15%, 0); }
    90%      { transform: translate(10%, 5%); }
}
@keyframes lp-widget-in {
    from { transform: translateX(-120%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}
@keyframes lp-widget-out {
    from { transform: translateX(0); opacity: 1; }
    to   { transform: translateX(-120%); opacity: 0; }
}
@keyframes lp-widget-progress {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

/* ═══════════════════════════════════════════════
   NOVAS ANIMAÇÕES TEMÁTICAS
   ═══════════════════════════════════════════════ */

/* Geo-Rings — ondas de geolocalização nos pins */
@keyframes lp-geo-ring-expand {
    0%   { transform: scale(0.5); opacity: 0.7; }
    100% { transform: scale(2.8); opacity: 0; }
}

/* Radar Sweep — linha de scan no mapa */
@keyframes lp-radar-sweep-move {
    0%   { top: 0; opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Chat Bubbles — bolhas subindo */
@keyframes lp-chat-bubble-float {
    0%   { transform: translateY(0) scale(0.8); opacity: 0; }
    15%  { opacity: 1; transform: translateY(-15px) scale(1); }
    85%  { opacity: 0.8; }
    100% { transform: translateY(-80px) scale(0.6); opacity: 0; }
}

/* Data Particles — partículas fluindo */
@keyframes lp-data-particle-flow {
    0%   { transform: translate(0, 0) scale(0); opacity: 0; }
    20%  { opacity: 1; transform: translate(var(--px1, 20px), var(--py1, -30px)) scale(1); }
    80%  { opacity: 0.6; }
    100% { transform: translate(var(--px2, 40px), var(--py2, -60px)) scale(0.3); opacity: 0; }
}

/* Heatmap Zones — zonas de densidade pulsando */
@keyframes lp-heatmap-pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50%      { transform: scale(1.15); opacity: 0.25; }
}

/* Send Pulse — onda no botão CTA */
@keyframes lp-send-pulse {
    0%   { transform: scaleX(0); opacity: 0.6; }
    50%  { transform: scaleX(1); opacity: 0.3; }
    100% { transform: scaleX(1); opacity: 0; }
}



.lp-anim-fade-up {
    opacity: 0;
    animation: lp-fade-up 0.65s cubic-bezier(0.16,1,0.3,1) var(--delay,0ms) both;
}

/* Reveal on scroll */
.lp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.lp-reveal.lp-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Focus visible premium */
*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}
button:focus-visible, a:focus-visible { border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════════════════
   BOTÕES
   ═══════════════════════════════════════════════════════════════════════ */
.lp-btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--color-accent); color: var(--color-bg);
    font-weight: var(--fw-bold); text-decoration: none;
    border-radius: var(--radius-pill); border: none; cursor: pointer;
    transition: opacity var(--transition-global), box-shadow var(--transition-global), transform var(--transition-global);
    white-space: nowrap; position: relative; overflow: hidden;
}
.lp-btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 0 32px rgba(37,211,102,0.35), 0 0 64px rgba(37,211,102,0.1);
    transform: translateY(-1px);
}

/* Send Pulse — efeito de envio no CTA */
.lp-btn-send-pulse::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: scaleX(0); transform-origin: left;
    animation: lp-send-pulse 3s ease-in-out infinite;
}
.lp-btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 1px solid var(--color-border); color: var(--color-text);
    font-weight: var(--fw-semibold); text-decoration: none;
    border-radius: var(--radius-pill); cursor: pointer; background: none;
    transition: border-color var(--transition-global), color var(--transition-global), background var(--transition-global);
    white-space: nowrap;
}
.lp-btn-outline:hover {
    border-color: var(--color-accent); color: var(--color-accent);
    background: var(--color-success-bg);
}
.lp-btn-ghost {
    display: inline-flex; align-items: center;
    color: var(--color-muted); font-weight: var(--fw-semibold);
    font-size: var(--fs-sm); text-decoration: none;
    transition: color var(--transition-global);
}
.lp-btn-ghost:hover { color: var(--color-text); }

.lp-btn-sm  { padding: 0.42rem 1rem;  font-size: var(--fs-sm); }
.lp-btn-lg  { padding: 0.85rem 1.75rem; font-size: var(--fs-base); }

/* ═══════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════ */
.lp-header {
    position: sticky; top: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 0 2rem; height: 62px;
    background: rgba(13,15,20,0.88);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
[data-theme="light"] .lp-header { background: rgba(255,255,255,0.88); }

.lp-logo {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-size: var(--fs-lg); font-weight: var(--fw-black);
    color: var(--color-accent); text-decoration: none;
    letter-spacing: -0.02em; flex-shrink: 0;
}
.lp-logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px;
    background: var(--color-success-bg);
    border: 1px solid rgba(37,211,102,0.25);
    border-radius: var(--radius-sm); color: var(--color-accent);
}
.lp-logo-image-wrap {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 28px; min-height: 28px;
}
.lp-logo-image {
    max-height: 34px; width: auto; max-width: 160px; object-fit: contain;
}
.lp-logo-text { display: inline; }

.lp-nav { display: flex; align-items: center; gap: 2rem; }
.lp-nav a {
    position: relative; font-size: var(--fs-sm); font-weight: var(--fw-semibold);
    color: var(--color-muted); text-decoration: none;
    transition: color var(--transition-global);
}
.lp-nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 100%; height: 2px; background: var(--color-accent);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.lp-nav a:hover { color: var(--color-text); }
.lp-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.lp-header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.lp-social-links {
    display: inline-flex; align-items: center; gap: 0.55rem;
}
.lp-social-links a {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    color: var(--color-muted);
    background: rgba(255,255,255,0.02);
    transition: 0.25s ease;
}
.lp-social-links a:hover {
    color: var(--color-accent);
    border-color: rgba(37,211,102,0.25);
    background: rgba(37,211,102,0.06);
    transform: translateY(-1px);
}
.lp-social-links svg { width: 16px; height: 16px; }

.lp-theme-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    color: var(--color-muted); background: none;
    border: 1px solid var(--color-border); border-radius: 50%;
    cursor: pointer; transition: border-color var(--transition-global), color var(--transition-global);
}
.lp-theme-toggle:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* Menu toggle mobile */
.lp-menu-toggle {
    display: none; align-items: center; justify-content: center;
    width: 36px; height: 36px; background: none; border: 1px solid var(--color-border);
    border-radius: var(--radius-sm); color: var(--color-text); cursor: pointer;
}

/* Drawer mobile */
.lp-drawer { position: fixed; inset: 0; z-index: 300; pointer-events: none; }
.lp-drawer-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.6);
    opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.lp-drawer-panel {
    position: absolute; top: 0; left: 0; width: 280px; height: 100%;
    background: var(--color-surface); border-right: 1px solid var(--color-border);
    transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    padding: 1.5rem; display: flex; flex-direction: column;
}
.lp-drawer[aria-hidden="false"] { pointer-events: auto; }
.lp-drawer[aria-hidden="false"] .lp-drawer-overlay { opacity: 1; pointer-events: auto; }
.lp-drawer[aria-hidden="false"] .lp-drawer-panel { transform: translateX(0); }

.lp-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-border);
}
.lp-drawer-close {
    background: none; border: none; color: var(--color-muted); cursor: pointer;
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm); transition: background 0.2s;
}
.lp-drawer-close:hover { background: var(--color-surface-2); color: var(--color-text); }
.lp-drawer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.lp-drawer-nav a {
    padding: 0.75rem 1rem; border-radius: var(--radius-md);
    color: var(--color-muted); font-size: var(--fs-sm); font-weight: var(--fw-semibold);
    text-decoration: none; transition: 0.2s;
}
.lp-drawer-nav a:hover { background: var(--color-surface-2); color: var(--color-text); }
.lp-drawer-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
    display: flex; align-items: center; gap: 0.75rem;
}
.lp-social-links--drawer {
    display: inline-flex; align-items: center; gap: 0.55rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO — Dark Cartographic Command
   ═══════════════════════════════════════════════════════════════════════ */
.lp-hero {
    position: relative; overflow: hidden;
    padding: 5rem 2rem 4rem; min-height: 92vh;
    display: flex; align-items: center;
}

/* Constellation map */
.lp-constellation {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; opacity: 0.6;
}

/* Background layers */
.lp-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.lp-hero-grid-pattern {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.12;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent 80%);
}
[data-theme="light"] .lp-hero-grid-pattern { opacity: 0.2; }

.lp-hero-glow {
    position: absolute; border-radius: 50%; filter: blur(90px);
    animation: lp-blob-move 14s ease-in-out infinite;
}
.lp-hero-glow--1 {
    width: 700px; height: 500px;
    background: radial-gradient(circle, rgba(37,211,102,0.12), transparent 70%);
    top: -120px; left: 5%;
}
.lp-hero-glow--2 {
    width: 500px; height: 350px;
    background: radial-gradient(circle, rgba(18,140,126,0.08), transparent 70%);
    bottom: -50px; right: 10%; animation-delay: -6s;
}
.lp-hero-glow--3 {
    width: 400px; height: 300px;
    background: radial-gradient(circle, rgba(37,211,102,0.06), transparent 70%);
    bottom: 10%; left: 30%; animation-delay: -3s;
}

/* Noise texture */
.lp-noise {
    position: absolute; inset: 0; pointer-events: none; z-index: 1;
    opacity: 0.025; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: lp-noise 0.5s steps(10) infinite;
}

/* Layout hero */
.lp-hero-inner {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.6fr;
    gap: 3rem; align-items: center; width: 100%;
}

/* Badge */
.lp-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(37,211,102,0.35);
    border-radius: var(--radius-pill);
    color: var(--color-accent); font-size: var(--fs-xs);
    font-weight: var(--fw-semibold); background: var(--color-success-bg);
    width: fit-content; margin-bottom: 1.5rem;
}
.lp-badge-dot {
    width: 7px; height: 7px; background: var(--color-accent);
    border-radius: 50%; position: relative; flex-shrink: 0;
}
.lp-badge-dot::after {
    content: ''; position: absolute; inset: -3px;
    border-radius: 50%; background: var(--color-accent);
    opacity: 0.3; animation: lp-pulse-ring 2s ease-out infinite;
}

/* Typewriter */
.lp-typewriter-text .lp-caret {
    display: inline-block; width: 2px; height: 1em;
    background: var(--color-accent); margin-left: 2px;
    animation: lp-typewriter-caret 0.8s step-end infinite;
    vertical-align: text-bottom;
}

/* Título hero */
.lp-hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: var(--fw-black); line-height: 1.08;
    letter-spacing: -0.03em; color: var(--color-text);
    margin-bottom: 1.25rem;
}
.lp-hero-title[data-split-reveal="true"] .lp-gradient-text {
    display: inline-block;
    animation: lp-split-reveal 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
.lp-gradient-text {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-hero-sub {
    font-size: var(--fs-lg); color: var(--color-muted);
    max-width: 480px; line-height: 1.65; margin-bottom: 2rem;
}
.lp-hero-ctas {
    display: flex; align-items: center; gap: 1rem;
    flex-wrap: wrap; margin-bottom: 1.75rem;
}
.lp-hero-trust {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 0.4rem; font-size: var(--fs-xs); color: var(--color-muted);
}

/* ── Mockup premium ── */
.lp-hero-visual[data-parallax="true"] { will-change: transform; }

.lp-mockup {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card), 0 0 100px rgba(37,211,102,0.1), 0 0 200px rgba(37,211,102,0.04);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
    width: 100%;
}
.lp-mockup:hover {
    box-shadow: var(--shadow-card), 0 0 140px rgba(37,211,102,0.15), 0 0 280px rgba(37,211,102,0.06);
}
.lp-mockup::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: 10;
}
.lp-mockup:hover::before { opacity: 0.6; }

.lp-mockup[data-3d="true"] {
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
}
.lp-mockup[data-3d="true"]:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
    box-shadow: var(--shadow-card), 0 0 100px rgba(37,211,102,0.1);
}

.lp-mockup-bar {
    display: flex; align-items: center; gap: 0.35rem;
    padding: 0.65rem 1rem; background: var(--color-surface-2);
    border-bottom: 1px solid var(--color-border);
}
.lp-mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-mockup-dot--r { background: #ff5f57; }
.lp-mockup-dot--y { background: #febc2e; }
.lp-mockup-dot--g { background: #28c840; }

/* Canvas do mapa */
.lp-map-canvas {
    height: 320px; position: relative;
    background: transparent; overflow: hidden;
}
.lp-map-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 32px 32px; opacity: 0.25;
}

/* Radar Sweep */
.lp-radar-sweep {
    position: absolute; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(37,211,102,0.3) 20%, 
        rgba(37,211,102,0.9) 50%, 
        rgba(37,211,102,0.3) 80%,
        transparent 100%
    );
    box-shadow: 0 0 24px rgba(37,211,102,0.5), 0 0 48px rgba(37,211,102,0.25);
    animation: lp-radar-sweep-move 4s linear infinite;
    pointer-events: none;
}

/* Heatmap Zones */
.lp-heatmap-zone {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,211,102,0.35), transparent 70%);
    animation: lp-heatmap-pulse 5s ease-in-out infinite;
    pointer-events: none;
}
.lp-heatmap-zone--1 {
    width: 140px; height: 140px; top: 12%; left: 18%;
    animation-delay: 0s;
}
.lp-heatmap-zone--2 {
    width: 120px; height: 120px; top: 48%; left: 48%;
    animation-delay: -2s;
    background: radial-gradient(circle, rgba(18,140,126,0.3), transparent 70%);
}
.lp-heatmap-zone--3 {
    width: 100px; height: 100px; top: 32%; left: 68%;
    animation-delay: -3.5s;
}

/* Pins */
.lp-pin {
    position: absolute; display: flex;
    align-items: center; justify-content: center;
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}
.lp-pin--1 { top: 28%; left: 25%; animation: lp-pin-appear 0.6s 0.4s both; }
.lp-pin--2 { top: 55%; left: 55%; animation: lp-pin-appear 0.6s 0.7s both; }
.lp-pin--3 { top: 20%; left: 62%; animation: lp-pin-appear 0.6s 1.0s both; }
.lp-pin--4 { top: 70%; left: 30%; animation: lp-pin-appear 0.6s 1.3s both; }
.lp-pin--5 { top: 42%; left: 80%; animation: lp-pin-appear 0.6s 1.6s both; }

.lp-pin:hover {
    filter: drop-shadow(0 0 16px rgba(37,211,102,0.9));
    transform: scale(1.35);
    z-index: 10;
}

.lp-pin-pulse {
    position: absolute; width: 32px; height: 32px;
    border-radius: 50%; background: rgba(37,211,102,0.2);
    animation: lp-pulse-ring 2.5s ease-out infinite;
}

/* Geo-Rings — ondas de geolocalização */
.lp-pin-geo-ring {
    position: absolute; width: 24px; height: 24px;
    border-radius: 50%; border: 1.5px solid rgba(37,211,102,0.4);
    animation: lp-geo-ring-expand 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.lp-pin-geo-ring--1 { animation-delay: 0s; }
.lp-pin-geo-ring--2 { animation-delay: 1.5s; }

/* Pins com intensidade diferente */
.lp-pin--1 .lp-pin-geo-ring { border-color: rgba(37,211,102,0.5); }
.lp-pin--3 .lp-pin-geo-ring { border-color: rgba(18,140,126,0.5); animation-duration: 3.5s; }
.lp-pin--5 .lp-pin-geo-ring { border-color: rgba(18,140,126,0.4); animation-duration: 4s; }

/* Cards flutuantes */
.lp-float-card {
    position: absolute; display: flex; align-items: center; gap: 0.6rem;
    padding: 0.65rem 1rem; background: var(--color-surface);
    border: 1px solid var(--color-border); border-radius: var(--radius-md);
    box-shadow: var(--shadow-card), 0 4px 20px rgba(0,0,0,0.2);
}
.lp-float-card div { display: flex; flex-direction: column; line-height: 1.35; }
.lp-float-card--1 { top: 12%; right: 6%; animation: lp-card-slide 0.5s 1.8s both; }
.lp-float-card--2 { bottom: 10%; left: 6%; animation: lp-card-slide 0.5s 2.1s both; }

/* Chat Bubbles Flutuantes */
.lp-chat-bubble {
    position: absolute; width: 32px; height: 32px;
    background: rgba(37,211,102,0.18);
    border: 1.5px solid rgba(37,211,102,0.4);
    border-radius: 12px 12px 12px 2px;
    display: flex; align-items: center; justify-content: center;
    animation: lp-chat-bubble-float 4s ease-in-out infinite;
    pointer-events: none;
    box-shadow: 0 0 12px rgba(37,211,102,0.15);
}
.lp-chat-bubble--1 {
    bottom: 25%; left: 15%;
    animation-delay: 0s;
}
.lp-chat-bubble--2 {
    bottom: 40%; right: 20%;
    animation-delay: 1.5s;
}
.lp-chat-bubble--3 {
    bottom: 20%; left: 50%;
    animation-delay: 3s;
}

/* Data Particles */
.lp-data-particle {
    position: absolute; width: 5px; height: 5px;
    background: #25d366; border-radius: 50%;
    box-shadow: 0 0 8px rgba(37,211,102,0.8), 0 0 16px rgba(37,211,102,0.3);
    animation: lp-data-particle-flow 3s ease-in-out infinite;
    pointer-events: none;
}
.lp-data-particle--1 {
    top: 28%; left: 25%;
    --px1: 30px; --py1: -40px;
    --px2: 60px; --py2: -80px;
    animation-delay: 0s;
}
.lp-data-particle--2 {
    top: 55%; left: 55%;
    --px1: -25px; --py1: -35px;
    --px2: -50px; --py2: -70px;
    animation-delay: 0.8s;
}
.lp-data-particle--3 {
    top: 20%; left: 62%;
    --px1: 20px; --py1: -30px;
    --px2: 40px; --py2: -60px;
    animation-delay: 1.6s;
}
.lp-data-particle--4 {
    top: 70%; left: 30%;
    --px1: -20px; --py1: -25px;
    --px2: -40px; --py2: -50px;
    animation-delay: 2.4s;
}

/* Stats do mockup */
.lp-mockup-stats {
    display: flex; align-items: center; justify-content: space-around;
    padding: 1rem 1.25rem; border-top: 1px solid var(--color-border);
}
.lp-mockup-stat { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.lp-mockup-stat-val {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: var(--fw-black);
    color: var(--color-text); line-height: 1;
}
.lp-mockup-stat-val--accent { color: var(--color-accent); }
.lp-mockup-stat-lbl {
    font-size: 0.7rem; color: var(--color-muted);
    font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: 0.06em;
}
.lp-mockup-stat-divider { width: 1px; height: 40px; background: var(--color-border); }

/* ═══════════════════════════════════════════════════════════════════════
   TRUST BAR — Glass strip
   ═══════════════════════════════════════════════════════════════════════ */
.lp-trust-bar {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 0.5rem 2rem;
    padding: 1.25rem 2rem;
    background: rgba(13,15,20,0.6);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(42,48,69,0.5);
    border-bottom: 1px solid rgba(42,48,69,0.5);
    position: relative;
}
[data-theme="light"] .lp-trust-bar {
    background: rgba(255,255,255,0.6);
    border-color: rgba(0,0,0,0.06);
}
.lp-trust-item {
    display: flex; align-items: center; gap: 0.45rem;
    font-size: var(--fs-xs); font-weight: var(--fw-semibold);
    color: var(--color-muted); white-space: nowrap;
    transition: color 0.2s;
}
.lp-trust-item:hover { color: var(--color-accent); }
.lp-trust-sep {
    width: 1px; height: 16px; background: var(--color-border);
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION HEADER COMUM
   ═══════════════════════════════════════════════════════════════════════ */
.lp-section-header { text-align: center; margin-bottom: 3.5rem; }
.lp-label {
    display: inline-block; font-size: var(--fs-section);
    font-weight: var(--fw-semibold); color: var(--color-accent);
    letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.6rem;
}
.lp-section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: var(--fw-black);
    color: var(--color-text); letter-spacing: -0.02em;
    margin: 0 0 0.75rem; line-height: 1.2;
}
.lp-section-sub {
    font-size: var(--fs-base); color: var(--color-muted);
    max-width: 500px; margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   COMO FUNCIONA — PIPELINE TERRITORIAL
   ═══════════════════════════════════════════════════════════════════════ */

/* Keyframes do pipeline */
@keyframes lp-pipe-draw {
    from { stroke-dashoffset: 1000; }
    to   { stroke-dashoffset: 0; }
}
@keyframes lp-pipe-node-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50%      { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}
@keyframes lp-qr-scan {
    0%   { top: 0; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
@keyframes lp-qr-ripple {
    0%   { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}
@keyframes lp-mini-pin-drop {
    0%   { opacity: 0; transform: translateY(-20px) scale(0.5); }
    60%  { transform: translateY(2px) scale(1.1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lp-mini-scan {
    0%   { top: 0; opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
@keyframes lp-msg-slide {
    0%   { transform: translateX(-30px); opacity: 0; }
    60%  { opacity: 1; }
    100% { transform: translateX(0); opacity: 1; }
}
@keyframes lp-send-ring-expand {
    0%   { transform: scale(0.5); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Border Chase — ponto de luz percorrendo borda do card */
@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes lp-border-chase {
    0%   { --border-angle: 0deg; }
    100% { --border-angle: 360deg; }
}

.lp-pipeline {
    padding: 6rem 0; background: var(--color-bg); position: relative;
    overflow: hidden;
}
.lp-pipeline-wrap {
    position: relative;
    max-width: 1120px; margin: 0 auto;
}

/* SVG Pipeline */
.lp-pipeline-line {
    position: absolute; top: 2.5rem; left: 0; width: 100%; height: 300px;
    pointer-events: none; z-index: 0;
}
.lp-pipeline-track {
    opacity: 0.6;
}
.lp-pipeline-draw {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0.8;
}
.lp-pipeline-draw.lp-pipe-drawn {
    animation: lp-pipe-draw 2.5s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* Grid dos cards */
.lp-pipeline-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; position: relative; z-index: 1;
}

/* Card do pipeline */
.lp-pipe-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem 1.75rem;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
/* Border glow chase — ponto de luz percorrendo a borda continuamente */
.lp-pipe-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: conic-gradient(from var(--border-angle), transparent 0%, transparent 60%, rgba(37,211,102,0.08) 68%, #25d366 75%, rgba(37,211,102,0.08) 82%, transparent 90%, transparent 100%);
    animation: lp-border-chase 4s linear infinite;
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    pointer-events: none;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}
.lp-pipe-card:hover::after {
    opacity: 1;
    animation-duration: 2s;
}
/* Borda gradiente sutil no hover */
.lp-pipe-card::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
    z-index: 0;
}
.lp-pipe-card:hover {
    border-color: rgba(37,211,102,0.3);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 32px rgba(37,211,102,0.08);
    transform: translateY(-4px);
}
.lp-pipe-card:hover::before { opacity: 0.5; }
/* Garante que o conteúdo fique acima do efeito de borda */
.lp-pipe-card > * { position: relative; z-index: 2; }
/* Delays escalonados para cada card — efeito orgânico */
.lp-pipe-card:nth-child(2)::after { animation-delay: -1.3s; }
.lp-pipe-card:nth-child(3)::after { animation-delay: -2.6s; }

/* Nó com número */
.lp-pipe-node {
    position: relative;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37,211,102,0.15), rgba(18,140,126,0.2));
    border: 2px solid rgba(37,211,102,0.4);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.lp-pipe-num {
    font-size: var(--fs-sm); font-weight: var(--fw-black);
    color: var(--color-accent); line-height: 1;
}
.lp-pipe-pulse {
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.3);
    animation: lp-pipe-node-glow 2.5s ease-out infinite;
}
.lp-pipe-card:nth-child(2) .lp-pipe-pulse { animation-delay: 0.8s; }
.lp-pipe-card:nth-child(3) .lp-pipe-pulse { animation-delay: 1.6s; }

/* Visual miniatura */
.lp-pipe-visual {
    position: relative; width: 100%; height: 140px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    overflow: hidden;
}

/* Visual — QR Code */
.lp-qr-grid {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: grid; grid-template-columns: repeat(3, 14px);
    gap: 3px;
}
.lp-qr-cell {
    width: 14px; height: 14px; border-radius: 2px;
    background: rgba(37,211,102,0.15);
    border: 1px solid rgba(37,211,102,0.2);
}
.lp-qr-cell--a, .lp-qr-cell--d, .lp-qr-cell--g { background: rgba(37,211,102,0.5); }
.lp-qr-cell--c, .lp-qr-cell--f, .lp-qr-cell--i { background: rgba(37,211,102,0.3); }

.lp-qr-scan-line {
    position: absolute; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, transparent, #25d366, transparent);
    box-shadow: 0 0 12px rgba(37,211,102,0.6);
    animation: lp-qr-scan 3s linear infinite;
}
.lp-qr-ripple {
    position: absolute; top: 50%; left: 50%;
    width: 60px; height: 60px; margin: -30px 0 0 -30px;
    border: 1.5px solid rgba(37,211,102,0.4);
    border-radius: 50%;
    animation: lp-qr-ripple 2.5s ease-out infinite;
}
.lp-qr-ripple--2 { animation-delay: 1.2s; }

/* Visual — Mini Mapa */
.lp-mini-map-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 20px 20px; opacity: 0.2;
}
.lp-mini-pin {
    position: absolute; display: flex; align-items: center; justify-content: center;
    opacity: 0;
}
.lp-mini-pin--1 { top: 30%; left: 25%; animation: lp-mini-pin-drop 0.6s 0.3s both; }
.lp-mini-pin--2 { top: 55%; left: 55%; animation: lp-mini-pin-drop 0.6s 0.8s both; }
.lp-mini-pin--3 { top: 25%; left: 65%; animation: lp-mini-pin-drop 0.6s 1.3s both; }

.lp-mini-zone {
    position: absolute; width: 70px; height: 70px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,211,102,0.2), transparent 70%);
    top: 20%; left: 40%;
    animation: lp-heatmap-pulse 4s ease-in-out infinite;
}

.lp-mini-scan {
    position: absolute; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37,211,102,0.7), transparent);
    box-shadow: 0 0 8px rgba(37,211,102,0.4);
    animation: lp-mini-scan 3s linear infinite;
}

/* Visual — Mensagens */
.lp-msg-wave {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: flex-end; justify-content: center;
    gap: 6px;
    padding: 1rem 1.25rem;
}
.lp-msg-bubble {
    position: relative;
    min-width: 40px; height: 22px;
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.25);
    border-radius: 10px 10px 2px 10px;
    display: flex; align-items: center; justify-content: flex-end;
    padding: 0 6px;
    opacity: 0;
}
.lp-msg-bubble--1 { width: 55%; animation: lp-msg-slide 0.5s 0.4s both; }
.lp-msg-bubble--2 { width: 75%; animation: lp-msg-slide 0.5s 0.8s both; }
.lp-msg-bubble--3 { width: 45%; animation: lp-msg-slide 0.5s 1.2s both; }

.lp-msg-tail {
    position: absolute; bottom: -4px; right: -1px;
    width: 8px; height: 8px;
    background: rgba(37,211,102,0.12);
    border-right: 1px solid rgba(37,211,102,0.25);
    border-bottom: 1px solid rgba(37,211,102,0.25);
    transform: rotate(45deg);
}
.lp-msg-check {
    font-size: 0.6rem; color: #25d366; letter-spacing: -1px;
}

.lp-send-rings {
    position: absolute; bottom: 15%; left: 15%;
    display: flex; align-items: center; justify-content: center;
}
.lp-send-ring {
    position: absolute; width: 20px; height: 20px;
    border: 1.5px solid rgba(37,211,102,0.4);
    border-radius: 50%;
    animation: lp-send-ring-expand 2.5s ease-out infinite;
}
.lp-send-ring:nth-child(2) { animation-delay: 1.2s; }

/* Ícone e texto */
.lp-pipe-icon-wrap {
    width: 48px; height: 48px;
    background: var(--color-success-bg);
    border: 1px solid rgba(37,211,102,0.2);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.lp-pipe-title {
    font-size: var(--fs-lg); font-weight: var(--fw-bold);
    color: var(--color-text); margin-bottom: 0.5rem; line-height: 1.3;
}
.lp-pipe-desc {
    font-size: var(--fs-sm); color: var(--color-muted);
    line-height: 1.65; margin: 0; max-width: 280px;
}

/* ═══════════════════════════════════════════════════════════════════════
   CARROSSEL DE FEATURES
   ═══════════════════════════════════════════════════════════════════════ */
.lp-features { padding: 6rem 0; background: var(--color-surface); position: relative; }
.lp-features-carousel {
    position: relative;
    overflow: hidden;
}
.lp-carousel-track {
    display: flex;
    gap: 1.25rem;
    padding: 2rem 1.25rem;
    margin: 0 -1.25rem;
    width: max-content;
    will-change: transform;
}
/* Fade gradients on edges */
.lp-carousel-fade {
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}
.lp-carousel-fade--left {
    left: 0;
    background: linear-gradient(90deg, var(--color-surface), transparent);
}
.lp-carousel-fade--right {
    right: 0;
    background: linear-gradient(270deg, var(--color-surface), transparent);
}
.lp-carousel-card {
    position: relative;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 0 0 280px;
    scroll-snap-align: start;
    transition: border-color var(--transition-global), box-shadow var(--transition-global), transform var(--transition-global);
}
/* Border glow chase — ponto de luz percorrendo a borda */
.lp-carousel-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: conic-gradient(from var(--border-angle), transparent 0%, transparent 60%, rgba(37,211,102,0.08) 68%, #25d366 75%, rgba(37,211,102,0.08) 82%, transparent 90%, transparent 100%);
    animation: lp-border-chase 4s linear infinite;
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    pointer-events: none;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}
.lp-carousel-card:nth-child(2)::after { animation-delay: -0.7s; }
.lp-carousel-card:nth-child(3)::after { animation-delay: -1.4s; }
.lp-carousel-card:nth-child(4)::after { animation-delay: -2.1s; }
.lp-carousel-card:nth-child(5)::after { animation-delay: -2.8s; }
.lp-carousel-card:nth-child(6)::after { animation-delay: -3.5s; }
.lp-carousel-card:hover::after { opacity: 1; animation-duration: 2s; }
.lp-carousel-card > * { position: relative; z-index: 2; }
.lp-carousel-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
    opacity: 0; transition: opacity var(--transition-global);
    z-index: 3;
}
.lp-carousel-card:hover {
    border-color: rgba(37,211,102,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 24px rgba(37,211,102,0.06);
    transform: translateY(-2px);
}
.lp-carousel-card:hover::before { opacity: 1; }

/* Spotlight mouse-tracking (integrado ao hover do card) */

.lp-bento-icon {
    width: 44px; height: 44px; background: var(--color-success-bg);
    border: 1.5px solid rgba(37,211,102,0.25); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp-carousel-card:hover .lp-bento-icon {
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(37,211,102,0.3);
}
.lp-bento-title {
    font-size: var(--fs-lg); font-weight: var(--fw-bold);
    color: var(--color-text); margin: 0; line-height: 1.25;
}
.lp-bento-desc {
    font-size: var(--fs-sm); color: var(--color-muted);
    line-height: 1.65; margin: 0; flex: 1;
}

/* ═══════════════════════════════════════════════════════════════════════
   BENTO VISUALIZATIONS — Miniaturas animadas nos cards
   ═══════════════════════════════════════════════════════════════════════ */

/* Container da mini visualização */
.lp-bento-visual {
    position: relative; width: 100%; height: 85px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 0.85rem;
    overflow: hidden;
}

/* Nó glow + ícone */
.lp-bento-node {
    position: relative;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.75rem;
}
.lp-bento-pulse {
    position: absolute; inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.25);
    animation: lp-pipe-node-glow 2.5s ease-out infinite;
}
.lp-carousel-card:nth-child(2) .lp-bento-pulse { animation-delay: -0.7s; }
.lp-carousel-card:nth-child(3) .lp-bento-pulse { animation-delay: -1.4s; }
.lp-carousel-card:nth-child(4) .lp-bento-pulse { animation-delay: -2.1s; }
.lp-carousel-card:nth-child(5) .lp-bento-pulse { animation-delay: -2.8s; }
.lp-carousel-card:nth-child(6) .lp-bento-pulse { animation-delay: -3.5s; }

/* ── Mini: Radar Territorial ── */
.lp-bento-visual--radar .lp-bv-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 16px 16px; opacity: 0.2;
}
.lp-bento-visual--radar .lp-bv-pin {
    position: absolute; display: flex; align-items: center; justify-content: center;
    opacity: 0;
}
.lp-bento-visual--radar .lp-bv-pin--1 { top: 25%; left: 20%; animation: lp-mini-pin-drop 0.6s 0.4s both; }
.lp-bento-visual--radar .lp-bv-pin--2 { top: 55%; left: 45%; animation: lp-mini-pin-drop 0.6s 0.9s both; }
.lp-bento-visual--radar .lp-bv-pin--3 { top: 20%; left: 65%; animation: lp-mini-pin-drop 0.6s 1.4s both; }
.lp-bento-visual--radar .lp-bv-zone {
    position: absolute; width: 45px; height: 45px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,211,102,0.18), transparent 70%);
    top: 15%; left: 40%;
    animation: lp-heatmap-pulse 4s ease-in-out infinite;
}
.lp-bento-visual--radar .lp-bv-scan {
    position: absolute; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37,211,102,0.7), transparent);
    box-shadow: 0 0 6px rgba(37,211,102,0.3);
    animation: lp-mini-scan 3s linear infinite;
}

/* ── Mini: Gestão de Grupos ── */
.lp-bento-visual--groups .lp-bv-stack {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 0.5rem;
    gap: 3px;
}
.lp-bv-stack-card {
    display: flex; align-items: center; gap: 4px;
    padding: 3px 8px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.55rem; font-weight: var(--fw-semibold);
    color: var(--color-text);
    opacity: 0;
    transform: translateY(12px);
    animation: lp-bv-stack-rise 0.5s ease-out forwards;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.lp-bv-stack-card--1 { animation-delay: 0.3s; }
.lp-bv-stack-card--2 { animation-delay: 0.6s; }
.lp-bv-stack-card--3 { animation-delay: 0.9s; }

/* ── Mini: Campanhas ── */
.lp-bento-visual--send .lp-bv-msg-wave {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: flex-end; justify-content: center;
    gap: 5px;
    padding: 0.6rem 0.8rem;
}
.lp-bv-msg-bubble {
    position: relative;
    min-width: 32px; height: 18px;
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.22);
    border-radius: 8px 8px 2px 8px;
    display: flex; align-items: center; justify-content: flex-end;
    padding: 0 5px;
    opacity: 0;
}
.lp-bv-msg-bubble--1 { width: 50%; animation: lp-msg-slide 0.5s 0.4s both; }
.lp-bv-msg-bubble--2 { width: 70%; animation: lp-msg-slide 0.5s 0.8s both; }
.lp-bv-msg-bubble--3 { width: 40%; animation: lp-msg-slide 0.5s 1.2s both; }
.lp-bv-msg-check { font-size: 0.55rem; color: #25d366; letter-spacing: -1px; }
.lp-bento-visual--send .lp-bv-send-rings {
    position: absolute; bottom: 12%; left: 12%;
}
.lp-bv-send-ring {
    position: absolute; width: 16px; height: 16px;
    border: 1.5px solid rgba(37,211,102,0.35);
    border-radius: 50%;
    animation: lp-send-ring-expand 2.5s ease-out infinite;
}
.lp-bv-send-ring:nth-child(2) { animation-delay: 1.2s; }

/* ── Mini: Labels ── */
.lp-bento-visual--labels .lp-bv-tag-row {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex; flex-wrap: wrap; gap: 4px;
    justify-content: center;
    max-width: 90%;
}
.lp-bv-tag-row--2 { transform: translate(-50%, 20%); }
.lp-bv-tag {
    display: inline-block; padding: 2px 7px;
    border-radius: 999px; font-size: 0.55rem;
    font-weight: var(--fw-semibold);
    opacity: 0; transform: scale(0.6);
    animation: lp-bv-tag-stick 0.4s ease-out forwards;
}
.lp-bv-tag--1 { background: rgba(37,211,102,0.15); color: #25d366; border: 1px solid rgba(37,211,102,0.3); animation-delay: 0.3s; }
.lp-bv-tag--2 { background: rgba(59,130,246,0.15); color: #3b82f6; border: 1px solid rgba(59,130,246,0.3); animation-delay: 0.55s; }
.lp-bv-tag--3 { background: rgba(245,158,11,0.15); color: #f59e0b; border: 1px solid rgba(245,158,11,0.3); animation-delay: 0.8s; }
.lp-bv-tag--4 { background: rgba(139,92,246,0.15); color: #8b5cf6; border: 1px solid rgba(139,92,246,0.3); animation-delay: 1.05s; }
.lp-bv-tag--5 { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); animation-delay: 1.3s; }

/* ── Mini: Relatórios ── */
.lp-bento-visual--chart .lp-bv-chart {
    position: absolute; inset: 0; width: 100%; height: 100%;
    padding: 0.5rem;
}
.lp-bv-chart-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: lp-bv-chart-draw 2.5s ease-out 0.4s forwards;
}
.lp-bv-chart-dot {
    opacity: 0;
    animation: lp-bv-dot-appear 0.3s ease-out forwards;
}
.lp-bv-chart-dot:nth-of-type(2) { animation-delay: 0.8s; }
.lp-bv-chart-dot:nth-of-type(3) { animation-delay: 1.2s; }
.lp-bv-chart-dot:nth-of-type(4) { animation-delay: 1.6s; }
.lp-bv-chart-dot:nth-of-type(5) { animation-delay: 2.0s; }

/* ── Mini: Lideranças ── */
.lp-bento-visual--network .lp-bv-net-node {
    position: absolute; width: 22px; height: 22px;
    background: var(--color-success-bg);
    border: 1px solid rgba(37,211,102,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
}
.lp-bv-net-node--1 { top: 20%; left: 25%; }
.lp-bv-net-node--2 { top: 55%; left: 50%; transform: translateX(-50%); }
.lp-bv-net-node--3 { top: 20%; left: 65%; }
.lp-bento-visual--network .lp-bv-net-lines {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 1;
}
.lp-bv-net-line {
    stroke: rgba(37,211,102,0.2); stroke-width: 1.5;
    stroke-dasharray: 60; stroke-dashoffset: 60;
    animation: lp-bv-net-draw 1.5s ease-out 0.5s forwards;
}
.lp-bv-net-line:nth-child(2) { animation-delay: 0.9s; }
.lp-bv-net-line:nth-child(3) { animation-delay: 1.3s; }

/* Keyframes das miniaturas */
@keyframes lp-bv-stack-rise {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes lp-bv-tag-stick {
    0%   { opacity: 0; transform: scale(0.6); }
    60%  { transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes lp-bv-chart-draw {
    from { stroke-dashoffset: 200; }
    to   { stroke-dashoffset: 0; }
}
@keyframes lp-bv-dot-appear {
    from { opacity: 0; transform: scale(0); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes lp-bv-net-draw {
    from { stroke-dashoffset: 60; }
    to   { stroke-dashoffset: 0; }
}

/* Stagger reveal nos cards */
.lp-carousel-card.lp-revealed {
    transition-delay: var(--delay, 0ms);
}

/* ═══════════════════════════════════════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════════════════════════════════════ */
.lp-proof {
    padding: 3.5rem 0; background: var(--color-bg);
    text-align: center; border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.lp-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.lp-proof-card {
    position: relative;
    text-align: left;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.15rem;
    box-shadow: var(--shadow-card, 0 14px 30px rgba(0,0,0,0.22));
    transition: transform var(--transition-global), border-color var(--transition-global), box-shadow var(--transition-global);
}
/* Border glow chase — ponto de luz percorrendo a borda */
.lp-proof-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: conic-gradient(from var(--border-angle), transparent 0%, transparent 60%, rgba(37,211,102,0.08) 68%, #25d366 75%, rgba(37,211,102,0.08) 82%, transparent 90%, transparent 100%);
    animation: lp-border-chase 4s linear infinite;
    z-index: 0;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    pointer-events: none;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}
.lp-proof-card:nth-child(2)::after { animation-delay: -1.3s; }
.lp-proof-card:nth-child(3)::after { animation-delay: -2.6s; }
.lp-proof-card:hover::after { opacity: 1; animation-duration: 2s; }
.lp-proof-card > * { position: relative; z-index: 1; }
.lp-proof-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37,211,102,0.24);
    box-shadow: 0 18px 34px rgba(0,0,0,0.28), 0 0 24px rgba(37,211,102,0.05);
}
.lp-proof-card__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.lp-proof-brandmark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(18,140,126,0.16));
    border: 1px solid rgba(37,211,102,0.18);
    overflow: hidden;
}
.lp-proof-brandmark__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp-proof-brandmark__fallback {
    font-size: 1rem;
    font-weight: var(--fw-black);
    color: var(--color-accent);
}
.lp-proof-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    min-width: 0;
}
.lp-proof-card__name {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    line-height: 1.2;
}
.lp-proof-card__caption {
    font-size: 0.72rem;
    color: var(--color-muted);
    line-height: 1.45;
}
.lp-proof-card__metric {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: var(--fw-black);
    line-height: 1.15;
    color: var(--color-text);
    letter-spacing: -0.03em;
}
.lp-proof-card__metric--muted {
    color: var(--color-text);
}

/* ═══════════════════════════════════════════════════════════════════════
   CTA INTERMEDIÁRIO
   ═══════════════════════════════════════════════════════════════════════ */
.lp-cta-mid { padding: 6rem 0; background: var(--color-surface); }
.lp-cta-mid-inner {
    position: relative; text-align: center; padding: 4rem 2rem;
    border: 1px solid rgba(37,211,102,0.2); border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-surface-2) 0%, rgba(37,211,102,0.04) 100%);
}
/* Border glow chase — ponto de luz percorrendo a borda */
.lp-cta-mid-inner::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: conic-gradient(from var(--border-angle), transparent 0%, transparent 60%, rgba(37,211,102,0.08) 68%, #25d366 75%, rgba(37,211,102,0.08) 82%, transparent 90%, transparent 100%);
    animation: lp-border-chase 5s linear infinite;
    z-index: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    pointer-events: none;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}
.lp-cta-mid-inner:hover::after { opacity: 1; animation-duration: 2.5s; }
.lp-cta-mid-inner > *:not(.lp-cta-network):not(.lp-cta-mid-glow) { position: relative; z-index: 1; }
.lp-cta-mid-glow {
    position: absolute; width: 500px; height: 250px;
    background: radial-gradient(circle, rgba(37,211,102,0.12), transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Constellation network no CTA — estilo hero */
.lp-cta-network {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; opacity: 0.55;
}
.lp-cta-net-lines line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: lp-cta-net-draw 2.5s ease-out forwards;
}
.lp-cta-net-lines line:nth-child(2) { animation-delay: 0.2s; }
.lp-cta-net-lines line:nth-child(3) { animation-delay: 0.4s; }
.lp-cta-net-lines line:nth-child(4) { animation-delay: 0.6s; }
.lp-cta-net-lines line:nth-child(5) { animation-delay: 0.8s; }
.lp-cta-net-lines line:nth-child(6) { animation-delay: 1.0s; }
.lp-cta-net-lines line:nth-child(7) { animation-delay: 1.2s; }
.lp-cta-net-lines line:nth-child(8) { animation-delay: 1.4s; }
.lp-cta-net-lines line:nth-child(9) { animation-delay: 1.6s; }
.lp-cta-net-lines line:nth-child(10) { animation-delay: 1.8s; }
.lp-cta-net-lines line:nth-child(11) { animation-delay: 2.0s; }
.lp-cta-net-lines line:nth-child(12) { animation-delay: 2.2s; }
.lp-cta-net-nodes circle {
    opacity: 0;
    animation: lp-cta-node-pop 0.4s ease-out forwards;
}
.lp-cta-net-nodes circle:nth-child(1) { animation-delay: 0.15s; }
.lp-cta-net-nodes circle:nth-child(2) { animation-delay: 0.35s; }
.lp-cta-net-nodes circle:nth-child(3) { animation-delay: 0.55s; }
.lp-cta-net-nodes circle:nth-child(4) { animation-delay: 0.75s; }
.lp-cta-net-nodes circle:nth-child(5) { animation-delay: 0.95s; }
.lp-cta-net-nodes circle:nth-child(6) { animation-delay: 1.15s; }
.lp-cta-net-nodes circle:nth-child(7) { animation-delay: 1.35s; }
.lp-cta-data-pulse {
    filter: drop-shadow(0 0 4px #25d366);
}
.lp-cta-data-pulse--2 {
    filter: drop-shadow(0 0 3px #128c7e);
}
@keyframes lp-cta-net-draw {
    from { stroke-dashoffset: 300; }
    to   { stroke-dashoffset: 0; }
}
@keyframes lp-cta-node-pop {
    from { opacity: 0; transform: scale(0); }
    to   { opacity: 1; transform: scale(1); }
}

/* Pulse intenso no botão CTA */
.lp-cta-btn-pulse {
    position: relative;
    overflow: visible;
}
.lp-cta-btn-pulse::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-pill) + 3px);
    background: conic-gradient(from var(--border-angle), transparent 0%, transparent 55%, rgba(37,211,102,0.2) 68%, #25d366 78%, rgba(37,211,102,0.2) 88%, transparent 100%);
    animation: lp-border-chase 2.5s linear infinite;
    z-index: -1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 3px;
}
.lp-cta-btn-pulse:hover::before {
    opacity: 1;
    animation-duration: 1.2s;
}
.lp-cta-btn-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-pill);
    background: radial-gradient(circle at center, rgba(255,255,255,0.25), transparent 60%);
    animation: lp-cta-btn-shimmer 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}
@keyframes lp-cta-btn-shimmer {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50%      { opacity: 1; transform: scale(1); }
}

/* Radar scan effect */
.lp-radar-scan {
    position: absolute; inset: 0; pointer-events: none;
    display: flex; align-items: center; justify-content: center;
}
.lp-radar-ring {
    position: absolute; width: 80px; height: 80px;
    border: 1px solid rgba(37,211,102,0.2); border-radius: 50%;
    animation: lp-radar-ping 3s cubic-bezier(0,0,0.2,1) infinite;
}
.lp-radar-ring:nth-child(2) { animation-delay: 1s; }
.lp-radar-ring:nth-child(3) { animation-delay: 2s; }

.lp-cta-mid-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: var(--fw-black);
    color: var(--color-text); margin: 0.5rem 0 0.75rem; letter-spacing: -0.02em;
}
.lp-cta-mid-sub {
    font-size: var(--fs-base); color: var(--color-muted); margin-bottom: 2rem;
}

.lp-cta-inline-wrap {
    padding: 0 0 2rem;
    background: linear-gradient(180deg, transparent, var(--color-accent-glow, rgba(18,24,32,0.24)));
}
.lp-cta-inline {
    position: relative;
    overflow: visible;
    border: 1px solid rgba(37,211,102,0.14);
    border-radius: var(--radius-xl);
    background: var(--color-surface);
    box-shadow: var(--shadow-card, 0 22px 60px rgba(0,0,0,0.26));
    padding: 1.35rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
/* Border glow chase — ponto de luz percorrendo a borda */
.lp-cta-inline::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-xl) + 2px);
    background: conic-gradient(from var(--border-angle), transparent 0%, transparent 60%, rgba(37,211,102,0.08) 68%, #25d366 75%, rgba(37,211,102,0.08) 82%, transparent 90%, transparent 100%);
    animation: lp-border-chase 4s linear infinite;
    z-index: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    pointer-events: none;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}
.lp-cta-inline:hover::after { opacity: 1; animation-duration: 2s; }
.lp-cta-inline > * { position: relative; z-index: 1; }
.lp-cta-inline__pulse {
    position: absolute;
    top: 50%;
    left: 40px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1px solid rgba(37,211,102,0.18);
    transform: translateY(-50%);
    animation: lp-radar-ping 2.8s cubic-bezier(0,0,0.2,1) infinite;
    pointer-events: none;
}
.lp-cta-inline__content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding-left: 0.75rem;
}
.lp-cta-inline__title {
    margin: 0.2rem 0 0.45rem;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    color: var(--color-text);
    letter-spacing: -0.02em;
}
.lp-cta-inline__text {
    margin: 0;
    color: var(--color-muted);
    font-size: var(--fs-sm);
    line-height: 1.65;
}
.lp-cta-inline__btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════ */
.lp-faq { padding: 6rem 0; background: var(--color-bg); }
.lp-faq-layout {
    display: grid; grid-template-columns: 1fr 1.6fr;
    gap: 5rem; align-items: start;
}
.lp-faq-header { position: sticky; top: 100px; }
.lp-faq-header .lp-section-title { text-align: left; }
.lp-faq-header .lp-section-sub { text-align: left; margin: 0; }
.lp-faq-list { display: flex; flex-direction: column; }
.lp-faq-item {
    border-bottom: 1px solid var(--color-border);
    transition: border-color 0.3s, background 0.3s;
}
.lp-faq-item.open {
    border-left: 2px solid var(--color-accent);
    background: linear-gradient(90deg, rgba(37,211,102,0.03), transparent 60%);
    margin-left: -2px;
}
.lp-faq-btn {
    width: 100%; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 1.25rem 0; color: var(--color-text);
    font-size: var(--fs-base); font-weight: var(--fw-semibold);
    font-family: 'Inter', sans-serif; text-align: left; cursor: pointer;
    transition: color var(--transition-global);
}
.lp-faq-btn:hover { color: var(--color-accent); }
.lp-faq-num {
    display: inline-block; font-size: var(--fs-xs); font-weight: var(--fw-black);
    color: var(--color-border); margin-right: 0.6rem; min-width: 22px;
    transition: color 0.2s;
}
.lp-faq-item.open .lp-faq-num { color: var(--color-accent); }
.lp-faq-icon {
    color: var(--color-muted);
    transition: transform 0.25s ease, color var(--transition-global);
    flex-shrink: 0;
}
.lp-faq-item.open .lp-faq-icon { transform: rotate(45deg); color: var(--color-accent); }
.lp-faq-body {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.16,1,0.3,1);
}
.lp-faq-item.open .lp-faq-body { grid-template-rows: 1fr; }
.lp-faq-body > p {
    overflow: hidden; font-size: var(--fs-sm); color: var(--color-muted);
    line-height: 1.7; margin: 0; padding-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.lp-footer {
    background: var(--color-surface); border-top: 1px solid var(--color-border);
    padding: 4rem 0 2rem;
}
.lp-footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}
.lp-footer-tagline {
    font-size: var(--fs-sm); color: var(--color-muted);
    line-height: 1.65; margin-top: 0.75rem;
}
.lp-social-links--footer {
    margin-top: 1rem;
}
.lp-footer-links-group {
    display: flex; flex-direction: column; gap: 0.75rem;
}
.lp-footer-group-label {
    font-size: var(--fs-xs); font-weight: var(--fw-semibold);
    color: var(--color-text); text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 0.25rem;
}
.lp-footer-links-group a {
    font-size: var(--fs-sm); color: var(--color-muted);
    text-decoration: none; transition: color var(--transition-global);
}
.lp-footer-links-group a:hover { color: var(--color-accent); }
.lp-footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    font-size: var(--fs-xs); color: var(--color-muted);
}
.lp-footer-cta {
    display: inline-flex; align-items: center; gap: 0.35rem;
    color: var(--color-accent); font-size: var(--fs-sm);
    font-weight: var(--fw-semibold); text-decoration: none;
    transition: opacity var(--transition-global);
}
.lp-footer-cta:hover { opacity: 0.8; }

.lp-whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 620;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(18,140,126,0.34);
    animation: lp-whatsapp-bounce 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.5s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp-whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 22px 44px rgba(18,140,126,0.45);
}

/* Anéis de sinal — expandem para fora */
.lp-whatsapp-float__rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-whatsapp-float__ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border: 1.5px solid rgba(255,255,255,0.35);
    animation: lp-whatsapp-ring-expand 3.6s cubic-bezier(0,0,0.2,1) infinite;
    opacity: 0;
}
.lp-whatsapp-float__ring:nth-child(2) { animation-delay: 1.2s; }
.lp-whatsapp-float__ring:nth-child(3) { animation-delay: 2.4s; }

/* Border chase — ponto de luz percorrendo a borda */
.lp-whatsapp-float__border {
    position: absolute;
    inset: -2px;
    border-radius: calc(999px + 2px);
    background: conic-gradient(from var(--border-angle), transparent 0%, transparent 55%, rgba(255,255,255,0.15) 68%, rgba(255,255,255,0.35) 78%, rgba(255,255,255,0.15) 88%, transparent 100%);
    animation: lp-border-chase 4s linear infinite;
    z-index: 0;
    opacity: 0.7;
    pointer-events: none;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
    transition: opacity 0.3s ease;
}
.lp-whatsapp-float:hover .lp-whatsapp-float__border {
    opacity: 1;
    animation-duration: 2s;
}

/* Brilho interno pulsante */
.lp-whatsapp-float__glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(255,255,255,0.25), transparent 60%);
    animation: lp-whatsapp-glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

/* Conteúdo visível */
.lp-whatsapp-float__icon,
.lp-whatsapp-float__label {
    position: relative;
    z-index: 2;
}
.lp-whatsapp-float__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
}
.lp-whatsapp-float__icon svg { width: 18px; height: 18px; }
.lp-whatsapp-float__label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    white-space: nowrap;
}

@keyframes lp-whatsapp-ring-expand {
    0%   { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}
@keyframes lp-whatsapp-glow-pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.92); }
    50%      { opacity: 0.75; transform: scale(1.06); }
}
@keyframes lp-whatsapp-bounce {
    0%   { transform: translateY(40px) scale(0.8); opacity: 0; }
    60%  { transform: translateY(-6px) scale(1.02); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════════════
   WIDGETS DE PROVA SOCIAL
   ═══════════════════════════════════════════════════════════════════════ */
#lp-widgets-container-left,
#lp-widgets-container-right {
    position: fixed; bottom: 20px; left: 20px; z-index: 500;
    display: flex; flex-direction: column; gap: 0.75rem;
    pointer-events: none;
}
#lp-widgets-container-right {
    left: auto;
    right: 20px;
    align-items: flex-end;
}
.lp-widget {
    pointer-events: auto;
    max-width: 340px; padding: 0.85rem 1.1rem;
    background: var(--color-surface); backdrop-filter: blur(16px);
    border-left: 3px solid var(--widget-accent, var(--color-accent));
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: var(--fs-sm); color: var(--color-text);
    line-height: 1.5;
    animation: lp-widget-in 0.45s cubic-bezier(0.16,1,0.3,1) both;
    position: relative; overflow: hidden;
}
.lp-widget--out { animation: lp-widget-out 0.35s ease both; }
.lp-widget--right {
    border-left: none; border-right: 3px solid var(--widget-accent, var(--color-accent));
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    animation-name: lp-widget-in-right;
}
@keyframes lp-widget-in-right {
    from { transform: translateX(120%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}
.lp-widget-progress {
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--widget-accent, var(--color-accent)); transform-origin: left;
    animation: lp-widget-progress linear forwards;
    animation-duration: var(--duration, 5s);
}
.lp-widget strong {
    font-weight: var(--fw-bold); color: var(--color-text);
}
.lp-widget span { color: var(--color-muted); font-size: var(--fs-xs); }
.lp-widget-empty {
    max-width: 340px;
    padding: 0.85rem 1rem;
    border: 1px dashed rgba(37,211,102,0.2);
    border-radius: var(--radius-md);
    background: var(--color-surface-2);
    color: var(--color-muted);
    font-size: var(--fs-xs);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVIDADE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .lp-hero-inner { 
        display: flex; 
        flex-direction: column-reverse; 
        gap: 2.5rem; 
    }
    .lp-hero-visual { 
        max-width: 640px; 
        margin: 0 auto; 
        width: 100%; 
    }
    .lp-proof-grid { grid-template-columns: 1fr 1fr; }
    .lp-faq-layout { grid-template-columns: 1fr; gap: 2rem; }
    .lp-faq-header { position: static; }
    .lp-footer-top { grid-template-columns: 1fr 1fr; }
    .lp-cta-inline { flex-direction: column; align-items: flex-start; }
    
    /* Pipeline - tablet */
    .lp-pipeline-line { display: none; }
    .lp-pipeline-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .lp-pipe-visual { height: 160px; }
    
    /* Carousel - tablet */
    .lp-bento-visual { height: 100px; }
}

@media (max-width: 768px) {
    .lp-hero { padding: 4rem 1.25rem 3rem; min-height: unset; }
    .lp-nav { display: none; }
    .lp-menu-toggle { display: flex; order: -1; margin-right: 0.5rem; }
    .lp-header { padding: 0 1.25rem; }
    .lp-header-actions { order: 3; margin-left: auto; }
    .lp-header-actions .lp-social-links--topbar { display: none; }
    .lp-header-actions .lp-theme-toggle { display: none; }
    .lp-header-actions .lp-btn-ghost { display: none; }
    .lp-header-actions .lp-btn-sm { padding: 0.38rem 0.85rem; font-size: var(--fs-xs); }
    .lp-container { padding: 0 1.25rem; }
    .lp-proof-grid { grid-template-columns: 1fr; }
    .lp-steps { flex-direction: column; }
    .lp-step-arrow { transform: rotate(90deg); margin: 0 auto; padding: 0.5rem 0; }
    .lp-footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .lp-hero-ctas { flex-direction: column; align-items: stretch; }
    .lp-btn-lg { justify-content: center; }
    .lp-trust-sep { display: none; }
    .lp-mockup[data-3d="true"] { transform: none !important; }
    .lp-constellation { display: none; }
    .lp-cta-inline {
        padding: 1.15rem 1.15rem 1.2rem;
    }
    .lp-cta-inline__content {
        padding-left: 0;
    }
    .lp-whatsapp-float {
        right: 12px;
        bottom: 84px;
        padding: 0.82rem 0.95rem;
    }
    .lp-whatsapp-float__label {
        font-size: var(--fs-xs);
    }
    .lp-whatsapp-float__ring {
        border-width: 1px;
    }
    .lp-whatsapp-float__icon svg { width: 16px; height: 16px; }
    #lp-widgets-container-left,
    #lp-widgets-container-right {
        left: 12px;
        right: 12px;
        bottom: 12px;
        align-items: stretch;
    }
    .lp-widget {
        max-width: none;
        width: 100%;
    }
    #lp-widgets-container-right {
        bottom: 88px;
    }
    
    /* Desativar animações complexas no mobile */
    .lp-radar-sweep,
    .lp-heatmap-zone,
    .lp-chat-bubble,
    .lp-data-particle {
        display: none;
    }
    
    .lp-pin-geo-ring {
        display: none;
    }
    
    /* Pipeline - mobile */
    .lp-pipeline { padding: 4rem 0; }
    .lp-pipeline-grid { gap: 1.5rem; }
    .lp-pipe-card { padding: 1.5rem 1.25rem; }
    .lp-pipe-visual { height: 120px; }
    .lp-pipe-title { font-size: var(--fs-base); }
    .lp-pipe-desc { font-size: var(--fs-xs); }
    
    /* Carousel - mobile */
    .lp-bento-visual { height: 75px; margin-bottom: 0.65rem; }
    .lp-bento-node { width: 40px; height: 40px; margin-bottom: 0.5rem; }
    .lp-bento-icon { width: 38px; height: 38px; }
    .lp-bento-icon i { width: 16px !important; height: 16px !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
   LIGHT MODE — Overrides para componentes com cores hardcoded
   ═══════════════════════════════════════════════════════════════════════ */
[data-theme="light"] .lp-pipe-card,
[data-theme="light"] .lp-carousel-card,
[data-theme="light"] .lp-proof-card {
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
[data-theme="light"] .lp-pipe-card::after,
[data-theme="light"] .lp-carousel-card::after,
[data-theme="light"] .lp-proof-card::after,
[data-theme="light"] .lp-cta-inline::after,
[data-theme="light"] .lp-cta-mid-inner::after {
    opacity: 0.4;
}
[data-theme="light"] .lp-pipe-card:hover::after,
[data-theme="light"] .lp-carousel-card:hover::after,
[data-theme="light"] .lp-proof-card:hover::after,
[data-theme="light"] .lp-cta-inline:hover::after,
[data-theme="light"] .lp-cta-mid-inner:hover::after {
    opacity: 0.8;
}
[data-theme="light"] .lp-pipe-card:hover,
[data-theme="light"] .lp-carousel-card:hover,
[data-theme="light"] .lp-proof-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 24px rgba(37,211,102,0.08);
}
[data-theme="light"] .lp-cta-inline {
    background: var(--color-surface);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
[data-theme="light"] .lp-cta-inline-wrap {
    background: linear-gradient(180deg, transparent, rgba(37,211,102,0.04));
}
[data-theme="light"] .lp-cta-mid-inner {
    background: linear-gradient(135deg, var(--color-surface-2) 0%, rgba(37,211,102,0.06) 100%);
}
[data-theme="light"] .lp-proof {
    background: var(--color-bg);
}
[data-theme="light"] .lp-proof-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 0 16px rgba(37,211,102,0.06);
}
[data-theme="light"] .lp-widget {
    background: var(--color-surface);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
[data-theme="light"] .lp-widget-empty {
    background: var(--color-surface-2);
}
[data-theme="light"] .lp-map-canvas,
[data-theme="light"] .lp-pipe-visual {
    background: var(--color-bg);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .lp-hero-visual { animation: none; }
    .lp-noise { display: none; }
    .lp-radar-sweep { display: none; }
    .lp-heatmap-zone { display: none; }
    .lp-chat-bubble { display: none; }
    .lp-data-particle { display: none; }
    .lp-pin-geo-ring { display: none; }
    .lp-btn-send-pulse::after { animation: none; }
    .lp-whatsapp-float__rings { display: none; }
    .lp-whatsapp-float__border { display: none; }
    .lp-whatsapp-float__glow { display: none; }
    .lp-whatsapp-float { animation: none; }
}
