/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #060606;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === VARIABLES === */
:root {
  --bg:        #060606;
  --bg-2:      #080808;
  --bg-3:      #0a0a0a;
  --border:    rgba(255,255,255,0.06);
  --border-h:  rgba(255,255,255,0.12);
  --muted:     rgba(255,255,255,0.35);
  --faint:     rgba(255,255,255,0.20);
}

/* === UTILITIES === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .container { padding: 0 32px; } }

.section { padding: 128px 0; position: relative; }
.bg-secondary { background: var(--bg-2); }

.eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.section-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

.muted { color: var(--muted); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: rgba(255,255,255,0.9); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.75); }

.btn-lg { padding: 16px 32px; }

/* === ANIMATIONS === */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.fade-in       { animation: fade-in-up 0.8s ease forwards; }
.fade-in-delay { animation: fade-in-up 0.8s ease 0.3s both; }

/* Scroll-triggered */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === NAVBAR === */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(6,6,6,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) { .nav-container { padding: 0 32px; } }

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.75; }

.nav-links { display: none; gap: 32px; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: rgba(255,255,255,0.8); }

.nav-cta { display: none; align-items: center; gap: 12px; }
@media (min-width: 768px) { .nav-cta { display: flex; } }

.nav-link-plain {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link-plain:hover { color: rgba(255,255,255,0.7); }

.nav-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: rgba(255,255,255,0.5);
  width: 36px; height: 36px;
}
@media (min-width: 768px) { .nav-mobile-btn { display: none; } }

.hamburger {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.2s;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 100%; height: 2px;
  background: currentColor;
  left: 0;
  transition: transform 0.25s, top 0.25s;
}
.hamburger::before { top: -6px; }
.hamburger::after  { top:  6px; }

.nav-mobile-btn.open .hamburger            { background: transparent; }
.nav-mobile-btn.open .hamburger::before    { transform: rotate(45deg); top: 0; }
.nav-mobile-btn.open .hamburger::after     { transform: rotate(-45deg); top: 0; }

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 40;
  background: rgba(6,6,6,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }

.mobile-link {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.mobile-link:hover { color: #fff; }
.mobile-cta { text-align: center; margin-top: 8px; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,255,255,0.02), transparent);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
  gap: 64px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    padding: 120px 32px 80px;
  }
}

.hero-content { flex: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #44dd88;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6.5rem);
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 32px;
}
.hero-muted { color: var(--muted); }

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 48px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-mockup {
  display: none;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 1024px) { .hero-mockup { display: block; } }

.mockup-window {
  width: 460px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(12px);
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-bar .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: block;
}
.mockup-url {
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  margin-left: 8px;
}

.mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup-row {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
}
.mockup-row.wide   { width: 66%; }
.mockup-row.medium { width: 50%; }
.mockup-row.short  { width: 33%; }

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 6px 0;
}
.mockup-card {
  height: 56px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
}

.mockup-glow {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(80,80,200,0.1);
  filter: blur(60px);
  pointer-events: none;
}

/* === TRUST BAR === */
.trustbar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
}

.marquee-track { overflow: hidden; }
.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-reverse .marquee-content { animation: marquee-reverse 22s linear infinite; }

.brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  padding: 0 16px;
  white-space: nowrap;
}
.brand-sep {
  color: rgba(255,255,255,0.08);
  font-size: 13px;
  padding: 0 4px;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}
.service-card:hover {
  border-color: var(--border-h);
  background: rgba(255,255,255,0.015);
}
.service-card:hover .service-detail { opacity: 1; transform: translateY(0); }
.service-card:hover .service-icon   { border-color: rgba(255,255,255,0.15); }

.service-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}
.service-icon::before {
  content: '';
  width: 14px; height: 14px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 3px;
}

.service-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
}
.service-card > p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
.service-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}

/* Shopify specialty card */
.service-card--shopify {
  grid-column: 1 / -1;
  border-color: rgba(150, 191, 72, 0.15);
  background: rgba(150, 191, 72, 0.03);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card--shopify::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(150,191,72,0.4), transparent);
}
.service-card--shopify:hover {
  border-color: rgba(150, 191, 72, 0.28);
  background: rgba(150, 191, 72, 0.05);
}
.service-card--shopify h3 { color: rgba(255,255,255,0.85); }

