/* ============================================================
   1. VARIÁVEIS E RESET
   ============================================================ */
:root {
    --bg: #030308;
    --primary: #7c3aed;
    --accent: #a78bfa;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(124, 58, 237, 0.2);
    --text-muted: #888;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ============================================================
   2. BACKGROUNDS
   ============================================================ */
.app-background { position: fixed; inset: 0; z-index: -1; }
.grid-layer {
    display: none; /* Remove a grade de fundo para focar 100% no mapa elegante! */
}
.glow-top { position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 100%; height: 500px; background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%); filter: blur(100px); }
.glow-bottom { position: absolute; bottom: -10%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(124,58,237,0.1), transparent 70%); filter: blur(80px); }

.container { max-width: 1100px; margin: auto; padding: 0 20px; }

/* ============================================================
   3. NAVBAR (INTELIGENTE)
   ============================================================ */
.app-header { 
    padding: 25px 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    transition: 0.4s ease; 
}
.app-header.scrolled {
    padding: 15px 0;
    background: rgba(3, 3, 8, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.app-logo { font-size: 1.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.5px; }
.app-logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-link { color: #ccc; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: 0.3s; display: flex; align-items: center; }
.nav-link:hover { color: var(--accent); }
.btn-app-login { padding: 10px 22px; border: 1.5px solid var(--border); border-radius: 10px; color: white; text-decoration: none; font-weight: 700; font-size: 0.8rem; transition: 0.3s; display: flex; align-items: center; }
.btn-app-login:hover { background: rgba(124, 58, 237, 0.1); border-color: var(--primary); box-shadow: 0 0 15px rgba(124, 58, 237, 0.2); }
.btn-app-buy { padding: 10px 22px; background: var(--primary); border-radius: 10px; color: white; text-decoration: none; font-weight: 700; font-size: 0.8rem; transition: 0.3s; }
.nav-links a i { margin-right: 8px; }

/* ============================================================
   4. SEÇÕES E HERO
   ============================================================ */
.section { padding: 80px 0; }
.hero { padding: 160px 0 60px; text-align: center; position: relative; overflow: visible; }
/* Halo radial de brilho atrás do texto do hero */
.hero::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 20%;
    width: 60%;
    height: 40%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.status-pill { display: inline-block; padding: 6px 15px; background: rgba(124, 58, 237, 0.1); color: var(--primary); border-radius: 50px; font-size: 0.7rem; font-weight: 800; margin-bottom: 15px; letter-spacing: 1px; }
h1 { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -2px; }
.gradient { background: linear-gradient(90deg, #fff, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtext { color: var(--text-muted); max-width: 550px; margin: 20px auto 30px; position: relative; z-index: 3; }

/* Estilização do Mapa de Fundo do Brasil (Tech Wireframe) */
.hero-map-bg {
    position: absolute;
    top: 110px; /* Começa exatamente abaixo da navbar para manter o menu 100% limpo! */
    height: 520px; /* Altura calibrada para enquadrar perfeitamente os textos */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px; /* Largura estendida para que os novos elementos de rede ocupem as laterais vazias! */
    opacity: 0.28; /* Brilho e contraste ideais para a leitura */
    pointer-events: auto; /* Permitir interações de hover nos estados! */
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.hero-map-bg svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Estilos elegantes para os Estados do Mapa do Brasil */
.hero-map-bg svg .state {
    fill: rgba(124, 58, 237, 0.02) !important;
    stroke: rgba(167, 139, 250, 0.22) !important;
    stroke-width: 0.8px !important;
    transition: all 0.3s ease !important;
}
.hero-map-bg svg .state:hover {
    fill: rgba(124, 58, 237, 0.15) !important;
    stroke: var(--accent) !important;
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.3)) !important;
    cursor: pointer !important;
}

/* CTAs do Hero (Conversão Imediata para Compra) */
.hero-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
    z-index: 10;
    position: relative;
}
.btn-buy-hero {
    padding: 16px 32px;
    background: var(--primary);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}
.btn-buy-hero:hover {
    background: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.5);
}
.btn-feiras-hero {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-feiras-hero:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.15);
}

@media (max-width: 768px) {
    .hero-ctas {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 320px;
        margin: 30px auto;
    }
    .btn-buy-hero, .btn-feiras-hero {
        width: 100%;
        justify-content: center;
    }
}

/* Estilização dos Cards do Monitor (Contando a história dos Leads Capturados) */
.monitor-float-card {
    position: absolute;
    background: rgba(10, 10, 12, 0.75);
    border: 1.5px solid rgba(124, 58, 237, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    z-index: 10;
    pointer-events: none;
    transition: 0.3s ease;
}
.monitor-float-card.left-card {
    top: 15%;
    left: -8%;
    transform: rotate(-4deg);
    animation: monitorFloatLeft 7s infinite ease-in-out;
}
.monitor-float-card.right-card {
    bottom: 25%;
    right: -8%;
    transform: rotate(4deg);
    animation: monitorFloatRight 8s infinite ease-in-out;
}
.monitor-float-card .float-avatar {
    width: 38px;
    height: 38px;
    background: rgba(124, 58, 237, 0.15);
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}
.monitor-float-card .float-avatar.gold {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    color: #fbbf24;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}
.monitor-float-card .float-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.monitor-float-card .float-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}
.monitor-float-card .badge-status {
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}
.monitor-float-card .badge-status.success {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.monitor-float-card .badge-status.vip {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}
.monitor-float-card .float-meta {
    font-size: 0.7rem;
    color: #aaa;
    font-weight: 600;
    margin-top: 3px;
}

@keyframes monitorFloatLeft {
    0%, 100% { transform: translateY(0) rotate(-4deg); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); }
    50% { transform: translateY(-8px) rotate(-5deg); box-shadow: 0 25px 45px rgba(124, 58, 237, 0.15); }
}
@keyframes monitorFloatRight {
    0%, 100% { transform: translateY(0) rotate(4deg); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); }
    50% { transform: translateY(-10px) rotate(5deg); box-shadow: 0 25px 45px rgba(245, 158, 11, 0.15); }
}

@media (max-width: 1024px) {
    .monitor-float-card { display: none !important; }
}

/* MONITOR SCANNER */
.monitor-wrapper { margin: 20px auto 40px; max-width: 900px; }
.monitor-screen { background: #0a0a0c; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.7); }
.monitor-bar { background: #151518; padding: 12px 20px; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid var(--border); }
.circles span { width: 8px; height: 8px; background: #222; border-radius: 50%; display: inline-block; }
.monitor-content { position: relative; height: auto; background: #050505; line-height: 0; }
.system-img { width: 100%; height: auto; display: block; }
.scanner-line { position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--primary); box-shadow: 0 0 15px var(--primary); animation: scan 6s linear infinite; z-index: 10; }
@keyframes scan { 0% { top: 0; } 100% { top: 100%; } }

/* PONTES NARRATIVAS */
.narrative-bridge { text-align: center; margin: 20px 0; }
.narrative-bridge p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); font-weight: 800; margin-bottom: 10px; }
.narrative-bridge .line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--primary), transparent); margin: 0 auto; }

