/* ============================================================
   LuizRJesus Consulting — Premium Product Page Design System v2.0
   Aesthetic: dark hero · neural grid · Inter · oklch palette
   Used across all 25 product pages + index + clientes + solucoes
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --ink:           oklch(0.10 0.015 270);
  --ink-2:         oklch(0.18 0.020 270);
  --ink-3:         oklch(0.26 0.025 270);
  --paper:         oklch(0.985 0.003 80);
  --paper-2:       oklch(0.970 0.005 80);
  --paper-3:       oklch(0.945 0.006 80);
  --line:          oklch(0.92 0.005 80);
  --line-2:        oklch(0.88 0.008 80);

  --fg:            oklch(0.20 0.012 270);
  --fg-2:          oklch(0.42 0.012 270);
  --fg-3:          oklch(0.58 0.010 270);
  --fg-faint:      oklch(0.72 0.008 270);

  --brand:         oklch(0.50 0.18 268);
  --brand-2:       oklch(0.65 0.18 295);
  --brand-3:       oklch(0.62 0.18 220);
  --brand-soft:    oklch(0.95 0.04 268);
  --brand-soft-2:  oklch(0.90 0.07 268);

  --success:       oklch(0.55 0.13 155);
  --success-soft:  oklch(0.95 0.05 155);
  --warning:       oklch(0.70 0.15 75);
  --warning-soft:  oklch(0.96 0.07 80);
  --danger:        oklch(0.58 0.20 25);

  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 22px; --r-2xl: 28px;
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--paper); color: var(--fg); font-family: var(--font); }
body { line-height: 1.55; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--brand-soft-2); color: var(--ink); }

.lz-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAVBAR (sticky, transforms on scroll)
   ============================================================ */
.lz-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: padding .25s;
}
.lz-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lz-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
}
.lz-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 6px 18px -4px oklch(0.50 0.18 268 / 0.5);
}
.lz-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 15px;
}
.lz-logo-text small {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--fg-3);
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.lz-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.lz-nav-link {
  padding: 8px 13px;
  border-radius: 8px;
  color: var(--fg);
  font-size: 13.5px;
  font-weight: 500;
  transition: background .12s, color .12s;
}
.lz-nav-link:hover { background: var(--paper-2); color: var(--ink); }
.lz-nav-link.current { background: var(--paper-2); color: var(--ink); font-weight: 600; }
.lz-nav-link.cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  box-shadow: 0 6px 18px -6px oklch(0.50 0.18 268 / 0.5);
}
.lz-nav-link.cta:hover { transform: translateY(-1px); color: white; }
.lz-nav-mobile {
  display: none;
  margin-left: auto;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.lz-nav-mobile span { width: 16px; height: 2px; background: var(--ink); border-radius: 1px; }
@media (max-width: 920px) {
  .lz-nav-links { display: none; }
  .lz-nav-mobile { display: flex; }
  body.lz-menu-open .lz-nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px -10px rgba(15,18,35,.1);
  }
  body.lz-menu-open .lz-nav-link { padding: 12px 14px; width: 100%; }
}

/* ============================================================
   PRODUCT HERO (dark, neural)
   ============================================================ */
.lz-product-hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 15% 0%, oklch(0.30 0.15 280 / 0.7), transparent 60%),
    radial-gradient(800px 500px at 90% 30%, oklch(0.30 0.18 220 / 0.55), transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, oklch(0.13 0.02 270) 100%);
  color: white;
  overflow: hidden;
  padding: 70px 0 80px;
}
.lz-product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(124, 92, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(124, 92, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}
.lz-product-hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 25% 30%, oklch(0.55 0.20 295 / 0.25), transparent 45%),
    radial-gradient(circle at 75% 70%, oklch(0.55 0.18 220 / 0.20), transparent 45%);
  filter: blur(60px);
  pointer-events: none;
}
.lz-product-hero > .lz-container { position: relative; z-index: 1; }

