/* =========================================
   SISTEMA DE DESIGN MINIMALISTA E FLUIDO
   ========================================= */
:root {
    --clr-bg: #0a0812;
    --clr-bg-second: #151125;
    --clr-primary: #8a2be2;
    --clr-primary-light: #a955ff;
    --clr-secondary: #00e1ff;
    --clr-text-main: #f8f8fb;
    --clr-text-muted: #a3a1b1;
    --clr-success: #00ff88;
    --clr-danger: #ff3366;
    --clr-warning: #ffbd2e;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-mid: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--clr-bg); color: var(--clr-text-main); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4rem); letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw + 0.5rem, 3rem); letter-spacing: -0.5px;}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Utilities Otimizados */
.gradient-text { background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-white { color: #fff; }
.text-green { color: var(--clr-success); }
.text-blue { color: var(--clr-secondary); }
.text-red { color: var(--clr-danger); }
.text-orange { color: var(--clr-warning); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 3rem; }
.pt-3 { padding-top: clamp(60px, 8vw, 100px); }
.pb-3 { padding-bottom: clamp(60px, 8vw, 100px); }

/* Badges e Ajustes Minimalistas */
.section-header { margin-bottom: 3rem; }
.section-header p { color: var(--clr-text-muted); font-size: clamp(1rem, 2vw, 1.15rem); max-width: 600px; margin: 15px auto 0; font-weight: 300;}
.badge, .urgency-badge { display: inline-flex; align-items: center; justify-content: center; padding: 6px 16px; background: rgba(138, 43, 226, 0.1); border: 1px solid rgba(138, 43, 226, 0.25); border-radius: 50px; color: var(--clr-primary-light); font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;backdrop-filter: blur(5px);}

.urgency-badge { background: rgba(255, 51, 102, 0.1); border-color: rgba(255, 51, 102, 0.3); color: #ff3366; animation: pulsar-red 2s infinite alternate; }
@keyframes pulsar-red { from { box-shadow: 0 0 5px rgba(255, 51, 102, 0.1); } to { box-shadow: 0 0 15px rgba(255, 51, 102, 0.3); } }

/* Elementos Glass e Botões Refinados */
.glass-card { background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 20px; box-shadow: var(--glass-shadow); transition: var(--transition-mid); }
.glass-card:hover { border-color: rgba(255, 255, 255, 0.15); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-family: var(--font-heading); cursor: pointer; border: none; transition: var(--transition-mid); font-size: 1rem; }
.btn i { transition: transform var(--transition-fast); }
.btn:hover i { transform: translateX(3px); }
.btn-large { padding: 16px 36px; font-size: 1.1rem; }
.btn-primary { background: linear-gradient(135deg, var(--clr-primary), #600fbc); color: #fff; box-shadow: 0 4px 15px rgba(138, 43, 226, 0.25); }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--glass-border); color: #fff; }
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }

/* Melhorando Grid para Desktop/Mobile fluido */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 30vw, 350px), 1fr)); gap: 24px; }

/* NAVBAR OTIMIZADA */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; background: transparent; transition: var(--transition-fast); padding: 10px 0; }
.navbar.scrolled { background: rgba(10, 8, 18, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; }
.nav-links { display: flex; gap: 32px; flex: 1; justify-content: center; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--clr-text-muted); position: relative; padding: 5px 0;}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--clr-secondary); transition: var(--transition-fast); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.mobile-menu-btn { display: none; background: transparent; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 10px; z-index: 1001; }

/* HERO SECTION MINIMALISTA */
.hero { position: relative; padding: clamp(140px, 15vw, 180px) 0 clamp(60px, 10vw, 100px); min-height: 100vh; display: flex; align-items: center; }
.hero-bg-glow { position: absolute; top: -10%; left: 0; width: 50%; height: 70%; background: radial-gradient(circle, rgba(138,43,226,0.15) 0%, rgba(10,8,18,0) 70%); z-index: -1; pointer-events: none; }
.hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.hero-subtitle { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--clr-text-muted); max-width: 90%; margin-bottom: 2.5rem; font-weight: 300; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 2.5rem; flex-wrap: wrap; }
.trust-indicators { display: flex; gap: 24px; color: var(--clr-text-muted); font-size: 0.85rem; font-weight: 500; flex-wrap: wrap; }
.trust-indicators span { display: flex; align-items: center; gap: 6px; }