.shopify-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(150,191,72,0.8);
  border: 1px solid rgba(150,191,72,0.25);
  border-radius: 100px;
  padding: 3px 10px;
}

.service-icon--shopify {
  border-color: rgba(150,191,72,0.2);
}
.service-icon--shopify::before {
  border-color: rgba(150,191,72,0.6);
}
.service-card--shopify:hover .service-icon--shopify {
  border-color: rgba(150,191,72,0.4);
}

/* === STATS === */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  padding: 40px 32px;
  text-align: center;
  background: var(--bg-2);
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
}

/* === DIFFERENTIALS === */
.diff-section { overflow: hidden; }
.diff-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(255,255,255,0.018), transparent);
  pointer-events: none;
}

.diff-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
@media (min-width: 1024px) { .diff-layout { grid-template-columns: 360px 1fr; gap: 80px; } }

.diff-left { position: sticky; top: 112px; }
.diff-left .section-title { margin-bottom: 24px; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }

.diff-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  transition: border-color 0.3s, background 0.3s;
}
.diff-card:hover { border-color: var(--border-h); background: rgba(255,255,255,0.015); }
.diff-card:hover .diff-icon { border-color: rgba(255,255,255,0.15); }

.diff-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.diff-icon::before {
  content: '';
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.diff-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
  line-height: 1.3;
}
.diff-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

/* === PROCESS === */
.process-list {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  left: 27px; top: 56px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.06), transparent);
  display: none;
}
@media (min-width: 768px) { .process-list::before { display: block; } }

.process-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-bottom: 48px;
  align-items: start;
}
.process-item:last-child { padding-bottom: 0; }
@media (min-width: 768px) { .process-item { grid-template-columns: 56px 1fr; gap: 24px; } }

.process-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, color 0.3s;
}
.process-item:hover .process-circle { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); }

.process-content {
  padding-top: 12px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.process-item:last-child .process-content { border-bottom: none; padding-bottom: 0; }

.process-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.process-item:hover .process-content h3 { color: #fff; }
.process-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

/* === PORTFOLIO === */
.portfolio-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .portfolio-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.portfolio-filters { display: flex; flex-wrap: wrap; gap: 8px; flex-shrink: 0; }

.filter-btn {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: rgba(255,255,255,0.35);
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.15); }
.filter-btn.active { background: #fff; color: #000; border-color: #fff; }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px)  { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}
.portfolio-card:hover { border-color: var(--border-h); }
.portfolio-card.hidden { display: none; }

.portfolio-mockup {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--from) 0%, var(--via) 50%, var(--from) 100%);
  overflow: hidden;
  padding: 16px;
}

.pm-window {
  border-radius: 10px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 10px;
  position: relative;
  z-index: 1;
}
.pm-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.pm-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.08); display: block; }
.pm-url-bar {
  flex: 1; height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
  margin-left: 8px;
}
.pm-content { display: flex; flex-direction: column; gap: 6px; }
.pm-row { height: 7px; border-radius: 3px; background: rgba(255,255,255,0.07); }
.pm-row.w66 { width: 66%; }
.pm-row.w50 { width: 50%; }

.pm-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; margin: 4px 0; }
.pm-cards div { height: 32px; border-radius: 5px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.04); }

.pm-glow {
  position: absolute;
  bottom: 8px; right: 16px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(28px);
  opacity: 0.3;
}

.portfolio-info {
  padding: 20px;
  background: var(--bg-3);
  transition: background 0.3s;
}
.portfolio-card:hover .portfolio-info { background: #0c0c0c; }

.portfolio-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.portfolio-title-row h3 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  transition: color 0.3s;
}
.portfolio-card:hover .portfolio-title-row h3 { color: #fff; }

.arrow-icon {
  font-size: 14px;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  margin-left: 8px;
  transition: color 0.3s;
}
.portfolio-card:hover .arrow-icon { color: rgba(255,255,255,0.5); }

.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.portfolio-tags span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 100px;
}

