/* ════════════════════════════════════════════════════════════
   NetSpaces Landing Page — Styles
   ════════════════════════════════════════════════════════════ */

:root {
  --red:        #e11d48;
  --red-dark:   #be123c;
  --red-light:  #fff1f2;
  --dark:       #0f172a;
  --dark-2:     #1e293b;
  --dark-3:     #334155;
  --gray:       #64748b;
  --gray-light: #94a3b8;
  --border:     #e2e8f0;
  --light:      #f8fafc;
  --white:      #ffffff;
  --store:      #16a34a;
  --site:       #7c3aed;
  --crm:        #2563eb;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15), 0 4px 16px rgba(0,0,0,.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ──────────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,23,42,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .3s;
}

.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.3); }

.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  max-width: 200px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}

.nav a:hover { color: #fff; background: rgba(255,255,255,.08); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s, transform .1s;
  flex-shrink: 0;
}

.btn-cta:hover { background: var(--red-dark); }

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #e11d48 0%, transparent 70%);
  top: -100px; right: -100px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  bottom: -50px; left: 10%;
  opacity: .2;
}

/* Hero SEM visual ao lado (os mockups saíram em 19/jul/2026): só o texto,
   centralizado na página. */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 96px 24px 88px;
  position: relative;
  z-index: 1;
}

.hero-text { max-width: 780px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(225,29,72,.15);
  border: 1px solid rgba(225,29,72,.3);
  color: #fda4af;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: background .2s, transform .1s;
}

.btn-primary-hero:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  transition: background .2s;
}