.lz-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 960px) {
  .lz-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.lz-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.lz-hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: oklch(0.70 0.20 145);
  box-shadow: 0 0 12px oklch(0.70 0.20 145 / 0.8);
  animation: lz-pulse 2s ease-in-out infinite;
}
@keyframes lz-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.lz-hero-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: white;
}
.lz-hero-title .accent {
  background: linear-gradient(120deg, oklch(0.78 0.18 295), oklch(0.80 0.18 220), oklch(0.85 0.16 165));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: lz-shimmer 6s linear infinite;
  display: block;
}
@keyframes lz-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.lz-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 0 28px;
  line-height: 1.6;
}

.lz-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.lz-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.lz-btn-primary {
  background: linear-gradient(135deg, oklch(0.65 0.18 145), oklch(0.55 0.13 155));
  color: white;
  box-shadow: 0 8px 24px -6px oklch(0.55 0.13 155 / 0.6);
  position: relative;
  overflow: hidden;
}
.lz-btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left .6s;
}
.lz-btn-primary:hover::before { left: 100%; }
.lz-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px -6px oklch(0.55 0.13 155 / 0.7); }
.lz-btn-glass {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.lz-btn-glass:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); color: white; }

.lz-btn-lg { height: 54px; padding: 0 26px; font-size: 15px; }
.lz-btn-sm { height: 38px; padding: 0 16px; font-size: 13px; }

/* Hero price card */
.lz-hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 28px 26px;
  position: relative;
}
.lz-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.lz-hero-card-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.lz-hero-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 8px 0 16px;
  font-feature-settings: 'tnum';
}
.lz-hero-card-price .currency { font-size: 18px; font-weight: 500; opacity: 0.8; }
.lz-hero-card-price .value {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, white, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lz-hero-card-price .period { font-size: 14px; color: rgba(255,255,255,0.6); margin-left: 2px; }
.lz-hero-card-perks { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.10); }
.lz-hero-card-perk { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.85); }
.lz-hero-card-perk i { color: oklch(0.70 0.18 145); flex-shrink: 0; font-size: 11px; }

/* ============================================================
   TRUST STRIP (4 badges)
   ============================================================ */
.lz-trust {
  background: var(--paper);
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.lz-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 820px) { .lz-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lz-trust-grid { grid-template-columns: 1fr; } }
.lz-trust-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.lz-trust-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
  box-shadow: 0 8px 24px -8px rgba(15,18,35,0.10);
}
.lz-trust-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-soft), oklch(0.92 0.06 295));
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.lz-trust-t { font-size: 14px; font-weight: 700; color: var(--ink); }
.lz-trust-d { font-size: 12px; color: var(--fg-2); margin-top: 2px; line-height: 1.4; }

/* ============================================================
   SECTIONS
   ============================================================ */
.lz-section { padding: 72px 0; }
.lz-section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.lz-section-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lz-section-head h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.15;
}
.lz-section-head p {
  font-size: 15.5px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   BENEFIT CARDS (3 columns)
   ============================================================ */
.lz-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.lz-benefit {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.lz-benefit::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  opacity: 0;
  transition: opacity .2s;
}
.lz-benefit:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 16px 40px -12px rgba(15,18,35,0.14);
}
.lz-benefit:hover::before { opacity: 1; }
.lz-benefit-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-soft), oklch(0.92 0.06 295));
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.lz-benefit h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.lz-benefit p {
  font-size: 13.5px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   MODULES GRID (pills)
   ============================================================ */
.lz-modules-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}
.lz-modules-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.lz-modules-head h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; }
.lz-modules-head i { color: var(--brand); font-size: 20px; }
.lz-modules-head .lz-count {
  background: var(--brand-soft);
  color: var(--brand);
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 700;
  margin-left: auto;
}
.lz-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.lz-modules-grid .lz-pill {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, border-color .15s;
}
.lz-modules-grid .lz-pill:hover { background: white; border-color: var(--brand-soft-2); }

/* ============================================================
   TWO-COLUMN LISTS (ganhar / escolher)
   ============================================================ */
