/* ==========================================================================
   VELORYN CONVERSION SYSTEM - DARK CORPORATE CSS
   ========================================================================== */

:root {
  /* Paleta de Engenharia */
  --bg-obsidian: #0B0C10;
  --surface-dark: #1A1C23;
  --text-pure: #FFFFFF;
  --text-mute: #A0AAB2;
  --accent-velocity: #2A62FF;
  --border-tech: rgba(42, 98, 255, 0.15);

  --bg-dark: var(--bg-obsidian);
  --bg-card: var(--surface-dark);
  --bg-input: #16181d;
  
  --text-main: var(--text-pure);
  --text-muted: var(--text-mute);
  
  --accent-blue: var(--accent-velocity);
  --accent-blue-hover: #1e52e8;
  --accent-blue-glow: var(--border-tech);
  
  --danger-red: #ff2a2a;
  --success-green: #00CC66;
  
  --border-subtle: var(--border-tech);
  --border-active: rgba(42, 98, 255, 0.35);
  
  --font-main: 'Inter', sans-serif;
  --transition-fast: 0.3s ease-in-out;
  --section-py: 100px;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #1e222a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-blue); }

::selection { background: var(--accent-blue); color: #fff; }
a { color: inherit; text-decoration: none; }

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3 { font-weight: 900; line-height: 1.15; letter-spacing: -0.03em; text-transform: uppercase; }
.highlight-blue { color: var(--accent-blue); }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-blue);
  margin-bottom: 16px;
  border: 1px solid var(--accent-blue);
  padding: 4px 12px;
}

.section-title { font-size: 2.5rem; margin-bottom: 16px; }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem; margin-bottom: 48px; max-width: 600px;
}

/* ==========================================================================
   NAVIGATION & LOGO FIX
   ========================================================================== */
.navbar {
  position: fixed; top: 0; width: 100%;
  background: rgba(5, 5, 7, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000; padding: 16px 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.navbar.scrolled {
  background: rgba(5, 5, 7, 0.98);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

.nav-logo {
  display: flex; align-items: center; text-decoration: none; color: #fff;
}

/* TRUQUE PARA A LOGO JPG (Fundo Branco com V Preto) NO DARK MODE */
.logo-img {
  height: 40px; 
  margin-right: 12px;
  /* Inverte as cores: V vira branco, fundo vira preto */
  filter: invert(1) contrast(1.2);
  /* O mix-blend-mode screen faz o preto (novo fundo) desaparecer */
  mix-blend-mode: screen; 
}

.logo-text { font-weight: 900; font-size: 1.25rem; letter-spacing: 2px; }

.nav-right { display: flex; align-items: center; gap: 24px; }

.trust-badge {
  font-size: 0.8rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
  padding: 6px 12px; border: 1px solid var(--border-subtle);
}

.nav-cta {
  background: transparent; color: #fff;
  border: 1px solid var(--border-subtle);
  padding: 8px 16px; text-decoration: none;
  font-size: 0.875rem; font-weight: 600;
  transition: var(--transition-fast);
}
.nav-cta:hover { border-color: var(--accent-blue); color: var(--accent-blue); }

/* ==========================================================================
   HERO SECTION (2 COLUNAS COM FORM)
   ========================================================================== */
.hero {
  padding: 140px 0 80px; position: relative;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden; min-height: 90vh; display: flex; align-items: center;
}

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

.hero-scan-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--accent-velocity);
  opacity: 0.1; animation: scanline 8s linear infinite; pointer-events: none; z-index: 1;
}

@keyframes scanline {
  0%   { top: 0; opacity: 0; }
  5%   { opacity: 0.1; }
  95%  { opacity: 0.1; }
  100% { top: 100%; opacity: 0; }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 2;
}

.hero-content { padding-right: 20px; }

.pre-headline {
  font-size: 0.875rem; color: var(--text-muted); margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
}
.pre-dot { width: 8px; height: 8px; background: var(--accent-blue); border-radius: 50%; }

.hero-headline { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 24px; }

.hero-subheadline {
  font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px;
  line-height: 1.75; max-width: 90%;
}
.hero-subheadline strong { color: var(--text-main); font-weight: 600; }

.hero-metrics {
  display: flex; align-items: center; gap: 0;
  padding: 20px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: 0;
}
.metric-item { display: flex; align-items: center; gap: 12px; flex: 1; justify-content: center;}
.metric-icon { font-size: 1.2rem; }
.metric-label { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; }
.metric-divider { width: 1px; height: 30px; background: var(--border-subtle); margin: 0 16px; }

/* ==========================================================================
   FORMULÁRIO NA HERO (Lado Direito)
   ========================================================================== */
.hero-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  padding: 40px; border-radius: 0;
  box-shadow: 8px 8px 0 var(--border-active);
  position: relative;
}

