
/* ═══════════════════════════════════════════════════════════════
   WORKLOOP — DESIGN SYSTEM 2026
   SEO + GEO otimizado | Mobile-first | Acessível | Performático
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg-primary: #f5efe6;
  --bg-secondary: #ece3d5;
  --bg-tertiary: #e0d4c0;
  --bg-card: rgba(255, 255, 255, 0.72);
  --bg-glass: rgba(255, 255, 255, 0.55);
  --ink-primary: #2b2115;
  --ink-secondary: #3d3226;
  --ink-muted: #6b5d4c;
  --ink-dim: #8a7d6b;
  --accent: #d97706;
  --accent-light: #c05e00;
  --accent-glow: rgba(217, 119, 6, 0.22);
  --accent-soft: rgba(217, 119, 6, 0.1);
  --border-subtle: rgba(60, 45, 25, 0.1);
  --border-medium: rgba(60, 45, 25, 0.16);
  --border-strong: rgba(60, 45, 25, 0.24);
  --gradient-hero: linear-gradient(135deg, #fbf5ea 0%, #f5efe6 45%, #f8efdf 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 55%, #b45309 100%);
  --shadow-sm: 0 1px 2px rgba(60,45,25,0.08);
  --shadow-md: 0 4px 24px rgba(60,45,25,0.12);
  --shadow-lg: 0 12px 48px rgba(60,45,25,0.16);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--ink-primary);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-tertiary); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; padding: 12px 24px; border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600; font-size: 0.875rem; z-index: 10000; text-decoration: none;
  transition: top var(--transition-base);
}
.skip-link:focus { top: 0; outline: 3px solid var(--accent-light); outline-offset: 2px; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow), 0 0 60px rgba(217,119,6,0.1); }
  50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(217,119,6,0.2); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes particle-float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
  25% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
  50% { transform: translateY(-10px) translateX(-10px); opacity: 0.6; }
  75% { transform: translateY(-30px) translateX(5px); opacity: 0.9; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Header */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #f7f3e8;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
header.scrolled { background: #f7f3e8; box-shadow: 0 4px 30px rgba(60,45,25,0.12); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 14px 24px; gap: 20px;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: var(--ink-primary);
  letter-spacing: -0.03em; transition: transform var(--transition-base);
}
.logo:hover { transform: scale(1.03); }
.logo img { height: 40px; width: auto; display: block; object-fit: contain; filter: brightness(1.1); }
.logo-text { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-text span { -webkit-text-fill-color: var(--ink-primary); background: none; }

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  color: var(--ink-muted); text-decoration: none; font-size: 0.875rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-full);
  transition: all var(--transition-fast); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%) scaleX(0);
  width: 60%; height: 2px; background: var(--accent); border-radius: var(--radius-full);
  transition: transform var(--transition-base);
}
.nav-links a:hover { color: var(--ink-primary); background: rgba(255,255,255,0.04); }
.nav-links a:hover::after { transform: translateX(-50%) scaleX(1); }

.hamburger {
  display: none; background: var(--gradient-gold); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: var(--radius-md); font-size: 1.3rem;
  cursor: pointer; transition: all var(--transition-base); box-shadow: 0 4px 15px rgba(217,119,6,0.3);
}
.hamburger:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(217,119,6,0.5); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gradient-gold); color: #1c1308; border: none;
  padding: 12px 28px; border-radius: var(--radius-full);
  font-size: 0.9rem; font-weight: 700; text-decoration: none;
  cursor: pointer; transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(217,119,6,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(217,119,6,0.45); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-outline {
  background: transparent; color: var(--ink-primary);
  border: 1.5px solid var(--border-medium); box-shadow: none;
}
.btn-outline:hover { border-color: var(--accent); background: var(--accent-soft); }

/* Sidebar */
.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: 320px; max-width: 85vw;
  background: rgba(250, 246, 240, 0.97); backdrop-filter: blur(30px);
  border-right: 1px solid var(--border-subtle); z-index: 2000;
  transform: translateX(-100%); transition: transform var(--transition-slow);
  overflow-y: auto; padding: 24px;
}
.sidebar.open { transform: translateX(0); }
.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border-subtle);
}
.sidebar-header h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.close-btn {
  background: var(--bg-tertiary); border: 1px solid var(--border-subtle); color: var(--ink-muted);
  width: 36px; height: 36px; border-radius: var(--radius-md); font-size: 1.1rem; cursor: pointer;
}
.sidebar-content a {
  display: block; color: var(--ink-muted); text-decoration: none;
  padding: 12px 16px; border-radius: var(--radius-md); font-size: 0.92rem; font-weight: 500;
  transition: all var(--transition-fast); margin-bottom: 4px;
}
.sidebar-content a:hover { color: var(--ink-primary); background: rgba(255,255,255,0.04); padding-left: 22px; }
.sidebar-content .sec {
  color: var(--accent-light); font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; margin: 20px 0 10px; padding-left: 16px;
}
.sidebar-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 1999; opacity: 0; pointer-events: none; transition: opacity var(--transition-base);
}
.sidebar-backdrop.show { opacity: 1; pointer-events: auto; }