.lz-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
@media (max-width: 820px) { .lz-two-col { grid-template-columns: 1fr; } }
.lz-list-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}
.lz-list-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.lz-list-card h3 .ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}
.lz-list-card.green h3 .ico { background: var(--success-soft); color: var(--success); }
.lz-list-card.blue h3 .ico { background: var(--brand-soft); color: var(--brand); }
.lz-list-card ul { list-style: none; }
.lz-list-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--fg);
  line-height: 1.5;
}
.lz-list-card li:last-child { border-bottom: none; }
.lz-list-card li i {
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 12px;
}
.lz-list-card.green li i { color: var(--success); }
.lz-list-card.blue li i { color: var(--brand); }

/* ============================================================
   RESULTS / STATS BAND
   ============================================================ */
.lz-results {
  background: linear-gradient(135deg, var(--paper-2), var(--paper));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  text-align: center;
  margin: 24px 0;
}
.lz-results-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  display: inline-grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 12px;
  box-shadow: 0 10px 30px -8px oklch(0.50 0.18 268 / 0.4);
}
.lz-results h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.lz-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 6px;
}
.lz-result-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 14px;
}
.lz-result-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.lz-result-item .v {
  font-size: 13px;
  color: var(--fg-2);
}

/* ============================================================
   GUARANTEE BOX
   ============================================================ */
.lz-guarantee {
  background: linear-gradient(135deg, var(--warning-soft), oklch(0.96 0.06 60));
  border: 1px solid oklch(0.88 0.10 75);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 24px 0;
}
@media (max-width: 600px) { .lz-guarantee { flex-direction: column; text-align: center; } }
.lz-guarantee-ic {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, oklch(0.70 0.15 75), oklch(0.65 0.18 50));
  color: white;
  display: grid;
  place-items: center;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 10px 28px -8px oklch(0.65 0.18 50 / 0.5);
}
.lz-guarantee h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.lz-guarantee p {
  font-size: 14px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   FINAL CTA BLOCK (dark, neural)
   ============================================================ */
.lz-cta-block {
  position: relative;
  background:
    radial-gradient(700px 400px at 30% 0%, oklch(0.30 0.15 280 / 0.7), transparent 60%),
    radial-gradient(500px 400px at 70% 100%, oklch(0.30 0.18 220 / 0.55), transparent 55%),
    var(--ink);
  color: white;
  overflow: hidden;
  border-radius: 28px;
  padding: 48px 32px;
  text-align: center;
  margin: 32px 0;
}
.lz-cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(124, 92, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(124, 92, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}
.lz-cta-block > * { position: relative; z-index: 1; }
.lz-cta-block h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: white;
}
.lz-cta-block p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 24px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.lz-cta-block .lz-btn-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.lz-cta-block .lz-btn-white {
  background: white;
  color: var(--ink);
}
.lz-cta-block .lz-btn-white:hover { background: var(--paper); color: var(--ink); transform: translateY(-1px); }

/* ============================================================
   BACK NAV
   ============================================================ */
.lz-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 99px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 13px;
  font-weight: 500;
  transition: background .15s;
}
.lz-back:hover { background: rgba(255,255,255,0.15); color: white; }

/* ============================================================
   FOOTER
   ============================================================ */
.lz-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
  margin-top: 0;
}
.lz-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 820px) { .lz-footer-inner { grid-template-columns: 1fr; gap: 24px; } }
.lz-footer-brand { display: flex; gap: 12px; align-items: center; color: white; }
.lz-footer-brand .lz-logo-mark { width: 44px; height: 44px; font-size: 14px; }
.lz-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 600px) { .lz-footer-cols { grid-template-columns: 1fr 1fr; } }
.lz-footer-cols > div { display: flex; flex-direction: column; gap: 8px; }
.lz-footer-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.lz-footer-cols a {
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
  font-weight: 500;
  transition: color .12s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lz-footer-cols a:hover { color: white; }
.lz-footer-copy {
  max-width: 1240px;
  margin: 24px auto 0;
  padding: 0 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.lz-footer-tag {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.lz-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.5);
  z-index: 60;
  transition: transform .2s;
}
.lz-whatsapp:hover { transform: scale(1.08); color: white; }
.lz-whatsapp::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.6;
  animation: lz-ring 2s ease-out infinite;
}
@keyframes lz-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