.hero-form-wrapper::before {
  content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 2px; background: var(--accent-blue);
  box-shadow: 0 0 12px var(--accent-blue);
}

.form-header { margin-bottom: 24px; text-align: center; }
.form-header h3 { font-size: 1.4rem; margin-bottom: 8px; }
.form-header p { font-size: 0.9rem; color: var(--text-muted); }

.capture-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }

.form-input, .form-select {
  width: 100%; padding: 14px; background: var(--bg-input);
  border: 1px solid var(--border-subtle); border-bottom: 2px solid var(--border-subtle); color: #fff;
  font-family: var(--font-main); font-size: 0.95rem;
  transition: var(--transition-fast); border-radius: 0;
}
.form-input:focus, .form-select:focus { outline: none; border-color: var(--border-subtle); border-bottom-color: var(--accent-blue); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b909a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer;
  appearance: none; -webkit-appearance: none;
}
.form-select option { background: var(--bg-input); color: var(--text-main); }

.input-prefix-wrapper { display: flex; }
.input-prefix {
  background: #222; padding: 0 14px; border: 1px solid var(--border-subtle); border-bottom: 2px solid var(--border-subtle);
  border-right: none; color: var(--text-muted); font-size: 0.85rem;
  font-weight: 600; display: flex; align-items: center; border-radius: 0;
}
.input-with-prefix { border-radius: 0; }

.form-checkbox-group { display: flex; align-items: flex-start; gap: 12px; font-size: 0.8rem; color: var(--text-muted); margin-top: 4px;}
.form-checkbox { position: absolute; opacity: 0; }
.checkbox-custom {
  width: 20px; height: 20px; border: 2px solid var(--border-subtle);
  background: var(--bg-input); flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center; transition: var(--transition-fast);
}
.checkbox-custom::after { content: '✓'; font-size: 12px; font-weight: 700; color: #fff; opacity: 0; }
.form-checkbox:checked + .checkbox-custom { background: var(--accent-blue); border-color: var(--accent-blue); }
.form-checkbox:checked + .checkbox-custom::after { opacity: 1; }
.checkbox-text { line-height: 1.5; font-size: 0.75rem;}
.form-link { color: var(--accent-blue); text-decoration: underline; }

.hero-proof-element {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(0, 204, 102, 0.05);
  border: 1px solid rgba(0, 204, 102, 0.15);
  border-radius: 0;
  padding: 16px;
}
.proof-score {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--success-green);
  line-height: 1;
}
.proof-text {
  display: flex;
  flex-direction: column;
}
.proof-text strong {
  font-size: 0.95rem;
  color: var(--text-main);
}
.proof-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--accent-blue); color: #fff;
  padding: 16px 32px; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  text-decoration: none; border: 1px solid var(--accent-blue); cursor: pointer;
  transition: all 0.2s ease; position: relative; overflow: hidden; border-radius: 0;
}
.btn-primary:hover { background: var(--bg-card); color: var(--accent-blue); box-shadow: 4px 4px 0 var(--accent-blue); transform: translate(-2px, -2px); }
.btn-full { width: 100%; padding: 18px; font-size: 1.1rem;}

/* ==========================================================================
   OUTRAS SEÇÕES (Contraste, Mecanismo, Oferta)
   ========================================================================== */