/* Hero */
.hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; padding: 120px 24px 80px;
  background: var(--gradient-hero);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-particle {
  position: absolute; width: 4px; height: 4px; background: var(--accent);
  border-radius: 50%; opacity: 0.3; animation: particle-float 8s ease-in-out infinite; filter: blur(1px);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; animation: float 10s ease-in-out infinite; }
.hero-orb-1 { width: 500px; height: 500px; background: rgba(217,119,6,0.08); top: -10%; right: -5%; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(245,158,11,0.06); bottom: -10%; left: -5%; animation-delay: -3s; }
.hero-orb-3 { width: 300px; height: 300px; background: rgba(217,119,6,0.05); top: 40%; left: 30%; animation-delay: -6s; }

.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content { position: relative; z-index: 2; max-width: 880px; text-align: center; animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-light); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 24px;
  padding: 8px 18px; background: var(--accent-soft); border-radius: var(--radius-full);
  border: 1px solid rgba(217,119,6,0.15);
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.04em; margin-bottom: 28px;
}
.hero-title .gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200% auto;
  animation: gradient-shift 4s ease infinite;
}
.hero-sub { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--ink-muted); max-width: 620px; margin: 0 auto 40px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-social {
  display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 48px;
}
.hero-social a {
  color: var(--ink-dim); text-decoration: none; font-size: 0.85rem; font-weight: 500;
  transition: all var(--transition-fast); display: inline-flex; align-items: center; gap: 6px;
}
.hero-social a:hover { color: var(--accent-light); transform: translateY(-2px); }
.hero-social a::before { content: '•'; color: var(--border-medium); margin-right: 4px; }
.hero-social a:first-child::before { content: none; }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--ink-dim); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-indicator::after {
  content: ''; width: 1px; height: 40px; background: linear-gradient(to bottom, var(--accent), transparent);
  animation: float 2s ease-in-out infinite;
}

/* Sections base */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }
section:nth-child(even) { background: var(--bg-secondary); }

.section-eyebrow {
  display: inline-block; color: var(--accent-light); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 16px; text-align: center;
}
.section-sub { font-size: 1.05rem; color: var(--ink-muted); max-width: 600px; margin: 0 auto 56px; text-align: center; line-height: 1.7; }

/* Roteador */
.roteador-section { padding: 0 24px; margin-top: -60px; position: relative; z-index: 10; }
.banner-roteador {
  background: linear-gradient(145deg, rgba(255, 250, 240, 0.98) 0%, rgba(250, 240, 224, 0.98) 50%, rgba(255, 250, 240, 0.98) 100%);
  border-radius: var(--radius-xl); padding: 64px 48px; text-align: center;
  border: 1px solid rgba(217,119,6,0.22); position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(60,45,25,0.14), inset 0 1px 0 rgba(255,255,255,0.6);
}
.banner-roteador .section-eyebrow { color: #c05e00; }
.banner-roteador h2 { color: #2b2115; }
.banner-roteador .section-sub { color: #6b5d4c; }
.rota-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.rota {
  background: rgba(255,255,255,0.7); border: 1px solid rgba(60,45,25,0.14);
  border-radius: var(--radius-lg); padding: 32px 24px; text-decoration: none; color: var(--ink-primary);
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  transition: all var(--transition-base); position: relative; overflow: hidden;
}
.rota:hover { transform: translateY(-6px); background: #ffffff; border-color: rgba(217,119,6,0.3); box-shadow: 0 20px 50px rgba(60,45,25,0.16); }
.rota-ic {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--accent-soft); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px; border: 1px solid rgba(217,119,6,0.1);
}
.rota h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.rota p { color: var(--ink-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.rota-go {
  margin-top: auto; padding-top: 20px; color: var(--accent-light); font-weight: 700;
  font-size: 1.3rem; transition: all var(--transition-base); display: flex; align-items: center; gap: 8px;
}
.rota-go::after { content: '→'; transition: transform var(--transition-base); }
.rota:hover .rota-go::after { transform: translateX(6px); }

/* Sobre */
.sobre-section { text-align: center; }
.sobre-section p { font-size: 1.1rem; color: var(--ink-muted); max-width: 720px; margin: 0 auto; line-height: 1.8; }
.sobre-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 700px; margin: 48px auto 0; }
.stat-number {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-label { color: var(--ink-dim); font-size: 0.85rem; margin-top: 8px; font-weight: 500; }

/* Cards & Grids */
.benefits, .steps, .dupla { display: grid; gap: 20px; }
.benefits { grid-template-columns: repeat(3, 1fr); }
.steps { grid-template-columns: repeat(3, 1fr); }
.dupla { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }

.card, .step {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition-base); position: relative; overflow: hidden;
}
.card:hover, .step:hover { transform: translateY(-4px); border-color: var(--border-medium); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
.card h3, .step h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.card p, .step p { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.7; margin: 0; text-align: left; }
.card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--accent-soft); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 16px; border: 1px solid rgba(217,119,6,0.1);
}
.step-number {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
  color: rgba(217,119,6,0.15); line-height: 1; position: absolute; top: 16px; right: 20px;
}

/* Produtos */
.produto-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-xl);
  padding: 40px; transition: all var(--transition-base); position: relative; overflow: hidden;
}
.produto-card:hover { transform: translateY(-6px); border-color: rgba(217,119,6,0.2); box-shadow: var(--shadow-glow); }
.produto-card .badge {
  display: inline-block; background: var(--accent-soft); color: var(--accent-light);
  padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; border: 1px solid rgba(217,119,6,0.15);
}
.produto-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.produto-card p { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }

/* Content Grid */
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.content-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition-base);
  text-decoration: none; color: inherit; display: block;
}
.content-card:hover { transform: translateY(-4px); border-color: var(--border-medium); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.content-card-img { height: 200px; background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary)); display: flex; align-items: center; justify-content: center; font-size: 2rem; overflow: hidden; }
.content-card-body { padding: 24px; }
.content-card-body h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.content-card-body p { color: var(--ink-muted); font-size: 0.85rem; line-height: 1.6; margin: 0; }
.content-card-body .meta { color: var(--ink-dim); font-size: 0.75rem; margin-top: 12px; font-weight: 500; }

