@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;700;800&display=swap');

:root {
  /* Colors */
  --color-primary: #FFFFFF; /* Deep Navy Blue */
  --color-primary-light: #F8FAFC;
  --color-primary-lighter: #F1F5F9;
  --color-secondary: #0070F3; /* Electric Blue */
  --color-accent: #0ea5e9; /* Cyan */
  --color-white: #020617;
  --color-gray-100: #0f172a;
  --color-gray-300: #334155;
  --color-gray-400: #64748b;
  --color-gray-800: #E2E8F0;
  --color-black: #F8FAFC;
  
  /* Institutional backgrounds */
  --bg-dark-sutil: #F1F5F9;
  --bg-light-sutil: #F8FAFC;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-accent: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.15) 0%, rgba(10, 25, 47, 0) 70%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px rgba(0, 229, 255, 0.3);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-primary);
  color: var(--color-gray-300);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

.w-84 { width: 84%; }
.w-65 { width: 65%; }

.btn-whatsapp-outline {
  border-color: #27C93F;
  color: #27C93F;
}
.btn-whatsapp-outline:hover {
  background: rgba(39, 201, 63, 0.1);
  box-shadow: 0 0 20px rgba(39, 201, 63, 0.3);
}

.icon-spacing-right {
  margin-right: 8px;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Base Layout & Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-accent { color: var(--color-accent); }
.text-secondary { color: var(--color-secondary); }
.text-muted { color: var(--color-gray-400); }
.text-start { text-align: left; }
.text-center { text-align: center; }

.bg-accent-light { background: rgba(0, 229, 255, 0.1); }
.bg-secondary-light { background: rgba(0, 112, 243, 0.1); }
.bg-dark-sutil { background: var(--bg-dark-sutil); }
.bg-light-sutil { background: var(--bg-light-sutil); }

.bg-gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.d-none { display: none !important; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.flex-column { flex-direction: column; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

.fw-bold { font-weight: bold; }
.fs-sm { font-size: 0.875rem; }

.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--color-secondary);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 112, 243, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
  color: #FFFFFF;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-danger {
  background: rgba(255, 95, 86, 0.1);
  border: 1px solid #FF5F56;
  color: #FF5F56;
}

.btn-danger:hover {
  background: #FF5F56;
  color: #FFFFFF;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Typography Headings */
.section-padding {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: var(--color-gray-400);
}

/* =========================================
   COMPONENTS MIGRADOS DO INDEX.HTML
   ========================================= */

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1.5rem 0;
}

header.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: scale(2.5);
  transform-origin: left center;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-accent);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  color: var(--color-white);
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(0, 112, 243, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0, 229, 255, 0.08) 0%, transparent 40%),
    linear-gradient(rgba(0, 112, 243, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 112, 243, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-position: 0 0, 0 0, -1px -1px, -1px -1px;
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, var(--color-primary), transparent);
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--color-gray-300);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

/* Dashboard Visual (Hero) */
.hero-visual {
  position: relative;
  perspective: 1000px;
}

.dashboard-mockup {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 112, 243, 0.2);
  transform: rotateY(-5deg) rotateX(5deg);
  backdrop-filter: blur(10px);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1rem;
}

.dash-header-bar {
  width: 40%;
  height: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
}

.dash-header-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }
.dot-white { background: rgba(255,255,255,0.2); }

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.dash-card {
  background: #F8FAFC;
  border-radius: var(--radius-sm);
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.dash-icon { margin-bottom: 8px; }
.dash-label { font-size: 0.8rem; color: var(--color-gray-400); }
.dash-value { font-size: 1.5rem; font-weight: bold; }

.dash-bar {
  height: 8px;
  background: var(--color-primary-light);
  border-radius: 4px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
}

.fill-accent { background: var(--gradient-accent); }
.fill-secondary { background: var(--color-secondary); }

.dash-flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-flex-gap {
  display: flex;
  gap: 8px;
}

.dash-flow-container {
  height: 60px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.dash-flow-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-flow-line {
  height: 2px;
  width: 30px;
  background: var(--color-accent);
  position: relative;
}

.dash-flow-dot {
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.floating-element {
  position: absolute;
  background: var(--color-primary-lighter);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(8px);
}

.float-1 { top: -20px; right: -20px; z-index: 2; }
.float-2 { bottom: 30px; left: -30px; z-index: 2; }

.float-icon-bg {
  padding: 8px;
  border-radius: 8px;
}

.float-title { font-size: 0.8rem; font-weight: bold; }
.float-subtitle { font-size: 0.7rem; color: var(--color-gray-400); }

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}


.solution-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0,112,243,0), rgba(0,112,243,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all 0.4s ease;
  pointer-events: none;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 112, 243, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.solution-card:hover::before {
  background: linear-gradient(135deg, rgba(0, 112, 243, 0.4), rgba(0, 229, 255, 0.1));
}

.solution-card:hover .solution-icon {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 112, 243, 0.2);
}

.solution-icon {
  transition: all 0.3s ease;
}

/* old */
.solution-card {
  position: relative;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
}

.solution-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 112, 243, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
  border: 1px solid rgba(0, 112, 243, 0.2);
}

