/* ================== Variáveis Globais ================== */
:root {
    --bg-base: #080808;
    --bg-darker: #050505;
    --primary-blue: #0A84FF;
    --primary-hover: #0070e0;
    --text-white: #FFFFFF;
    --text-gray: #888888;
    --text-light-gray: #EAEAEA;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    --font-main: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================== Reset & Base ================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; max-width: 100vw; position: relative; }
body { font-family: var(--font-main); background-color: var(--bg-base); color: var(--text-light-gray); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.section-padding { padding: 120px 0; }
.bg-darker { background-color: var(--bg-darker); }
.text-blue { color: var(--primary-blue); }
.text-gradient { background: linear-gradient(90deg, #FFFFFF, var(--primary-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ================== Elementos Globais ================== */
.bg-elements { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; pointer-events: none; }
.glow-blur { position: absolute; width: 40vw; height: 40vw; background: var(--primary-blue); opacity: 0.15; filter: blur(120px); border-radius: 50%; }
.blur-top-left { top: -10%; left: -10%; }
.blur-bottom-right { bottom: -10%; right: -10%; opacity: 0.1; }
#particles-canvas { display: block; width: 100%; height: 100%; }

.glass-card { background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 16px; box-shadow: var(--glass-shadow); position: relative; overflow: hidden; transition: var(--transition-smooth); }
.btn { display: inline-flex; justify-content: center; align-items: center; gap: 10px; padding: 12px 24px; font-weight: 500; font-size: 0.95rem; border-radius: 8px; transition: var(--transition-smooth); cursor: pointer; }
.btn-primary { background: var(--primary-blue); color: #fff; border: none; box-shadow: 0 0 15px rgba(10, 132, 255, 0.3); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 0 25px rgba(10, 132, 255, 0.6); }
.btn-secondary { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 1px solid var(--primary-blue); }
.btn-outline:hover { background: rgba(10,132,255,0.1); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(10,132,255,0.15); }
.btn-large { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; border-radius: 6px; }

/* AJUSTE DO TÍTULO */
.section-title { text-align: center; margin-bottom: 80px; max-width: 850px; margin-inline: auto; }
.section-title h2 { font-size: 2.8rem; letter-spacing: -1px; margin-bottom: 16px; color: var(--text-white); text-wrap: balance; }
.section-title p { font-size: 1.1rem; color: var(--text-gray); }

/* ================== Header ================== */
header { position: fixed; top: 0; left: 0; width: 100%; padding: 24px 0; z-index: 1000; transition: var(--transition-smooth); border-bottom: 1px solid transparent; }
header.scrolled { padding: 16px 0; background: rgba(8, 8, 8, 0.8); backdrop-filter: blur(12px); border-bottom: 1px solid var(--glass-border); }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 700; color: #fff; }
.logo-icon { width: 16px; height: 16px; background: var(--primary-blue); border-radius: 50%; box-shadow: 0 0 10px var(--primary-blue); }
.nav-list { display: flex; gap: 32px; }
.nav-list a { font-size: 0.9rem; font-weight: 500; color: var(--text-gray); transition: var(--transition-smooth); }
.nav-list a:hover { color: #fff; }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

/* ================== Hero ================== */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px; color: #fff; }
.hero-text p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 40px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; }

/* Dashboard Software Profissional (Hero) */
.hero-visual { perspective: 1200px; width: 100%; }
.dashboard-pro { width: 100%; background: rgba(8, 8, 8, 0.65); border: 1px solid var(--glass-border); border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(10,132,255,0.08); transform: rotateY(-10deg) rotateX(5deg); backdrop-filter: blur(16px); padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.dash-status { display: flex; justify-content: flex-end; align-items: center; gap: 10px; margin-bottom: 4px; }
.status-text { font-size: 0.75rem; color: var(--text-gray); font-weight: 600; text-transform: uppercase; }
.pulse-dot-blue { width: 8px; height: 8px; background: var(--primary-blue); border-radius: 50%; animation: pulseBlue 1.5s infinite; }
@keyframes pulseBlue { 0% { box-shadow: 0 0 0 0 rgba(10, 132, 255, 0.8); } 70% { box-shadow: 0 0 0 8px rgba(10, 132, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(10, 132, 255, 0); } }

.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.d-card { background: rgba(255,255,255,0.015); border: 1px solid rgba(10,132,255,0.08); border-radius: 12px; padding: 20px; transition: var(--transition-smooth); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-start; }
.d-card:hover { transform: translateY(-5px); border-color: rgba(10, 132, 255, 0.4); box-shadow: 0 10px 30px rgba(10,132,255,0.15); background: rgba(255,255,255,0.03); }
.d-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.d-card-title { font-size: 0.95rem; color: #fff; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.d-card-title i { color: var(--primary-blue); font-size: 1.1rem; }
.d-card-icon-right { color: rgba(255,255,255,0.15); font-size: 1.2rem; }
.d-card p { font-size: 0.8rem; color: var(--text-gray); line-height: 1.6; margin-bottom: auto; }

.mini-chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 35px; width: 100%; margin-top: 16px; }
.bar-anim { flex: 1; background: var(--primary-blue); border-radius: 3px 3px 0 0; transform-origin: bottom; opacity: 0.7; transform: scaleY(0); animation: pulseBarLoop 5s ease-in-out infinite; }
.bar-anim:nth-child(1) { height: 40%; animation-delay: 0s; } .bar-anim:nth-child(2) { height: 60%; animation-delay: 0.2s; } .bar-anim:nth-child(3) { height: 50%; animation-delay: 0.4s; } .bar-anim:nth-child(4) { height: 80%; animation-delay: 0.6s; } .bar-anim:nth-child(5) { height: 100%; animation-delay: 0.8s; box-shadow: 0 0 10px rgba(10,132,255,0.5); }
@keyframes pulseBarLoop { 0%, 100% { transform: scaleY(0.2); opacity: 0.5; } 20%, 80% { transform: scaleY(1); opacity: 1; } }

/* GRÁFICO MONITORAMENTO */
.modern-chart-container { height: 50px; width: 100%; margin-top: 16px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); border-left: 1px solid rgba(255,255,255,0.05); background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 20% 16.66px; overflow: visible; }
.chart-anim-wrapper { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; transform-origin: bottom center; animation: breatheChart 5s ease-in-out infinite; will-change: transform; }
.chart-svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; overflow: visible; }
.modern-chart-dot { position: absolute; right: 0; top: 20%; width: 8px; height: 8px; background: var(--primary-blue); border-radius: 50%; box-shadow: 0 0 12px 3px rgba(10,132,255,0.8), 0 0 20px rgba(10,132,255,0.4); margin-top: -4px; margin-right: -4px; z-index: 10; }
@keyframes breatheChart { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.7); } }

/* ================== Divisor ================== */
.divider { width: 100%; height: 100px; background: linear-gradient(to bottom, var(--bg-base), var(--bg-darker)); margin-top: -1px; margin-bottom: -1px; z-index: 1; position: relative; }
.bg-darker + .divider { background: linear-gradient(to bottom, var(--bg-darker), var(--bg-base)); }

/* ================== Serviços Principais ================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; width: 100%; }
.service-card { display: flex; flex-direction: column; height: 100%; padding: 48px 32px; text-decoration: none; color: inherit; cursor: pointer; position: relative; overflow: hidden; width: 100%; box-sizing: border-box; }
.card-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 0%, rgba(10,132,255,0.15), transparent 70%); opacity: 0; transition: var(--transition-smooth); pointer-events: none; }
.service-card:hover { transform: translateY(-10px); border-color: rgba(10,132,255,0.4); box-shadow: 0 15px 35px rgba(10,132,255,0.15); }
.service-card:hover .card-glow { opacity: 1; }
.service-card:hover .icon-wrapper i { animation: bounceIcon 0.5s ease; }

.badge-popular { position: absolute; top: 16px; right: 16px; background: rgba(10,132,255,0.15); color: var(--primary-blue); border: 1px solid rgba(10,132,255,0.3); font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; z-index: 2; }
.featured-card { border-color: rgba(10,132,255,0.25); box-shadow: 0 0 20px rgba(10,132,255,0.05); }

.icon-wrapper { width: 60px; height: 60px; background: rgba(10,132,255,0.1); border-radius: 12px; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; color: var(--primary-blue); margin-bottom: 24px; border: 1px solid rgba(10,132,255,0.2); transition: var(--transition-smooth); }
.service-card h3 { font-size: 1.5rem; color: #fff; margin-bottom: 16px; }
.service-card p { color: var(--text-gray); margin-bottom: 16px; font-size: 0.95rem; }

.service-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 24px 0; width: 100%; }
.service-list { margin-bottom: 24px; width: 100%; }
.service-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.9rem; color: var(--text-light-gray); font-weight: 500; }
.service-footer { margin-top: auto; font-size: 0.85rem; color: var(--text-gray); display: flex; align-items: center; gap: 8px; font-style: italic; }
.service-footer i { color: var(--primary-blue); }
@keyframes bounceIcon { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ================== Soluções Complementares ================== */
.solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; width: 100%; }
.solution-card { padding: 24px; display: flex; flex-direction: column; gap: 12px; transition: var(--transition-smooth); cursor: default; box-sizing: border-box; }
.solution-card i { font-size: 1.5rem; color: var(--primary-blue); transition: var(--transition-smooth); }
.solution-card h4 { font-size: 1.05rem; color: #fff; font-weight: 600; margin-top: 8px; }
.solution-card p { font-size: 0.85rem; color: var(--text-gray); line-height: 1.5; }
.solution-card:hover { transform: translateY(-5px); border-color: rgba(10,132,255,0.4); box-shadow: 0 10px 25px rgba(10,132,255,0.1); background: rgba(255,255,255,0.03); }
.solution-card:hover i { transform: scale(1.1); text-shadow: 0 0 10px rgba(10,132,255,0.5); }

/* ================== Diferenciais (Chips) ================== */
.diff-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; width: 100%; }
.diff-item { background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); padding: 16px 24px; border-radius: 30px; font-size: 0.95rem; font-weight: 500; display: flex; align-items: center; gap: 12px; transition: var(--transition-smooth); cursor: default; }
.diff-item i { transition: transform 0.3s ease; }
.diff-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(10,132,255,0.4); transform: translateY(-3px) scale(1.03); box-shadow: 0 5px 15px rgba(10,132,255,0.15); }
.diff-item:hover i { animation: pulseIcon 0.5s ease-in-out; }
@keyframes pulseIcon { 0% { transform: scale(1); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }

/* ================== Timeline Processo ================== */
.timeline-wrapper { position: relative; max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; padding-top: 20px; width: 100%; }
.timeline-line { position: absolute; top: 40px; left: 0; width: 100%; height: 2px; background: rgba(255,255,255,0.05); z-index: 1; overflow: hidden; }
.timeline-wrapper.flow-active .timeline-line::after { 
    content: ''; position: absolute; top: 0; left: -20%; width: 40%; height: 100%; 
    background: linear-gradient(90deg, transparent, rgba(10,132,255,0.8), rgba(10,132,255,1), rgba(10,132,255,0.8), transparent); 
    animation: flowBeam 10s ease-in-out infinite; 
}
.timeline-steps { display: flex; justify-content: space-between; width: 100%; z-index: 3; position: relative; gap: 16px; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.step-dot { width: 44px; height: 44px; background: var(--bg-darker); border: 2px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: 700; color: var(--text-gray); margin-bottom: 24px; transition: var(--transition-smooth); z-index: 4; will-change: box-shadow, background-color, border-color, color; }
.step-content { padding: 20px; text-align: center; width: 100%; opacity: 0.5; border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; box-shadow: var(--glass-shadow); background: var(--glass-bg); will-change: transform; transform: translate3d(0, 0, 0); backface-visibility: hidden; transition: opacity 1s ease; }
.step.active .step-content { opacity: 1; }
.step-content h3 { font-size: 1rem; color: #fff; transition: color 0.3s ease; }

.timeline-wrapper.flow-active .step:nth-child(1) .step-dot { animation: flowGlowDot 10s linear infinite 0s; }
.timeline-wrapper.flow-active .step:nth-child(2) .step-dot { animation: flowGlowDot 10s linear infinite 2s; }
.timeline-wrapper.flow-active .step:nth-child(3) .step-dot { animation: flowGlowDot 10s linear infinite 4s; }
.timeline-wrapper.flow-active .step:nth-child(4) .step-dot { animation: flowGlowDot 10s linear infinite 6s; }
.timeline-wrapper.flow-active .step:nth-child(5) .step-dot { animation: flowGlowDot 10s linear infinite 8s; }

.timeline-wrapper.flow-active .step:nth-child(1) .step-content { animation: flowGlowCard 10s linear infinite 0s; }
.timeline-wrapper.flow-active .step:nth-child(2) .step-content { animation: flowGlowCard 10s linear infinite 2s; }
.timeline-wrapper.flow-active .step:nth-child(3) .step-content { animation: flowGlowCard 10s linear infinite 4s; }
.timeline-wrapper.flow-active .step:nth-child(4) .step-content { animation: flowGlowCard 10s linear infinite 6s; }
.timeline-wrapper.flow-active .step:nth-child(5) .step-content { animation: flowGlowCard 10s linear infinite 8s; }

@keyframes flowBeam { 0% { left: -20%; opacity: 0; } 5% { opacity: 1; } 95% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes flowGlowDot { 0% { background: var(--bg-darker); color: var(--text-gray); border-color: rgba(255,255,255,0.1); box-shadow: 0 0 0 rgba(10,132,255,0); animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1); } 10% { background: var(--primary-blue); color: #fff; border-color: var(--primary-blue); box-shadow: 0 0 20px rgba(10,132,255,0.8); animation-timing-function: cubic-bezier(0.25, 0, 0.5, 1); } 25% { background: var(--bg-darker); color: var(--text-gray); border-color: rgba(255,255,255,0.1); box-shadow: 0 0 0 rgba(10,132,255,0); } 100% { background: var(--bg-darker); color: var(--text-gray); border-color: rgba(255,255,255,0.1); box-shadow: 0 0 0 rgba(10,132,255,0); } }
@keyframes flowGlowCard { 0% { transform: translate3d(0, 0, 0); border-color: rgba(255,255,255,0.05); box-shadow: var(--glass-shadow); background: var(--glass-bg); animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1); } 10% { transform: translate3d(0, -2px, 0); border-color: rgba(10,132,255,0.3); box-shadow: 0 10px 25px rgba(10,132,255,0.12); background: rgba(255,255,255,0.04); animation-timing-function: cubic-bezier(0.25, 0, 0.5, 1); } 25% { transform: translate3d(0, 0, 0); border-color: rgba(255,255,255,0.05); box-shadow: var(--glass-shadow); background: var(--glass-bg); } 100% { transform: translate3d(0, 0, 0); border-color: rgba(255,255,255,0.05); box-shadow: var(--glass-shadow); background: var(--glass-bg); } }

/* ================== Portfólio ================== */
.project-showcase { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); border-radius: 24px; padding: 60px; width: 100%; box-sizing: border-box; }
.project-badge { display: inline-block; padding: 6px 12px; background: rgba(10,132,255,0.1); color: var(--primary-blue); border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 16px; border: 1px solid rgba(10,132,255,0.2); }
.project-info h3 { font-size: 2.2rem; color: #fff; margin-bottom: 16px; }

.project-description { color: var(--text-gray); margin-bottom: 24px; font-size: 1.05rem; line-height: 1.6; }
.project-description strong { color: #fff; font-weight: 600; }

.project-chips { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.p-chip { background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); padding: 10px 18px; border-radius: 30px; font-size: 0.85rem; font-weight: 500; display: flex; align-items: center; gap: 8px; transition: var(--transition-smooth); cursor: default; }
.p-chip i { font-size: 1rem; }
.p-chip:hover { background: rgba(10,132,255,0.05); border-color: rgba(10,132,255,0.4); transform: translateY(-3px) scale(1.02); box-shadow: 0 5px 15px rgba(10,132,255,0.15); }

.mockup-composition { position: relative; width: 100%; display: flex; justify-content: center; align-items: center; padding: 20px 0; }
.laptop-frame { width: 85%; perspective: 1000px; position: relative; z-index: 1; margin: 0 auto; }
.laptop-screen { width: 100%; padding-bottom: 64%; background: #111; border: 12px solid #222; border-radius: 12px 12px 0 0; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: var(--transition-smooth); }
.laptop-screen:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(10,132,255,0.2); border-color: #333; }
.project-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.laptop-base { width: 110%; height: 12px; background: #333; margin-left: -5%; border-radius: 0 0 12px 12px; position: relative; }
.laptop-base::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 15%; height: 4px; background: #222; border-radius: 0 0 4px 4px; }

.float-card { position: absolute; background: rgba(15, 15, 15, 0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px 16px; font-size: 0.85rem; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 8px; box-shadow: 0 15px 35px rgba(0,0,0,0.4); z-index: 2; pointer-events: none; }
.float-card i { font-size: 1.1rem; }
.float-1 { top: 0%; left: -5%; animation: floatAnim 4s ease-in-out infinite; }
.float-2 { bottom: 15%; left: -10%; animation: floatAnim 5s ease-in-out infinite 1s; }
.float-3 { top: 15%; right: -5%; animation: floatAnim 4.5s ease-in-out infinite 0.5s; }
.float-4 { bottom: -5%; right: 0%; animation: floatAnim 5.5s ease-in-out infinite 1.5s; }
@keyframes floatAnim { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ================== Depoimentos ================== */
.testimonials-section { overflow: hidden; width: 100%; }
.testimonials-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.verified-badge { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #fff; font-size: 1rem; }
.verified-badge i { color: #FFD700; font-size: 1.2rem; }

.carousel-nav { display: flex; gap: 12px; }
.carousel-arrow { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 8px; display: flex; justify-content: center; align-items: center; color: #fff; cursor: pointer; transition: var(--transition-smooth); }
.carousel-arrow:hover { background: var(--primary-blue); border-color: var(--primary-blue); transform: translateY(-2px); }

.carousel-container { position: relative; width: 100%; overflow: hidden; }
.carousel-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; padding-bottom: 20px; }
.carousel-track::-webkit-scrollbar { display: none; }

.testi-card { flex: 0 0 calc(33.333% - 16px); scroll-snap-align: start; padding: 32px; display: flex; flex-direction: column; gap: 16px; cursor: grab; box-sizing: border-box; }
.testi-card:hover { transform: translateY(-5px); border-color: rgba(10,132,255,0.4); box-shadow: 0 10px 30px rgba(10,132,255,0.15); }
.testi-card:active { cursor: grabbing; }
.testi-stars { color: #FFD700; font-size: 0.9rem; letter-spacing: 2px; }
.testi-author h4 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.testi-author span { color: var(--text-gray); font-size: 0.85rem; }

.testi-text-container { position: relative; max-height: 8rem; overflow: hidden; transition: max-height 0.5s ease; }
.testi-text { color: var(--text-light-gray); font-style: italic; line-height: 1.6; margin: 0; }

.read-more-btn { background: none; border: none; color: var(--primary-blue); font-family: inherit; font-weight: 600; font-size: 0.9rem; cursor: pointer; text-align: left; padding: 0; margin-top: 4px; display: inline-block; transition: var(--transition-smooth); }
.read-more-btn:hover { color: var(--primary-hover); text-shadow: 0 0 10px rgba(10, 132, 255, 0.4); }
.read-more-btn.hidden { display: none; }

/* AQUI ESTÁ A CORREÇÃO DA BOLINHA COM O PADDING BOTTOM EXTRA */
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; padding-bottom: 16px; width: 100%; }
.dot { width: 10px; height: 10px; background: rgba(255,255,255,0.2); border-radius: 50%; cursor: pointer; transition: var(--transition-smooth); }
.dot.active { background: var(--primary-blue); box-shadow: 0 0 10px var(--primary-blue); transform: scale(1.2); }

/* ================== FAQ Acordeão Inteligente ================== */
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; width: 100%; }
.faq-item { transition: all 0.4s ease; cursor: pointer; }
.faq-item:hover { border-color: rgba(10,132,255,0.4); box-shadow: 0 5px 20px rgba(10,132,255,0.1); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; color: #fff; font-size: 1.1rem; padding: 24px; cursor: pointer; font-weight: 600; text-align: left; font-family: inherit; outline: none; }
.faq-question i { transition: transform 0.4s ease; color: var(--primary-blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 24px; }
.faq-answer p { padding-bottom: 24px; color: var(--text-gray); font-size: 1rem; line-height: 1.6; opacity: 0; transform: translateY(-10px); transition: all 0.4s ease; }

.faq-item.active { border-color: var(--primary-blue); background: rgba(255,255,255,0.04); box-shadow: 0 5px 20px rgba(10,132,255,0.15); }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .faq-answer p { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-cta { max-width: 600px; margin: 60px auto 0; text-align: center; padding: 32px; border-radius: 16px; border: 1px solid var(--glass-border); width: 100%; box-sizing: border-box; }
.faq-cta h3 { font-size: 1.5rem; color: #fff; margin-bottom: 12px; }
.faq-cta p { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 24px; }

/* ================== CTA Final ================== */
.cta-box { text-align: center; padding: 80px 40px; border: 1px solid rgba(10,132,255,0.3); background: rgba(10,132,255,0.02); width: 100%; box-sizing: border-box; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; background: var(--primary-blue); opacity: 0.1; filter: blur(100px); border-radius: 50%; pointer-events: none; }
.cta-box h2 { font-size: 3rem; margin-bottom: 16px; }
.cta-box p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 40px; max-width: 600px; margin-inline: auto; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; width: 100%; }

/* ================== Rodapé, Links Legais e Cookies ================== */
footer { position: relative; background: var(--bg-darker); padding: 80px 0 40px; overflow: hidden; width: 100%; }
footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(10, 132, 255, 0.4), transparent); }
footer::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 250px; background: radial-gradient(ellipse at bottom, rgba(10, 132, 255, 0.04) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; width: 100%; }
.footer-brand .logo { font-size: 1.4rem; letter-spacing: -0.5px; }
.footer-brand .logo-icon { box-shadow: 0 0 12px 2px rgba(10, 132, 255, 0.3); }
.footer-brand p { max-width: 380px; color: #b0b0b0; line-height: 1.7; margin-top: 16px; font-size: 0.95rem; }
.footer-contact h4, .footer-social h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; }
.footer-contact { display: flex; flex-direction: column; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; color: var(--text-gray); margin-bottom: 14px; transition: color 0.3s ease; width: max-content; }
.footer-contact a:hover { color: var(--primary-blue); }
.social-links { display: flex; gap: 16px; }
.social-links a { width: 42px; height: 42px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; display: flex; justify-content: center; align-items: center; color: var(--text-gray); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.social-links a:hover { background: rgba(10, 132, 255, 0.08); color: var(--primary-blue); border-color: rgba(10, 132, 255, 0.3); box-shadow: 0 5px 15px rgba(10, 132, 255, 0.15); transform: translateY(-3px) scale(1.05); }

.footer-bottom { margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; position: relative; z-index: 1; }
.footer-bottom p { color: var(--text-gray); font-size: 0.85rem; margin: 0; }
.legal-links { display: flex; gap: 12px; align-items: center; }
.legal-links a { color: var(--text-gray); font-size: 0.85rem; transition: var(--transition-smooth); }
.legal-links a:hover { color: var(--primary-blue); text-decoration: underline; }
.legal-links .separator { color: rgba(255, 255, 255, 0.2); font-size: 0.8rem; }

.cookie-banner { position: fixed; bottom: -150%; left: 50%; transform: translateX(-50%); width: 90%; max-width: 800px; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; z-index: 9999; transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid var(--primary-blue); background: rgba(8, 8, 8, 0.9); }
.cookie-banner.show { bottom: 20px; }
.cookie-banner p { margin: 0; font-size: 0.85rem; color: var(--text-light-gray); line-height: 1.6; }
.cookie-banner p a { color: var(--primary-blue); text-decoration: underline; font-weight: 600; }

/* ================== Botões Flutuantes (WhatsApp e Topo) ================== */
.back-to-top { position: fixed; bottom: 100px; right: 35px; width: 45px; height: 45px; background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: var(--transition-smooth); z-index: 998; cursor: pointer; }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-blue); transform: translateY(-5px); border-color: var(--primary-blue); }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 55px; height: 55px; background-color: var(--primary-blue); color: #FFF; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; box-shadow: 0 4px 15px rgba(10, 132, 255, 0.3); z-index: 999; transition: var(--transition-smooth); animation: pulse-wa 2.5s infinite ease-in-out; }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.05); background-color: var(--primary-hover); box-shadow: 0 10px 25px rgba(10, 132, 255, 0.5); color: #FFF; }
@keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(10, 132, 255, 0.5); } 70% { box-shadow: 0 0 0 12px rgba(10, 132, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(10, 132, 255, 0); } }

/* Animações JS Classes */
.reveal { opacity: 0; transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-zoom { transform: scale(0.9); }
.reveal.active { opacity: 1; transform: translate(0) scale(1); }

/* ================== A NOVA RESPONSIVIDADE MOBILE BLINDADA ================== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-visual { width: 90%; margin: 40px auto 0; perspective: none; }
    .dashboard-pro { transform: none !important; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .project-showcase { grid-template-columns: 1fr; padding: 40px; }
    
    .laptop-frame { width: 90%; }
    .float-card { font-size: 0.75rem; padding: 10px 14px; }
    .float-1 { left: 0; }
    .float-2 { left: 0; bottom: 5%; }
    .float-3 { right: 0; }
    .float-4 { right: 0; bottom: -10px; }

    .testi-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden; width: 100%; max-width: 100vw; position: relative; }
    .container { padding: 0 20px; width: 100%; box-sizing: border-box; }
    
    .section-padding { padding: 60px 0; }
    .section-title { margin-bottom: 40px; padding: 0 10px; width: 100%; }
    .section-title h2 { font-size: 2rem !important; line-height: 1.3; word-break: break-word; }
    .section-title p { font-size: 1rem; margin: 0 auto; }

    .menu-toggle { display: block; position: relative; z-index: 1001; }
    .nav-menu { position: fixed; left: -100%; top: 0; width: 80%; height: 100vh; background: #080808; flex-direction: column; padding: 100px 40px; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); border-right: 1px solid var(--glass-border); box-shadow: 20px 0 50px rgba(0,0,0,0.8); z-index: 999; }
    .nav-menu.open { left: 0; }
    .nav-list { flex-direction: column; gap: 30px; font-size: 1.1rem; }
    .hidden-mobile { display: none; }

    .hero { padding-top: 100px; }
    .hero-text h1 { font-size: clamp(2rem, 8vw, 2.5rem) !important; line-height: 1.2; text-align: center; margin-bottom: 20px; word-break: break-word; }
    .hero-text p { text-align: center; margin: 0 auto 30px auto; font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: center; width: 100%; gap: 16px; }
    .hero-actions .btn { width: 100%; justify-content: center; margin: 0; }
    
    .hero-visual { width: 100%; margin-top: 40px; perspective: none; }
    .dashboard-pro { padding: 20px 16px; margin: 0; transform: none !important; width: 100%; box-sizing: border-box; }
    .dash-grid { grid-template-columns: 1fr; width: 100%; }
    .dash-status { justify-content: center; margin-bottom: 16px; }

    .services-grid { grid-template-columns: 1fr; gap: 20px; width: 100%; }
    .service-card { padding: 30px 20px; align-items: center; text-align: center; width: 100%; box-sizing: border-box; }
    .badge-popular { top: 6px; right: auto; position: relative; margin-bottom: 16px; width: max-content; }
    .service-card h3 { margin-top: 10px; }
    .icon-wrapper { margin: 0 auto 20px auto; }
    
    .service-list { display: inline-block; text-align: left; margin: 0 auto 24px auto; width: 100%; max-width: 280px; }
    .service-list li { margin-bottom: 12px; justify-content: flex-start; }
    .service-footer { width: 100%; justify-content: center; text-align: center; }

    .solutions-grid { grid-template-columns: 1fr; gap: 16px; width: 100%; }
    .solution-card { text-align: center; padding: 24px 20px; width: 100%; box-sizing: border-box; }
    .solution-card i { margin: 0 auto 12px auto; display: block; }

    .diff-container { flex-direction: column; align-items: center; gap: 12px; width: 100%; }
    .diff-item { width: 100%; max-width: 320px; justify-content: center; text-align: center; }

    .timeline-wrapper { padding-left: 20px; width: 100%; box-sizing: border-box; overflow: hidden; }
    .timeline-line { left: 20px; width: 2px; height: 100%; top: 0; }
    .timeline-wrapper.flow-active .timeline-line::after { left: 0; top: -40%; width: 100%; height: 40%; background: linear-gradient(180deg, transparent, rgba(10,132,255,0.8), rgba(10,132,255,1), rgba(10,132,255,0.8), transparent); animation: timelineBeamMobile 10s ease-in-out infinite; }
    .timeline-steps { flex-direction: column; gap: 30px; width: 100%; }
    .step { flex-direction: row; text-align: left; padding-left: 30px; align-items: flex-start; width: 100%; }
    .step-dot { position: absolute; left: -14px; top: -5px; margin: 0; width: 30px; height: 30px; font-size: 0.85rem; }
    
    .step-content { margin-left: 0; padding: 0; text-align: left; background: none; border: none; box-shadow: none; opacity: 1; transform: none !important; width: 100%; }
    .step.active .step-content { border: none; box-shadow: none; background: transparent; }
    .step-content h3 { margin-bottom: 8px; transition: color 1s ease; font-size: 1rem; }
    
    .timeline-wrapper.flow-active .step .step-content { animation: none !important; }
    .timeline-wrapper.flow-active .step.current-step .step-content h3 { color: var(--primary-blue); }

    .project-showcase { padding: 30px 16px; text-align: center; width: 100%; box-sizing: border-box; }
    .project-info { display: flex; flex-direction: column; align-items: center; width: 100%; }
    .project-chips { justify-content: center; width: 100%; }
    .laptop-frame { width: 100%; margin-top: 30px; }
    .laptop-base { width: 100%; margin-left: 0; border-radius: 0 0 6px 6px; }
    .mockup-composition { padding: 0; width: 100%; overflow: hidden; }
    .float-card { font-size: 0.65rem; padding: 6px 10px; }
    .float-card i { font-size: 0.8rem; }
    .float-1 { top: -10px; left: 0; }
    .float-2 { bottom: 20px; left: 0; }
    .float-3 { top: 10%; right: 0; }
    .float-4 { bottom: -10px; right: 0; }

    .testimonials-header { flex-direction: column; align-items: flex-start; }
    .testi-card { flex: 0 0 100%; padding: 24px 16px; width: 100%; box-sizing: border-box; }
    .carousel-nav { justify-content: center; width: 100%; }

    .faq-question { font-size: 1rem; padding: 16px; line-height: 1.4; }
    .faq-answer { padding: 0 16px; }
    .faq-answer p { padding-bottom: 20px; }
    .faq-cta { padding: 24px 16px; margin-top: 30px; width: 100%; box-sizing: border-box; }
    .faq-cta h3 { font-size: 1.3rem; }

    .cta-box { padding: 40px 16px; width: 100%; box-sizing: border-box; }
    .cta-box h2 { font-size: 2rem !important; line-height: 1.2; }
    .cta-actions { flex-direction: column; align-items: center; gap: 16px; width: 100%; }
    .cta-actions .btn { width: 100%; margin: 0; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; width: 100%; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-brand p { margin: 12px auto 0 auto; max-width: 100%; }
    .footer-contact, .footer-social { align-items: center; }
    .footer-contact a { justify-content: center; width: auto; }
    .social-links { justify-content: center; }

    /* Ajuste de Posição dos Flutuantes no Celular + Respiro do Rodapé para evitar que sobreponham o copyright */
    .footer-bottom { flex-direction: column; text-align: center; margin-top: 40px; padding-bottom: 100px; } 
    .cookie-banner { flex-direction: column; text-align: center; padding: 20px 16px; width: calc(100% - 32px); bottom: -200%; }
    .cookie-banner.show { bottom: 16px; }
    .cookie-banner .btn { width: 100%; }

    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.6rem; }
    .back-to-top { bottom: 90px; right: 22px; }
}

@keyframes timelineBeamMobile { 0% { top: -40%; opacity: 0; } 5% { opacity: 1; } 95% { opacity: 1; } 100% { top: 100%; opacity: 0; } }