/* ============================================================
   DCARUS TECNOLOGIA — style.css
   ============================================================ */

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

:root {
  --bg:        #080b14;
  --bg-2:      #0d1120;
  --bg-3:      #111827;
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.14);
  --text:      #e2e8f0;
  --text-muted:#94a3b8;
  --accent:    #6366f1;
  --accent-2:  #8b5cf6;
  --accent-3:  #06b6d4;
  --green:     #22c55e;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 4px 32px rgba(0,0,0,0.4);
  --horade:    #2563eb;
  --horade-2:  #60a5fa;
  --horade-3:  #93c5fd;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

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

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 50px; border: none;
  cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(99,102,241,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99,102,241,0.55);
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-primary.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 50px;
  border: 1px solid var(--border-2); cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.25); }

.btn-nav {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-weight: 600; font-size: 0.875rem;
  padding: 10px 22px; border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 2px 12px rgba(99,102,241,0.35);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(99,102,241,0.5); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; font-weight: 600;
  padding: 14px 28px; border-radius: 50px; transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp svg { width: 20px; height: 20px; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  z-index: 1100;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 36px rgba(37,211,102,0.55);
  filter: brightness(1.03);
}

/* ── LABELS & SECTION HEADERS ── */
.section-label {
  display: inline-block;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  color: #a5b4fc; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: #f1f5f9; margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.navbar.scrolled {
  background: rgba(8,11,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; gap: 3px;
  color: #f1f5f9; letter-spacing: -0.02em;
}
.logo-d {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-tag {
  font-size: 0.6rem; font-weight: 500; color: var(--text-muted);
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  padding: 2px 7px; border-radius: 4px; align-self: flex-start; margin-top: 2px;
  letter-spacing: 0.05em;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); animation: orbFloat 8s ease-in-out infinite;
  will-change: transform;
}
.orb-1 { width: 500px; height: 500px; background: rgba(99,102,241,0.18); top: -150px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 350px; height: 350px; background: rgba(139,92,246,0.15); bottom: -50px; left: -80px; animation-delay: -3s; }
.orb-3 { width: 250px; height: 250px; background: rgba(6,182,212,0.1); top: 40%; left: 40%; animation-delay: -6s; }
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.25);
  color: #a5b4fc; font-size: 0.85rem; font-weight: 500;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  color: #f8fafc; margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.15rem; color: var(--text-muted); max-width: 560px;
  margin-bottom: 36px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700; color: #f1f5f9; line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border-2); }
/* ── Hero Visual (lado direito) ── */
.hero-visual { position: relative; }

.hero-code-window {
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.code-window-bar {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.3); padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.cw-dot { width: 10px; height: 10px; border-radius: 50%; }
.cw-red    { background: #ff5f57; }
.cw-yellow { background: #febc2e; }
.cw-green  { background: #28c840; }
.cw-tab {
  font-size: 0.72rem; color: var(--text-muted);
  padding: 4px 12px; border-radius: 6px;
  margin-left: 4px;
}
.cw-tab.active {
  background: rgba(255,255,255,0.08); color: var(--text);
}
.code-body { padding: 20px; font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.82rem; line-height: 1.8; }
.code-line { display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.code-line.highlight {
  background: rgba(99,102,241,0.08);
  margin: 0 -20px; padding: 2px 20px;
  border-left: 2px solid var(--accent);
}
.ln { color: rgba(255,255,255,0.15); width: 24px; text-align: right; margin-right: 16px; user-select: none; flex-shrink: 0; }
.kw { color: #c084fc; }
.fn { color: #67e8f9; }
.cl { color: #fbbf24; }
.st { color: #86efac; }
.cm { color: #6b7280; font-style: italic; }
.code-cursor {
  display: inline-block; width: 2px; height: 16px;
  background: var(--accent); margin-left: 4px;
  animation: blink 1s step-end infinite; vertical-align: middle;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* Terminal */
.hero-terminal {
  position: absolute; bottom: -24px; right: -16px; width: 300px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(16px);
  border: 1px solid var(--border-2); border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  animation: floatCard 6s ease-in-out infinite; animation-delay: -1s;
  will-change: transform;
}
.terminal-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; font-size: 0.7rem; color: var(--text-muted);
  background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}
.terminal-header svg { color: var(--green); }
.terminal-body {
  padding: 14px; font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.72rem; line-height: 1.8;
}
.term-line { color: var(--text-muted); }
.term-prompt { color: var(--accent); margin-right: 6px; }
.term-success { color: var(--green); }
.term-url { color: var(--accent-3); }

/* Floating service badges */
.hero-float {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(13,17,32,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border-2); border-radius: 12px;
  padding: 10px 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  will-change: transform;
}
.hero-float svg { color: var(--accent); flex-shrink: 0; }
.hero-float span { font-size: 0.82rem; font-weight: 500; color: var(--text); }
.hf-1 {
  top: -10px; right: 20px;
  animation: floatCard 5s ease-in-out infinite;
}
.hf-2 {
  top: 50%; left: -32px;
  animation: floatCard 5s ease-in-out infinite; animation-delay: -1.8s;
}
.hf-3 {
  bottom: 56px; left: 20px;
  animation: floatCard 5s ease-in-out infinite; animation-delay: -3.5s;
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SOBRE
   ============================================================ */
/* ── Fundos alternados de seção ── */
.sec-dark  { background: var(--bg); }
.sec-light { background: var(--bg-2); }

.sobre { padding: 100px 0; }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.sobre-visual { position: relative; height: 480px; }
.sobre-card-main {
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 36px;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 280px; box-shadow: var(--shadow);
  text-align: center;
}
.card-icon-wrap {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.card-icon-wrap svg { width: 28px; height: 28px; color: #fff; }
.sobre-card-main h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.sobre-card-main p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.mini-stats { display: flex; gap: 16px; justify-content: center; }
.mini-stats span {
  font-size: 0.75rem; color: var(--text-muted);
  background: rgba(255,255,255,0.05); padding: 6px 12px; border-radius: 8px;
}
.mini-stats b { color: #a5b4fc; }
.sobre-card-float {
  position: absolute; background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius-sm); padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 500; color: var(--text);
  box-shadow: var(--shadow);
  animation: floatCard 4s ease-in-out infinite;
  will-change: transform;
}
.sobre-card-float svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.card-float-1 { top: 60px; left: 0; animation-delay: 0s; }
.card-float-2 { bottom: 60px; right: 0; animation-delay: -1.5s; }
.card-float-3 { top: 50%; right: -20px; transform: translateY(-50%); animation-delay: -3s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.card-float-3 { animation-name: floatCard3; }
@keyframes floatCard3 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 12px)); }
}
.sobre-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.sobre-list { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.sobre-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); font-size: 0.95rem;
}
.sobre-list li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos { padding: 100px 0; }
.servicos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; cursor: default;
}
.service-card::before {
  content: attr(data-index);
  position: absolute; top: 20px; right: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem; font-weight: 800;
  color: rgba(255,255,255,0.03); line-height: 1;
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--border-2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(99,102,241,0.15);
}
.service-card.featured {
  background: linear-gradient(145deg, rgba(99,102,241,0.12), rgba(139,92,246,0.08));
  border-color: rgba(99,102,241,0.35);
  box-shadow: 0 8px 40px rgba(99,102,241,0.15);
}
.featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; color: #a5b4fc; }
.service-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; color: #f1f5f9; }
.service-card > p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 18px; }
.service-card ul { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.service-card ul li {
  color: var(--text-muted); font-size: 0.85rem;
  padding-left: 16px; position: relative;
}
.service-card ul li::before {
  content: '–'; position: absolute; left: 0; color: var(--accent);
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #a5b4fc; font-size: 0.875rem; font-weight: 500;
  transition: gap 0.2s;
}
.service-link svg { width: 16px; height: 16px; }
.service-link:hover { gap: 10px; }

.service-card-hosting {
  background: linear-gradient(145deg, rgba(6,182,212,0.08) 0%, rgba(99,102,241,0.06) 100%);
  border-color: rgba(6,182,212,0.25);
}
.service-card-hosting:hover {
  border-color: rgba(6,182,212,0.45);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(6,182,212,0.15);
}
.service-icon-hosting { background: rgba(6,182,212,0.1); border-color: rgba(6,182,212,0.25); }
.service-icon-hosting svg { color: #67e8f9; }
.service-link-hosting { color: #67e8f9; }

/* ============================================================
   PRODUTOS
   ============================================================ */
.produtos { padding: 100px 0; }

.product-showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}

/* ── Tela mockup ── */
.product-visual { position: relative; }

.product-screen {
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
}
.product-screen-bar {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04); padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.screen-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.screen-url {
  margin-left: 8px; font-size: 0.72rem; color: var(--text-muted);
  background: rgba(255,255,255,0.05); padding: 3px 12px; border-radius: 6px;
}
.product-screen-body { display: flex; height: 360px; }

/* sidebar */
.mock-sidebar {
  width: 52px; background: rgba(0,0,0,0.2);
  border-right: 1px solid var(--border);
  padding: 16px 10px; display: flex; flex-direction: column; gap: 10px;
}
.mock-logo-block {
  width: 32px; height: 32px; border-radius: 8px; margin-bottom: 8px;
  background: linear-gradient(135deg, var(--horade), var(--horade-2));
}
.mock-nav-item {
  width: 32px; height: 7px; border-radius: 4px;
  background: rgba(255,255,255,0.08);
}
.active-nav { background: rgba(37,99,235,0.5); }

/* main content */
.mock-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.mock-header-row { display: flex; justify-content: space-between; align-items: center; }
.mock-title-block { width: 110px; height: 10px; border-radius: 5px; background: rgba(255,255,255,0.15); }
.mock-btn-block {
  width: 72px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, var(--horade), var(--horade-2));
  opacity: 0.85;
}

/* stat cards */
.mock-stats-row { display: flex; gap: 8px; }
.mock-stat-card {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px; display: flex; flex-direction: column; gap: 5px;
}
.mock-stat-num { height: 14px; border-radius: 4px; width: 55px; }
.mock-stat-label { height: 6px; border-radius: 3px; width: 70%; background: rgba(255,255,255,0.06); }
.horade-accent  { background: linear-gradient(90deg, var(--horade), var(--horade-2)); }
.horade-accent2 { background: linear-gradient(90deg, #6366f1, #8b5cf6); }
.horade-accent3 { background: linear-gradient(90deg, #22c55e, #16a34a); }

/* calendar */
.mock-calendar {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px; flex: 1;
}
.mock-cal-header { width: 80px; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.1); margin-bottom: 10px; }
.mock-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.mock-cal-cell {
  height: 20px; border-radius: 4px; background: rgba(255,255,255,0.05);
}
.active-cell { background: linear-gradient(135deg, var(--horade), var(--horade-2)); opacity: 0.75; }

/* queue list */
.mock-queue-row { display: flex; flex-direction: column; gap: 6px; }
.mock-queue-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 7px; padding: 7px 10px;
}
.mock-queue-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--horade), var(--horade-2));
  flex-shrink: 0;
}
.av2 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.av3 { background: linear-gradient(135deg, #22c55e, #0ea5e9); }
.mock-queue-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mock-queue-name { width: 80px; height: 7px; border-radius: 3px; background: rgba(255,255,255,0.12); }
.mock-queue-time { width: 50px; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.06); }
.mock-queue-badge { width: 40px; height: 16px; border-radius: 20px; }
.badge-waiting { background: rgba(251,191,36,0.25); border: 1px solid rgba(251,191,36,0.4); }
.badge-active  { background: rgba(37,99,235,0.3);   border: 1px solid rgba(96,165,250,0.5); }
.badge-done    { background: rgba(34,197,94,0.2);   border: 1px solid rgba(34,197,94,0.4); }

/* floating badges */
.product-float {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(13,17,32,0.9); backdrop-filter: blur(12px);
  border: 1px solid var(--border-2); border-radius: 12px;
  padding: 12px 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.product-float svg { color: var(--horade); flex-shrink: 0; }
.product-float strong { display: block; font-size: 0.85rem; color: #f1f5f9; line-height: 1.3; }
.product-float span  { font-size: 0.75rem; color: var(--text-muted); }
.pf-1 {
  bottom: -20px; left: -24px;
  animation: floatCard 5s ease-in-out infinite;
  will-change: transform;
}
.pf-2 {
  top: 40px; right: -28px;
  animation: floatCard 5s ease-in-out infinite; animation-delay: -2.5s;
  will-change: transform;
}

/* ── Info lado direito ── */
.product-logo-wrap {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.product-logo-icon {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--horade), var(--horade-2));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}
.product-logo-icon svg { color: #fff; }
.product-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem; font-weight: 800; color: #f8fafc;
  background: linear-gradient(135deg, var(--horade), var(--horade-2), var(--horade-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.product-url {
  font-size: 0.82rem; color: var(--text-muted);
  background: rgba(37,99,235,0.1); border: 1px solid rgba(96,165,250,0.25);
  padding: 3px 10px; border-radius: 20px; display: inline-block; margin-top: 4px;
}

.product-tagline {
  font-size: 1.15rem; color: var(--text); line-height: 1.6; margin-bottom: 12px;
}
.product-tagline strong { color: var(--horade-2); }
.product-desc {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px;
}

.product-features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px;
}
.product-feat {
  display: flex; align-items: flex-start; gap: 12px;
}
.product-feat-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(37,99,235,0.1); border: 1px solid rgba(96,165,250,0.2);
  display: flex; align-items: center; justify-content: center;
}
.product-feat-icon svg { width: 16px; height: 16px; color: var(--horade); }
.product-feat strong { display: block; font-size: 0.85rem; color: #f1f5f9; margin-bottom: 2px; }
.product-feat span   { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

.product-segments {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.product-segments span {
  font-size: 0.78rem; font-weight: 500; color: var(--horade-3);
  background: rgba(37,99,235,0.08); border: 1px solid rgba(96,165,250,0.2);
  padding: 5px 14px; border-radius: 50px;
}

.product-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.product-actions .btn-primary {
  background: linear-gradient(135deg, var(--horade), var(--horade-2));
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}
.product-actions .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.55);
}

/* ============================================================
   PROCESSO
   ============================================================ */
.processo { padding: 80px 0; }
.processo-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 180px; max-width: 220px;
  text-align: center; padding: 24px 16px;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 16px;
}
.step-content h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: #f1f5f9; }
.step-content p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.step-arrow {
  display: flex; align-items: center; padding-top: 24px; color: var(--text-muted);
}
.step-arrow svg { width: 20px; height: 20px; }

/* ============================================================
   PORTFÓLIO
   ============================================================ */
.portfolio { padding: 100px 0; }
.portfolio-filters {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; margin-bottom: 48px;
}
.filter-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.875rem; font-weight: 500;
  padding: 8px 20px; border-radius: 50px; cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--border-2); color: var(--text); background: rgba(255,255,255,0.04); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent; color: #fff;
  box-shadow: 0 2px 12px rgba(99,102,241,0.4);
}
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.portfolio-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  border-color: var(--border-2);
}
.portfolio-card.hidden { display: none; }
.portfolio-img {
  position: relative; height: 220px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.portfolio-mock svg { width: 80px; height: 60px; }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.btn-portfolio {
  background: #fff; color: #0d1120; font-weight: 600; font-size: 0.875rem;
  padding: 10px 22px; border-radius: 50px; transition: transform 0.2s;
}
.btn-portfolio:hover { transform: scale(1.05); }
.portfolio-info { padding: 24px; }
.portfolio-tag {
  display: inline-block; font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #a5b4fc; background: rgba(99,102,241,0.1);
  padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
}
.portfolio-info h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; color: #f1f5f9; }
.portfolio-info p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.portfolio-techs { display: flex; gap: 8px; flex-wrap: wrap; }
.portfolio-techs span {
  font-size: 0.75rem; color: var(--text-muted);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 6px;
}

/* ============================================================
   HOSPEDAGEM
   ============================================================ */
.hospedagem { padding: 100px 0; }

.hosting-features {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 56px;
}
.hosting-feat {
  display: flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,0.07); border: 1px solid rgba(99,102,241,0.18);
  border-radius: 50px; padding: 10px 20px;
  color: #c4b5fd; font-size: 0.875rem; font-weight: 500;
}
.hosting-feat svg { width: 16px; height: 16px; color: #a5b4fc; flex-shrink: 0; }

.hosting-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  align-items: start;
}

.hosting-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
}
.hosting-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hosting-card.featured {
  background: linear-gradient(160deg, rgba(99,102,241,0.14) 0%, rgba(139,92,246,0.08) 100%);
  border-color: rgba(99,102,241,0.4);
  box-shadow: 0 8px 48px rgba(99,102,241,0.2);
  transform: translateY(-8px);
}
.hosting-card.featured:hover { transform: translateY(-14px); }

.hosting-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(99,102,241,0.5);
}

.hosting-plan-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #a5b4fc; margin-bottom: 16px;
}

.hosting-price {
  display: flex; align-items: flex-start; gap: 4px;
  margin-bottom: 12px; line-height: 1;
}
.price-currency {
  font-size: 1.1rem; font-weight: 600; color: var(--text-muted);
  margin-top: 6px;
}
.price-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem; font-weight: 800; color: #f1f5f9; line-height: 1;
}
.price-period {
  font-size: 0.85rem; color: var(--text-muted);
  align-self: flex-end; margin-bottom: 4px;
}

.hosting-desc {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 24px; min-height: 48px;
}

.hosting-list {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px; flex: 1;
}
.hosting-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: var(--text);
}
.hosting-list li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.hosting-list li.disabled { color: var(--text-muted); }
.hosting-list li.disabled svg { color: rgba(255,255,255,0.15); }

.btn-hosting {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-2);
  color: var(--text); font-weight: 600; font-size: 0.9rem;
  padding: 13px 20px; border-radius: 50px; text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer;
}
.btn-hosting:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.btn-hosting-featured {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 20px rgba(99,102,241,0.45);
}
.btn-hosting-featured:hover {
  box-shadow: 0 8px 32px rgba(99,102,241,0.6);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

.hosting-note {
  display: flex; align-items: flex-start; gap: 8px; justify-content: center;
  margin-top: 40px; color: var(--text-muted); font-size: 0.825rem;
  text-align: center; max-width: 680px; margin-left: auto; margin-right: auto;
  line-height: 1.65;
}
.hosting-note svg { flex-shrink: 0; margin-top: 2px; color: #a5b4fc; }

/* ============================================================
   TECNOLOGIAS
   ============================================================ */
.tecnologias { padding: 80px 0; overflow: hidden; }
.tech-track-wrapper { overflow: hidden; position: relative; }
.tech-track-wrapper::before,
.tech-track-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.sec-dark  .tech-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.sec-dark  .tech-track-wrapper::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
.sec-light .tech-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-2), transparent); }
.sec-light .tech-track-wrapper::after  { right: 0; background: linear-gradient(to left,  var(--bg-2), transparent); }
.tech-track {
  display: flex; gap: 14px; width: max-content;
  animation: techScroll 30s linear infinite;
  will-change: transform;
}
@keyframes techScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tech-track:hover { animation-play-state: paused; }
.tech-pill {
  background: var(--bg-3); border: 1px solid var(--border-2);
  color: var(--text-muted); font-size: 0.875rem; font-weight: 500;
  padding: 12px 24px; border-radius: 50px; white-space: nowrap;
  cursor: default; transition: all 0.2s;
}
.tech-pill:hover { color: var(--text); border-color: rgba(99,102,241,0.4); background: rgba(99,102,241,0.08); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos { padding: 100px 0; }
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.depo-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.depo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.depo-card.featured {
  background: linear-gradient(145deg, rgba(99,102,241,0.1), rgba(139,92,246,0.06));
  border-color: rgba(99,102,241,0.3);
}
.depo-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.depo-card > p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; }
.depo-author { display: flex; align-items: center; gap: 14px; }
.depo-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; color: #fff;
}
.depo-author strong { display: block; font-size: 0.9rem; color: #f1f5f9; }
.depo-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-bg-orb {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; margin-bottom: 16px; color: #f8fafc;
}
.cta-inner p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTATO
   ============================================================ */
.contato { padding: 100px 0; }
.contato-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contato-info p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; color: #a5b4fc; }
.contact-item strong { display: block; font-size: 0.9rem; color: #f1f5f9; margin-bottom: 2px; }
.contact-item span { font-size: 0.875rem; color: var(--text-muted); }
.contact-item a {
  font-size: 0.875rem; color: var(--text-muted);
  transition: color 0.2s ease;
}
.contact-item a:hover { color: #25d366; }
.contato-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  padding: 14px 16px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(99,102,241,0.5);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group option { background: var(--bg-3); }
.input-phone-wrap {
  display: flex; align-items: stretch;
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input-phone-wrap:focus-within {
  border-color: rgba(99,102,241,0.5);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.phone-prefix {
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
  background: rgba(99,102,241,0.08);
  border-right: 1px solid var(--border-2);
  color: #a5b4fc; font-size: 0.875rem; font-weight: 600;
  white-space: nowrap; user-select: none;
}
.phone-prefix svg { flex-shrink: 0; fill: #a5b4fc; }
.input-phone-wrap input[type="tel"] {
  background: transparent; border: none; border-radius: 0;
  flex: 1; padding: 14px 16px;
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.95rem;
  outline: none; box-shadow: none;
}
.input-phone-wrap input[type="tel"]::placeholder { color: var(--text-muted); }

.form-success {
  display: none; align-items: center; gap: 10px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-sm); padding: 14px 18px;
  color: #86efac; font-size: 0.9rem;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-success.show { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; max-width: 240px; }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.2s;
}
.social-links a:hover { color: var(--text); background: rgba(99,102,241,0.1); border-color: rgba(99,102,241,0.3); }
.social-links svg { width: 18px; height: 18px; }
.footer-links h4 { font-size: 0.875rem; font-weight: 600; color: #f1f5f9; margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links ul li a { color: var(--text-muted); font-size: 0.875rem; transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 24px 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { color: var(--text-muted); font-size: 0.825rem; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; gap: 60px; }
  .sobre-visual { height: 360px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contato-grid { grid-template-columns: 1fr; gap: 60px; }
  .hosting-grid { grid-template-columns: repeat(2, 1fr); }
  .hosting-card.featured { transform: none; }
  .hosting-card.featured:hover { transform: translateY(-6px); }
  .product-showcase { grid-template-columns: 1fr; gap: 48px; }
  .pf-1 { left: 0; }
  .pf-2 { right: 0; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,11,20,0.97); backdrop-filter: blur(20px);
    padding: 100px 32px 40px; gap: 8px; z-index: 999;
  }
  .nav-links.open a { font-size: 1.5rem; padding: 12px 0; }
  .servicos-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hosting-grid { grid-template-columns: 1fr; }
  .product-features-grid { grid-template-columns: 1fr; }
  .depo-grid { grid-template-columns: 1fr; }
  .processo-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; padding-left: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 40px; }
  .hero-terminal { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 16px; }
  .hf-1, .hf-2, .hf-3 { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}

/* ============================================================
   ACESSIBILIDADE — redução de movimento
   ============================================================ */
@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; }
  .orb, .sobre-card-float, .tech-track, .pf-1, .pf-2,
  .hero-scroll, .badge-dot { will-change: auto; }
}