.solution-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Timeline Section */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(0, 229, 255, 0.2);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  width: 100%;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  background: #FFFFFF;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-accent);
  z-index: 2;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.timeline-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  position: absolute;
  top: -20px;
  right: 20px;
  color: rgba(0, 0, 0, 0.03);
  z-index: -1;
}

.timeline-item:nth-child(even) .timeline-number {
  right: auto;
  left: 20px;
}

/* Institutional Section */
.institutional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.inst-paragraph {
  font-size: 1.125rem;
  color: var(--color-gray-300);
  margin-bottom: 2rem;
}

.inst-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #FFFFFF;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: all var(--transition-fast);
}

.highlight-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 112, 243, 0.2);
}

.highlight-title { font-size: 1.1rem; }
.highlight-desc { font-size: 0.9rem; color: var(--color-gray-400); }

.inst-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.inst-visual-bg {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.inst-visual-pattern {
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
}

.inst-code-box {
  padding: 2rem;
  border-radius: var(--radius-lg);
  z-index: 1;
  max-width: 80%;
}

.code-snippet {
  font-family: monospace;
  color: var(--color-accent);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
}

/* Contact Grid & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  padding-right: 2rem;
}

.contact-desc {
  font-size: 1.1rem;
  color: var(--color-gray-300);
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: var(--color-accent);
  background: rgba(0, 229, 255, 0.1);
  padding: 0.75rem;
  border-radius: 50%;
}

.contact-item-title {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-item-desc {
  color: var(--color-gray-400);
}

.contact-form-container {
  position: relative;
}

.contact-form {
  background: #FFFFFF;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  width: 100%;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-gray-300);
}

.form-control {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: inherit;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-feedback {
  background: #FFFFFF;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-accent);
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.feedback-icon {
  color: #27C93F;
  margin-bottom: 1rem;
}
.feedback-icon svg { width: 64px; height: 64px; }

/* Footer */
footer {
  background: var(--color-black);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-icon-img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer-desc {
  color: var(--color-gray-400);
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--color-gray-400);
  font-size: 0.875rem;
}

/* =========================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================= */

@media (max-width: 992px) {
  .hero-grid, .institutional-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content h1 {
    font-size: 2.75rem;
  }
  .timeline::before {
    left: 30px;
  }
  .timeline-icon {
    left: 30px;
  }
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: auto;
  }
  .timeline-item:nth-child(even) {
    flex-direction: row;
  }
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section-padding { padding: 4rem 0; }
  .section-title { font-size: 2rem; }
  .container { padding: 0 1.5rem; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active { display: flex; }
  .header-actions { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-btns { flex-direction: column; }
  
  /* Corrige campos lado a lado do form no mobile */
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* TECH AESTHETIC ADDITIONS */

@keyframes dataFlow {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(0, 112, 243, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 112, 243, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 112, 243, 0); }
}

.dash-flow-line {
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.05);
}

.dash-flow-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-secondary);
  animation: dataFlow 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 12px;
  background: rgba(39, 201, 63, 0.1);
  color: #27C93F;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27C93F;
  animation: pulseGlow 2s infinite;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-gray-100) !important;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(0, 112, 243, 0.15) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px, 30px 30px;
}

.cta-section * {
  z-index: 2;
  position: relative;
}

.cta-section .cta-title {
  color: #FFFFFF;
}

.cta-section .cta-desc {
  color: #E2E8F0;
}

.btn-glow {
  position: relative;
}
.btn-glow::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-accent), var(--color-secondary));
  z-index: -1;
  border-radius: inherit;
  background-size: 400%;
  animation: glowAnimation 3s linear infinite;
  opacity: 0.5;
}

@keyframes glowAnimation {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}

.dashboard-mockup {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 112, 243, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 112, 243, 0.1);
}
