/* ================================================================
   BeInove Tecnologia — Design System v1.0
   Fonte: Plus Jakarta Sans (display) + DM Sans (body)
   Tema: SaaS Profissional / Azul Corporativo / Alta Conversão
   ================================================================ */

/* ----------------------------------------------------------------
   1. VARIÁVEIS
   ---------------------------------------------------------------- */
:root {
  --blue:        #1847d4;
  --blue-hover:  #1238a8;
  --blue-light:  #eff4ff;
  --blue-mid:    #c3d8ff;
  --blue-dark:   #0e2070;
  --green:       #059669;
  --green-hover: #047857;
  --green-bg:    #ecfdf5;
  --green-mid:   #a7f3d0;
  --red:         #dc2626;
  --red-bg:      #fef2f2;
  --red-mid:     #fecaca;
  --amber:       #d97706;
  --amber-bg:    #fffbeb;

  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --white: #ffffff;
  --dark:  #080e1e;

  --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body:    'DM Sans', 'Segoe UI', sans-serif;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-2xl: 40px;

  --shadow-xs: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.11), 0 4px 16px rgba(0,0,0,.06);
  --shadow-xl: 0 28px 80px rgba(0,0,0,.14), 0 8px 28px rgba(0,0,0,.07);
  --shadow-blue: 0 8px 28px rgba(24,71,212,.32);
  --shadow-green: 0 8px 28px rgba(5,150,105,.32);

  --transition: .18s ease;
  --transition-slow: .35s ease;

  --section-y: 96px;
  --container: 1180px;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ----------------------------------------------------------------
   3. TIPOGRAFIA
   ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { line-height: 1.75; }

.text-lead {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ----------------------------------------------------------------
   4. LAYOUT
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-y) 0; }
.section-sm { padding: 64px 0; }
.section-xs { padding: 40px 0; }

/* ----------------------------------------------------------------
   5. COMPONENTES DE SEÇÃO
   ---------------------------------------------------------------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-tag.green { background: var(--green-bg); border-color: var(--green-mid); color: var(--green); }
.section-tag.amber { background: var(--amber-bg); border-color: #fde68a; color: var(--amber); }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center p { max-width: 560px; margin: 12px auto 0; }
.section-head p { margin-top: 12px; color: var(--gray-500); font-size: 1.05rem; max-width: 580px; }

/* ----------------------------------------------------------------
   6. BOTÕES
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

/* Tamanhos */
.btn-sm  { font-size: .82rem; padding: 9px 18px;  border-radius: var(--radius-sm); }
.btn-md  { font-size: .9rem;  padding: 12px 24px; border-radius: var(--radius-md); }
.btn-lg  { font-size: 1rem;   padding: 15px 30px; border-radius: var(--radius-md); }
.btn-xl  { font-size: 1.05rem;padding: 18px 38px; border-radius: var(--radius-lg); }

/* Variantes */
.btn-primary {
  background: var(--blue);
  color: var(--white) !important;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(24,71,212,.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue) !important;
  border: 2px solid var(--blue-mid);
}
.btn-secondary:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-2px);
}

.btn-success {
  background: var(--green);
  color: var(--white) !important;
  box-shadow: var(--shadow-green);
}
.btn-success:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(5,150,105,.4);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white) !important;
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-600) !important;
}
.btn-ghost:hover { color: var(--blue) !important; }

.btn-block { width: 100%; }

/* ----------------------------------------------------------------
   7. PROMO BAR
   ---------------------------------------------------------------- */
.promo-bar {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 9px 48px;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 500;
  position: relative;
  z-index: 200;
  letter-spacing: .01em;
}
.promo-bar a {
  color: #bfdbfe;
  font-weight: 700;
  margin-left: 8px;
  text-decoration: underline;
}
.promo-bar a:hover { color: var(--white); }
.promo-bar-close {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.1rem;
  padding: 4px 8px;
  transition: color var(--transition);
}
.promo-bar-close:hover { color: var(--white); }

