/* ═══════════════════════════════════════════════════
   MiPOS 2026 — Full Redesign
   Modern, mobile-first, glassmorphism + gradients
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #fafaf7;
  --bg-dark: #0d1117;
  --ink: #0d1117;
  --ink-soft: #484f58;
  --mid: #6e7681;
  --primary: #059669;
  --primary-light: #34d399;
  --primary-dark: #047857;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --green: #00c47a;
  --orange: #f59e0b;
  --coral: #f43f5e;
  --surface: #ffffff;
  --surface-raised: rgba(255,255,255,0.85);
  --border: rgba(13,17,23,0.07);
  --border-strong: rgba(13,17,23,0.12);
  --glass: rgba(255,255,255,0.6);
  --glass-border: rgba(255,255,255,0.3);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.12);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --grad-primary: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
  --grad-dark: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
  --grad-accent: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --grad-hero: linear-gradient(160deg, #f0fdf4 0%, #fafaf7 30%, #eef2ff 70%, #fafaf7 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle grid pattern */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, rgba(13,17,23,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* ═══════════ NAVIGATION ═══════════ */
nav {
  position: fixed; top: 0; z-index: 100; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 5vw;
  background: rgba(250,250,247,0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-sm); }

.logo {
  font-weight: 800; font-size: 1.35rem; letter-spacing: -.04em;
  color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: .45rem;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.7; }
.logo-dot {
  width: 10px; height: 10px; border-radius: 4px;
  background: var(--grad-primary);
  display: inline-block;
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

nav ul {
  display: flex; gap: 0.3rem; list-style: none;
}
nav ul li a {
  font-size: .84rem; font-weight: 600; color: var(--mid);
  text-decoration: none; padding: 0.5rem 0.9rem;
  border-radius: 10px; transition: all 0.2s;
}
nav ul li a:hover { color: var(--ink); background: rgba(13,17,23,0.04); }

.nav-tel-wrap { display: flex; align-items: center; gap: .6rem; }

.nav-tel {
  font-size: .82rem; font-weight: 700;
  background: var(--grad-primary); color: #fff;
  padding: .55rem 1.3rem; border-radius: 50px; text-decoration: none;
  transition: all 0.25s; white-space: nowrap;
  box-shadow: 0 2px 12px rgba(5,150,105,0.25);
}
.nav-tel:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(5,150,105,0.35); color: #fff; }

.nav-ingresar {
  font-family: inherit; font-size: .82rem; font-weight: 700;
  background: transparent; color: var(--primary);
  border: 2px solid rgba(5,150,105,0.25);
  padding: .5rem 1.1rem; border-radius: 50px; cursor: pointer;
  transition: all 0.25s; white-space: nowrap;
}
.nav-ingresar:hover {
  background: var(--primary); color: #fff;
  border-color: var(--primary); transform: translateY(-1px);
}

/* ═══════════ HAMBURGER BUTTON ═══════════ */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  position: relative; z-index: 300;
  border-radius: 10px;
  transition: background 0.2s;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0;
}
.hamburger:hover { background: rgba(5,150,105,0.08); }
.hamburger-bar {
  display: block;
  height: 2px; background: var(--ink);
  border-radius: 2px;
  transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.hamburger-bar:nth-child(1) { width: 22px; }
.hamburger-bar:nth-child(2) { width: 16px; align-self: flex-start; margin-left: 9px; }
.hamburger-bar:nth-child(3) { width: 22px; }

/* Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13, 17, 23, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.38s ease, backdrop-filter 0.38s ease;
  pointer-events: none;
}
.mobile-menu-overlay.open {
  background: rgba(13, 17, 23, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: all;
}

/* Slide-in Panel */
.mobile-menu {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  z-index: 250;
  background: #fafaff;
  box-shadow: -8px 0 40px rgba(13,17,23,0.12);
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}

/* Panel Header */
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: #fafaff;
  z-index: 1;
}
.mobile-menu-logo {
  font-weight: 800; font-size: 1.2rem; letter-spacing: -.04em;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: .4rem;
}
.mobile-menu-logo-dot {
  width: 8px; height: 8px; border-radius: 3px;
  background: var(--grad-primary); display: inline-block;
}

/* Close Button */
.mobile-menu-close {
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--mid);
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.mobile-menu-close:hover {
  background: rgba(13,17,23,0.06);
  color: var(--ink);
}

/* Nav Links */
.mobile-menu-nav {
  position: sticky;
  display: flex; flex-direction: column;
  padding: .5rem .8rem;
  gap: 0;
  flex: 1;
}
.mobile-menu-nav a {
  font-size: .95rem; font-weight: 600; color: var(--ink);
  text-decoration: none;
  padding: .6rem .9rem;
  border-radius: 10px;
  display: flex; align-items: center; gap: .6rem;
  opacity: 0;
  transform: translateX(18px);
  transition: background 0.18s, color 0.18s, opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.open .mobile-menu-nav a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.open .mobile-menu-nav a:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(3) { transition-delay: 0.14s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(5) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(6) { transition-delay: 0.26s; }

.mobile-menu-nav a:hover { background: rgba(5,150,105,0.07); color: var(--primary); }
.mobile-menu-nav a .menu-icon { font-size: .95rem; opacity: .6; width: 1.3rem; text-align: center; }

.mobile-menu-divider {
  height: 1px; background: var(--border);
  margin: .4rem 1rem;
}

/* Panel Footer / Actions */
.mobile-menu-actions {
  padding: 1.2rem 1.4rem 1.8rem;
  display: flex; flex-direction: column; gap: .7rem;
  border-top: 1px solid var(--border);
}
.mobile-menu-actions .nav-tel {
  display: block; text-align: center; font-size: .9rem;
}
.mobile-menu-actions .nav-ingresar {
  width: 100%; display: block; text-align: center; font-size: .9rem;
  padding: .7rem 1rem;
}

@media (max-width: 900px) {
  nav ul { display: none !important; }
  .nav-tel-wrap { display: none !important; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-menu-overlay { display: block; }
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 52% 48%;
  align-items: center; gap: 2rem;
  padding: 5rem 5vw 4rem; min-height: auto;
  background: var(--grad-hero);
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(5,150,105,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -10%; left: -5%;
  width: 40%; height: 50%;
  background: radial-gradient(ellipse, rgba(99,102,241,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(5,150,105,0.08); color: var(--primary);
  font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .45rem 1.1rem; border-radius: 50px;
  border: 1px solid rgba(5,150,105,0.15);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,196,122,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0,196,122,0); }
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800; letter-spacing: -.05em; line-height: 1.05;
  animation: fadeUp 0.7s 0.08s ease both;
}
h1 .accent {
  background: var(--grad-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
h1 .tag {
  display: inline-block;
  background: var(--ink); color: #fff;
  border-radius: 10px; padding: .08em .3em;
  font-size: .88em; -webkit-text-fill-color: #fff;
}

.hero-desc {
  margin-top: 1.4rem; font-size: 1.1rem; color: var(--ink-soft);
  line-height: 1.75; max-width: 480px;
  animation: fadeUp 0.7s 0.16s ease both;
}
.hero-ctas {
  margin-top: 2rem; display: flex; gap: .8rem; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.24s ease both;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .92rem; letter-spacing: .01em;
  text-decoration: none; border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: .85rem 1.8rem; position: relative; overflow: hidden;
}
.btn-blue, .btn-primary {
  background: var(--grad-primary); color: #fff;
  box-shadow: 0 4px 24px rgba(5,150,105,0.3);
}
.btn-blue:hover, .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(5,150,105,0.4);
  color: #fff;
}
.btn-outline, .btn-secondary {
  background: var(--surface); color: var(--ink);
  border: 2px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover, .btn-secondary:hover {
  border-color: var(--ink); transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--primary); }
.btn-ghost-w {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost-w:hover { border-color: #fff; transform: translateY(-2px); color: #fff; }

.hero-trust {
  margin-top: 2.5rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.32s ease both;
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 3px solid var(--bg); margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { font-size: .82rem; color: var(--mid); }
.trust-text strong { color: var(--ink); }
.trust-sep { width: 1px; height: 24px; background: var(--border-strong); }
.trust-afip {
  font-size: .78rem; font-weight: 700; color: var(--green);
}

/* HERO RIGHT — POS Mockup */
.hero-right {
  animation: fadeIn 0.9s 0.2s ease both;
  position: relative; z-index: 2;
}
.pos-mockup {
  background: var(--surface);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  transform: perspective(800px) rotateY(-2deg) rotateX(1deg);
}
.pos-mockup:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg) translateY(-4px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}

.pos-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.pos-title { font-weight: 700; font-size: .88rem; }
.pos-status {
  font-size: .72rem; font-weight: 700; color: var(--green);
  background: rgba(0,196,122,0.1); padding: .2rem .7rem; border-radius: 50px;
  display: flex; align-items: center; gap: .3rem;
}
.pos-items { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.pos-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: .65rem .9rem; border-radius: var(--radius-sm);
  background: var(--bg); font-size: .85rem;
  transition: background 0.2s;
}
.pos-item:hover { background: #f0f0ed; }
.pos-item-name { font-weight: 600; }
.pos-item-qty { color: var(--mid); font-size: .78rem; margin-top: .1rem; }
.pos-item-price { font-weight: 700; font-family: 'DM Mono', monospace; color: var(--ink); }
.pos-divider { border: none; border-top: 1px dashed var(--border-strong); margin: .8rem 0; }
.pos-total { display: flex; justify-content: space-between; align-items: center; font-weight: 800; font-size: 1.15rem; }
.pos-total-num {
  font-family: 'DM Mono', monospace;
  background: var(--grad-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.pos-methods { display: flex; gap: .4rem; margin-top: .7rem; flex-wrap: wrap; }
.pos-method {
  flex: 1; min-width: 70px; padding: .5rem; border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: .72rem; font-weight: 600; color: var(--mid); text-align: center;
  cursor: pointer; transition: all 0.2s;
}
.pos-method:hover { border-color: var(--primary); color: var(--primary); }
.pos-method.active {
  border-color: var(--primary); color: var(--primary);
  background: rgba(5,150,105,0.06);
}
.pos-cobrar {
  width: 100%; margin-top: 1rem;
  background: var(--grad-primary); color: #fff;
  border: none; border-radius: var(--radius-sm); padding: .9rem;
  font-family: inherit; font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: all 0.25s; box-shadow: 0 4px 16px rgba(5,150,105,0.25);
}
.pos-cobrar:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(5,150,105,0.35); }

.fbadge {
  position: absolute; background: var(--surface);
  border-radius: var(--radius); padding: .7rem 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  font-size: .78rem; font-weight: 700;
  display: flex; align-items: center; gap: .5rem;
  white-space: nowrap; z-index: 3;
  backdrop-filter: blur(10px);
}
.fb1 { top: -16px; right: -10px; animation: float 4s ease-in-out infinite; }
.fb2 { bottom: 40px; left: -20px; animation: float 4s 1.5s ease-in-out infinite; }

@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ═══════════ MARQUEE ═══════════ */
.marquee-strip {
  overflow: hidden;
  background: var(--grad-dark); padding: 1rem 0;
  position: relative; z-index: 1;
}
.marquee-track { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; }
.m-item {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); padding: 0 2.5rem;
  display: flex; align-items: center; gap: .8rem;
}
.m-item span { color: rgba(255,255,255,0.25); font-size: .9rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════ SECTIONS ═══════════ */
section { padding: 6rem 5vw; position: relative; z-index: 1; }
.s-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--primary); margin-bottom: .8rem;
  display: inline-flex; align-items: center; gap: .4rem;
}
.s-label::before {
  content: ''; width: 20px; height: 2px; background: var(--grad-primary);
  border-radius: 2px;
}
h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.1;
}
.s-sub { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; max-width: 500px; margin-top: .8rem; }

/* ═══════════ SEO CONTENT ═══════════ */
.seo-content {
  background: var(--surface); padding: 4rem 5vw;
  border-bottom: 1px solid var(--border);
}
.seo-inner {
  display: grid; grid-template-columns: 1fr 340px; gap: 4rem;
  max-width: 1100px; margin: 0 auto; align-items: start;
}
.seo-main h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1rem; }
.seo-main p { font-size: .95rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }
.seo-main h3 { font-size: 1.05rem; font-weight: 700; margin: 1.5rem 0 .7rem; }
.seo-list { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.seo-list li {
  font-size: .9rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: .6rem; line-height: 1.5;
}
.seo-list li::before {
  content: ''; width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%; background: rgba(5,150,105,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%23059669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.seo-card {
  background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2rem;
  position: sticky; top: 90px;
  box-shadow: var(--shadow-sm);
}
.seo-card-title { font-weight: 800; font-size: 1.05rem; margin-bottom: .8rem; }
.seo-card p { font-size: .88rem; color: var(--ink-soft); line-height: 1.75; }

/* ═══════════ FEATURES ═══════════ */
.features { background: var(--surface); }
.features-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem; margin-bottom: 3.5rem;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.feat-card {
  padding: 1.8rem; border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg);
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feat-card:hover::before { transform: scaleX(1); }
.feat-card:hover {
  border-color: rgba(5,150,105,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feat-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(5,150,105,0.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
  transition: transform 0.3s;
}
.feat-card:hover .feat-icon { transform: scale(1.1); }
.feat-card h3 { font-size: .98rem; font-weight: 700; margin-bottom: .5rem; }
.feat-card p { font-size: .86rem; color: var(--ink-soft); line-height: 1.7; }

/* ═══════════ STATS BAND ═══════════ */
.stats-band {
  background: var(--grad-dark); color: #fff;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 4rem 5vw; gap: 2rem; text-align: center;
  position: relative; z-index: 1;
}
.stat-item strong {
  display: block; font-size: 2.8rem; font-weight: 800;
  letter-spacing: -.06em; font-family: 'DM Mono', monospace;
  background: linear-gradient(135deg, #fff 0%, #34d399 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item span {
  font-size: .82rem; color: rgba(255,255,255,0.5);
  margin-top: .3rem; display: block;
}

/* ═══════════ PRICING ═══════════ */
.pricing-top { text-align: center; margin-bottom: 3rem; }
.pricing-top .s-sub { margin: .8rem auto 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.price-card {
  padding: 2.2rem; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); background: var(--surface);
  position: relative; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.price-card.pop {
  border-color: var(--primary);
  background: var(--grad-dark); color: #fff;
  box-shadow: 0 20px 60px rgba(5,150,105,0.15);
}
.pop-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad-primary); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1.1rem; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(5,150,105,0.3);
  white-space: nowrap;
}
.plan-nm {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 1rem;
}
.plan-nm.light { color: rgba(255,255,255,0.45); }
.plan-pr {
  font-size: 2.8rem; font-weight: 800; letter-spacing: -.06em;
  font-family: 'DM Mono', monospace; margin-bottom: .2rem;
}
.plan-pr sup { font-size: 1.1rem; font-weight: 600; }
.plan-per { font-size: .8rem; color: var(--mid); margin-bottom: 1.8rem; }
.price-card.pop .plan-per { color: rgba(255,255,255,0.4); }
.plan-feats { list-style: none; margin-bottom: 2rem; }
.plan-feats li {
  font-size: .87rem; padding: .6rem 0;
  border-bottom: 1px solid var(--border); display: flex; gap: .6rem; align-items: flex-start;
}
.price-card.pop .plan-feats li { border-color: rgba(255,255,255,0.08); }
.plan-feats li::before {
  content: ''; width: 18px; height: 18px; min-width: 18px;
  border-radius: 50%; background: rgba(5,150,105,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%23059669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
  margin-top: 2px;
}
.price-card.pop .plan-feats li::before {
  background-color: rgba(255,255,255,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%2334d399' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}
.plan-btn {
  display: block; width: 100%; text-align: center; text-decoration: none;
  font-weight: 700; font-size: .88rem; letter-spacing: .02em;
  padding: .9rem; border-radius: 50px; transition: all 0.25s;
}
.plan-btn-blue {
  background: var(--grad-primary); color: #fff;
  box-shadow: 0 4px 16px rgba(5,150,105,0.25);
}
.plan-btn-blue:hover { transform: scale(1.03); box-shadow: 0 6px 24px rgba(5,150,105,0.35); color: #fff; }
.plan-btn-white { background: #fff; color: var(--ink); }
.plan-btn-white:hover { transform: scale(1.03); box-shadow: var(--shadow-md); color: var(--ink); }
.plan-btn-ghost {
  background: transparent; color: var(--ink);
  border: 2px solid var(--border-strong);
}
.plan-btn-ghost:hover { border-color: var(--ink); transform: scale(1.03); color: var(--ink); }

/* ═══════════ WHY ═══════════ */
.why { background: var(--surface); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: rgba(5,150,105,0.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  transition: transform 0.3s;
}
.why-item:hover .why-icon { transform: scale(1.1) rotate(-5deg); }
.why-item h4 { font-weight: 700; font-size: .97rem; margin-bottom: .3rem; }
.why-item p { font-size: .87rem; color: var(--ink-soft); line-height: 1.7; }

.why-visual {
  background: var(--grad-dark); border-radius: var(--radius-lg);
  padding: 2rem; color: #fff;
  box-shadow: var(--shadow-xl);
}
.wy-title {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1.5rem;
}
.metric-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.metric-row:hover { background: rgba(255,255,255,0.03); margin: 0 -0.5rem; padding-left: .5rem; padding-right: .5rem; border-radius: 8px; }
.metric-row:last-child { border: none; }
.metric-label { font-size: .85rem; color: rgba(255,255,255,0.55); }
.metric-val { font-family: 'DM Mono', monospace; font-weight: 700; font-size: .95rem; }
.metric-chg { font-size: .75rem; font-weight: 700; padding: .2rem .6rem; border-radius: 50px; }
.up { background: rgba(0,196,122,0.15); color: var(--green); }
.neutral { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.45); }

/* ═══════════ TESTIMONIALS ═══════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.testi-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1.5px solid var(--border); padding: 1.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.testi-card::after {
  content: '"'; position: absolute; top: 12px; right: 16px;
  font-size: 4rem; font-family: Georgia, serif;
  color: rgba(5,150,105,0.06); line-height: 1;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: #fbbf24; font-size: .95rem; letter-spacing: .08rem; margin-bottom: 1rem; }
.testi-card p { font-size: .9rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.3rem; }
.testi-card p em { color: var(--ink); font-style: normal; font-weight: 600; }
.t-author { display: flex; align-items: center; gap: .8rem; }
.t-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem; color: #fff; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.t-name { font-weight: 700; font-size: .88rem; }
.t-biz { font-size: .76rem; color: var(--mid); }

/* ═══════════ BLOG PREVIEW ═══════════ */
.blog-preview { background: var(--bg); }
.blog-preview-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.blog-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1.5px solid var(--border); overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 160px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.blog-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.1) 100%);
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: .6rem;
}
.blog-card-body h3 { font-size: 1rem; font-weight: 700; line-height: 1.35; margin-bottom: .6rem; letter-spacing: -.02em; }
.blog-card-body p { font-size: .86rem; color: var(--ink-soft); line-height: 1.7; flex: 1; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; }
.blog-card-date { font-size: .75rem; color: var(--mid); }
.blog-card-link {
  font-size: .8rem; font-weight: 700; color: var(--primary);
  text-decoration: none; display: flex; align-items: center; gap: .3rem;
  transition: gap 0.2s;
}
.blog-card-link:hover { gap: .6rem; }
.blog-see-all {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .9rem; color: var(--primary);
  text-decoration: none; border: 2px solid rgba(5,150,105,0.2);
  padding: .7rem 1.6rem; border-radius: 50px;
  transition: all 0.25s;
}
.blog-see-all:hover { border-color: var(--primary); background: rgba(5,150,105,0.04); }

/* ═══════════ FAQ ═══════════ */
.faq { background: var(--surface); }
.faq-wrap { max-width: 700px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0; font-family: inherit;
  font-weight: 700; font-size: .97rem; text-align: left; color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--primary); }
.faq-ic {
  font-size: 1.3rem; color: var(--primary); transition: transform 0.3s;
  flex-shrink: 0; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,150,105,0.06); border-radius: 50%;
}
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; font-size: .9rem;
  color: var(--ink-soft); line-height: 1.8;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 1.3rem; }

/* ═══════════ SEO LANDING ═══════════ */
.seo-landing { background: var(--bg); padding: 4.5rem 5vw; }
.seo-landing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 1100px; margin: 0 auto; }
.seo-landing-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1.5px solid var(--border); padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-landing-card:hover { border-color: rgba(5,150,105,0.2); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.seo-landing-card h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: .7rem; letter-spacing: -.02em; }
.seo-landing-card p { font-size: .88rem; color: var(--ink-soft); line-height: 1.75; }

/* ═══════════ SEO EDU ═══════════ */
.seo-edu { background: var(--surface); padding: 5rem 5vw; border-top: 1px solid var(--border); }
.seo-edu-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; align-items: start; }
.seo-edu h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); margin-bottom: 1rem; }
.seo-edu p { font-size: .92rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: .9rem; }
.seo-edu h3 { font-size: 1rem; font-weight: 700; margin: 1.3rem 0 .6rem; }

.compare-table { margin-top: 1.2rem; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); }
.compare-row { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; align-items: center; padding: .75rem 1rem; border-bottom: 1px solid var(--border); font-size: .82rem; gap: .5rem; }
.compare-row:last-child { border-bottom: none; }
.compare-header { background: var(--ink); color: #fff; font-weight: 700; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.compare-row:not(.compare-header):nth-child(even) { background: var(--bg); }
.c-yes { color: var(--primary); font-weight: 700; }
.c-no { color: var(--mid); font-size: .78rem; }

/* ═══════════ CITY TAGS ═══════════ */
.city-tag {
  display: inline-block; background: var(--surface); color: var(--ink-soft);
  font-size: .78rem; font-weight: 600; padding: .45rem 1rem; border-radius: 50px;
  border: 1.5px solid var(--border); transition: all 0.25s;
}
.city-tag:hover { border-color: var(--primary); color: var(--primary); background: rgba(5,150,105,0.03); }

/* ═══════════ CTA BAND ═══════════ */
.cta-band {
  background: var(--grad-primary); color: #fff;
  text-align: center; padding: 6rem 5vw;
  position: relative; z-index: 1;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; position: relative; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: .8rem; flex-wrap: wrap; position: relative; }

/* ═══════════ FOOTER ═══════════ */
footer { background: var(--bg-dark); color: rgba(255,255,255,0.5); padding: 4rem 5vw 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo {
  font-weight: 800; font-size: 1.3rem; letter-spacing: -.03em; color: #fff;
  margin-bottom: .8rem; display: flex; align-items: center; gap: .4rem;
}
.footer-logo .logo-dot { background: var(--grad-primary); }
.footer-desc { font-size: .85rem; line-height: 1.75; }
.fc h5 {
  font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 1rem;
}
.fc ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.fc a { font-size: .85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.fc a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; flex-wrap: wrap; gap: .5rem;
}
.afip-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(0,196,122,0.1); color: var(--green);
  font-size: .72rem; font-weight: 700; padding: .3rem .8rem; border-radius: 50px;
}

/* ═══════════ MODAL ═══════════ */
#modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(13,17,23,0.5); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
#modal-overlay.active { display: flex; }
#modal-box {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem 2rem 1.6rem;
  width: 100%; max-width: 420px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes modalIn { from{opacity:0;transform:scale(.94) translateY(12px)} to{opacity:1;transform:none} }
#modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
#modal-title { font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
#modal-close {
  background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--mid);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
#modal-close:hover { background: var(--bg); color: var(--ink); }
#modal-label { display: block; font-size: .82rem; font-weight: 600; color: var(--mid); margin-bottom: .6rem; }
#modal-input-wrap {
  display: flex; align-items: center; border: 2px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; background: var(--bg);
}
#modal-input-wrap:focus-within { border-color: var(--primary); background: #fff; }
.modal-pre, .modal-suf { font-size: .82rem; font-weight: 500; color: var(--mid); padding: .75rem .7rem; white-space: nowrap; user-select: none; }
.modal-pre { padding-left: 1rem; }
.modal-suf { padding-right: 1rem; }
#modal-input {
  flex: 1; border: none; background: transparent;
  font-family: inherit; font-size: .95rem; font-weight: 600; color: var(--ink);
  padding: .75rem 0; outline: none; min-width: 0;
}
#modal-input::placeholder { color: #c0c0c0; font-weight: 400; }
#modal-error { display: none; color: #dc2626; font-size: .78rem; font-weight: 600; margin-top: .5rem; }
#modal-error.show { display: block; }
#modal-btn {
  display: block; width: 100%; margin-top: 1.2rem;
  background: var(--grad-primary); color: #fff;
  border: none; border-radius: 50px; padding: .9rem;
  font-family: inherit; font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: all 0.25s; letter-spacing: .02em;
  box-shadow: 0 4px 16px rgba(5,150,105,0.25);
}
#modal-btn:hover { transform: scale(1.02); box-shadow: 0 6px 24px rgba(5,150,105,0.35); }
#modal-footer-text { text-align: center; font-size: .8rem; color: var(--mid); margin-top: 1rem; }
#modal-footer-text a { color: var(--primary); font-weight: 600; text-decoration: none; }
#modal-footer-text a:hover { text-decoration: underline; }

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* Staggered children */
.features-grid .reveal:nth-child(2) { transition-delay: .06s; }
.features-grid .reveal:nth-child(3) { transition-delay: .12s; }
.features-grid .reveal:nth-child(4) { transition-delay: .18s; }
.features-grid .reveal:nth-child(5) { transition-delay: .24s; }
.features-grid .reveal:nth-child(6) { transition-delay: .3s; }
.features-grid .reveal:nth-child(7) { transition-delay: .36s; }
.features-grid .reveal:nth-child(8) { transition-delay: .42s; }
.features-grid .reveal:nth-child(9) { transition-delay: .48s; }
.testi-grid .reveal:nth-child(2) { transition-delay: .08s; }
.testi-grid .reveal:nth-child(3) { transition-delay: .16s; }
.pricing-grid .reveal:nth-child(2) { transition-delay: .08s; }
.pricing-grid .reveal:nth-child(3) { transition-delay: .16s; }
.blog-grid .reveal:nth-child(2) { transition-delay: .06s; }
.blog-grid .reveal:nth-child(3) { transition-delay: .12s; }

/* ═══════════ BLOG PAGE ═══════════ */
.blog-hero {
  background: var(--surface); padding: 4rem 5vw 3rem;
  border-bottom: 1px solid var(--border); position: relative; z-index: 1;
}
.blog-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .8rem; }
.blog-hero p { font-size: 1.05rem; color: var(--ink-soft); max-width: 560px; line-height: 1.75; }
.blog-filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.filter-btn {
  font-size: .78rem; font-weight: 700; padding: .45rem 1.1rem;
  border-radius: 50px; border: 1.5px solid var(--border);
  background: transparent; color: var(--mid); cursor: pointer;
  transition: all 0.25s;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(5,150,105,0.05); }

.blog-main { padding: 4rem 5vw; position: relative; z-index: 1; }
.blog-main-grid { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; max-width: 1100px; margin: 0 auto; align-items: start; }
.blog-articles { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-article-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1.5px solid var(--border); overflow: hidden;
  display: grid; grid-template-columns: 200px 1fr;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-article-thumb {
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.blog-article-content { padding: 1.5rem; }
.blog-article-tag { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); margin-bottom: .5rem; }
.blog-article-content h2 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin-bottom: .6rem; letter-spacing: -.02em; }
.blog-article-content h2 a { color: var(--ink); text-decoration: none; }
.blog-article-content h2 a:hover { color: var(--primary); }
.blog-article-content p { font-size: .88rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1rem; }
.blog-article-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-article-meta { font-size: .75rem; color: var(--mid); }
.blog-read-more { font-size: .82rem; font-weight: 700; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: .3rem; transition: gap 0.2s; }
.blog-read-more:hover { gap: .6rem; }

.blog-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1.2rem; }
.sidebar-widget { background: var(--surface); border-radius: var(--radius); border: 1.5px solid var(--border); padding: 1.5rem; }
.sidebar-widget h3 { font-size: .88rem; font-weight: 700; margin-bottom: 1rem; }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.sidebar-links li a { font-size: .85rem; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: .4rem; }
.sidebar-links li a:hover { color: var(--primary); }
.sidebar-links li a::before { content: '→'; color: var(--primary); font-weight: 700; }
.sidebar-cta { background: var(--grad-primary); color: #fff; border: none; }
.sidebar-cta h3 { color: #fff; }
.sidebar-cta p { font-size: .85rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1rem; }
.sidebar-cta .btn { width: 100%; justify-content: center; background: #fff; color: var(--primary); }

/* ═══════════ ARTICLE PAGE ═══════════ */
.article-header { background: var(--surface); padding: 4rem 5vw 3rem; border-bottom: 1px solid var(--border); position: relative; z-index: 1; }
.article-breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--mid); margin-bottom: 1.5rem; }
.article-breadcrumb a { color: var(--mid); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--primary); }
.article-breadcrumb span { color: var(--border-strong); }
.article-tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); background: rgba(5,150,105,0.06); padding: .3rem .9rem; border-radius: 50px; margin-bottom: 1rem; border: 1px solid rgba(5,150,105,0.12); }
.article-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.1; max-width: 780px; }
.article-meta { display: flex; align-items: center; gap: 1.5rem; margin-top: 1.2rem; flex-wrap: wrap; }
.article-meta-item { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--mid); }
.article-meta-item strong { color: var(--ink); }
.article-body-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; max-width: 1100px; margin: 0 auto; padding: 4rem 5vw; align-items: start; position: relative; z-index: 1; }
.article-body h2 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-weight: 800; letter-spacing: -.03em; margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.1rem; font-weight: 700; margin: 2rem 0 .8rem; }
.article-body p { font-size: .97rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: 1.2rem; }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.article-body li { font-size: .95rem; color: var(--ink-soft); line-height: 1.75; }
.article-body strong { color: var(--ink); }
.article-callout {
  background: rgba(5,150,105,0.04); border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.2rem 1.5rem;
  margin: 1.5rem 0; font-size: .93rem; color: var(--ink-soft); line-height: 1.75;
}
.article-callout strong { color: var(--ink); }
.article-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1.2rem; }
.toc-widget { background: var(--surface); border-radius: var(--radius); border: 1.5px solid var(--border); padding: 1.5rem; }
.toc-widget h3 { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 1rem; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.toc-list li a { font-size: .84rem; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; display: flex; gap: .4rem; }
.toc-list li a:hover { color: var(--primary); }
.toc-list li a::before { content: '§'; color: var(--primary); font-size: .7rem; margin-top: .15rem; }
.article-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.article-tag-item { font-size: .75rem; font-weight: 600; color: var(--mid); background: var(--bg); padding: .3rem .9rem; border-radius: 50px; border: 1.5px solid var(--border); }
.related-articles { padding: 4rem 5vw; background: var(--surface); border-top: 1px solid var(--border); position: relative; z-index: 1; }
.related-articles h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 2rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .pricing-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 1rem; padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .price-card { min-width: 300px; scroll-snap-align: center; flex-shrink: 0; }
  .why-layout { grid-template-columns: 1fr; }
  .blog-main-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .article-body-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .seo-inner { grid-template-columns: 1fr; }
  .seo-card { position: static; }
  .seo-landing-grid { grid-template-columns: 1fr; }
  .seo-edu-inner { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-row span:last-child { display: none; }
  .compare-header span:last-child { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right {
    display: none;
  }
  .pos-mockup { transform: none; padding: 1.2rem; }
  .pos-mockup:hover { transform: translateY(-2px); }
  .fbadge { display: none; }
  .pos-item { padding: .5rem .7rem; }
  .pos-methods { gap: .3rem; }
  .pos-method { font-size: .65rem; padding: .4rem; }

  h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; min-height: 48px; }

  .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .blog-article-card { grid-template-columns: 1fr; }
  .blog-article-thumb { height: 120px; }
  .related-grid { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; min-height: 48px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { flex-direction: column; overflow-x: visible; }
  .price-card { min-width: unset; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 3rem 5vw; }
  .stat-item strong { font-size: 2rem; }
}

@media (max-width: 480px) {
  section { padding: 4rem 5vw; }
}

/* Touch targets — coarse pointer devices */
@media (pointer: coarse) {
  .faq-q { min-height: 52px; padding: 1rem 0; }
  .filter-btn { min-height: 44px; padding: .6rem 1.2rem; }
  .plan-btn { min-height: 48px; padding: 1rem; }
  .pos-cobrar { min-height: 48px; }
  nav ul li a { min-height: 44px; display: flex; align-items: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
