/* ============================================================
   PLUMA — Landing
   ============================================================ */

:root {
  --bg: #0b1220;
  --bg-soft: #111a2e;
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --surface-mid: #eef2f9;
  --line: #e2e8f0;
  --line-soft: #edf1f7;
  --ink: #0f172a;
  --ink-2: #334155;
  --ink-3: #64748b;
  --primary: #0ea5e9;
  --primary-d: #0284c7;
  --primary-2: #0369a1;
  --accent: #22c55e;
  --accent-d: #16a34a;
  --warn: #f59e0b;
  --wa: #25d366;
  --wa-d: #128c7e;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.05), 0 1px 3px rgba(15,23,42,.05);
  --shadow: 0 8px 24px -8px rgba(15,23,42,.18), 0 2px 6px rgba(15,23,42,.05);
  --shadow-lg: 0 30px 60px -25px rgba(15,23,42,.35), 0 10px 25px -10px rgba(15,23,42,.15);

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 { color: var(--ink); margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--ink-2); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  border: 1px solid transparent; border-radius: 999px;
  cursor: pointer; transition: all .18s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { background: #1e293b; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: white; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(15,23,42,.15); }
.btn-ghost:hover { background: rgba(15,23,42,.04); }
.btn-wa { background: var(--wa); color: white; }
.btn-wa:hover { background: var(--wa-d); transform: translateY(-1px); box-shadow: 0 8px 24px -6px rgba(37,211,102,.45); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 68px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em;
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: white;
  box-shadow: 0 4px 12px -3px rgba(14,165,233,.5);
}
.brand-text { background: linear-gradient(135deg, var(--ink) 0%, var(--primary-2) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 6px 0;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-burger {
  display: none;
  background: none; border: 0; padding: 8px;
  flex-direction: column; gap: 5px; cursor: pointer;
  margin-left: auto;
}
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .btn-sm { display: none; }
  body.menu-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--line);
    padding: 18px 24px; gap: 14px;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(1200px 500px at 70% -100px, rgba(14,165,233,.18), transparent 60%),
    radial-gradient(900px 400px at -10% 50%, rgba(34,197,94,.14), transparent 60%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,23,42,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 70px; align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--primary-2); text-transform: uppercase;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.2);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 .highlight {
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { font-size: 1.15rem; color: var(--ink-2); margin: 18px 0 30px; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 18px 26px;
}
.hero-bullets li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-2); font-weight: 500;
}
.hero-bullets svg { width: 18px; height: 18px; color: var(--accent-d); flex-shrink: 0; }

/* Hero visual: mockup */
.hero-visual { position: relative; }
.mockup {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transform-origin: center;
}
.mockup-header {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line-soft);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }
.dot-g { background: #22c55e; }
.mockup-title { margin-left: 10px; font-size: 13px; color: var(--ink-3); font-family: var(--mono); }
.mockup-body { padding: 22px 22px 18px; background: linear-gradient(180deg, #fff 0%, #fafcff 100%); }

.truck-cab {
  background: linear-gradient(180deg, #475569 0%, #334155 100%);
  color: white; font-size: 11px; font-weight: 700; letter-spacing: .15em;
  padding: 10px; border-radius: 8px 8px 0 0;
  text-align: center;
  border: 2px solid #1e293b; border-bottom: 0;
}
.truck-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 78px;
  gap: 6px;
  padding: 10px;
  background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
  border: 2px solid #334155;
  border-radius: 0 0 8px 8px;
}
.cell {
  position: relative;
  border-radius: 6px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  font-size: 10px; text-align: center;
  padding: 4px 6px; gap: 1px;
  overflow: hidden;
  transition: transform .2s ease;
}
.cell:hover { transform: translateY(-2px); }
.cell-tag { font-family: var(--mono); font-size: 9px; color: rgba(0,0,0,.45); position: absolute; top: 4px; left: 5px; font-weight: 700; }
.cell-name { font-weight: 700; color: var(--ink); margin-top: 8px; line-height: 1.1; font-size: 10.5px; }
.cell-kg { font-size: 9.5px; color: var(--ink-3); font-family: var(--mono); }
.cell-pallet { background: linear-gradient(135deg, #fef3c7, #fde68a); border: 1px solid #f59e0b; }
.cell-mixed { background: linear-gradient(135deg, #dbeafe, #bfdbfe); border: 1px solid #3b82f6; }
.cell-vigueta { background: linear-gradient(135deg, #fce7f3, #fbcfe8); border: 1px solid #ec4899; }
.cell-empty { background: repeating-linear-gradient(45deg, #f1f5f9 0 8px, #e2e8f0 8px 16px); border: 1px dashed #94a3b8; color: var(--ink-3); font-style: italic; }
.cell-empty .cell-name { color: var(--ink-3); font-weight: 500; }

.aerial-strip {
  margin-top: 8px; padding: 8px 12px;
  font-size: 11px; color: var(--primary-2); font-weight: 600;
  background: rgba(14,165,233,.08); border-radius: 8px;
  text-align: center;
}

.mockup-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-top: 14px;
}
.mockup-stats > div {
  background: var(--surface-soft);
  padding: 10px 8px; border-radius: 8px;
  text-align: center;
}
.mockup-stats strong {
  display: block;
  font-size: 16px; font-weight: 800; color: var(--ink);
  font-family: var(--mono);
}
.mockup-stats span { font-size: 10.5px; color: var(--ink-3); }

/* Floating cards */
.floating {
  position: absolute;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  max-width: 260px;
}
.floating strong { display: block; font-weight: 700; font-size: 13px; }
.floating small { color: var(--ink-3); font-size: 11.5px; line-height: 1.4; }
.floating-wa {
  top: 10%; left: -40px;
  animation: float 4s ease-in-out infinite;
}
.floating-route {
  bottom: 8%; right: -30px;
  animation: float 4s ease-in-out infinite -2s;
}
.wa-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--wa);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .mockup { transform: none; max-width: 540px; margin: 0 auto; }
  .floating-wa { left: -10px; }
  .floating-route { right: -10px; }
}
@media (max-width: 540px) {
  .floating { display: none; }
}

.mockup-screen { padding: 0; }
.mockup-screen .mockup-header { border-bottom: 1px solid var(--line-soft); }
.mockup-img {
  width: 100%;
  height: auto;
  display: block;
  background: #f6f8fc;
}

/* ============================================================
   Showcase (capturas reales)
   ============================================================ */
.showcase { background: var(--surface-soft); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.showcase-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.showcase-card-wide { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
.showcase-card-wide .showcase-meta { flex: 0 0 38%; padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.showcase-card-wide .showcase-img-wrap { flex: 1 1 62%; }
.showcase-meta { padding: 26px 28px; }
.showcase-tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
  color: var(--primary-2); text-transform: uppercase;
  background: rgba(14,165,233,.1);
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 12px;
}
.showcase-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.showcase-card .showcase-meta p { color: var(--ink-3); font-size: 14.5px; margin: 0; }
.showcase-bullets { list-style: none; padding: 0; margin: 16px 0 0; }
.showcase-bullets li {
  position: relative; padding-left: 22px; margin-bottom: 7px;
  font-size: 13.5px; color: var(--ink-2);
}
.showcase-bullets li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.showcase-img-wrap {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0fdf4 100%);
  padding: 20px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.showcase-img-wrap img {
  width: 100%; height: auto; display: block;
  border-radius: 10px;
  box-shadow: 0 12px 30px -12px rgba(15,23,42,.25);
  border: 1px solid var(--line);
}

@media (max-width: 880px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card-wide { flex-direction: column; }
  .showcase-card-wide .showcase-meta { flex: 1 1 auto; padding: 26px 28px; }
}

/* ============================================================
   Strip (social proof)
   ============================================================ */
.strip {
  padding: 40px 0;
  background: var(--bg);
  color: #cbd5e1;
}
.strip-title {
  text-align: center; margin: 0 0 20px;
  font-size: 14px; font-weight: 500; color: #94a3b8;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.strip-icons {
  display: flex; flex-wrap: wrap; gap: 18px 36px;
  justify-content: center; align-items: center;
  color: #cbd5e1;
}
.strip-icons > div {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
}

/* ============================================================
   Sections (general)
   ============================================================ */
.section { padding: 100px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { font-size: 1.05rem; color: var(--ink-3); margin: 12px 0 0; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Problema
   ============================================================ */
.problema { background: var(--surface-soft); }
.problema-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 48px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary); }
.card h4 { margin-bottom: 8px; }
.card p { margin: 0; color: var(--ink-3); font-size: 14.5px; }

.solution-banner {
  display: flex; align-items: center; gap: 30px;
  background: linear-gradient(135deg, var(--ink) 0%, #1e293b 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.solution-banner::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(14,165,233,.3), transparent 70%);
  border-radius: 50%;
}
.solution-banner h3 { color: white; font-size: 1.6rem; margin-bottom: 8px; position: relative; }
.solution-banner p { color: #cbd5e1; margin: 0; font-size: 1rem; position: relative; }
.solution-banner .btn { flex-shrink: 0; position: relative; }

@media (max-width: 800px) {
  .problema-grid { grid-template-columns: 1fr; }
  .solution-banner { flex-direction: column; align-items: stretch; padding: 30px; text-align: left; }
}

/* ============================================================
   Features
   ============================================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: all .25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(34,197,94,.1));
  color: var(--primary-2);
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-icon.wa { background: var(--wa); color: white; }
.feature h3 { font-size: 1.15rem; }
.feature > p { color: var(--ink-2); font-size: 14.5px; margin-bottom: 16px; }
.feature ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-soft); padding-top: 14px; }
.feature ul li {
  position: relative;
  padding-left: 22px; margin-bottom: 7px;
  font-size: 13.5px; color: var(--ink-3);
}
.feature ul li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
}

.feature-highlight {
  background: linear-gradient(135deg, var(--ink) 0%, #1e293b 100%);
  color: white;
  border-color: transparent;
}
.feature-highlight h3, .feature-highlight > p { color: white; }
.feature-highlight > p { color: #cbd5e1; }
.feature-highlight ul { border-top-color: rgba(255,255,255,.1); }
.feature-highlight ul li { color: #cbd5e1; }
.feature-highlight ul li::before { background: var(--wa); }

@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================================
   How
   ============================================================ */
.how { background: var(--surface-soft); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  position: relative;
}
.steps::before {
  content: ""; position: absolute;
  top: 38px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative; z-index: 1;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: white; font-family: var(--mono); font-weight: 700; font-size: 18px;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px -4px rgba(14,165,233,.5);
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-3); margin: 0; }

@media (max-width: 920px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   Stats
   ============================================================ */
.stats {
  background: linear-gradient(135deg, var(--bg) 0%, #1e293b 100%);
  color: white;
  text-align: center;
  position: relative; overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(14,165,233,.15), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(34,197,94,.12), transparent 40%);
}
.stats-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-bottom: 28px;
}
.stats-grid > div { text-align: center; }
.stats-grid strong {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(120deg, #38bdf8 0%, #4ade80 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stats-grid span { color: #94a3b8; font-size: 14px; }
.stats-note { position: relative; color: #64748b; font-size: 12.5px; font-style: italic; margin: 0; }

@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ============================================================
   Videos
   ============================================================ */
.videos { background: var(--surface-soft); }
.videos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.video-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s ease;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.video-card video {
  width: 100%; aspect-ratio: 16/10;
  background: #0b1220 center/cover no-repeat;
  display: block;
  object-fit: cover;
}
.video-meta { padding: 18px 20px 22px; position: relative; }
.video-num {
  display: inline-block;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--primary-2); letter-spacing: .08em;
  background: rgba(14,165,233,.1);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.video-meta h4 { font-size: 1.05rem; margin-bottom: 6px; }
.video-meta p { font-size: 13.5px; color: var(--ink-3); margin: 0; }

.video-feature { border-color: var(--primary); box-shadow: 0 8px 24px -10px rgba(14,165,233,.35); }
.video-feature .video-num { background: var(--primary); color: white; }

@media (max-width: 920px) { .videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .videos-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Niche
   ============================================================ */
.niche-inner {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 70px; align-items: center;
}
.niche-list { list-style: none; padding: 0; margin: 18px 0 0; }
.niche-list li {
  position: relative; padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px; color: var(--ink-2);
}
.niche-list li:last-child { border-bottom: 0; }
.niche-list li::before {
  content: "✓"; position: absolute; left: 0; top: 11px;
  width: 22px; height: 22px;
  background: var(--accent); color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.niche-list strong { color: var(--ink); }
.niche-visual { position: relative; min-height: 460px; }
.niche-img {
  position: absolute;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 6px solid white;
  object-fit: cover;
  transition: transform .4s ease;
}
.niche-img:hover { transform: rotate(0deg) scale(1.03) !important; z-index: 3; }
.niche-img-1 {
  width: 72%;
  aspect-ratio: 4/3;
  top: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}
.niche-img-2 {
  width: 58%;
  aspect-ratio: 4/3;
  bottom: 0; right: 0;
  transform: rotate(4deg);
  z-index: 1;
}
@media (max-width: 900px) {
  .niche-inner { grid-template-columns: 1fr; gap: 40px; }
  .niche-visual { min-height: 320px; max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--surface-soft); }
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  transition: all .2s ease;
}
.faq-list details[open] { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600; color: var(--ink);
  position: relative; padding-right: 48px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--primary);
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  padding: 0 24px 22px; margin: 0;
  font-size: 14.5px; color: var(--ink-2); line-height: 1.65;
}

/* ============================================================
   CTA Final
   ============================================================ */
.cta-final {
  background:
    radial-gradient(800px 400px at 90% 100%, rgba(34,197,94,.18), transparent 60%),
    radial-gradient(800px 400px at 10% 0%, rgba(14,165,233,.18), transparent 60%),
    var(--bg);
  color: white;
}
.cta-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center;
}
.cta-copy h2 { color: white; font-size: clamp(2rem, 4vw, 2.8rem); }
.cta-copy p { color: #cbd5e1; font-size: 1.05rem; margin-bottom: 28px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.cta-fine { color: #64748b; font-size: 13px; margin: 0; }

.cta-form {
  background: white;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}
.cta-form h3 { font-size: 1.4rem; margin-bottom: 22px; }
.cta-form label {
  display: block; margin-bottom: 14px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.cta-form input, .cta-form select {
  width: 100%; margin-top: 6px;
  padding: 12px 14px;
  font-family: var(--font); font-size: 14.5px;
  border: 1px solid var(--line); border-radius: 10px;
  background: white; color: var(--ink);
  outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.cta-form input:focus, .cta-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,.18);
}
.cta-form button { margin-top: 6px; }
.cta-form button[disabled] { opacity: .65; cursor: progress; }
.cta-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-msg {
  margin: 14px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 10px;
  display: none;
}
.form-msg:not(:empty) { display: block; }
.form-msg-ok {
  background: rgba(34,197,94,.1);
  color: var(--accent-d);
  border: 1px solid rgba(34,197,94,.3);
}
.form-msg-err {
  background: rgba(239,68,68,.08);
  color: #b91c1c;
  border: 1px solid rgba(239,68,68,.3);
}

@media (max-width: 880px) {
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--bg);
  color: #94a3b8;
  padding: 64px 0 24px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.1fr 2fr; gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1e293b;
}
.footer-brand .brand { color: white; }
.footer-brand p { color: #94a3b8; max-width: 320px; margin-top: 12px; font-size: 14px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-cols h5 { color: white; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-cols a, .footer-cols span {
  display: block;
  font-size: 14px; color: #94a3b8;
  margin-bottom: 8px; transition: color .15s ease;
}
.footer-cols a:hover { color: white; }
.footer-bottom { padding-top: 22px; }
.footer-bottom small { color: #64748b; font-size: 12.5px; }

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   WhatsApp floating
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.6);
  transition: transform .2s ease, background .2s ease;
}
.wa-float:hover { background: var(--wa-d); transform: scale(1.07); }
.wa-float::before {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.45);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.9); opacity: .9; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Print fallback - basic */
@media print {
  .nav, .wa-float, .cta-form, .floating { display: none !important; }
  .section { padding: 30px 0; }
}