.contrast-section { padding: var(--section-py) 0; background: var(--bg-card); border-bottom: 1px solid var(--border-subtle); }
.comparison-table { border: 1px solid var(--border-subtle); background: var(--bg-dark); }
.comparison-header { display: flex; border-bottom: 1px solid var(--border-subtle); background: #000; }
.comp-col { flex: 1; padding: 24px; text-align: center; font-weight: 700; }
.col-standard { color: var(--text-muted); }
.col-veloryn { color: var(--accent-blue); background: rgba(0,85,255,0.04); }
.col-vs { flex: 0 0 60px; display: flex; align-items: center; justify-content: center; }
.vs-circle { background: #1a1a1a; padding: 8px; font-size: 0.7rem; border-radius: 50%; color: var(--text-muted); border: 1px solid var(--border-subtle);}
.comp-row { display: flex; border-bottom: 1px solid rgba(255,255,255,0.03); transition: background 0.2s ease; position: relative; }
.comp-row:hover { background: rgba(255,255,255,0.02); }
.comp-row:hover::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent-blue); }
.comp-cell { flex: 1; padding: 24px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--border-tech); box-shadow: none; margin: -1px 0 0 -1px; }
.cell-standard { background: rgba(255,255,255,0.01); }
.cell-veloryn { background: rgba(0, 85, 255, 0.03); }
.cell-vs { flex: 0 0 60px; background: #080808; display: flex; align-items: center; justify-content: center; }
.cell-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.cell-value { font-size: 0.95rem; color: var(--text-main); line-height: 1.5; }
.cell-value strong { color: var(--accent-blue); }

.mechanism-section { padding: var(--section-py) 0; background: var(--bg-dark); }
.mechanism-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; background: transparent; border: none; }
.mech-card { background: var(--bg-card); padding: 40px 32px; border: 1px solid var(--border-tech); box-shadow: none; transition: all 0.2s ease; }
.mech-card:hover { border-color: var(--accent-velocity); transform: translate(-4px, -4px); box-shadow: 6px 6px 0 var(--accent-velocity); }
.mech-number { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); margin-bottom: 16px; border-bottom: 2px solid var(--accent-blue); display: inline-block; padding-bottom: 4px; }
.mech-icon { font-size: 1.75rem; margin-bottom: 16px; display: block; }
.mech-title { font-size: 1.15rem; font-weight: 700; color: var(--text-main); margin-bottom: 12px; }
.mech-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

.offer-section { padding: var(--section-py) 0; background: var(--bg-card); border-top: 1px solid var(--border-subtle); }
.process-timeline { display: flex; flex-direction: column; max-width: 700px; margin: 0 auto; }
.process-step { display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: flex-start; }
.step-indicator { display: flex; flex-direction: column; align-items: center; }
.step-number { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-dark); border: 2px solid var(--accent-blue); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 900; color: var(--accent-blue); z-index: 1; }
.step-line { width: 2px; min-height: 56px; flex: 1; background: var(--border-subtle); margin: 0 auto; }
.step-line-last { background: transparent; }
.step-content { padding: 8px 0 40px; }
.step-title { font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.step-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.step-desc strong { color: var(--text-main); font-weight: 600; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #000; border-top: 1px solid var(--border-subtle); padding: 48px 0 32px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
/* Mesma técnica pra logo no footer */
.footer-logo { height: 28px; filter: invert(1); mix-blend-mode: screen; opacity: 0.7;}
.footer-brand-name { font-size: 1rem; font-weight: 900; letter-spacing: 0.12em; color: var(--text-main); display: block; text-align: left;}
.footer-brand-tagline { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.04em; }
.footer-legal { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.footer-link { font-size: 0.8rem; color: var(--text-muted); transition: color var(--transition-fast); }
.footer-link:hover { color: var(--accent-blue); }
.footer-sep { color: var(--border-subtle); }
.footer-copy p { font-size: 0.75rem; color: var(--text-muted); }
.footer-dsgvo { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.7rem; color: var(--text-muted); margin-top: 4px;}

/* ==========================================================================
   SUCCESS OVERLAY
   ========================================================================== */
.success-overlay { position: fixed; inset: 0; background: rgba(5, 5, 7, 0.92); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.success-overlay.visible { opacity: 1; pointer-events: all; }
.success-box { background: var(--bg-card); border: 1px solid var(--border-active); padding: 48px; text-align: center; max-width: 420px; width: 90%; border-radius: 0; box-shadow: 12px 12px 0 var(--border-active); transform: scale(0.92); transition: transform 0.2s ease; }
.success-overlay.visible .success-box { transform: scale(1); }
.success-icon { font-size: 3rem; margin-bottom: 16px; display: block; color: var(--success-green); }
.success-title { font-size: 1.5rem; font-weight: 800; color: var(--text-main); margin-bottom: 12px; }
.success-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { padding-right: 0; text-align: center; }
  .pre-headline { justify-content: center; }
  .hero-metrics { justify-content: center; }
  .mechanism-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-py: 72px; }
  .hero { padding: 120px 0 60px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-metrics { flex-direction: column; align-items: stretch; gap: 12px;}
  .metric-divider { display: none; }
  .comparison-header { display: none; }
  .comp-row { flex-direction: column; }
  .cell-vs { display: none; }
  .mechanism-grid { grid-template-columns: 1fr; gap: 0; }
  .nav-right .trust-badge { display: none; }
}
@media (max-width: 480px) {
  .hero-form-wrapper { padding: 32px 24px; }
  .form-header h3 { font-size: 1.25rem; }
}

/* ==========================================================================
   TRUST BANNER (3D MARQUEE)
   ========================================================================== */
.tech-partners-banner {
  background: #000;
  border-bottom: 1px solid var(--border-subtle);
  padding: 48px 0;
  text-align: center;
  overflow: hidden;
}
.tech-partners-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  font-weight: 600;
}
.marquee-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  /* Mask to fade out edges smoothly */
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  perspective: 1000px;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: scrollMarquee 20s linear infinite;
  transform: rotateX(10deg);
  transform-style: preserve-3d;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-shrink: 0;
}
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}
@keyframes scrollMarquee {
  0% { transform: rotateX(10deg) translateX(0); }
  /* Translate exactly the width of one group plus its gap */
  100% { transform: rotateX(10deg) translateX(calc(-100% - 80px)); }
}
.tech-logo-img {
  height: 36px;
  object-fit: contain;
  /* Metálico/Prata no fundo escuro para não brigar com as cores da Veloryn */
  filter: grayscale(1) brightness(0.6) contrast(1.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateZ(0); 
  will-change: transform, filter;
}
.tech-logo-img:hover {
  filter: grayscale(0) brightness(1) contrast(1);
  transform: translateZ(40px) scale(1.15);
}
@media (max-width: 768px) {
  .tech-partners-banner { padding: 32px 0; }
  .marquee-content, .marquee-group { gap: 40px; }
  .marquee-content { animation-duration: 15s; }
  .tech-logo-img { height: 28px; }
  @keyframes scrollMarquee {
    0% { transform: rotateX(10deg) translateX(0); }
    100% { transform: rotateX(10deg) translateX(calc(-100% - 40px)); }
  }
}

/* ==========================================================================
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   ========================================================================== */
.legal-page-section {
  padding: 160px 0 80px;
  background: var(--bg-dark);
  min-height: 80vh;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
}
.legal-container h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 8px;
}
.legal-container h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text-main);
}
.legal-container p, .legal-container ul, .legal-container address {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: normal;
}
.legal-container ul {
  padding-left: 24px;
}
.legal-container a {
  color: var(--accent-blue);
  text-decoration: underline;
}