/* ============================================================
   5. GRIDS E CARDS
   ============================================================ */
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--card-bg); border: 1px solid var(--border); padding: 35px; border-radius: 24px; transition: 0.3s; position: relative; }
.feature-card:hover { border-color: var(--primary); background: rgba(124, 58, 237, 0.05); }
.card-icon { width: 50px; height: 50px; background: var(--primary); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; font-size: 1.2rem; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

.mini-status { display: flex; gap: 8px; margin-top: 15px; }
.mini-status span { padding: 4px 10px; font-size: 0.6rem; border-radius: 4px; font-weight: 800; text-transform: uppercase; }
.m-novo { background: rgba(255,255,255,0.1); color: #fff; }
.m-cont { background: rgba(124,58,237,0.2); color: var(--primary); }

/* ============================================================
   6. ACORDEÃO REVISADO
   ============================================================ */
.accordion-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; margin-top: 50px; }
.accordion-visual { position: relative; }
.accordion-item { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: 0.4s; margin-bottom: 15px; }
.acc-header { padding: 25px; display: flex; align-items: center; gap: 20px; cursor: pointer; }
.acc-num { font-size: 1.2rem; font-weight: 800; color: var(--primary); opacity: 0.5; }
.acc-header h4 { flex: 1; font-size: 1.1rem; font-weight: 700; }
.acc-header i { font-size: 0.8rem; transition: 0.5s; }
.acc-content { max-height: 0; overflow: hidden; padding: 0 25px; opacity: 0; transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease; }
.accordion-item.active { background: rgba(124, 58, 237, 0.05); border-color: var(--primary); }
.accordion-item.active .acc-content { max-height: 500px; opacity: 1; padding-bottom: 30px; padding-top: 10px; }
.accordion-item.active .acc-header i { transform: rotate(45deg); color: var(--primary); }

.acc-bullets {
    list-style: none; /* Oculta as bolinhas padrão indesejadas! */
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.acc-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}
.acc-bullets li i {
    color: #00ffaa !important; /* Destaca o checkmark em verde-neon brilhante! */
    font-size: 0.75rem;
}

/* TABELA TEASER */
.leads-table-teaser { background: rgba(255, 255, 255, 0.01); border: 1px solid var(--border); border-radius: 15px; padding: 20px; position: relative; overflow: hidden; font-size: 0.7rem; }
.table-header { display: grid; grid-template-columns: 1.5fr 1.5fr 1fr 0.8fr; padding-bottom: 10px; border-bottom: 1px solid var(--border); color: var(--primary); font-weight: 800; text-transform: uppercase; }
.table-row { display: grid; grid-template-columns: 1.5fr 1.5fr 1fr 0.8fr; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); align-items: center; }
.blur-data { filter: blur(4px); opacity: 0.5; user-select: none; }
.status-pill-mini { padding: 3px 8px; border-radius: 4px; font-size: 0.6rem; font-weight: 700; }
.status-pill-mini.novo { background: rgba(255,255,255,0.1); }
.status-pill-mini.contato { background: rgba(124, 58, 237, 0.2); color: var(--accent); }
.table-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 20%, #030308 95%); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 15px; text-align: center; }