/* === PORTFOLIO — CARDS COM IMAGEM REAL === */
.pm-browser {
  position: absolute;
  inset: 10px 10px 0;
  border-radius: 8px 8px 0 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  background: rgba(15,15,15,0.9);
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.pm-browser .pm-bar {
  padding: 8px 12px;
  margin-bottom: 0;
  background: rgba(20,20,20,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.pm-screen {
  flex: 1;
  overflow: hidden;
  background: #0f0f0f;
}

.pm-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .pm-screen img { transform: scale(1.05); }

/* Dashboard mockup (REFEL SaaS — app com login) */
.pm-screen.pm-saas { display: flex; }

.pm-saas-sidebar {
  width: 48px;
  background: rgba(255,255,255,0.025);
  border-right: 1px solid rgba(255,255,255,0.04);
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.pm-saas-logo {
  width: 100%;
  height: 7px;
  background: rgba(255,255,255,0.22);
  border-radius: 2px;
  margin-bottom: 4px;
}

.pm-saas-nav {
  width: 100%;
  height: 5px;
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
}

.pm-saas-nav.on { background: rgba(99,102,241,0.65); }

.pm-saas-main {
  flex: 1;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pm-saas-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 3px;
}

.pm-saas-stat {
  height: 28px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
}

.pm-saas-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  flex: 1;
}

.pm-saas-table {
  border-radius: 4px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pm-saas-row {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
}

.pm-saas-bar {
  height: 3px;
  border-radius: 2px;
}

/* ---- Mockups CSS únicos por tipo de projeto ---- */

/* Corporate (Nexora) */
.pm-screen.pm-corp { display: flex; flex-direction: column; background: #0d0d16; }
.pm-corp-nav { height: 20px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; padding: 0 8px; gap: 6px; flex-shrink: 0; }
.pm-corp-logo { width: 24px; height: 5px; border-radius: 2px; background: rgba(255,255,255,0.4); }
.pm-corp-link { width: 18px; height: 3px; border-radius: 1px; background: rgba(255,255,255,0.1); }
.pm-corp-hero { flex: 1; padding: 10px 8px 4px; display: flex; flex-direction: column; gap: 5px; }
.pm-corp-h1 { height: 8px; width: 80%; border-radius: 3px; background: rgba(255,255,255,0.55); }
.pm-corp-h2 { height: 8px; width: 62%; border-radius: 3px; background: rgba(85,85,255,0.5); }
.pm-corp-sub { height: 3px; width: 52%; border-radius: 1px; background: rgba(255,255,255,0.14); margin-top: 3px; }
.pm-corp-btn { width: 48px; height: 13px; border-radius: 3px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); margin-top: 3px; }
.pm-corp-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; padding: 0 8px 8px; flex-shrink: 0; }
.pm-corp-card { height: 22px; border-radius: 3px; background: rgba(255,255,255,0.03); border: 1px solid rgba(85,85,255,0.12); }

/* Kanban (FlowSaaS) */
.pm-screen.pm-kanban { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; padding: 6px; background: #080f08; }
.pm-kanban-col { background: rgba(255,255,255,0.03); border-radius: 4px; border: 1px solid rgba(255,255,255,0.05); padding: 4px; display: flex; flex-direction: column; gap: 3px; }
.pm-kb-header { height: 5px; border-radius: 2px; margin-bottom: 2px; flex-shrink: 0; }
.pm-kb-card { height: 15px; border-radius: 3px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05); flex-shrink: 0; }
.pm-kb-card.accent { background: rgba(68,221,136,0.08); border-color: rgba(68,221,136,0.14); }

/* E-commerce (Vertex Store) */
.pm-screen.pm-shop { background: #120808; display: flex; flex-direction: column; }
.pm-shop-nav { height: 18px; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.05); flex-shrink: 0; display: flex; align-items: center; justify-content: center; gap: 10px; }
.pm-shop-nav span { width: 18px; height: 3px; border-radius: 1px; background: rgba(255,255,255,0.1); }
.pm-shop-grid { flex: 1; display: grid; grid-template-columns: repeat(2,1fr); gap: 4px; padding: 5px; }
.pm-shop-item { border-radius: 4px; background: rgba(255,255,255,0.03); border: 1px solid rgba(238,68,68,0.08); overflow: hidden; display: flex; flex-direction: column; }
.pm-shop-img { flex: 1; background: rgba(238,68,68,0.07); }
.pm-shop-info { padding: 3px 4px; display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.pm-shop-name  { height: 3px; width: 70%; border-radius: 1px; background: rgba(255,255,255,0.18); }
.pm-shop-price { height: 3px; width: 40%; border-radius: 1px; background: rgba(238,68,68,0.45); }

/* Analytics / Bar chart (DataPulse) */
.pm-screen.pm-analytics { background: #0f0e08; display: flex; flex-direction: column; gap: 5px; padding: 6px; }
.pm-analytics-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; flex-shrink: 0; }
.pm-analytics-stat { height: 20px; border-radius: 3px; background: rgba(255,170,51,0.07); border: 1px solid rgba(255,170,51,0.14); }
.pm-analytics-chart { flex: 1; display: flex; align-items: flex-end; gap: 3px; }
.pm-analytics-bar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(255,170,51,0.3); min-height: 4px; }

/* AI chat (Lumen) */
.pm-screen.pm-ai { background: #0a0812; display: flex; flex-direction: column; padding: 6px; gap: 4px; }
.pm-ai-msg { border-radius: 6px; padding: 4px 7px; max-width: 82%; display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.pm-ai-msg.bot  { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); align-self: flex-start; }
.pm-ai-msg.user { background: rgba(153,68,255,0.14); border: 1px solid rgba(153,68,255,0.18); align-self: flex-end; }
.pm-ai-line { height: 3px; border-radius: 1px; background: rgba(255,255,255,0.22); }
.pm-ai-line.long  { width: 90%; }
.pm-ai-line.med   { width: 68%; }
.pm-ai-line.short { width: 48%; }
.pm-ai-input { height: 15px; border-radius: 6px; background: rgba(255,255,255,0.04); border: 1px solid rgba(153,68,255,0.18); margin-top: auto; flex-shrink: 0; }

/* Data table (Datory) */
.pm-screen.pm-data { background: #081012; display: flex; flex-direction: column; padding: 5px 6px; gap: 3px; }
.pm-data-thead { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 4px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.pm-data-th { height: 4px; border-radius: 1px; background: rgba(51,221,255,0.35); }
.pm-data-row { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 4px; align-items: center; flex-shrink: 0; }
.pm-data-td { height: 3px; border-radius: 1px; background: rgba(255,255,255,0.1); }
.pm-data-prog { background: rgba(255,255,255,0.04); border-radius: 2px; height: 4px; overflow: hidden; }
.pm-data-fill { height: 100%; border-radius: 2px; background: rgba(51,221,255,0.4); }

/* === TECHNOLOGIES === */
.tech-section {
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tech-fade-left, .tech-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 112px;
  z-index: 10;
  pointer-events: none;
}
.tech-fade-left  { left: 0;  background: linear-gradient(to right, var(--bg-2), transparent); }
.tech-fade-right { right: 0; background: linear-gradient(to left,  var(--bg-2), transparent); }

.tech-section .section-header { margin-bottom: 56px; }

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--bg-3);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  margin: 0 8px;
  cursor: default;
  transition: all 0.2s;
  flex-shrink: 0;
}
.tech-pill:hover { border-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.65); }

.tech-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* === TESTIMONIALS === */
.testimonials-section { overflow: hidden; position: relative; }
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(255,255,255,0.015), transparent);
  pointer-events: none;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) { .testimonials-layout { grid-template-columns: 320px 1fr; gap: 80px; } }

.testimonials-left .section-title { margin-bottom: 0; }

.carousel-item {
  display: none;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-3);
  padding: 40px;
  position: relative;
  overflow: hidden;
  animation: fade-in-up 0.35s ease;
}
.carousel-item.active { display: block; }

