/* ============================================================
   Futura System — style.css v1.0 | Design SaaS Premium
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary:      #0a1628;
  --primary-mid:  #1a3a6b;
  --accent:       #0d6efd;
  --accent-dark:  #0b5ed7;
  --green:        #16a34a;
  --green-light:  #22c55e;
  --orange:       #f97316;
  --warning:      #f59e0b;
  --white:        #ffffff;
  --gray-50:      #f8fafc;
  --gray-100:     #f1f5f9;
  --gray-200:     #e2e8f0;
  --gray-400:     #94a3b8;
  --gray-600:     #475569;
  --gray-800:     #1e293b;
  --border-r:     16px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,.1);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.15);
  --shadow-xl:    0 20px 60px rgba(0,0,0,.2);
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: 72px;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ── Utilities ───────────────────────────────────────────── */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.gradient-text {
  background: linear-gradient(135deg, #22d3ee 0%, #60a5fa 50%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar-futura {
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: .75rem 0;
  transition: var(--transition);
}
.navbar-futura.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.3); }
.navbar-brand { display: flex; align-items: center; gap: .5rem; }
.brand-icon {
  width: 36px; height: 36px; background: linear-gradient(135deg,#3b82f6,#8b5cf6);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: #fff; font-family: 'Plus Jakarta Sans',sans-serif;
}
.brand-name { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; letter-spacing: -.3px; }
.brand-name strong { color: #60a5fa; }
.nav-link { color: rgba(255,255,255,.8) !important; font-weight: 500; padding: .5rem .75rem !important; border-radius: 8px; transition: var(--transition); font-size: .9rem; }
.nav-link:hover { color: #fff !important; background: rgba(255,255,255,.1); }
.dropdown-menu-futura { background: #0f1f38; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: .5rem; box-shadow: var(--shadow-xl); min-width: 220px; }
.dropdown-menu-futura .dropdown-item { color: rgba(255,255,255,.85); border-radius: 8px; padding: .6rem 1rem; font-size: .9rem; transition: var(--transition); }
.dropdown-menu-futura .dropdown-item:hover { background: rgba(255,255,255,.1); color: #fff; }
.dropdown-menu-futura .dropdown-divider { border-color: rgba(255,255,255,.1); }
.btn-whatsapp { background: #22c55e; color: #fff !important; border-radius: 10px; padding: .45rem 1rem; font-size: .88rem; font-weight: 600; border: none; transition: var(--transition); }
.btn-whatsapp:hover { background: #16a34a; transform: translateY(-1px); }
.btn-demo { background: linear-gradient(135deg,#f97316,#ef4444); color: #fff !important; border-radius: 10px; padding: .45rem 1.1rem; font-size: .88rem; font-weight: 600; border: none; transition: var(--transition); }
.btn-demo:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,.4); }
.navbar-toggler { border: 1px solid rgba(255,255,255,.3); padding: .4rem .6rem; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ── Flash Messages ──────────────────────────────────────── */
.alert-flash {
  position: fixed; top: 76px; left: 50%; transform: translateX(-50%); z-index: 9999;
  min-width: 320px; max-width: 600px; padding: 1rem 1.5rem; border-radius: 12px;
  display: flex; align-items: center; gap: .75rem; font-weight: 500;
  box-shadow: var(--shadow-lg); animation: slideDown .3s ease;
}
@keyframes slideDown { from { opacity:0; transform: translateX(-50%) translateY(-10px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }
.alert-flash-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.alert-flash-error   { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
.btn-close-flash { background: none; border: none; font-size: 1.2rem; cursor: pointer; margin-left: auto; opacity: .6; transition: opacity .2s; }
.btn-close-flash:hover { opacity: 1; }

/* ── Hero Section ───────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, #060e1f 0%, #0a1628 40%, #0f2450 70%, #1a1a4e 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes .shape {
  position: absolute; border-radius: 50%; filter: blur(80px); animation: float 6s ease-in-out infinite;
}
.shape-1 { width: 500px; height: 500px; background: rgba(59,130,246,.15); top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: rgba(139,92,246,.1); bottom: 50px; left: -50px; animation-delay: 2s; }
.shape-3 { width: 200px; height: 200px; background: rgba(34,211,238,.08); top: 40%; left: 40%; animation-delay: 4s; }
@keyframes float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-20px) scale(1.05)} }
.hero-badge {
  display: inline-flex; align-items: center; background: rgba(59,130,246,.2);
  border: 1px solid rgba(59,130,246,.3); color: #93c5fd; border-radius: 100px;
  padding: .4rem 1rem; font-size: .8rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: .5px;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; color: #fff; margin-bottom: 1.25rem; line-height: 1.1; letter-spacing: -.5px; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 520px; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.btn-hero-primary {
  background: linear-gradient(135deg,#3b82f6,#6366f1); color: #fff; border: none;
  padding: .85rem 2rem; border-radius: 12px; font-weight: 700; font-size: 1rem;
  transition: var(--transition); display: inline-flex; align-items: center; gap: .5rem;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,.4); color: #fff; }
.btn-hero-whatsapp {
  background: rgba(34,197,94,.15); color: #4ade80; border: 1px solid rgba(34,197,94,.3);
  padding: .85rem 1.75rem; border-radius: 12px; font-weight: 600; font-size: 1rem;
  transition: var(--transition); display: inline-flex; align-items: center; gap: .5rem;
}
.btn-hero-whatsapp:hover { background: #22c55e; color: #fff; border-color: #22c55e; transform: translateY(-2px); }
.hero-stats { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 900; color: #fff; font-family: 'Plus Jakarta Sans',sans-serif; }
.stat-unit { font-size: 1.5rem; font-weight: 700; color: #60a5fa; }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.55); display: block; font-weight: 500; letter-spacing: .5px; margin-top: .15rem; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* ── Hero Mockup ─────────────────────────────────────────── */
.hero-mockup { position: relative; }
.mockup-window {
  background: #1e293b; border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform .5s ease;
}
.hero-mockup:hover .mockup-window { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }
.mockup-bar { background: #0f172a; padding: .75rem 1rem; display: flex; gap: .5rem; align-items: center; }
.mockup-bar span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-bar span:nth-child(1){background:#ef4444;} .mockup-bar span:nth-child(2){background:#f59e0b;} .mockup-bar span:nth-child(3){background:#22c55e;}
.mockup-screen { padding: 1rem; background: #0f172a; }
.mock-dashboard { display: flex; gap: .75rem; min-height: 280px; }
.mock-sidebar { width: 50px; background: #1e293b; border-radius: 10px; padding: .75rem .5rem; display: flex; flex-direction: column; gap: .5rem; align-items: center; }
.mock-logo { width: 28px; height: 28px; background: linear-gradient(135deg,#3b82f6,#8b5cf6); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .6rem; color: #fff; margin-bottom: .5rem; }
.mock-nav-item { width: 28px; height: 6px; background: rgba(255,255,255,.2); border-radius: 3px; }
.mock-nav-item.active { background: #3b82f6; }
.mock-body { flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.mock-header-row { display: flex; justify-content: space-between; align-items: center; }
.mock-title-block { width: 100px; height: 10px; background: rgba(255,255,255,.2); border-radius: 4px; }
.mock-btn-block { width: 60px; height: 22px; background: #3b82f6; border-radius: 5px; }
.mock-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem; }
.mock-card { background: #1e293b; border-radius: 8px; padding: .5rem; display: flex; flex-direction: column; gap: .25rem; }
.mock-card.green .mock-card-icon { color: #22c55e; } .mock-card.blue .mock-card-icon { color: #60a5fa; }
.mock-card.orange .mock-card-icon { color: #fb923c; } .mock-card.purple .mock-card-icon { color: #a78bfa; }
.mock-card-icon { font-size: .75rem; } .mock-card-val { width: 50%; height: 8px; background: rgba(255,255,255,.25); border-radius: 3px; } .mock-card-lbl { width: 80%; height: 5px; background: rgba(255,255,255,.1); border-radius: 3px; }
.mock-chart-area { flex: 1; background: #1e293b; border-radius: 8px; padding: .75rem .75rem .5rem; display: flex; align-items: flex-end; gap: .25rem; }
.mock-chart-bars { display: flex; align-items: flex-end; gap: 3px; width: 100%; height: 70px; }
.mock-bar { flex: 1; background: rgba(59,130,246,.4); border-radius: 3px 3px 0 0; transition: height .5s ease; }
.mock-bar.active { background: #3b82f6; }
.mock-table { background: #1e293b; border-radius: 8px; padding: .5rem; display: flex; flex-direction: column; gap: .4rem; }
.mock-row { height: 8px; background: rgba(255,255,255,.1); border-radius: 3px; }
.mockup-float {
  position: absolute; background: rgba(15,23,42,.95); border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; padding: .6rem 1rem; display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; color: #fff; box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px); white-space: nowrap;
}
.mockup-float-1 { bottom: -15px; left: -30px; animation: floatBadge 3s ease-in-out infinite; }
.mockup-float-2 { top: -15px; right: -20px; animation: floatBadge 3s ease-in-out infinite .5s; }
.mockup-float-3 { bottom: 30px; right: -35px; animation: floatBadge 3s ease-in-out infinite 1s; }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar { padding: 2rem 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.trust-label { text-align: center; color: var(--gray-400); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.trust-item { display: flex; align-items: center; gap: .5rem; color: var(--gray-600); font-weight: 600; font-size: .9rem; }
.trust-item i { font-size: 1.25rem; color: var(--accent); }

/* ── Section Commons ─────────────────────────────────────── */
.section-header { margin-bottom: .5rem; }
.section-badge {
  display: inline-block; background: rgba(13,110,253,.1); color: var(--accent); border: 1px solid rgba(13,110,253,.2);
  border-radius: 100px; padding: .35rem 1rem; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--primary); margin-bottom: 1rem; letter-spacing: -.3px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; line-height: 1.7; }

/* ── Products Section ────────────────────────────────────── */
.section-products { padding: 6rem 0; background: var(--gray-50); }
.product-card {
  background: #fff; border-radius: 24px; padding: 2.5rem; height: 100%;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
  transition: var(--transition); position: relative; overflow: hidden;
}
.product-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; border-radius: 24px 24px 0 0; }
.product-card-fastfood::before { background: linear-gradient(135deg,#f97316,#ef4444); }
.product-card-commerce::before { background: linear-gradient(135deg,#3b82f6,#8b5cf6); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.product-card-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.25rem; }
.product-icon-wrap { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; flex-shrink: 0; }
.product-icon-ff { background: linear-gradient(135deg,#fff3e0,#ffe0cc); color: #ea580c; }
.product-icon-sc { background: linear-gradient(135deg,#eff6ff,#dbeafe); color: #2563eb; }
.product-name { font-size: 1.5rem; font-weight: 800; color: var(--primary); font-family: 'Plus Jakarta Sans',sans-serif; }
.product-subtitle { color: var(--gray-600); font-size: .85rem; font-weight: 600; }
.product-desc { color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; }
.product-features { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 2rem; }
.feat-item { display: flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 500; color: var(--gray-700); }
.feat-item i { color: var(--green); font-size: 1rem; flex-shrink: 0; }
.product-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-product-primary { background: linear-gradient(135deg,#f97316,#ef4444); color: #fff; border: none; padding: .75rem 1.5rem; border-radius: 12px; font-weight: 700; transition: var(--transition); }
.btn-product-primary:hover { opacity: .9; transform: translateY(-2px); color: #fff; box-shadow: 0 6px 20px rgba(249,115,22,.3); }
.btn-product-primary-blue { background: linear-gradient(135deg,#3b82f6,#6366f1); color: #fff; border: none; padding: .75rem 1.5rem; border-radius: 12px; font-weight: 700; transition: var(--transition); }
.btn-product-primary-blue:hover { opacity:.9; transform:translateY(-2px); color:#fff; box-shadow:0 6px 20px rgba(59,130,246,.3); }
.btn-product-secondary { background: var(--gray-100); color: var(--gray-700); border: 1px solid var(--gray-200); padding: .75rem 1.25rem; border-radius: 12px; font-weight: 600; transition: var(--transition); }
.btn-product-secondary:hover { background: var(--gray-200); color: var(--primary); }

/* ── Features Section ────────────────────────────────────── */
.section-features { padding: 6rem 0; background: #fff; }
.feature-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 20px; padding: 2rem; height: 100%; transition: var(--transition); position: relative; overflow: hidden; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-icon-wrap { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.feature-card-blue .feature-icon-wrap   { background: #eff6ff; color: #2563eb; }
.feature-card-green .feature-icon-wrap  { background: #f0fdf4; color: #16a34a; }
.feature-card-purple .feature-icon-wrap { background: #faf5ff; color: #7c3aed; }
.feature-card-orange .feature-icon-wrap { background: #fff7ed; color: #ea580c; }
.feature-card-teal .feature-icon-wrap   { background: #f0fdfa; color: #0d9488; }
.feature-card-red .feature-icon-wrap    { background: #fef2f2; color: #dc2626; }
.feature-title { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.feature-desc  { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }

/* ── Numbers Section ─────────────────────────────────────── */
.section-numbers { padding: 4rem 0; background: linear-gradient(135deg,var(--primary) 0%,var(--primary-mid) 100%); }
.number-card { padding: 2rem 1rem; }
.number-icon { font-size: 2rem; color: rgba(255,255,255,.5); margin-bottom: .75rem; }
.number-value { font-size: clamp(2.5rem,5vw,3.5rem); font-weight: 900; color: #fff; line-height: 1; margin-bottom: .5rem; font-family: 'Plus Jakarta Sans',sans-serif; }
.number-label { font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 600; }

/* ── Segments ────────────────────────────────────────────── */
.section-segments { padding: 6rem 0; background: var(--gray-50); }
.segments-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.segment-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 1.75rem 1rem;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  transition: var(--transition); cursor: pointer; text-decoration: none; color: var(--gray-800);
}
.segment-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-4px); color: var(--accent); }
.segment-emoji { font-size: 2.5rem; display: block; }
.segment-name { font-weight: 700; font-size: .9rem; }
.segment-arrow { font-size: .9rem; opacity: 0; transition: var(--transition); }
.segment-card:hover .segment-arrow { opacity: 1; transform: translateX(4px); }

/* Segments Large Grid */
.segments-grid-large { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 1.5rem; }
.segment-card-large {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 20px; padding: 2.5rem 1.5rem;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: .75rem;
  transition: var(--transition); text-decoration: none; color: var(--gray-800);
}
.segment-card-large:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-6px); color: var(--primary); }
.segment-emoji-large { font-size: 3.5rem; }
.segment-card-title { font-size: 1.1rem; font-weight: 800; }
.segment-card-desc { font-size: .85rem; color: var(--gray-600); line-height: 1.5; }
.segment-card-cta { color: var(--accent); font-weight: 700; font-size: .9rem; }

/* ── Testimonials ────────────────────────────────────────── */
.section-testimonials { padding: 6rem 0; background: #fff; }
.testimonial-card {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 20px; padding: 2rem;
  height: 100%; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #f59e0b; font-size: .85rem; margin-bottom: .75rem; }
.testimonial-text { color: var(--gray-700); font-style: italic; line-height: 1.7; margin-bottom: 1.25rem; font-size: .95rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),#8b5cf6); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: .9rem; color: var(--primary); }
.author-role { font-size: .78rem; color: var(--gray-400); }

/* ── Blog Home ───────────────────────────────────────────── */
.section-blog { padding: 6rem 0; background: var(--gray-50); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.btn-outline-blog { border: 2px solid var(--gray-200); color: var(--gray-600); border-radius: 12px; padding: .6rem 1.25rem; font-weight: 600; transition: var(--transition); white-space: nowrap; display: flex; align-items: center; gap: .5rem; }
.btn-outline-blog:hover { border-color: var(--accent); color: var(--accent); }
.blog-card-home { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200); height: 100%; transition: var(--transition); }
.blog-card-home:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img-link { display: block; }
.blog-card-img { height: 200px; background: linear-gradient(135deg,#1a3a6b,#0d6efd); position: relative; display: flex; align-items: flex-end; padding: 1rem; }
.blog-cat-badge { background: rgba(245,158,11,.9); color: #fff; font-size: .75rem; font-weight: 700; border-radius: 6px; padding: .2rem .6rem; }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .78rem; color: var(--gray-400); margin-bottom: .75rem; }
.blog-card-title { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: .5rem; }
.blog-card-title a { color: var(--primary); transition: var(--transition); }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt { font-size: .88rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1rem; }
.blog-card-link { color: var(--accent); font-weight: 600; font-size: .88rem; display: inline-flex; align-items: center; gap: .35rem; transition: var(--transition); }
.blog-card-link:hover { gap: .6rem; }

/* ── Blog Full ───────────────────────────────────────────── */
.blog-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200); height: 100%; transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-sidebar { position: sticky; top: 90px; }
.sidebar-widget { background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 1.5rem; margin-bottom: 1.25rem; }
.sidebar-title { font-weight: 700; color: var(--primary); margin-bottom: 1rem; font-size: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--gray-100); }
.sidebar-cat-list { list-style: none; padding: 0; margin: 0; }
.sidebar-cat-list li { margin-bottom: .35rem; }
.sidebar-cat-list a { display: flex; align-items: center; gap: .5rem; color: var(--gray-600); font-size: .9rem; padding: .5rem .75rem; border-radius: 8px; transition: var(--transition); }
.sidebar-cat-list a:hover, .sidebar-cat-list a.active { background: var(--gray-100); color: var(--accent); }
.sidebar-cat-list span { margin-left: auto; font-size: .75rem; background: var(--gray-100); color: var(--gray-400); border-radius: 100px; padding: .15rem .5rem; }
.sidebar-cta { background: linear-gradient(135deg,#0a1628,#1a3a6b); border-radius: 16px; padding: 1.5rem; color: #fff; }
.sidebar-cta h5 { color: #fff; margin-bottom: .5rem; }
.sidebar-cta p { color: rgba(255,255,255,.75); font-size: .85rem; margin-bottom: 1rem; }
.post-content { font-size: 1rem; line-height: 1.85; color: var(--gray-700); }
.prose-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin: 2rem 0 1rem; }
.prose-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 1.5rem 0 .75rem; }
.prose-content p { margin-bottom: 1rem; }
.prose-content ul, .prose-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-content li { margin-bottom: .4rem; }
.prose-content strong { color: var(--primary); }
.share-bar { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; padding: .75rem 1rem; background: var(--gray-50); border-radius: 10px; }
.post-tags { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.tag-pill { background: var(--gray-100); color: var(--gray-600); font-size: .78rem; font-weight: 600; padding: .25rem .75rem; border-radius: 100px; }
.post-cta-box { background: linear-gradient(135deg,#eff6ff,#f0fdf4); border: 1px solid #bfdbfe; border-radius: 16px; padding: 2rem; }
.related-post-card { display: block; background: var(--gray-50); border-radius: 12px; overflow: hidden; border: 1px solid var(--gray-200); color: var(--gray-800); transition: var(--transition); }
.related-post-card:hover { border-color: var(--accent); }
.related-post-img { height: 80px; background: linear-gradient(135deg,#1a3a6b,#0d6efd); }
.related-post-body { padding: .75rem; }
.related-post-body h6 { font-size: .82rem; font-weight: 600; line-height: 1.4; margin-top: .35rem; }
.author-avatar-sm { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#3b82f6,#8b5cf6); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── Page Header ─────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg,#060e1f 0%,#0a1628 50%,#0f2450 100%);
  padding: 5rem 0 6rem; position: relative; overflow: hidden;
}
.page-header-ff  { background: linear-gradient(135deg,#0a1628,#7c2d12,#ea580c); }
.page-header-sc  { background: linear-gradient(135deg,#0a1628,#1e3a8a,#2563eb); }
.page-header-blog { background: linear-gradient(135deg,#0a1628,#0f2450,#1e3a8a); }
.page-badge { display: inline-block; background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); border-radius: 100px; padding: .35rem 1rem; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.page-title { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: #fff; margin-bottom: 1rem; line-height: 1.15; }
.page-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 600px; line-height: 1.7; }
.page-header-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.product-page-icon { font-size: 3rem; margin-bottom: 1rem; display: inline-flex; }

/* ── About Page ──────────────────────────────────────────── */
.about-text { color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }
.about-timeline { margin-top: 2rem; border-left: 2px solid var(--gray-200); padding-left: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.timeline-item { display: grid; grid-template-columns: 50px 1fr; gap: .75rem; align-items: start; position: relative; }
.timeline-item::before { content:''; position:absolute; left:-1.9rem; top: .5rem; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 3px var(--accent); }
.timeline-year { font-weight: 800; color: var(--accent); font-size: .95rem; padding-top: .1rem; }
.timeline-dot { display: none; }
.timeline-desc { color: var(--gray-600); font-size: .9rem; line-height: 1.5; }
.mvv-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 20px; padding: 2.5rem; height: 100%; text-align: center; transition: var(--transition); }
.mvv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.mvv-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mvv-missao .mvv-icon { color: #ef4444; } .mvv-visao .mvv-icon { color: #3b82f6; } .mvv-valores .mvv-icon { color: #22c55e; }
.mvv-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 1rem; }
.mvv-card p, .mvv-card ul { color: var(--gray-600); font-size: .95rem; line-height: 1.7; }
.mvv-card ul { list-style: none; padding: 0; text-align: left; }
.mvv-card ul li { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.mvv-card ul li i { color: #22c55e; }
.about-img-block { position: relative; }
.about-badge-since { position: absolute; bottom: -20px; right: -15px; background: var(--accent); color: #fff; border-radius: 16px; padding: 1rem 1.5rem; text-align: center; box-shadow: var(--shadow-lg); }
.badge-year { font-size: 2rem; font-weight: 900; display: block; line-height: 1; }
.badge-text { font-size: .8rem; font-weight: 600; opacity: .85; }

/* ── Products Funcs ──────────────────────────────────────── */
.func-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 16px; padding: 1.75rem; height: 100%; transition: var(--transition); }
.func-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(249,115,22,.3); }
.func-card-blue:hover { border-color: rgba(59,130,246,.3); }
.func-icon { font-size: 1.75rem; color: #ea580c; margin-bottom: .75rem; }
.func-icon-blue { color: #2563eb; }
.func-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: .4rem; }
.func-desc { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }
.seg-badge-pill { background: rgba(249,115,22,.1); color: #ea580c; border: 1px solid rgba(249,115,22,.2); border-radius: 100px; padding: .5rem 1.25rem; font-weight: 600; font-size: .88rem; display: inline-block; }
.ff-mock-screen { background: #1e293b; border-radius: 12px; padding: 1rem; }
.ff-mock-table-map { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
.ff-table { border-radius: 10px; padding: .75rem; text-align: center; font-size: .75rem; font-weight: 700; }
.ff-table.occupied { background: rgba(239,68,68,.2); color: #f87171; border: 1px solid rgba(239,68,68,.3); }
.ff-table.reserved { background: rgba(245,158,11,.2); color: #fbbf24; border: 1px solid rgba(245,158,11,.3); }
.ff-table.available { background: rgba(34,197,94,.2); color: #4ade80; border: 1px solid rgba(34,197,94,.3); }
.ff-table-num { font-size: 1rem; } .ff-table-status { font-size: .65rem; opacity: .8; margin-top: .1rem; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-category-title { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin: 2rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--gray-200); }
.faq-item { border: 1px solid var(--gray-200); border-radius: 12px !important; margin-bottom: .5rem; overflow: hidden; }
.faq-btn { font-weight: 600; color: var(--primary); background: var(--gray-50); font-size: .95rem; }
.faq-btn:not(.collapsed) { background: #eff6ff; color: var(--accent); box-shadow: none; }
.faq-body { color: var(--gray-600); line-height: 1.7; }
.faq-cta-box { background: linear-gradient(135deg,var(--primary),var(--primary-mid)); color: #fff; border-radius: 20px; padding: 2.5rem; text-align: center; }
.faq-cta-box h4, .faq-cta-box p { color: #fff; }
.faq-cta-box p { opacity: .8; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-md); }
.contact-channel { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--gray-100); }
.contact-channel:last-child { border-bottom: none; }
.channel-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; flex-shrink: 0; }
.channel-whatsapp { background: #dcfce7; color: #16a34a; }
.channel-email { background: #eff6ff; color: #2563eb; }
.channel-phone { background: #fff7ed; color: #ea580c; }
.contact-channel h5 { font-weight: 700; color: var(--primary); margin-bottom: .25rem; font-size: 1rem; }
.contact-channel p { color: var(--gray-600); font-size: .9rem; margin: 0; }

/* ── Demo Page ───────────────────────────────────────────── */
.demo-hero { background: linear-gradient(135deg,#060e1f,#0a1628,#0f2450); padding: 5rem 0 4rem; min-height: 100vh; display: flex; align-items: center; }
.demo-badge { display: inline-flex; align-items: center; background: rgba(34,197,94,.15); color: #4ade80; border: 1px solid rgba(34,197,94,.3); border-radius: 100px; padding: .4rem 1rem; font-size: .8rem; font-weight: 700; margin-bottom: 1.5rem; }
.demo-title { font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 900; color: #fff; margin-bottom: 1.25rem; line-height: 1.1; }
.demo-desc { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.demo-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 2rem; }
.demo-benefit { font-size: .88rem; color: rgba(255,255,255,.85); font-weight: 500; }
.demo-avatars { display: flex; }
.demo-avatar { width: 36px; height: 36px; border-radius: 50%; color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: .9rem; border: 2px solid #fff; margin-right: -10px; }
.demo-social-proof { display: flex; align-items: center; gap: 1rem; }
.demo-proof-text { font-size: .85rem; color: rgba(255,255,255,.7); font-weight: 500; }
.demo-form-card { background: #fff; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow-xl); }
.demo-form-header { margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--gray-200); }
.demo-form-header h2 { font-size: 1.35rem; font-weight: 800; color: var(--primary); margin-bottom: .25rem; }
.demo-form-header p { color: var(--gray-500); font-size: .9rem; }
.btn-demo-submit { background: linear-gradient(135deg,#f97316,#ef4444); color: #fff; border: none; padding: 1rem 2rem; border-radius: 12px; font-weight: 700; font-size: 1rem; transition: var(--transition); }
.btn-demo-submit:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(239,68,68,.35); }
.reason-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 2rem; height: 100%; text-align: center; transition: var(--transition); }
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.reason-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 1rem; }
.reason-card h4 { font-weight: 800; color: var(--primary); margin-bottom: .75rem; font-size: 1.05rem; }
.reason-card p { color: var(--gray-600); font-size: .88rem; line-height: 1.6; }

/* ── CTA Final ───────────────────────────────────────────── */
.section-cta { padding: 5rem 0; }
.cta-card {
  background: linear-gradient(135deg,#0a1628 0%,#1a3a6b 60%,#1e3a8a 100%);
  border-radius: 28px; padding: 3.5rem; position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-bg-shape { position: absolute; width: 400px; height: 400px; background: rgba(255,255,255,.03); border-radius: 50%; top: -100px; right: -100px; }
.cta-badge { display: inline-flex; align-items: center; background: rgba(34,197,94,.2); color: #4ade80; border-radius: 100px; padding: .35rem 1rem; font-size: .78rem; font-weight: 700; margin-bottom: 1rem; }
.cta-title { font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 900; color: #fff; margin-bottom: 1rem; }
.cta-desc { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 1.25rem; }
.cta-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.cta-trust span { color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500; display: flex; align-items: center; gap: .4rem; }
.btn-cta-main { background: linear-gradient(135deg,#f97316,#ef4444); color: #fff; border: none; padding: 1rem 2rem; border-radius: 14px; font-weight: 700; font-size: 1rem; transition: var(--transition); display: inline-flex; align-items: center; gap: .5rem; }
.btn-cta-main:hover { opacity: .9; transform: translateY(-2px); color: #fff; box-shadow: 0 8px 30px rgba(239,68,68,.35); }
.btn-cta-whatsapp { background: rgba(34,197,94,.15); color: #4ade80; border: 1px solid rgba(34,197,94,.3); padding: .75rem 1.5rem; border-radius: 12px; font-weight: 600; transition: var(--transition); display: inline-flex; align-items: center; gap: .5rem; }
.btn-cta-whatsapp:hover { background: #22c55e; color: #fff; border-color: #22c55e; }
.btn-demo-footer { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; padding: .6rem 1.25rem; font-weight: 600; font-size: .88rem; transition: var(--transition); display: inline-flex; align-items: center; }
.btn-demo-footer:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ── Footer ──────────────────────────────────────────────── */
.footer-futura { background: #060e1f; color: rgba(255,255,255,.7); }
.footer-top { padding: 5rem 0 3rem; }
.footer-brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-desc { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 300px; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 1rem; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.07); border-radius: 100px; padding: .4rem 1rem; font-size: .78rem; color: rgba(255,255,255,.55); font-weight: 600; }
.footer-heading { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .88rem; transition: var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.footer-contact li { display: flex; align-items: center; gap: .6rem; font-size: .85rem; }
.footer-contact li i { color: var(--accent); flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; font-size: .82rem; color: rgba(255,255,255,.35); }

/* ── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px;
  background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: #fff; z-index: 999; box-shadow: 0 6px 25px rgba(37,211,102,.4);
  transition: var(--transition); animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.5); color: #fff; }
@keyframes pulse { 0%,100%{box-shadow:0 6px 25px rgba(37,211,102,.4)} 50%{box-shadow:0 6px 40px rgba(37,211,102,.6)} }
.whatsapp-tooltip { position: absolute; right: 70px; background: #333; color: #fff; padding: .4rem .8rem; border-radius: 8px; font-size: .8rem; font-weight: 600; white-space: nowrap; opacity: 0; transition: var(--transition); pointer-events: none; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; right: 75px; }

/* ── Cookie Consent ──────────────────────────────────────── */
.cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: rgba(10,22,40,.97); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,.1); padding: 1rem 0; }
.cookie-content { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.cookie-text { color: rgba(255,255,255,.8); font-size: .85rem; flex: 1; min-width: 200px; }
.cookie-text a { color: #60a5fa; text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; align-items: center; }
.btn-accept-cookies { background: #22c55e; color: #fff; border: none; border-radius: 8px; padding: .5rem 1.25rem; font-weight: 600; font-size: .85rem; cursor: pointer; transition: var(--transition); }
.btn-accept-cookies:hover { background: #16a34a; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-section { padding: 60px 0 80px; }
  .hero-mockup { margin-top: 2rem; }
  .mockup-float-1, .mockup-float-2, .mockup-float-3 { display: none; }
  .product-features { grid-template-columns: 1fr; }
  .demo-hero { min-height: auto; padding: 4rem 0; }
  .demo-benefits { grid-template-columns: 1fr; }
  .cta-card { padding: 2.5rem; }
  .section-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 767px) {
  body { padding-top: 66px; }
  .hero-stats { gap: 1.25rem; }
  .segments-grid { grid-template-columns: repeat(2,1fr); }
  .hero-ctas { flex-direction: column; }
  .product-card-header { flex-direction: column; align-items: flex-start; }
  .footer-top { padding: 3rem 0 2rem; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-stat-divider { display: none; }
  .cta-card { padding: 1.75rem; }
  .segments-grid { grid-template-columns: 1fr 1fr; }
}