/* ----------------------------------------------------------------
   8. NAVBAR
   ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 32px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;          /* sem gap — submenu cola no menu */
  left: -16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  min-width: 240px;
  z-index: 50;
  /* padding-top cria área invisível que conecta menu ao submenu */
  padding-top: 16px;
  margin-top: -8px;   /* sobe o submenu para cobrir o gap */
  transition: opacity .15s ease, visibility .15s ease;
}
/* Área invisível que evita o gap entre o item e o submenu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
  gap: 3px;
}
.nav-dropdown-item:hover { background: var(--gray-50); }
.nav-dropdown-item strong { font-family: var(--font-display); font-size: .88rem; color: var(--gray-800); }
.nav-dropdown-item span  { font-size: .78rem; color: var(--gray-400); }
.nav-sep { width: 1px; height: 24px; background: var(--gray-200); margin: 0 4px; }
.nav-cta { margin-left: 8px; }
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--gray-700);
  font-size: 1.4rem;
}

/* ----------------------------------------------------------------
   9. HERO
   ---------------------------------------------------------------- */
.hero {
  background: linear-gradient(165deg, #eef3ff 0%, #f5f8ff 45%, #ffffff 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(24,71,212,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(5,150,105,.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--blue-mid);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2.5s infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.6); opacity: .5; }
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  color: var(--blue);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  border-radius: 3px;
  opacity: .3;
}
.hero-desc { color: var(--gray-500); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: .8rem;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 100px;
  box-shadow: var(--shadow-xs);
}
.chip-icon { color: var(--green); font-size: .85rem; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-screen {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 6px;
  box-shadow: var(--shadow-xl);
}
.hero-screen-inner {
  background: linear-gradient(145deg, #e8eeff 0%, #dce9ff 100%);
  border-radius: 18px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.hero-screen-inner img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.hero-screen-placeholder {
  text-align: center;
  color: var(--blue);
  font-family: var(--font-display);
}
.hero-screen-placeholder .ph-icon { font-size: 3.5rem; margin-bottom: 8px; }
.hero-screen-placeholder p { font-size: .85rem; opacity: .6; }
.hero-badge {
  position: absolute;
  bottom: -20px; right: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hero-badge-val { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: #f59e0b; }
.hero-badge-lbl { font-size: .73rem; color: var(--gray-400); line-height: 1.3; }
.hero-badge-lbl strong { display: block; font-family: var(--font-display); color: var(--gray-700); font-size: .82rem; }

/* ----------------------------------------------------------------
   10. BARRA DE NÚMEROS
   ---------------------------------------------------------------- */
.numbers-bar {
  background: var(--dark);
  padding: 44px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.num-item {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.num-item:last-child { border-right: none; }
.num-val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
  margin-bottom: 6px;
}
.num-lbl { font-size: .82rem; color: rgba(255,255,255,.45); letter-spacing: .02em; }

/* ----------------------------------------------------------------
   11. CARDS GENÉRICOS
   ---------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-mid);
}
.card.featured {
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: 0 12px 48px rgba(24,71,212,.12);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.card-icon.blue   { background: var(--blue-light); }
.card-icon.green  { background: var(--green-bg); }
.card-icon.amber  { background: var(--amber-bg); }

/* ----------------------------------------------------------------
   12. PROBLEMA / SOLUÇÃO
   ---------------------------------------------------------------- */
.ps-section { background: var(--gray-50); }
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ps-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1.5px solid transparent;
}
.ps-card.problem {
  background: var(--red-bg);
  border-color: var(--red-mid);
}
.ps-card.solution {
  background: var(--green-bg);
  border-color: var(--green-mid);
}
.ps-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.ps-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.problem .ps-icon  { background: #fee2e2; }
.solution .ps-icon { background: #d1fae5; }
.ps-head h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
}
.problem  .ps-head h4 { color: #b91c1c; }
.solution .ps-head h4 { color: #065f46; }
.ps-list { }
.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: .93rem;
  line-height: 1.5;
  color: var(--gray-700);
}
.ps-item:last-child { border-bottom: none; }
.ps-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.problem .ps-dot  { background: var(--red); }
.solution .ps-dot { background: var(--green); }

/* ----------------------------------------------------------------
   13. PRODUTOS
   ---------------------------------------------------------------- */
.products-section { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 28px;
  align-items: start;
}
.product-card-main {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  box-shadow: 0 16px 64px rgba(24,71,212,.13);
  transition: transform var(--transition);
}
.product-card-main:hover { transform: translateY(-4px); }
.product-badge-top {
  position: absolute;
  top: -15px; left: 32px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  padding: 5px 16px;
  border-radius: 100px;
  letter-spacing: .04em;
}
.product-preview {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid var(--blue-mid);
}
.product-preview img { width: 100%; height: 100%; object-fit: cover; }
.product-preview-ph { font-size: 3rem; }
.product-card-main h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.product-card-main > p {
  color: var(--gray-500);
  font-size: .93rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.feature-list { margin-bottom: 28px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
  color: var(--gray-700);
}
.feature-item:last-child { border-bottom: none; }
.feature-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.price-hint {
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.price-hint-val { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--blue); }
.price-hint-sub { font-size: .78rem; color: var(--gray-400); }
.product-card-side {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card-side:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card-side .product-preview { background: var(--green-bg); border-color: var(--green-mid); }
.product-card-side h3 { font-size: 1.3rem; margin-bottom: 10px; }
.product-card-side > p { color: var(--gray-500); font-size: .9rem; margin-bottom: 20px; line-height: 1.7; }
.price-big {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.price-big-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 4px;
}
.price-big-val span { font-size: .95rem; font-weight: 500; color: var(--gray-400); }
.price-big small { font-size: .78rem; color: var(--gray-400); }

/* ----------------------------------------------------------------
   14. FUNCIONALIDADES
   ---------------------------------------------------------------- */
.features-section { background: var(--gray-50); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
}
.feature-card-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card h4 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p  { font-size: .88rem; color: var(--gray-500); line-height: 1.65; }

/* ----------------------------------------------------------------
   15. DEPOIMENTOS
   ---------------------------------------------------------------- */
.testimonials-section {
  background: linear-gradient(145deg, #0e2070 0%, var(--blue) 100%);
  padding: var(--section-y) 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), background var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.16);
}
.testi-card.star {
  background: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}
.testi-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text {
  font-size: .93rem;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  font-style: italic;
  margin-bottom: 24px;
}
.testi-card.star .testi-text { color: var(--gray-600); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-card.star .testi-avatar { background: var(--blue-light); color: var(--blue); }
.testi-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: .88rem;
  color: var(--white);
  font-weight: 700;
}
.testi-card.star .testi-info strong { color: var(--gray-800); }
.testi-info small { font-size: .76rem; color: rgba(255,255,255,.5); }
.testi-card.star .testi-info small { color: var(--gray-400); }

/* ----------------------------------------------------------------
   16. PASSOS
   ---------------------------------------------------------------- */
.steps-section { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px; left: calc(12.5% + 22px); right: calc(12.5% + 22px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg, var(--blue-mid) 0, var(--blue-mid) 10px,
    transparent 10px, transparent 20px
  );
}
.step-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 52px; height: 52px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-blue);
  position: relative; z-index: 1;
}
.step-card h5 { font-size: .98rem; margin-bottom: 8px; }
.step-card p  { font-size: .83rem; color: var(--gray-500); line-height: 1.65; }

/* ----------------------------------------------------------------
   17. PLANOS
   ---------------------------------------------------------------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plan-card.popular {
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: 0 16px 64px rgba(24,71,212,.15);
}
.plan-popular-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.plan-desc { font-size: .85rem; color: var(--gray-400); margin-bottom: 28px; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.plan-price-val { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--gray-900); line-height: 1; }
.plan-price-per { font-size: .93rem; color: var(--gray-400); }
.plan-divider { border: none; border-top: 1px solid var(--gray-200); margin: 0 0 24px; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: .9rem;
  color: var(--gray-700);
}
.plan-check { color: var(--green); font-size: .9rem; font-weight: 700; flex-shrink: 0; }
.plan-x     { color: var(--gray-300); flex-shrink: 0; }
.plan-cta { margin-top: 28px; }
.plan-guarantee {
  background: var(--green-bg);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.plan-guarantee-icon { font-size: 2rem; flex-shrink: 0; }
.plan-guarantee h5 { font-family: var(--font-display); color: #065f46; margin-bottom: 4px; }
.plan-guarantee p  { font-size: .88rem; color: #047857; margin: 0; }

/* ----------------------------------------------------------------
   18. FORMULÁRIO DEMO
   ---------------------------------------------------------------- */
.demo-section {
  background: linear-gradient(145deg, #0a1d6e 0%, #1847d4 100%);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.demo-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  pointer-events: none;
}
.demo-box {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 56px;
  box-shadow: 0 40px 100px rgba(0,0,0,.22);
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
}
.demo-label {
  display: inline-block;
  background: var(--green-bg);
  border: 1px solid var(--green-mid);
  color: var(--green);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.demo-left h2 { font-size: 2rem; margin-bottom: 12px; line-height: 1.2; }
.demo-left h2 em { font-style: normal; color: var(--blue); }
.demo-left p { color: var(--gray-500); font-size: .93rem; margin-bottom: 24px; }
.demo-perks { margin-bottom: 24px; }
.demo-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: .9rem;
  color: var(--gray-700);
  font-weight: 500;
}
.demo-perk-icon { color: var(--green); font-size: 1rem; }
.demo-security {
  font-size: .78rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Formulário */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-label span { color: var(--red); }
.form-control {
  display: block;
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-800);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,71,212,.1);
}
.form-control::placeholder { color: var(--gray-300); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note {
  text-align: center;
  font-size: .75rem;
  color: var(--gray-400);
  margin-top: 10px;
}
.form-note a { color: var(--blue); text-decoration: underline; }
.form-error {
  background: var(--red-bg);
  border: 1px solid var(--red-mid);
  color: var(--red);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .85rem;
  margin-bottom: 16px;
}
.form-success {
  background: var(--green-bg);
  border: 1px solid var(--green-mid);
  color: var(--green);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .85rem;
  margin-bottom: 16px;
}

/* ----------------------------------------------------------------
   19. FAQ
   ---------------------------------------------------------------- */
.faq-section { background: var(--gray-50); }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--blue); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-800);
  cursor: pointer;
  transition: background var(--transition);
}
.faq-btn:hover { background: var(--gray-50); }
.faq-item.open .faq-btn { background: var(--blue-light); color: var(--blue); }
.faq-arrow {
  width: 26px; height: 26px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  font-size: .75rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--blue); color: var(--white); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-body.open { max-height: 400px; }
.faq-answer { padding: 0 24px 22px; font-size: .9rem; color: var(--gray-500); line-height: 1.75; }

/* ----------------------------------------------------------------
   20. CTA FINAL
   ---------------------------------------------------------------- */
.cta-final {
  background: var(--dark);
  padding: var(--section-y) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(24,71,212,.2) 0%, transparent 70%);
}
.cta-final-inner { position: relative; z-index: 1; }
.cta-tag {
  display: inline-block;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.cta-final h2 { color: var(--white); margin-bottom: 14px; }
.cta-final p  { color: rgba(255,255,255,.55); font-size: 1.05rem; max-width: 480px; margin: 0 auto 40px; }
.cta-buttons  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   21. TRUST STRIP
   ---------------------------------------------------------------- */
.trust-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-val { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.trust-lbl { font-size: .8rem; color: var(--gray-500); }

/* ----------------------------------------------------------------
   22. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: #060b18;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .footer-logo { height: 40px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 260px;
}
.footer-badges { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.footer-badge  { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-socials { display: flex; gap: 8px; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
  font-size: .9rem;
}
.social-icon:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.social-icon.wa:hover { background: #25d366; }
.footer-col h6 {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .84rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.22);
}

/* ----------------------------------------------------------------
   23. WHATSAPP FLUTUANTE
   ---------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  border-radius: 100px;
  padding: 13px 20px 13px 16px;
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
  transition: all var(--transition);
  animation: wa-enter .5s ease .8s both;
  text-decoration: none;
}
.wa-float:hover { background: #1ebe5c; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,.6); }
.wa-float svg { flex-shrink: 0; }
.wa-float-label { font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: var(--white); }
@keyframes wa-enter {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
   24. UTILITÁRIOS
   ---------------------------------------------------------------- */
.d-flex     { display: flex; }
.flex-wrap  { flex-wrap: wrap; }
.gap-12     { gap: 12px; }
.gap-16     { gap: 16px; }
.gap-24     { gap: 24px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.text-center  { text-align: center; }
.text-blue    { color: var(--blue); }
.text-green   { color: var(--green); }
.text-muted   { color: var(--gray-400); }
.fw-bold      { font-weight: 700; }
.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 32px 0;
}

/* ----------------------------------------------------------------
   25. PÁGINAS INTERNAS
   ---------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(160deg, #eef3ff 0%, #f8faff 60%, #ffffff 100%);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--gray-200);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { color: var(--gray-500); font-size: 1.05rem; max-width: 600px; }

.content-section { padding: 64px 0; }
.prose h2 { margin: 40px 0 14px; }
.prose h3 { margin: 28px 0 10px; font-size: 1.2rem; }
.prose p  { color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; }
.prose ul { margin-bottom: 16px; padding-left: 20px; }
.prose li { color: var(--gray-600); margin-bottom: 6px; line-height: 1.7; list-style: disc; }

/* ----------------------------------------------------------------
   26. BLOG
   ---------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-cover {
  background: var(--blue-light);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card p  { font-size: .85rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { font-size: .78rem; color: var(--gray-400); }

/* ----------------------------------------------------------------
   27. RESPONSIVIDADE
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-y: 72px; }
  .hero-grid     { gap: 48px; }
  .products-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid    { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testi-grid    { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .footer-grid   { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-brand  { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  :root { --section-y: 56px; }
  .hero { padding: 72px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1   { font-size: 2rem; }
  .ps-grid   { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .demo-box { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu, .nav-sep, .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
  .wa-float-label { display: none; }
  .wa-float { width: 56px; height: 56px; border-radius: 50%; padding: 0; justify-content: center; bottom: 20px; right: 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ----------------------------------------------------------------
   28. MOBILE MENU
   ---------------------------------------------------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  padding: 80px 24px 40px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gray-700);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

/* ----------------------------------------------------------------
   29. ANIMAÇÕES
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .animate-delay-1 { transition-delay: .1s; }
  .animate-delay-2 { transition-delay: .2s; }
  .animate-delay-3 { transition-delay: .3s; }
}

/* ================================================================
   ADIÇÃO v1.1 — Página Funcionalidades + Identidades dos Produtos
   ================================================================ */

/* ----------------------------------------------------------------
   CORES POR PRODUTO (tokens individuais)
   ---------------------------------------------------------------- */
:root {
  /* Pró Gestor ERP — Azul institucional (já existe) */
  --erp-color:       #1847d4;
  --erp-light:       #eff4ff;
  --erp-mid:         #c3d8ff;
  --erp-shadow:      0 8px 28px rgba(24,71,212,.28);

  /* NF-e Pró — Verde esmeralda fiscal */
  --nfe-color:       #059669;
  --nfe-hover:       #047857;
  --nfe-light:       #ecfdf5;
  --nfe-mid:         #a7f3d0;
  --nfe-shadow:      0 8px 28px rgba(5,150,105,.28);

  /* Oficina — Laranja mecânico / industrial */
  --oficina-color:   #ea580c;
  --oficina-hover:   #c2410c;
  --oficina-light:   #fff7ed;
  --oficina-mid:     #fed7aa;
  --oficina-shadow:  0 8px 28px rgba(234,88,12,.28);

  /* Giga Bar — Roxo vibrante / noturno */
  --bar-color:       #7c3aed;
  --bar-hover:       #6d28d9;
  --bar-light:       #f5f3ff;
  --bar-mid:         #ddd6fe;
  --bar-shadow:      0 8px 28px rgba(124,58,237,.28);
}

/* ----------------------------------------------------------------
   HERO DA PÁGINA FUNCIONALIDADES
   ---------------------------------------------------------------- */
.func-hero {
  background: var(--dark);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.func-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 50%,
    rgba(24,71,212,.22) 0%, transparent 65%);
  pointer-events: none;
}
.func-hero-inner { position: relative; z-index: 1; }
.func-hero h1 { color: var(--white); margin-bottom: 18px; }
.func-hero p  {
  color: rgba(255,255,255,.6);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.func-hero-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.func-chip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.75);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ----------------------------------------------------------------
   GRADE DE PRODUTOS (portfólio)
   ---------------------------------------------------------------- */
.products-portfolio {
  background: var(--gray-50);
  padding: var(--section-y) 0;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Card de produto individual */
.portfolio-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.portfolio-card.available:hover { border-color: var(--card-color, var(--blue)); }

/* Banner de topo do card */
.pc-banner {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.pc-banner-icon {
  font-size: 4.5rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.2));
  transition: transform var(--transition-slow);
}
.portfolio-card:hover .pc-banner-icon { transform: scale(1.1) rotate(-2deg); }
.pc-banner-pattern {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.5) 0, rgba(255,255,255,.5) 1px,
    transparent 1px, transparent 12px
  );
}

/* Cores de banner por produto */
.pc-banner.erp     { background: linear-gradient(135deg, #1238a8, #1847d4, #3b6ef0); }
.pc-banner.nfe     { background: linear-gradient(135deg, #047857, #059669, #10b981); }
.pc-banner.oficina { background: linear-gradient(135deg, #c2410c, #ea580c, #f97316); }
.pc-banner.bar     { background: linear-gradient(135deg, #5b21b6, #7c3aed, #8b5cf6); }

/* Conteúdo do card */
.pc-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.pc-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}
.pc-segment {
  font-size: .78rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 14px;
}
.pc-desc {
  font-size: .93rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

/* Badge de status */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.status-badge.available {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-mid);
}
.status-badge.soon {
  background: var(--amber-bg);
  border: 1px solid #fde68a;
  color: var(--amber);
}
.status-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2.5s infinite;
}

/* Mini features do card */
.pc-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 28px;
}
.pc-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  color: var(--gray-700);
}
.pc-feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Preço no card */
.pc-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.pc-price-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.pc-price-per { font-size: .88rem; color: var(--gray-400); }
.pc-price-from { font-size: .78rem; color: var(--gray-400); margin-bottom: 4px; }
.pc-price-note { font-size: .75rem; color: var(--gray-400); }

/* Botões do card */
.pc-actions {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

/* Botão colorido por produto */
.btn-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  width: 100%;
}
.btn-erp     { background: var(--erp-color);    color: var(--white) !important; box-shadow: var(--erp-shadow);    }
.btn-nfe     { background: var(--nfe-color);    color: var(--white) !important; box-shadow: var(--nfe-shadow);    }
.btn-oficina { background: var(--oficina-color); color: var(--white) !important; box-shadow: var(--oficina-shadow); }
.btn-bar     { background: var(--bar-color);    color: var(--white) !important; box-shadow: var(--bar-shadow);    }
.btn-erp:hover     { background: var(--erp-hover,#1238a8);   transform: translateY(-2px); }
.btn-nfe:hover     { background: var(--nfe-hover);    transform: translateY(-2px); }
.btn-oficina:hover { background: var(--oficina-hover); transform: translateY(-2px); }
.btn-bar:hover     { background: var(--bar-hover);    transform: translateY(-2px); }

.btn-outline-product {
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  width: 100%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-erp     { border: 2px solid var(--erp-mid);    color: var(--erp-color) !important;    }
.btn-outline-nfe     { border: 2px solid var(--nfe-mid);    color: var(--nfe-color) !important;    }
.btn-outline-oficina { border: 2px solid var(--oficina-mid); color: var(--oficina-color) !important; }
.btn-outline-bar     { border: 2px solid var(--bar-mid);    color: var(--bar-color) !important;    }
.btn-outline-erp:hover     { background: var(--erp-light);    border-color: var(--erp-color);    }
.btn-outline-nfe:hover     { background: var(--nfe-light);    border-color: var(--nfe-color);    }
.btn-outline-oficina:hover { background: var(--oficina-light); border-color: var(--oficina-color); }
.btn-outline-bar:hover     { background: var(--bar-light);    border-color: var(--bar-color);    }

/* Card "em breve" com overlay */
.portfolio-card.coming-soon .pc-banner { filter: saturate(.7); }
.pc-soon-overlay {
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-lg);
  padding: 10px 22px;
  position: absolute;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  color: rgba(255,255,255,.9);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   SEÇÃO DE COMPARAÇÃO / TABELA
   ---------------------------------------------------------------- */
.compare-section { background: var(--white); }
.compare-table-wrap {
  overflow-x: auto;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.compare-table th {
  padding: 18px 20px;
  text-align: left;
  background: var(--gray-50);
  border-bottom: 1.5px solid var(--gray-200);
}
.compare-table th:first-child {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
}
.compare-table th.th-product {
  text-align: center;
  min-width: 140px;
}
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
  color: var(--gray-700);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.td-feature { font-weight: 500; color: var(--gray-700); }
.compare-table td.td-check   { text-align: center; font-size: 1.05rem; }
.check-yes    { color: var(--green); font-size: 1.1rem; }
.check-no     { color: var(--gray-300); }
.check-soon   { color: var(--amber); font-size: .75rem; font-weight: 700; }
.th-highlight { background: var(--blue-light) !important; }
.td-highlight { background: rgba(24,71,212,.02); }

/* ----------------------------------------------------------------
   PÁGINAS DE PRODUTO INDIVIDUAL (hero colorido)
   ---------------------------------------------------------------- */
.product-page-hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.product-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.5) 0, rgba(255,255,255,.5) 1px,
    transparent 1px, transparent 16px
  );
}
.product-page-hero .hero-grid { position: relative; z-index: 1; }
.product-page-hero h1 { color: var(--white); }
.product-page-hero .hero-desc  { color: rgba(255,255,255,.75); }
.product-page-hero .section-tag { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.9); }
.product-page-hero .hero-eyebrow { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.9); }

/* Variantes de cor do hero por produto */
.hero-erp     { background: linear-gradient(150deg, #0e2070 0%, #1847d4 100%); }
.hero-nfe     { background: linear-gradient(150deg, #064e3b 0%, #059669 100%); }
.hero-oficina { background: linear-gradient(150deg, #7c2d12 0%, #ea580c 100%); }
.hero-bar     { background: linear-gradient(150deg, #3b0764 0%, #7c3aed 100%); }

/* Preço na página de produto */
.price-showcase {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  backdrop-filter: blur(8px);
  display: inline-block;
  text-align: center;
}
.price-showcase .ps-from { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.price-showcase .ps-val  { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: white; line-height: 1; }
.price-showcase .ps-per  { font-size: .95rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.price-showcase .ps-note { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 6px; }

/* Feature grid colorido por produto */
.colored-features { background: var(--gray-50); }
.feat-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card-colored {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feat-card-colored:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feat-icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* Seção de segmentos atendidos */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.segment-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.segment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.segment-icon { font-size: 2rem; margin-bottom: 8px; }
.segment-name { font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: var(--gray-800); }

/* "Em breve" newsletter box */
.soon-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.soon-box h2 { margin-bottom: 12px; }
.soon-box p  { color: var(--gray-500); margin-bottom: 28px; }
.soon-form   { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.soon-form input { flex: 1; }
.soon-progress {
  height: 8px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.soon-progress-bar {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--color-a), var(--color-b));
  transition: width 1s ease;
}

/* ----------------------------------------------------------------
   RESPONSIVIDADE ADICIONAL
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .portfolio-grid  { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .feat-grid-3     { grid-template-columns: 1fr 1fr; }
  .segments-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .func-hero       { padding: 72px 0 56px; }
  .soon-box        { padding: 36px 24px; }
  .soon-form       { flex-direction: column; }
  .feat-grid-3     { grid-template-columns: 1fr; }
  .segments-grid   { grid-template-columns: repeat(2, 1fr); }
  .pc-body         { padding: 24px; }
}