.quote-mark {
  position: absolute;
  top: 24px; right: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 100px;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  user-select: none;
  pointer-events: none;
}

.quote-text {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .quote-text { font-size: 18px; } }

.quote-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8); }
.author-role { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 2px; }

.carousel-controls { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.carousel-dots { display: flex; align-items: center; gap: 8px; }

.dot {
  height: 4px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.2);
  width: 6px;
  transition: all 0.3s;
  padding: 0;
}
.dot.active { width: 24px; background: #fff; }

.carousel-arrows { display: flex; gap: 8px; margin-left: auto; }
.arrow-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
.arrow-btn:hover { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }

/* === CTA === */
.cta-section {
  position: relative;
  padding: 144px 0;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(255,255,255,0.04), transparent);
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.012);
  filter: blur(120px);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.cta-trust span { font-size: 12px; color: rgba(255,255,255,0.25); }

/* === FOOTER === */
.footer { border-top: 1px solid var(--border); background: var(--bg); }
.footer > .container { padding-top: 64px; padding-bottom: 40px; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
@media (min-width: 1024px) { .footer-top { grid-template-columns: 280px 1fr; } }

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}
.footer-socials a:hover { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.12); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (min-width: 768px) { .footer-links { grid-template-columns: repeat(3, 1fr); } }