/* ============================================================
   7. SEÇÃO DE BENEFÍCIOS (CORREÇÃO DE QUEBRA)
   ============================================================ */
.split-benefits { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 60px; 
}
.benefits-text { 
    flex: 1.2; /* Dá mais espaço para o texto */
    min-width: 0; /* Evita que o flexbox quebre o layout */
}
.benefits-text h2 { 
    font-size: clamp(2rem, 5vw, 2.8rem); 
    font-weight: 800; 
    margin-bottom: 40px; 
    line-height: 1.2;
}
.benefit-item { display: flex; gap: 20px; margin-bottom: 30px; }
.benefit-item i { color: var(--primary); font-size: 1.3rem; margin-top: 5px; flex-shrink: 0; }
.b-info h4 { margin-bottom: 5px; font-size: 1.2rem; }
.b-info p { color: var(--text-muted); font-size: 0.9rem; }

.benefits-img { 
    flex: 0.8; 
    display: flex; 
    justify-content: flex-end; 
}
.glass-detail-card { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border); padding: 40px; border-radius: 24px; backdrop-filter: blur(20px); text-align: center; width: 100%; max-width: 400px; }

/* ============================================================
   8. NOVA SEÇÃO: PLANOS
   ============================================================ */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 50px; align-items: stretch; }