.btn-ghost-hero:hover { background: rgba(255,255,255,.14); color: #fff; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hero-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.hero-stat span { font-size: 13px; color: rgba(255,255,255,.5); }

.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

/* Hero Visual — CSS Mockups */

.hero-visual {
  position: relative;
  height: 420px;
}

.mockup {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mockup-main {
  width: 100%;
  max-width: 460px;
  top: 0; right: 0;
  background: #fff;
  border: 1px solid var(--border);
  z-index: 2;
}

.mockup-float-store {
  width: 200px;
  bottom: 0; left: -20px;
  background: #fff;
  border: 1px solid var(--border);
  z-index: 3;
}

.mockup-float-site {
  width: 180px;
  bottom: 50px; right: -10px;
  background: #fff;
  border: 1px solid var(--border);
  z-index: 3;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
}

.mockup-dots { display: flex; gap: 4px; }
.mockup-dots i {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}
.mockup-dots i:nth-child(1) { background: #fc6058; }
.mockup-dots i:nth-child(2) { background: #fec02f; }
.mockup-dots i:nth-child(3) { background: #2aca44; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 9px;
  color: #94a3b8;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
}

.mockup-body { background: #f8fafc; }

/* Mockup interior — ERP dashboard */
.m-sidebar {
  width: 60px;
  background: var(--dark);
  height: 200px;
  float: left;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.m-logo-area {
  height: 24px;
  background: var(--red);
  border-radius: 4px;
  margin-bottom: 8px;
  opacity: .8;
}
.m-menu { display: flex; flex-direction: column; gap: 3px; }
.m-item {
  height: 20px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
}
.m-item.active { background: rgba(225,29,72,.6); }

.m-main { overflow: hidden; padding: 8px; }
.m-topbar { height: 18px; background: #fff; border-radius: 4px; margin-bottom: 8px; border: 1px solid var(--border); }
.m-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-bottom: 6px; }
.m-kpi {
  height: 32px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--kc, #e11d48) 12%, white);
  border-left: 3px solid var(--kc, #e11d48);
}
.m-chart {
  height: 60px;
  background: linear-gradient(135deg, #e8f4fd 0%, #dbeafe 100%);
  border-radius: 4px;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
}
.m-chart::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(37,99,235,.2), transparent);
  clip-path: polygon(0 100%, 10% 60%, 20% 80%, 35% 40%, 50% 60%, 65% 20%, 80% 45%, 95% 10%, 100% 30%, 100% 100%);
}
.m-rows { display: flex; flex-direction: column; gap: 3px; }
.m-row { height: 14px; background: #fff; border-radius: 3px; border-bottom: 1px solid var(--border); }

/* Float store mockup */
.mf-header {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  padding: 5px 8px;
  border-bottom: 1px solid var(--border);
}
.mf-dot { width: 7px; height: 7px; border-radius: 50%; }
.mf-dot.r { background: #fc6058; }
.mf-dot.g { background: #2aca44; }
.mf-url { flex: 1; height: 10px; background: #fff; border-radius: 3px; border: 1px solid var(--border); }
.mf-url.short { max-width: 60px; }
.mf-body { padding: 6px; }
.mf-store-banner { height: 30px; background: linear-gradient(90deg, #16a34a20, #16a34a40); border-radius: 4px; margin-bottom: 5px; }
.mf-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.mf-products div { height: 26px; background: #f1f5f9; border-radius: 3px; }

/* Float site mockup */
.mf-site-nav { height: 14px; background: var(--dark); border-radius: 2px; margin-bottom: 5px; }
.mf-site-hero { height: 35px; background: linear-gradient(135deg, #f8fafc, #e2e8f0); border-radius: 4px; margin-bottom: 5px; }
.mf-site-lines { display: flex; flex-direction: column; gap: 3px; }
.mf-site-lines div { height: 7px; background: #e2e8f0; border-radius: 3px; }
.mf-site-lines div.short { width: 60%; }

/* ── PRODUCTS DIVIDER ────────────────────────────────────────── */

.products-divider {
  background: var(--dark-2);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.products-divider .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.products-divider p {
  color: rgba(255,255,255,.5);
  font-size: 14px;
}

.product-pills { display: flex; gap: 8px; flex-wrap: wrap; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}
.pill:hover { opacity: .8; }
.pill-erp   { background: rgba(225,29,72,.15); color: #fda4af; border: 1px solid rgba(225,29,72,.25); }
.pill-store { background: rgba(22,163,74,.15);  color: #86efac; border: 1px solid rgba(22,163,74,.25); }
.pill-site  { background: rgba(124,58,237,.15); color: #c4b5fd; border: 1px solid rgba(124,58,237,.25); }
.pill-crm   { background: rgba(37,99,235,.15);  color: #93c5fd; border: 1px solid rgba(37,99,235,.25); }

/* ── PRODUCT SECTIONS ────────────────────────────────────────── */

.product-section {
  padding: 100px 0;
  background: var(--white);
}

.product-section.alt { background: var(--light); }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.product-grid.reverse { direction: rtl; }
.product-grid.reverse > * { direction: ltr; }

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.badge-erp   { background: var(--red-light);  color: var(--red); }
.badge-store { background: #f0fdf4; color: var(--store); }
.badge-site  { background: #f5f3ff; color: var(--site); }
.badge-crm   { background: #eff6ff; color: var(--crm); }

.product-info h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  color: var(--dark);
}

.product-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--dark-2);
}

.feature-list li i {
  color: var(--red);
  margin-top: 2px;
  font-size: 13px;
  flex-shrink: 0;
}

/* Duas listas na seção do ERP: o que vem NO PACOTE e o que é expansão. O
   título separa as duas — sem ele, a segunda lista pareceria continuação da
   primeira e o cliente leria expansão paga como incluída. */
.feature-title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dark-2);
  opacity: .75;
}

.feature-list + .feature-title { margin-top: -18px; }

/* Expansão usa "+" em vez de "✓": o sinal diz que se acrescenta, não que
   já está incluso. */
.feature-list-addons li i { opacity: .65; }

.badge-store ~ * .feature-list li i { color: var(--store); }
.badge-site  ~ * .feature-list li i { color: var(--site); }
.badge-crm   ~ * .feature-list li i { color: var(--crm); }

/* Preço inline na seção do produto (preenchido pelo main.js; some com o
   cadastro online desligado) */
.product-price {
  margin: -8px 0 18px;
  font-size: 15px;
  color: var(--gray);
}
.product-price strong { font-size: 24px; font-weight: 800; color: var(--dark); letter-spacing: -.02em; }
.product-price .price-plus {
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px 8px;
  margin-left: 4px;
}

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .1s;
}
.btn-product:hover { opacity: .85; transform: translateY(-1px); }

.btn-erp   { background: var(--red);   color: #fff; }
.btn-store { background: var(--store); color: #fff; }
.btn-site  { background: var(--site);  color: #fff; }
.btn-crm   { background: var(--crm);   color: #fff; }

/* Product Screen Mockups */

.screen {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.screen-dots { display: flex; gap: 5px; }
.screen-dots i {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}
.screen-dots i:nth-child(1) { background: #fc6058; }
.screen-dots i:nth-child(2) { background: #fec02f; }
.screen-dots i:nth-child(3) { background: #2aca44; }

.screen-url-text {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
}

.screen-body { background: #f8fafc; }

/* ERP Screen Interior */
.erp-layout { display: flex; height: 280px; }

.erp-aside {
  width: 70px;
  background: var(--dark);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.erp-logo-block {
  height: 28px;
  background: var(--red);
  border-radius: 6px;
  margin-bottom: 10px;
  opacity: .9;
}

.erp-nav { display: flex; flex-direction: column; gap: 3px; }

.erp-nav-item {
  height: 22px;
  border-radius: 5px;
  background: rgba(255,255,255,.08);
}
.erp-nav-item.erp-active {
  background: rgba(225,29,72,.5);
  box-shadow: inset 3px 0 0 var(--red);
}

.erp-main { flex: 1; padding: 10px; overflow: hidden; }

.erp-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.erp-title-block { width: 100px; height: 14px; background: #e2e8f0; border-radius: 3px; }
.erp-action-block { width: 60px; height: 22px; background: var(--red); border-radius: 5px; opacity: .7; }

.erp-kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin-bottom: 8px; }
.erp-kpi-card {
  height: 42px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--c, var(--red)) 10%, white);
  border-top: 3px solid var(--c, var(--red));
  position: relative;
  overflow: hidden;
}
.erp-kpi-card::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 8px; right: 8px;
  height: 6px;
  background: color-mix(in srgb, var(--c, var(--red)) 30%, white);
  border-radius: 3px;
}

.erp-chart-block {
  height: 70px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.erp-chart-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(37,99,235,.12), transparent),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(226,232,240,.5) 30px, rgba(226,232,240,.5) 31px);
}
.erp-chart-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(to top, rgba(37,99,235,.15), transparent);
  clip-path: polygon(0 100%, 8% 55%, 18% 75%, 32% 35%, 48% 55%, 60% 20%, 74% 45%, 88% 15%, 100% 35%, 100% 100%);
}

.erp-table-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.erp-t-head {
  height: 18px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}
.erp-t-row {
  height: 16px;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
}
.erp-t-row:last-child { border-bottom: none; }

/* Store Screen Interior */
.store-layout { padding: 8px; background: #fff; }

.store-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.store-logo-area {
  width: 50px; height: 16px;
  background: var(--dark);
  border-radius: 3px;
  opacity: .8;
}
.store-nav-links { display: flex; gap: 6px; flex: 1; }
.store-nav-links span { width: 30px; height: 10px; background: #e2e8f0; border-radius: 2px; }
.store-cart-icon { color: var(--store); font-size: 14px; }

.store-hero-band {
  height: 60px;
  border-radius: 8px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.store-hero-band::after {
  content: '';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(22,163,74,.2);
  border-radius: 50%;
}

.store-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.store-product-card { background: #f8fafc; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.store-prod-img {
  height: 50px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}
.store-prod-img.c1 { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.store-prod-img.c2 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.store-prod-img.c3 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.store-prod-img.c4 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.store-prod-name { height: 6px; background: #e2e8f0; border-radius: 2px; margin: 5px; }
.store-prod-price { height: 8px; background: var(--store); border-radius: 2px; margin: 0 5px 5px; opacity: .6; width: 40%; }

/* Site Screen Interior */
.site-layout { background: #fff; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--dark);
}
.site-nav-logo { width: 50px; height: 14px; background: var(--red); border-radius: 3px; opacity: .9; }
.site-nav-links { display: flex; gap: 5px; flex: 1; }
.site-nav-links span { width: 25px; height: 8px; background: rgba(255,255,255,.2); border-radius: 2px; }
.site-nav-cta { width: 40px; height: 18px; background: var(--red); border-radius: 4px; opacity: .8; }

.site-hero {
  display: flex;
  gap: 10px;
  padding: 14px 12px;
  background: linear-gradient(135deg, #f8fafc 60%, #f0f9ff);
  align-items: center;
}
.site-hero-text { flex: 1; }
.site-h1 { height: 10px; background: var(--dark); border-radius: 2px; margin-bottom: 5px; }
.site-h1.s2 { width: 70%; height: 10px; }
.site-p { height: 6px; background: #e2e8f0; border-radius: 2px; margin-bottom: 4px; }
.site-p.s2 { width: 60%; }
.site-btns { display: flex; gap: 5px; margin-top: 8px; }
.site-btn-p { width: 50px; height: 16px; background: var(--red); border-radius: 3px; opacity: .8; }
.site-btn-g { width: 40px; height: 16px; background: transparent; border: 1px solid #cbd5e1; border-radius: 3px; }
.site-hero-img {
  width: 60px; height: 60px;
  border-radius: 8px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  flex-shrink: 0;
}

.site-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.site-feat { height: 36px; background: #f8fafc; border-radius: 6px; border: 1px solid var(--border); }

/* ── WHY SECTION ─────────────────────────────────────────────── */

.why-section {
  padding: 100px 0;
  background: var(--light);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: 16px;
}
.section-label.light { color: rgba(225,29,72,.8); }

.why-section h2,
.contact-section h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--dark);
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow .3s, transform .2s;
}

.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.why-icon {
  width: 48px; height: 48px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.why-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */

.how-section {
  padding: 100px 0;
  background: var(--dark);
}

.light-h {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 60px;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step { flex: 1; }

.step-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .85;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step p { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.65; }

.step-arrow {
  color: rgba(255,255,255,.2);
  font-size: 20px;
  padding-top: 56px;
  flex-shrink: 0;
}

/* ── CONTACT ─────────────────────────────────────────────────── */

.contact-section { padding: 100px 0; background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 32px; }

.contact-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-benefits li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--dark-2); }
.contact-benefits li i { color: var(--red); font-size: 16px; flex-shrink: 0; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.cf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cf-row .cf-field { margin-bottom: 0; }

.cf-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-2);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--dark);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,29,72,.1);
}

.cf-field textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%;
  height: 48px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
  margin-top: 4px;
}

.btn-submit:hover:not(:disabled) { background: var(--red-dark); }
.btn-submit:disabled { opacity: .65; cursor: default; }

.form-feedback {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 14px;
}
.form-feedback.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.form-feedback.success i { color: #16a34a; font-size: 20px; margin-top: 1px; flex-shrink: 0; }
.form-feedback.success strong { display: block; margin-bottom: 2px; }
.form-feedback.success p { margin: 0; font-size: 13px; color: #166534; opacity: .8; }
.form-feedback.error { background: #fff1f2; border: 1px solid #fecdd3; color: #be123c; }
.form-feedback.error i { color: var(--red); font-size: 18px; flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────────────── */

.footer { background: var(--dark); padding: 64px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  color: rgba(255,255,255,.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
}
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,.3); }

/* ── CRM SCREEN MOCKUP ───────────────────────────────────────── */

.crm-layout { background: #fff; padding: 12px; }
.crm-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.crm-title-block { width: 90px; height: 12px; background: #e2e8f0; border-radius: 3px; }
.crm-action-block { width: 60px; height: 16px; background: var(--crm); border-radius: 4px; opacity: .85; }
.crm-kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.crm-col { background: var(--light); border-radius: 6px; padding: 6px; display: flex; flex-direction: column; gap: 6px; }
.crm-col-head { height: 8px; border-radius: 2px; background: var(--cc, #94a3b8); opacity: .7; width: 60%; }
.crm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 26px;
  box-shadow: 0 1px 2px rgba(15,23,42,.05);
}

/* ── PRICING ─────────────────────────────────────────────────── */

/* Fundo BRANCO de propósito (padrão cor sim/cor não da página): a seção fica
   entre CRM (--light) e Por que a NetSpaces (--light) — era a 3ª cinza seguida. */
.pricing-section { padding: 88px 0; background: var(--white); text-align: center; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Sombra leve para o card branco não sumir no fundo branco da seção. */
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pc-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: #fff;
  background: var(--gray);
}
.pc-erp .pc-icon   { background: var(--red); }
.pc-store .pc-icon { background: var(--store); }
.pc-site .pc-icon  { background: var(--site); }
.pc-crm .pc-icon   { background: var(--crm); }
.price-card h3 { font-size: 18px; font-weight: 800; color: var(--dark); }
.pc-note {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px 8px;
  vertical-align: 2px;
  margin-left: 4px;
}
.pc-desc { font-size: 13.5px; color: var(--gray); line-height: 1.5; flex: 1; }

/* Valor em destaque: número grande na cor do produto, sem centavos. */
.pc-price { display: flex; align-items: baseline; gap: 5px; margin-top: 2px; }
.pc-price .pc-cur { font-size: 17px; font-weight: 700; color: var(--dark); }
.pc-price strong { font-size: 46px; font-weight: 800; color: var(--dark); letter-spacing: -.03em; line-height: 1; }
.pc-erp .pc-price strong   { color: var(--red); }
.pc-store .pc-price strong { color: var(--store); }
.pc-site .pc-price strong  { color: var(--site); }
.pc-crm .pc-price strong   { color: var(--crm); }
.pc-price .pc-per { font-size: 15px; font-weight: 600; color: var(--gray); }
.pc-trial {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; color: var(--store);
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 20px;
  padding: 5px 12px; align-self: flex-start;
}

/* Card destacado ("Mais completo"): moldura na cor + selo no topo. */
.pc-featured { border: 2px solid var(--red); box-shadow: var(--shadow); position: relative; }
.pc-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  background: var(--red); color: #fff;
  font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  border-radius: 20px; padding: 5px 14px;
}
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.pc-btn:hover { opacity: .85; transform: translateY(-1px); }
.pc-erp .pc-btn   { background: var(--red); }
.pc-store .pc-btn { background: var(--store); }
.pc-site .pc-btn  { background: var(--site); }
.pc-crm .pc-btn   { background: var(--crm); }
.pricing-fallback p { margin-top: 32px; font-size: 15px; color: var(--gray); }
.pricing-fallback a { color: var(--red); font-weight: 700; }

/* ── ANIMATIONS ──────────────────────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .product-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav, .btn-cta { display: none; }
  .menu-btn { display: flex; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--dark);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    gap: 4px;
    z-index: 999;
  }

  .nav.open + .btn-cta {
    display: flex;
    margin: 0 24px 20px;
    position: fixed;
    top: 64px; left: 0; right: 0;
    z-index: 998;
  }

  .hero-content { padding: 60px 24px; }

  .product-grid,
  .product-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .product-grid.reverse > * { direction: ltr; }
  .product-visual { order: -1; }

  .steps { flex-direction: column; gap: 32px; }
  .step-arrow { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .cf-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .products-divider .container { flex-direction: column; align-items: flex-start; }

  .hero-stats { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 26px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}

/* Honeypot anti-bot (formulário de contato da home e páginas de cadastro):
   invisível para gente, preenchido por bot. Fora da tab order e do leitor de
   tela — nunca usar display:none/visibility:hidden, que bot mais esperto
   reconhece e pula. Fica aqui (e não no pages.css) porque a home carrega
   apenas este arquivo. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Checkbox "Não sou um robô" (js/captcha.js — contato, cadastro e afiliados).
   Visual de captcha clássico: caixa cinza, quadrado que vira check verde. */
.captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 300px;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 13px 16px;
  margin: 4px 0 6px;
  user-select: none;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.captcha-inner { display: inline-flex; align-items: center; gap: 12px; cursor: pointer; }
.captcha-box input { position: absolute; opacity: 0; pointer-events: none; }
.captcha-square {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border: 2px solid #9ca3af;
  border-radius: 4px;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .15s;
}
.captcha-square i { display: none; }
.captcha-square .captcha-tick { color: var(--store); font-size: 15px; }
.captcha-box.checking .captcha-spin { display: inline; color: var(--crm); font-size: 13px; }
.captcha-box.checked .captcha-square { border-color: var(--store); }
.captcha-box.checked .captcha-tick { display: inline; }
.captcha-box.error { border-color: #dc2626; background: #fef2f2; }
.captcha-box.error .captcha-square { border-color: #dc2626; }
.captcha-text { font-size: 14.5px; font-weight: 500; color: var(--dark); }
.captcha-brand { text-align: center; color: var(--gray-light); line-height: 1; }
.captcha-brand i { font-size: 20px; }
.captcha-brand span {
  display: block; margin-top: 4px;
  font-size: 8.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  line-height: 1.25;
}
.captcha-error {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #dc2626;
  margin: 0 0 14px;
}

/* Print real de produto dentro da moldura de browser (.screen). */
.screen-shot { display: block; width: 100%; height: auto; }