/* AI Visibility Index */
.index-section {
  background: linear-gradient(135deg, rgba(217,119,6,0.05) 0%, transparent 50%, rgba(217,119,6,0.03) 100%);
  border: 1px solid rgba(217,119,6,0.1); border-radius: var(--radius-xl);
  padding: 56px 48px; text-align: center; position: relative; overflow: hidden;
}
.index-section h2 { margin-bottom: 12px; }
.index-section p { margin-bottom: 28px; }

/* FAQ */
.faq-section { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden;
}
.faq-item[open] { border-color: rgba(217,119,6,0.2); }
.faq-item summary {
  font-weight: 600; font-size: 1rem; cursor: pointer; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--accent-light); transition: transform var(--transition-base); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; color: var(--ink-muted); font-size: 0.95rem; line-height: 1.7; text-align: left; }

/* CTA */
.cta-section { text-align: center; padding: 100px 24px; background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(28,19,8,0.8) 100%); position: relative; overflow: hidden; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--ink-muted); margin-bottom: 32px; font-size: 1.1rem; }

/* Footer */
.wl-footer {
  background: #16100a; border-top: 1px solid var(--border-subtle); padding: 88px 24px 40px;
  color: #a89f92;
  width: 100%; max-width: 100%; overflow: hidden; box-sizing: border-box;
}
.wl-footer .fg { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 64px; max-width: 1160px; margin: 0 auto; }
.wl-footer .fb { max-width: 340px; }
.wl-footer .bname { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #faf7f2; margin-bottom: 20px; }
.wl-footer .bname span { color: #f59e0b; }
.wl-footer .fb p { color: #a89f92; font-size: 0.92rem; line-height: 1.8; margin-bottom: 28px; }
.wl-footer .fc h4 { color: #e9e3da; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 28px; font-weight: 700; }
.wl-footer .fl { display: block; color: #a89f92; text-decoration: none; margin-bottom: 18px; font-size: 0.92rem; line-height: 1.4; }
.wl-footer .fl:hover { color: #f59e0b; transform: translateX(4px); }
.wl-footer .social-row { display: flex; gap: 14px; margin-top: 24px; }
.wl-footer .social-row a {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: #2a211a; border: 1px solid rgba(255,245,230,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #a89f92; text-decoration: none; font-size: 0.88rem;
}
.wl-footer .social-row a:hover { background: rgba(217,119,6,0.12); border-color: var(--accent); color: #f59e0b; transform: translateY(-3px); }
.wl-footer .bott {
  border-top: 1px solid rgba(255,245,230,0.08); margin-top: 64px; padding-top: 32px;
  display: flex; justify-content: space-between; max-width: 1160px; margin-left: auto; margin-right: auto;
  font-size: 0.82rem; color: #7a7166; flex-wrap: wrap; gap: 16px; line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; }
  .fg { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero-section { padding: 100px 20px 60px; min-height: auto; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .banner-roteador { padding: 40px 24px; }
  .rota-grid { grid-template-columns: 1fr; }
  .benefits, .steps, .dupla, .content-grid { grid-template-columns: 1fr; }
  .sobre-stats { grid-template-columns: 1fr; gap: 24px; }
  .fg { grid-template-columns: 1fr; gap: 32px; width: 100%; min-width: 0; }
  .wl-footer .fg, .wl-footer .fb, .wl-footer .fc { width: 100%; max-width: 100%; min-width: 0; }
  .bott { flex-direction: column; text-align: center; width: 100%; }
  .index-section { padding: 40px 24px; }
  .produto-card { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .nav { padding: 12px 16px; }
  .container { padding: 0 16px; }
  .card, .step, .rota { padding: 24px 20px; }
  .banner-roteador { padding: 32px 20px; border-radius: var(--radius-lg); }
}
@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; }
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--radius-sm);
}