.footer-col { display: flex; flex-direction: column; }
.footer-col-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 20px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.65); }

.footer-newsletter {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 640px) {
  .footer-newsletter { flex-direction: row; align-items: center; justify-content: space-between; }
}

.newsletter-title { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.newsletter-desc  { font-size: 12px; color: rgba(255,255,255,0.25); }

.newsletter-form { display: flex; gap: 8px; width: 100%; }
@media (min-width: 640px) { .newsletter-form { width: auto; } }

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.2); }
.newsletter-form input:focus { border-color: var(--border-h); }

.newsletter-form button {
  padding: 10px 16px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.newsletter-form button:hover { background: rgba(255,255,255,0.9); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

.footer-bottom > div:first-child { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.4); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(37,211,102,0.5);
}
@media (max-width: 639px) { .whatsapp-float { bottom: 20px; right: 16px; width: 50px; height: 50px; } }

/* === LGPD COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 950;
  width: calc(100% - 48px);
  max-width: 700px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s;
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-content p {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  min-width: 200px;
}
.cookie-content p a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  padding: 8px 20px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}
.cookie-accept:hover { background: rgba(255,255,255,0.9); }
.cookie-deny {
  padding: 8px 16px;
  background: transparent;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-deny:hover { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.2); }
@media (max-width: 639px) {
  .cookie-banner { bottom: 16px; padding: 16px; }
  .cookie-content { gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-deny { flex: 1; text-align: center; }
}

/* === SKELETON LOADING — imagens do portfolio === */
@keyframes skeleton-shine {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.pm-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #111 25%, #1c1c1c 50%, #111 75%);
  background-size: 200% 100%;
  animation: skeleton-shine 1.4s infinite;
  z-index: 0;
  pointer-events: none;
}
.pm-screen { position: relative; }
.pm-screen img { position: relative; z-index: 1; }
.pm-screen.img-loaded::before { display: none; }

/* REFEL SaaS — fallback quando imagem não existe */
.pm-saas-broken { display: flex; align-items: center; justify-content: center; background: #0d0d0d; }
.pm-saas-broken img { display: none; }
.pm-saas-broken::after {
  content: 'REFEL SaaS';
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.12);
  text-transform: uppercase;
}

/* === MOBILE OVERRIDES (max-width: 639px) === */
@media (max-width: 639px) {
  /* Reduz padding excessivo das sections */
  .section            { padding: 72px 0; }
  .cta-section        { padding: 80px 0; }
  .hero-inner         { padding-top: 88px; padding-bottom: 48px; gap: 40px; }
  .section-header     { margin-bottom: 40px; }

  /* Stats bar compacto */
  .stat-item          { padding: 28px 20px; }
  .stat-number        { font-size: 36px; }

  /* Diferencias: aumenta espaço entre título e grid */
  .diff-left          { margin-bottom: 8px; }

  /* Processo: texto menor */
  .process-circle     { width: 44px; height: 44px; font-size: 11px; }

  /* Portfolio mockup um pouco mais alto em mobile p/ imagens */
  .portfolio-mockup   { height: 190px; }

  /* Portfolio header: filtros com scroll horizontal em vez de quebrar em linha */
  .portfolio-filters  { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .portfolio-filters::-webkit-scrollbar { display: none; }
  .filter-btn         { flex-shrink: 0; }

  /* CTA trust chips: gap menor */
  .cta-trust          { gap: 16px; }
  .cta-badge          { margin-bottom: 32px; }

  /* Botões large: full width em mobile */
  .hero-actions .btn-lg,
  .cta-actions  .btn-lg { width: 100%; justify-content: center; }
  .hero-actions         { flex-direction: column; align-items: stretch; }
  .cta-actions          { flex-direction: column; align-items: stretch; }

  /* Footer: gap menor entre colunas */
  .footer-top         { gap: 40px; margin-bottom: 40px; }
  .footer-links       { gap: 28px; }
}