/* Mockup de Interface Otimizado */
.mockup-card { padding: 1px; background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent); transform: perspective(1000px) rotateY(-5deg) rotateX(2deg); }
.mockup-card:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.mockup-header { background: rgba(0,0,0,0.6); padding: 12px 20px; border-radius: 19px 19px 0 0; display: flex; border-bottom: 1px solid rgba(255,255,255,0.05); }
.circles { display: flex; gap: 6px; margin-right: 15px; align-items: center;}
.circles i { width: 10px; height: 10px; border-radius: 50%; background: #ff5f56; }
.circles i:nth-child(2) { background: #ffbd2e; }
.circles i:nth-child(3) { background: #27c93f; }
.mockup-body { padding: clamp(20px, 4vw, 30px); background: rgba(12, 10, 24, 0.9); border-radius: 0 0 19px 19px; }
.stat-row { display: flex; gap: 16px; margin-bottom: 24px; }
.stat-box { flex: 1; background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); padding: 16px; border-radius: 12px; }
.stat-label { display: block; font-size: 0.75rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.stat-value { font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 800; font-family: var(--font-heading); }
.action-row { display: flex; gap: 12px; margin-bottom: 24px; }
.mock-btn { flex: 1; padding: 12px; border-radius: 8px; border: none; font-weight: 600; cursor: auto; font-size: 0.9rem;}
.mock-btn.purple { background: rgba(138, 43, 226, 0.2); border: 1px solid var(--clr-primary); color: white; }

/* Timeline / Mapa Mental Responsivo e Minimalista */
.mental-map { padding: clamp(60px, 10vw, 120px) 0; }
.timeline { position: relative; max-width: 800px; margin: 3rem auto 0; padding-left: 10px;}
.timeline::before { content: ''; position: absolute; top: 0; left: 34px; height: 100%; width: 1px; background: linear-gradient(to bottom, var(--clr-primary), var(--clr-secondary)); opacity: 0.5; }
.timeline-item { position: relative; margin-bottom: 2.5rem; padding-left: 60px; text-align: left; }
.timeline-item:last-child { margin-bottom: 0px; }
.timeline-icon { position: absolute; left: 16px; top: 0; width: 36px; height: 36px; background: var(--clr-bg); border: 2px solid var(--clr-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1rem; color: #fff; z-index: 2; }
.timeline-content { padding: 25px; border-left: 2px solid transparent; transition: var(--transition-fast); }
.timeline-item:hover .timeline-content { border-left-color: var(--clr-secondary); background: rgba(255,255,255,0.05); }
.timeline-content h3 { font-size: 1.25rem; margin-bottom: 10px; color: #fff; }
.timeline-content p { color: var(--clr-text-muted); font-size: 0.95rem; font-weight: 300;}

/* CTA Minimalista */
.marketing-cta { padding: clamp(40px, 8vw, 80px) 0; }
.marketing-container { padding: clamp(30px, 6vw, 60px); text-align: center; background: radial-gradient(circle at center, var(--clr-bg-second), var(--clr-bg)); position: relative; overflow: hidden; border: 1px solid rgba(138,43,226,0.15);}
.marketing-content p { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--clr-text-muted); max-width: 700px; margin: 0 auto 40px; font-weight: 300;}
.marketing-stats { display: flex; justify-content: center; gap: clamp(20px, 5vw, 60px); flex-wrap: wrap; }
.m-stat { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; font-family: var(--font-heading); color: #fff; line-height: 1; }
.m-stat span { display: block; font-size: 0.9rem; font-weight: 400; color: var(--clr-primary-light); font-family: var(--font-body); margin-top: 5px; text-transform: uppercase; letter-spacing: 1px;}

/* Testimonials Otimizados */
.testimonial-card { padding: 30px; display: flex; flex-direction: column; justify-content: space-between;}
.t-stars { color: #ffbd2e; font-size: 1.1rem; margin-bottom: 15px; letter-spacing: 2px;}
.testimonial-card p { font-style: italic; color: #eaeaef; font-size: 1rem; margin-bottom: 20px; line-height: 1.7; font-weight: 300;}
.t-author { color: var(--clr-secondary); font-family: var(--font-heading); font-size: 0.9rem; margin-top: auto;}

/* Footer Minimalista */
.footer { background: #030206; padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,0.03); }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-brand p { color: var(--clr-text-muted); margin-top: 15px; font-weight: 300; font-size: 0.9rem;}
.footer-links h3, .footer-contact h3 { font-size: 1.1rem; margin-bottom: 20px; color: #fff; font-family: var(--font-heading); }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: var(--clr-text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--clr-secondary); padding-left: 5px; }

/* =========================================
   ELEMENTOS FLUTUANTES MINIMALISTAS
   ========================================= */

.whatsapp-float { position: fixed; bottom: clamp(20px, 4vw, 30px); right: clamp(20px, 4vw, 30px); width: clamp(50px, 5vw, 60px); height: clamp(50px, 5vw, 60px); background-color: #25d366; color: #FFF; border-radius: 50%; text-align: center; font-size: clamp(22px, 3vw, 26px); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); animation: whatsapp-pulse 2s infinite; }
.whatsapp-float:hover { background-color: #128C7E; transform: scale(1.08); }
@keyframes whatsapp-pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

.sales-popup { position: fixed; bottom: clamp(20px, 4vw, 30px); left: -500px; background: rgba(10, 8, 18, 0.98); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.5); z-index: 9998; max-width: 300px; transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.sales-popup.show { left: clamp(20px, 4vw, 30px); }
.sales-popup-icon { background: rgba(138,43,226,0.15); color: var(--clr-primary-light); width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.sales-popup-content { font-size: 0.85rem; color: var(--clr-text-muted); line-height: 1.3; }
.sales-popup-content span.sp-name { color: #fff; font-weight: 600; }
.sales-popup-content span.sp-city { color: var(--clr-secondary); font-weight: 500;}
.sales-popup-content p { margin: 2px 0; font-weight: 300; }
.sales-popup-content small { font-size: 0.7rem; color: rgba(255,255,255,0.3); }

/* Animações GERAIS */
.fade-in { animation: fadeIn 1s ease forwards; opacity: 0; }
.fade-in-up { animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; opacity: 0; transform: translateY(20px); }
.fade-in-right { animation: fadeInRight 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; opacity: 0; transform: translateX(20px); }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { to { opacity: 1; transform: translateX(0); } }

/* =========================================
   AJUSTES RESPONSIVOS MINIMALISTAS
   ========================================= */

@media (max-width: 992px) {
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* Menu Mobile Fullscreen Overlay Blur Minimalista */
    .nav-links.active { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(5,4,10,0.98); backdrop-filter: blur(20px); padding: 100px 24px 24px; z-index: 999; text-align: center; justify-content: center; gap: 40px; animation: fadeIn 0.3s ease; }
    .nav-links.active a { font-size: 1.5rem; font-family: var(--font-heading); color: #fff; }

    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .trust-indicators { justify-content: center; }
    .mockup-card { max-width: 500px; margin: 0 auto; transform: none; }
    .mockup-card:hover { transform: none; }
}

@media (max-width: 768px) {
    .timeline::before { left: 18px; }
    .timeline-item { padding-left: 45px; }
    .timeline-icon { width: 28px; height: 28px; font-size: 0.8rem; left: 4px; }
    
    .sales-popup { 
        bottom: 90px; /* Sobe para não sobrepor aos botões nativos/zap do IOS/Android */
        max-width: calc(100vw - 40px);
    }
}