/* ==========================================================================
   BANNER DE PARCEIROS TECNOLÓGICOS (MARQUEE INFINITO - OVERRIDE)
   ========================================================================== */
.tech-partners-banner {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0;
  overflow: hidden;
  position: relative;
}

.tech-partners-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  /* Reduzi a máscara para 5% nas bordas, deixando mais logos visíveis */
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 5%, rgba(0,0,0,1) 95%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 5%, rgba(0,0,0,1) 95%, rgba(0,0,0,0) 100%);
  perspective: none;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  gap: 80px;
  /* Animação linear de 20 segundos */
  animation: scrollX 20s linear infinite;
  transform: none;
}

.marquee-group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  gap: 80px;
}

.tech-logo-img {
  height: 64px;
  max-width: 220px;
  object-fit: contain;
  /* Modo B2B padrão: Cinza prateado, sem inverter a matriz de cores */
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.tech-logo-img:hover {
  /* Retorna às cores originais exatas (Verde da Wise, Laranja da Cloudflare, etc) */
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

/* Tratamento específico apenas para a Stripe (images.png) para que fique branca e não suma no fundo escuro */
img[src*="images.png"] {
  filter: brightness(0) invert(1) opacity(0.6);
}
img[src*="images.png"]:hover {
  filter: brightness(0) invert(1) opacity(1);
  transform: scale(1.05);
}

/* Pause a animação se o usuário passar o mouse */
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scrollX {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 60px)); }
}

/* Ajuste do formulário na Hero Section (Layout lado a lado) */
.hero-container {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-form-wrapper {
  flex: 0 0 450px;
  background: var(--bg-card);
  padding: 32px;
  border-radius: 0;
  box-shadow: 6px 6px 0 var(--border-active);
  border: 1px solid var(--border-subtle);
}

.form-header h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-header p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }

@media (max-width: 992px) {
  .hero-container { flex-direction: column; }
  .hero-form-wrapper { width: 100%; flex: 1; }
  .hero-content { text-align: center; }
  .hero-metrics { justify-content: center; }
}