.plan-card { background: var(--card-bg); border: 1px solid var(--border); padding: 45px 30px; border-radius: 30px; text-align: center; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.plan-card.premium { border-color: var(--primary); background: rgba(124, 58, 237, 0.04); transform: scale(1.03); box-shadow: 0 30px 60px rgba(124,58,237,0.12); }
.plan-card.premium::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(35deg, transparent, rgba(167, 139, 250, 0.03), transparent); transform: rotate(45deg); pointer-events: none; }
.plan-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15); }
.plan-badge { display: inline-block; padding: 6px 15px; background: rgba(255,255,255,0.05); border-radius: 50px; font-size: 0.65rem; font-weight: 800; margin-bottom: 20px; letter-spacing: 0.5px; border: 1px solid rgba(255,255,255,0.05); }
.plan-badge.gold { background: var(--primary); color: #fff; border-color: var(--accent); }
.plan-card h3 { font-size: 1.6rem; margin-bottom: 8px; font-weight: 800; }
.plan-desc { color: #888; font-size: 0.85rem; line-height: 1.4; margin-bottom: 25px; min-height: 40px; }

/* Bloco de Preço Premium */
.plan-price-block { display: flex; align-items: baseline; justify-content: center; margin-bottom: 5px; }
.currency { font-size: 1.1rem; font-weight: 700; color: var(--accent); margin-right: 4px; }
.price-val { font-size: 3.2rem; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.price-suffix { font-size: 0.9rem; color: #666; font-weight: 600; margin-left: 5px; }
.price-note { font-size: 0.75rem; color: #555; font-weight: 700; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 0.5px; }

.plan-list { list-style: none; text-align: left; margin-bottom: 30px; flex-grow: 1; }
.plan-list li { margin-bottom: 12px; font-size: 0.85rem; color: #ccc; display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.plan-list li i { font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }

.payment-badges-pill { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.7rem; font-weight: 800; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 50px; padding: 6px 15px; margin-bottom: 20px; color: #999; width: 100%; }
.payment-badges-pill i { color: var(--accent); }

.btn-plan { display: block; padding: 16px; border: 1.5px solid var(--border); border-radius: 12px; color: #fff; text-decoration: none; font-weight: 800; transition: 0.3s; font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase; }
.btn-plan.primary { background: var(--primary); border: none; }
.btn-plan:hover { background: var(--primary); border-color: var(--primary); box-shadow: 0 10px 25px rgba(124,58,237,0.4); transform: scale(1.02); }

/* ============================================================
   8. CTA FINAL E FOOTER
   ============================================================ */
.buy-card { background: linear-gradient(145deg, #100a20 0%, #030308 100%); padding: 60px 40px; border-radius: 32px; border: 1px solid var(--primary); text-align: center; max-width: 850px; margin: 0 auto; }
.roi-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(124, 58, 237, 0.05); padding: 12px 25px; border-radius: 12px; border: 1px solid rgba(124, 58, 237, 0.2); margin-bottom: 30px; color: var(--accent); font-size: 0.9rem; font-weight: 600; }
.btn-main { display: inline-block; padding: 22px 60px; background: white; color: black; border-radius: 15px; text-decoration: none; font-weight: 800; transition: 0.3s; font-size: 1.1rem; }
.footer-guarantee { display: flex; justify-content: center; gap: 30px; margin-top: 40px; font-size: 0.85rem; color: #555; }
.app-footer {
    padding: 20px 0; /* Mais fininho e elegante! */
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Borda fina e discreta */
    background: rgba(3, 3, 8, 0.7); /* Efeito glassmorphic de fundo escuro */
    backdrop-filter: blur(10px);
    margin-top: 60px;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.app-footer .app-logo {
    font-size: 1.05rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.app-footer .app-logo:hover {
    opacity: 0.95;
}
.footer-copy {
    font-size: 0.7rem;
    color: #444;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; z-index: 9999; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); transition: 0.3s; animation: floatAnim 3s ease-in-out infinite; text-decoration: none; }
@keyframes floatAnim { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: 1.2s cubic-bezier(0.17, 0.67, 0.83, 0.67); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ============================================================
   9. MOBILE
   ============================================================ */
@media (max-width: 900px) {
    .app-grid, .accordion-container, .split-benefits { flex-direction: column; text-align: center; }
    .accordion-container, .app-grid, .plans-grid { grid-template-columns: 1fr !important; }
    .nav-links { gap: 8px; }
    .nav-link { display: none; } /* Oculta links de texto no celular */
    .btn-app-login { padding: 8px 12px; font-size: 0.7rem; }
    .btn-app-buy { padding: 8px 12px; font-size: 0.7rem; }
    .app-logo { font-size: 1.1rem; }
    .plan-card.premium { transform: none; }
    .accordion-visual, .benefits-img { display: none; }
    .benefit-item { text-align: left; }
    h1 { font-size: 2.5rem; }
    .hero { padding: 130px 0 50px; }
    .footer-guarantee { flex-direction: column; gap: 15px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 26px; }
}

/* WIDGET DE NOTAS PREMIUM */
.notes-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    animation: floatAnim 4s ease-in-out infinite; /* Animação de flutuar */
}

.note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
}

.note-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
}

.pin-icon {
    color: var(--primary);
    transform: rotate(45deg); /* Deixa o pin "espetado" */
    filter: drop-shadow(0 0 5px var(--primary));
}

.note-content p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    font-style: italic;
}

.note-content strong {
    color: #fff;
    font-weight: 800;
}

.note-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.note-time {
    font-size: 0.7rem;
    color: #444;
    font-weight: 600;
}

.status-tag-mini.agendado {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* ANIMAÇÃO DE FLUTUAR SUAVE */
@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================================
   10. ESTILOS ADICIONAIS PARA VITRINE (FEIRAS.PHP)
   ============================================================ */
.feiras-hero { padding: 140px 0 40px; text-align: center; }
.feiras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; margin-bottom: 60px; }

.event-vitrine-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 35px 25px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.event-vitrine-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15), 0 0 30px rgba(124, 58, 237, 0.05);
}

.event-vitrine-card .card-head {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-vitrine-card .event-title {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 5px 0 0 0;
}

.badge-leads {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(124, 58, 237, 0.12);
    border: 1.5px solid var(--border);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    align-self: flex-start;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.detail-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}
.detail-line i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.detail-line strong {
    color: #eee;
}

/* Preço dinâmico */
.vitrine-price-box {
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: left;
}
.vitrine-price-box .price-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    display: block;
}

/* Balão flutuante dinâmico e brilhante */
.badge-novo-floating {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
    animation: neonPulse 2s infinite ease-in-out;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.badge-novo-floating.high-demand {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

@keyframes neonPulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 0 10px rgba(16, 185, 129, 0.3); }
    50% { transform: translateY(-4px); box-shadow: 0 0 20px rgba(16, 185, 129, 0.6); }
}

@media (max-width: 900px) {
    .feiras-grid { grid-template-columns: 1fr !important; gap: 30px; }
    .feiras-hero { padding: 110px 0 30px; }
}

/* Botão WhatsApp Flutuante Premium */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background-color: #20ba5a;
}

/* Card Flutuante de Conversão (Micro-Pílula Ultra-Minimalista) */
.floating-promo-card {
    position: fixed;
    bottom: 105px; /* Alinhado acima do botão de WhatsApp */
    right: 30px;
    width: 195px;
    height: 38px;
    padding: 0;
    border-radius: 50px; /* Formato pílula ultra limpo */
    background: rgba(13, 10, 25, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(167, 139, 250, 0.45);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6), 0 0 12px rgba(124, 58, 237, 0.2);
    z-index: 998;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: slideInFromRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.floating-promo-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0,0,0,0.7), 0 0 18px rgba(124, 58, 237, 0.35);
    transform: translateY(-2px);
}

@keyframes slideInFromRight {
    0% { transform: translateX(120%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.floating-promo-card .promo-link-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 32px 0 8px; /* Safe space na direita para o botão fechar */
    text-decoration: none;
    gap: 8px;
}

.floating-promo-card .promo-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.65rem;
    box-shadow: 0 0 6px rgba(124, 58, 237, 0.4);
}

.floating-promo-card .promo-desc {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 800;
    margin: 0;
    white-space: nowrap;
    letter-spacing: -0.1px;
}

.floating-promo-card .promo-arrow {
    color: #a78bfa;
    font-size: 0.65rem;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
}
.floating-promo-card:hover .promo-arrow {
    transform: translateX(3px);
    color: #00ffaa;
}

.floating-promo-card .promo-close-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
    z-index: 10;
}
.floating-promo-card .promo-close-btn:hover {
    color: #ef4444;
}

@media (max-width: 600px) {
    .floating-promo-card {
        right: 20px;
        bottom: 95px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 30px;
        right: 20px;
    }
}