/* ==========================================================================
   WEBLIKE - PREMIUM HYBRID TECH SYSTEM (Stripe/Vercel Style V3)
   Theme Strategy: Dark (Hero/Manifesto) -> Light (Products/Services) -> Dark (CTA/Footer)
   Color Space: HSL | Ambient Glows | Dynamic Product Accent
   ========================================================================== */

:root {
  /* Color Palette - Deep Tech Dark */
  --bg-dark: hsl(224, 25%, 4%);
  --bg-deep: hsl(224, 30%, 2%);
  --surface: hsl(223, 20%, 6%);
  --surface-light: hsl(223, 16%, 10%);
  --border-subtle: hsla(220, 20%, 60%, 0.08);
  --border-glow: hsla(202, 90%, 30%, 0.15);
  
  --primary: hsl(202, 90%, 30%); /* Deep Petroleum Blue (#055a80) */
  --primary-glow: hsla(202, 90%, 30%, 0.35);
  --accent: hsl(190, 100%, 42%); /* Vibrant petroleum/teal accent */
  --accent-glow: hsla(190, 100%, 42%, 0.25);
  
  --text-main: hsl(210, 20%, 98%);
  --text-muted: hsl(210, 12%, 66%);
  --text-dark: hsl(210, 8%, 45%);
  
  /* HSL Colors extracted from logo.png spirals */
  --logo-cyan: hsl(199, 89%, 48%);
  --logo-orange: hsl(25, 95%, 53%);
  --logo-green: hsl(142, 72%, 45%);
  --logo-red: hsl(348, 83%, 47%);

  /* Default Product Accent (Updates dynamically via JS) */
  --prod-accent: var(--primary);
  --prod-accent-glow: var(--primary-glow);

  /* Fonts */
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Ambient Mouse Spotlight Glow */
.mouse-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsla(215, 100%, 50%, 0.08) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  opacity: 0;
}

body:hover .mouse-glow {
  opacity: 1;
}

/* Global Buttons Style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  background: hsl(215, 100%, 45%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px hsla(215, 100%, 50%, 0.5);
}

.btn-secondary {
  background: var(--surface-light);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: hsl(223, 16%, 14%);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Meta Badges */
.meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.meta-badge.glow {
  box-shadow: 0 0 15px var(--accent-glow);
}

/* Glassmorphism Panel base */
.glass-panel {
  background: rgba(10, 15, 26, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-glow);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Section Header Structure */
.section-meta-header {
  margin-bottom: 4rem;
}

.text-center {
  text-align: center;
}

.section-title-large {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
}

.section-subtitle-large {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  font-weight: 400;
}

.text-center .section-subtitle-large {
  margin-left: auto;
  margin-right: auto;
}

/* Text Gradient Effect */
.gradient-text {
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   HEADER & NAVBAR (DYNAMICAL SCROLL THEME)
   ========================================================================== */
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #04060c;
  border-bottom: none;
  transition: var(--transition-smooth);
}

.header-navbar.scrolled {
  background: #04060c;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.navbar-container {
  height: 96px; /* Gordinho para elegância Stripe */
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-navbar.scrolled .navbar-container {
  height: 80px;
}

/* Custom Header Bottom Curve and Depth Shadow */
.header-curve-divider {
  position: absolute;
  bottom: -23px;
  left: 0;
  width: 100%;
  height: 24px;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.header-curve-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.header-navbar .curve-fill {
  color: #04060c;
}

.header-navbar .curve-stroke {
  color: var(--border-subtle);
}

.header-navbar.scrolled .curve-fill {
  color: #04060c;
}



/* Transparent brand logo container */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  transition: var(--transition-smooth);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo .logo-image {
  height: 52px;
  width: auto;
  display: block;
}

.footer-logo .logo-image {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
}

.nav-cta {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.menu-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-burger span {
  width: 100%;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition-smooth);
}



/* ==========================================================================
   SEÇÃO 1: HERO (DARK TECH)
   ========================================================================== */
.section-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-deep);
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  pointer-events: none;
}

.hero-radial-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, hsla(215, 100%, 50%, 0.07) 0%, rgba(0,0,0,0) 80%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 10;
}

.hero-tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
}

.hero-tag:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-glow);
  box-shadow: 0 0 15px var(--accent-glow);
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.tag-dot.cyan { background-color: var(--logo-cyan); box-shadow: 0 0 8px var(--logo-cyan); }
.tag-dot.orange { background-color: var(--logo-orange); box-shadow: 0 0 8px var(--logo-orange); }
.tag-dot.green { background-color: var(--logo-green); box-shadow: 0 0 8px var(--logo-green); }
.tag-dot.red { background-color: var(--logo-red); box-shadow: 0 0 8px var(--logo-red); }

.hero-main-text {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto 3.5rem;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.hero-main-text .highlight-gradient {
  background: linear-gradient(135deg, #fff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Futuristic Staggered Entrance Animation */
.hero-content > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-loaded .hero-content > * {
  opacity: 1;
  transform: translateY(0);
}

.tech-loaded .hero-tags-container {
  transition-delay: 0.15s;
}

.tech-loaded .hero-main-text {
  transition-delay: 0.35s;
}

.tech-loaded .hero-mockup-wrapper {
  transition-delay: 0.55s;
}

.hero-mockup-wrapper {
  width: 100%;
  max-width: 950px;
}

.browser-mockup {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.mockup-header {
  height: 44px;
  background: var(--surface-light);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  position: relative;
  transition: var(--transition-smooth);
}

.mockup-controls {
  display: flex;
  gap: 0.4rem;
}

.control-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-close { background-color: hsl(0, 90%, 60%); }
.dot-minimize { background-color: hsl(45, 90%, 60%); }
.dot-expand { background-color: hsl(110, 90%, 60%); }

.mockup-address {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-dark);
  background: rgba(0, 0, 0, 0.2);
  padding: 0.2rem 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.mockup-body {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  transition: var(--transition-smooth);
}

/* CSS Editor Mockup inside Hero */
.mockup-editor-preview {
  display: grid;
  grid-template-columns: 180px 1fr;
  font-family: Consolas, Monaco, monospace;
  font-size: 0.85rem;
  text-align: left;
}

.editor-sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border-subtle);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.editor-folder-item {
  color: var(--text-dark);
}

.editor-file-item {
  color: var(--text-muted);
  padding-left: 0.8rem;
  cursor: pointer;
  border-radius: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  transition: var(--transition-smooth);
}

.editor-file-item:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.02);
}

.editor-file-item.active, .editor-folder-item.active {
  color: var(--accent);
  font-weight: 500;
  background: rgba(0, 102, 255, 0.06);
}

.editor-main-panel {
  display: grid;
  grid-template-rows: 1.8fr 1fr;
  height: 380px;
  background: var(--bg-deep);
}

.editor-code {
  padding: 1.5rem;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow-y: auto;
  overflow-x: auto;
  border-bottom: 1px solid var(--border-subtle);
}

.editor-terminal {
  background: hsl(224, 30%, 1%);
  padding: 0.8rem 1.2rem;
  font-family: Consolas, Monaco, monospace;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  padding-bottom: 4px;
}

.terminal-status {
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}

.terminal-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.terminal-body {
  color: var(--text-muted);
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: left;
}

.terminal-line {
  color: var(--text-muted);
  white-space: pre-wrap;
}

.terminal-line.success {
  color: var(--logo-green);
}

.terminal-line.info {
  color: var(--logo-cyan);
}

.terminal-line.warn {
  color: var(--logo-orange);
}

.code-line {
  color: var(--text-muted);
  white-space: pre;
}

.c-tag { color: hsl(20, 95%, 65%); }
.c-keyword { color: hsl(300, 80%, 70%); }
.c-func { color: hsl(210, 90%, 65%); }
.c-str { color: hsl(100, 80%, 65%); }
.c-var { color: hsl(50, 90%, 70%); }
.c-comment { color: var(--text-dark); }
.c-tab { display: inline-block; width: 1.5rem; }

/* ==========================================================================
   FUTURISTIC TECH INITIALIZATION LOADER
   ========================================================================== */
.tech-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: hsl(224, 30%, 2%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

.tech-loader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 90%;
  max-width: 450px;
  text-align: center;
}

.loader-hex-container {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed transparent;
  pointer-events: none;
}

.ring-outer {
  width: 90px;
  height: 90px;
  border-color: rgba(0, 102, 255, 0.25);
  animation: rotateClockwise 8s linear infinite;
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.05);
}

.ring-inner {
  width: 65px;
  height: 65px;
  border-color: rgba(190, 24, 74, 0.2);
  animation: rotateCounterClockwise 5s linear infinite;
}

.loader-logo-fallback {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
  animation: logoPulse 1.8s ease-in-out infinite;
}

@keyframes logoPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.loader-terminal-text {
  font-family: Consolas, Monaco, monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
  width: 100%;
  min-height: 120px;
  background: rgba(4, 6, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.loader-line {
  margin-bottom: 0.3rem;
  white-space: pre-wrap;
  opacity: 0;
  transform: translateY(4px);
  animation: loaderLineFadeIn 0.3s forwards;
}

.loader-line.sys {
  color: var(--accent);
}

.loader-line.ok {
  color: var(--logo-green);
}

@keyframes loaderLineFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   SEÇÃO 2: MANIFESTO (SCROLL REVEAL - HIGH-END EDITORIAL STYLE)
   ========================================================================== */
.section-manifesto {
  padding: 140px 0;
  background-color: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.manifesto-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 30px 30px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1.5px, transparent 1.5px);
  pointer-events: none;
}

.manifesto-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.manifesto-wrapper {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  width: 100%;
  max-width: 1000px;
  padding: 4.5rem;
  background: rgba(10, 15, 26, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.manifesto-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.manifesto-badge-step {
  font-family: Consolas, Monaco, monospace;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.manifesto-indicator-bar {
  width: 2px;
  flex-grow: 1;
  min-height: 250px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  border-radius: 4px;
}

.manifesto-indicator-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 4px;
  box-shadow: 0 0 15px var(--accent);
  animation: pulseIndicator 3s infinite ease-in-out;
}

@keyframes pulseIndicator {
  0%, 100% { height: 35%; opacity: 0.8; }
  50% { height: 50%; opacity: 1; }
}

.manifesto-lines {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  perspective: 1000px;
}

.manifesto-line {
  font-family: var(--font-title);
  font-size: 2.05rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--text-main);
  opacity: 0.05;
  filter: blur(3px);
  transform: translateY(25px) rotateX(-12deg) skewX(-2deg);
  transform-origin: left center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.manifesto-number {
  font-family: Consolas, Monaco, monospace;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.6rem;
  opacity: 0.3;
  transition: opacity 0.5s ease, color 0.5s ease;
}

.manifesto-line.active {
  opacity: 0.95;
  filter: blur(0);
  transform: translateY(0) rotateX(0) skewX(0);
}

.manifesto-line.brand-text.active {
  color: var(--primary);
  opacity: 1;
  font-weight: 700;
  text-shadow: 0 0 40px var(--primary-glow);
}

.manifesto-line.gradient-text.active {
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}

/* ==========================================================================
   HYBRID CONFIGURATION - LIGHT THEME UTILITIES (Middle Sections)
   ========================================================================== */
.light-theme {
  background-color: #ffffff !important;
  background-image: 
    linear-gradient(to right, rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.02) 1px, transparent 1px) !important;
  background-size: 45px 45px !important;
  color: hsl(215, 25%, 35%) !important;
  transition: var(--transition-smooth);
  position: relative;
}

.light-section-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, var(--prod-accent-glow) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
  transition: var(--transition-slow);
  opacity: 0.85;
}

.light-theme .section-title-large {
  color: hsl(215, 30%, 12%) !important; /* deep slate-900 */
}

.light-theme .section-subtitle-large {
  color: hsl(215, 20%, 45%) !important; /* slate-600 */
}

/* Badges under Light Theme */
.light-theme .meta-badge {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.08);
  color: var(--primary) !important;
}

/* Glass Panels under Light Theme */
.light-theme .glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: hsl(215, 25%, 35%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.light-theme .glass-panel:hover {
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
}

/* Tab button colors in light theme */
.light-theme .tab-btn {
  color: hsl(215, 20%, 45%);
}

.light-theme .tab-btn:hover {
  color: hsl(215, 30%, 12%);
  background: rgba(15, 23, 42, 0.03);
}

.light-theme .tab-btn.active {
  color: hsl(215, 30%, 12%);
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

/* Browser Mockup under Light Theme */
.light-theme .browser-mockup {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
}

.light-theme .mockup-header {
  background: #f1f5f9;
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.light-theme .mockup-address {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.06);
  color: hsl(215, 16%, 47%);
}

.light-theme .mockup-body {
  background: #f8fafc;
}

/* Nodes of AI graph in light theme */
.light-theme .border-node {
  fill: #ffffff !important;
  stroke: rgba(0, 102, 255, 0.15) !important;
}

.light-theme .txt-node {
  fill: hsl(215, 25%, 30%) !important;
  font-weight: 600 !important;
}

.light-theme .node-core {
  fill: #ffffff !important;
}

.light-theme .connecting-line {
  stroke: rgba(0, 102, 255, 0.18) !important;
}

/* ==========================================================================
   SEÇÃO 3: ECOSSISTEMA WEBLIKE (HUB INTERATIVO DE ABAS)
   ========================================================================== */
.section-ecossistema {
  padding: 100px 0;
  background-color: var(--bg-dark);
  position: relative;
}

/* Sliding tab switcher layout */
.tabs-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem;
  max-width: 820px;
  margin: 0 auto 4rem auto;
  border-radius: 12px;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-grow: 1;
  text-align: center;
}

.tab-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
  color: var(--text-main);
  background: var(--surface-light);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Product Hub Dynamic Panel */
.product-hub-content {
  position: relative;
  min-height: 520px;
}

.product-item {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
  align-items: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.product-item.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.prod-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--prod-accent); /* Dynamic Accent tint */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  display: block;
  transition: var(--transition-smooth);
}

.product-name {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.product-description-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.light-theme .product-description-intro {
  color: hsl(215, 20%, 45%) !important;
}

.product-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.feat-box h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.light-theme .feat-box h4 {
  color: hsl(215, 30%, 12%) !important;
}

.feat-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.light-theme .feat-box p {
  color: hsl(215, 20%, 45%) !important;
}

.compatibility-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.compatibility-row span:first-child {
  font-size: 0.85rem;
  color: var(--text-dark);
}

.comp-tag {
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.light-theme .comp-tag {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.06);
  color: hsl(215, 20%, 45%);
}

.product-link-row {
  margin-top: 1.5rem;
}

.product-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--prod-accent); /* Dynamic Accent tint */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.product-btn-link:hover {
  filter: brightness(1.2);
}

.out-arrow {
  transition: var(--transition-smooth);
}

.product-btn-link:hover .out-arrow {
  transform: translate(2px, -2px);
}

/* Product Screenshot Frame Styles */
.product-visual-block {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  perspective: 1200px;
}

#product-browser-mockup {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 35px var(--prod-accent-glow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

#product-browser-mockup:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55), 0 0 50px var(--prod-accent-glow);
}

.light-theme #product-browser-mockup {
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05), 0 0 30px var(--prod-accent-glow);
  border-color: rgba(15, 23, 42, 0.08);
}

.screenshot-display {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.25s ease;
  background-color: var(--bg-deep);
  cursor: grab;
  user-select: none;
}

.screenshot-display:active {
  cursor: grabbing;
}

/* Slide track */
.mockup-slide-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-slide-track.dragging {
  transition: none !important;
}

.slide-item {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  user-select: none;
  background: var(--bg-deep);
}

/* Video thumbnail inside mockup */
.mockup-video-thumb {
  position: relative;
  width: 100%;
  background: #000;
  cursor: pointer;
}

.video-thumb-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.mockup-video-thumb:hover .video-thumb-img {
  opacity: 0.7;
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  width: 80px;
  height: 80px;
}

.play-btn-overlay:hover {
  transform: translate(-50%, -50%) scale(1.15);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.7));
}

.play-btn-overlay svg {
  width: 80px;
  height: 80px;
}

/* Video label tag on thumb */
.video-thumb-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,0,0,0.85);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.screenshot-selector-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.dot-item {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-theme .dot-item {
  background: rgba(15, 23, 42, 0.12);
}

.dot-item:hover {
  background: rgba(255, 255, 255, 0.35);
  width: 16px;
}

.light-theme .dot-item:hover {
  background: rgba(15, 23, 42, 0.35);
}

.dot-item.active {
  background: var(--prod-accent); /* Dynamic Accent tint */
  box-shadow: 0 0 10px var(--prod-accent-glow);
  width: 28px;
  border-radius: 4px;
}

/* ==========================================================================
   SEÇÃO 4: SOLUÇÕES PERSONALIZADAS
   ========================================================================== */
.section-solucoes {
  padding: 100px 0;
  background-color: var(--bg-deep);
  position: relative;
}

.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.solucao-card {
  padding: 2.2rem 1.8rem;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solucao-icon-svg {
  color: var(--primary);
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 102, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(0, 102, 255, 0.1);
  transition: var(--transition-smooth);
}

.light-theme .solucao-icon-svg {
  color: var(--primary) !important;
  background: rgba(0, 102, 255, 0.04) !important;
  border-color: rgba(0, 102, 255, 0.08) !important;
}

.solucao-card:hover .solucao-icon-svg {
  color: #ffffff !important;
  background: var(--primary) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 12px var(--primary-glow);
  transform: scale(1.05);
}

.icon-svg-element {
  display: block;
  width: 22px;
  height: 22px;
}

.solucao-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.light-theme .solucao-card h3 {
  color: hsl(215, 30%, 12%) !important;
}

.solucao-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.light-theme .solucao-card p {
  color: hsl(215, 20%, 45%) !important;
}

/* ==========================================================================
   SEÇÃO 5: AUTOMAÇÃO E INTELIGÊNCIA ARTIFICIAL
   ========================================================================== */
.section-ai-automation {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.ai-automation-box {
  padding: 4rem;
  overflow: hidden;
}

.light-theme .ai-automation-box {
  background: radial-gradient(circle at 10% 20%, rgba(240, 245, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 90%) !important;
  border: 1px solid rgba(0, 102, 255, 0.12) !important;
  box-shadow: 
    0 24px 60px rgba(0, 102, 255, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  position: relative;
}

/* Subtle technological grid decor inside the AI box */
.light-theme .ai-automation-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(0, 102, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 102, 255, 0.015) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

.ai-automation-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.glow-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: hsla(215, 100%, 50%, 0.1);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.light-theme .glow-tag {
  background: rgba(0, 102, 255, 0.05);
  border-color: rgba(0, 102, 255, 0.15);
  color: var(--primary) !important;
}

.connections-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.tag-connection {
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.light-theme .tag-connection {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.06);
  color: hsl(215, 20%, 45%);
}

.tag-connection:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: var(--accent);
  color: var(--text-main);
  background: rgba(200, 100, 255, 0.03);
}

.light-theme .tag-connection:hover {
  transform: translateY(-2px) scale(1.05);
  background: var(--primary);
  color: #ffffff !important;
  border-color: transparent;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.ai-visual-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-graph-container {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/1;
}

/* SVG Graph Animations */
.connecting-line {
  stroke: rgba(0, 102, 255, 0.2);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
}

.node {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), fill 0.3s ease, stroke 0.3s ease;
}

.central-node-group {
  transform-box: fill-box;
  transform-origin: center;
  animation: centralPulse 4s ease-in-out infinite;
  cursor: pointer;
}

.central-node {
  fill: var(--primary);
  stroke: var(--accent);
  stroke-width: 2;
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.central-node-group:hover .central-node {
  fill: var(--accent);
  stroke: var(--primary);
}

.border-node-group {
  cursor: pointer;
}

.border-node {
  fill: var(--surface-light);
  stroke: var(--border-subtle);
  stroke-width: 1.5;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), fill 0.3s ease, stroke 0.3s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.node-icon {
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  transform-box: fill-box;
  transform-origin: center;
}

.border-node-group:hover .border-node {
  transform: scale(1.25);
  fill: var(--primary) !important;
  stroke: var(--accent) !important;
}

.border-node-group:hover .node-icon {
  color: #ffffff !important;
  transform: scale(1.1);
}

/* Radar scanning sweep animation */
.radar-sweep-line {
  stroke: rgba(0, 102, 255, 0.1);
  stroke-width: 1.5;
  stroke-linecap: round;
  transform-origin: 200px 200px;
  animation: radarSweep 10s linear infinite;
  pointer-events: none;
}

@keyframes radarSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mini Terminal / Code Editor Mockup */
.ai-code-window {
  margin-top: 2rem;
  background: #0b0f19 !important; /* Rich deep tech slate */
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: left;
  box-shadow: 
    0 20px 40px rgba(0, 102, 255, 0.05),
    0 8px 16px rgba(0, 0, 0, 0.2);
  max-width: 440px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-code-window:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 24px 48px rgba(0, 102, 255, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.25);
}

.code-window-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.6rem;
}

.code-window-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red    { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green  { background: #22c55e; }

.code-window-title {
  margin-left: 0.6rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-title);
  letter-spacing: 0.06em;
  font-weight: 600;
}

.code-window-body pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-all;
}

.code-window-body code {
  font-family: Consolas, Monaco, 'Andale Mono', monospace;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.code-key {
  color: #60a5fa; /* Tech blue */
}

.code-string {
  color: #34d399; /* Emerald */
}

/* Connection Tag Dots */
.tag-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 0.5rem;
  box-shadow: 0 0 6px currentColor;
}

.tag-dot.cyan   { color: #06b6d4; background: #06b6d4; }
.tag-dot.purple { color: #a855f7; background: #a855f7; }
.tag-dot.blue   { color: #3b82f6; background: #3b82f6; }
.tag-dot.green  { color: #10b981; background: #10b981; }
.tag-dot.orange { color: #f97316; background: #f97316; }

@keyframes centralPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.txt-node {
  font-family: var(--font-title);
  font-size: 9px;
  fill: var(--text-muted);
  text-anchor: middle;
  font-weight: 500;
}

.node-core {
  font-size: 11px;
  fill: #fff;
  font-weight: 700;
}

.node-right {
  text-anchor: start;
}

/* Animation Pulses */
.line-pulse-1 { animation: dashArrayPulse 6s linear infinite; }
.line-pulse-2 { animation: dashArrayPulse 5s linear infinite; }
.line-pulse-3 { animation: dashArrayPulse 7s linear infinite; }
.line-pulse-4 { animation: dashArrayPulse 4s linear infinite; }
.line-pulse-5 { animation: dashArrayPulse 8s linear infinite; }
.line-pulse-6 { animation: dashArrayPulse 9s linear infinite; }

@keyframes dashArrayPulse {
  to {
    stroke-dashoffset: -40;
  }
}

/* ==========================================================================
   SEÇÃO 6: EXPERIÊNCIAS DIGITAIS PREMIUM
   ========================================================================== */
.section-exp-premium {
  padding: 100px 0;
  background-color: var(--bg-deep);
}

.exp-premium-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-detail-card {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.fd-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--border-subtle);
  margin-bottom: 1.2rem;
}

.light-theme .fd-number {
  color: rgba(5, 90, 128, 0.22) !important;
}

.feature-detail-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.light-theme .feature-detail-card h4 {
  color: hsl(215, 30%, 12%) !important;
}

.feature-detail-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.light-theme .feature-detail-card p {
  color: hsl(215, 20%, 45%) !important;
}

/* ==========================================================================
   SEÇÃO 7: PRESENÇA DIGITAL
   ========================================================================== */
.section-presenca {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.presenca-banner {
  padding: 4.5rem;
  background: linear-gradient(135deg, rgba(10, 15, 26, 0.7) 0%, rgba(2, 4, 8, 0.4) 100%);
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.light-theme .presenca-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.7) 100%) !important;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
}



@media (max-width: 992px) {
  .presenca-banner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }
}

.presenca-benefits-list {
  list-style: none;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.presenca-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.icon-bullet {
  color: var(--accent);
  font-size: 1.1rem;
}

.light-theme .icon-bullet {
  color: var(--primary);
}

.text-bullet {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.light-theme .text-bullet {
  color: hsl(215, 20%, 40%) !important;
}

/* ==========================================================================
   SEÇÃO 8: EXPERIÊNCIA E CONFIANÇA
   ========================================================================== */
.section-experiencia {
  padding: 100px 0;
  background-color: var(--bg-deep);
}

.experiencia-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.exp-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.light-theme .exp-description {
  color: hsl(215, 20%, 45%) !important;
}

.exp-stats-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  padding: 2rem;
  text-align: center;
}

.stat-value {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  display: block;
  margin-bottom: 0.2rem;
  background: linear-gradient(135deg, #fff 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.light-theme .stat-value {
  background: linear-gradient(135deg, hsl(215, 30%, 12%) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.light-theme .stat-label {
  color: hsl(215, 20%, 45%);
}

/* ==========================================================================
   SEÇÃO 9: PORTFÓLIO
   ========================================================================== */
.section-portfolio {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.portfolio-item-card {
  overflow: hidden;
  height: 100%;
}

.portfolio-card-header {
  height: 38px;
  background: rgba(0,0,0,0.15);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.35rem;
}

.light-theme .portfolio-card-header {
  background: #f1f5f9;
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.window-dot-c {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-dark);
  opacity: 0.5;
}

.light-theme .window-dot-c {
  background-color: hsl(215, 16%, 47%);
  opacity: 0.3;
}

.portfolio-card-content {
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 38px);
}

.portfolio-card-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.light-theme .portfolio-card-content h4 {
  color: hsl(215, 30%, 12%) !important;
}

.port-domain {
  font-size: 0.8rem;
  color: var(--accent);
  font-family: var(--font-body);
  margin-bottom: 1rem;
  font-weight: 500;
}

.light-theme .port-domain {
  color: var(--primary);
}

.port-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.light-theme .port-description {
  color: hsl(215, 20%, 45%) !important;
}

.port-internal-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.light-theme .port-internal-link {
  color: hsl(215, 30%, 12%);
}

.port-internal-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* ==========================================================================
   SEÇÃO 10: DIFERENCIAIS
   ========================================================================== */
.section-diferenciais {
  padding: 100px 0;
  background-color: var(--bg-deep);
}

.diferenciais-wrapper {
  padding: 4.5rem;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.diferencial-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.dif-icon-svg {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.15);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: var(--transition-smooth);
}

.light-theme .dif-icon-svg {
  background: rgba(0, 102, 255, 0.05) !important;
  border-color: rgba(0, 102, 255, 0.1) !important;
  color: var(--primary) !important;
}

.diferencial-card:hover .dif-icon-svg {
  transform: scale(1.08);
  background: var(--primary);
  color: #ffffff !important;
  border-color: transparent;
  box-shadow: 0 0 10px var(--primary-glow);
}

.dif-desc h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.light-theme .dif-desc h4 {
  color: hsl(215, 30%, 12%) !important;
}

.dif-desc p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.light-theme .dif-desc p {
  color: hsl(215, 20%, 45%) !important;
}

/* ==========================================================================
   SEÇÃO 11: CHAMADA FINAL (CTA - DARK TRANSITION)
   ========================================================================== */
/* ==========================================================================
   SEÇÃO 11: CHAMADA FINAL (CTA)
   ========================================================================== */
.section-cta {
  padding: 100px 0;
  background-color: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

/* Premium Dark-Tech glassmorphism for the CTA Box */
.cta-box {
  padding: 5rem 3rem 4rem;
  text-align: center;
  position: relative;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.cta-box:hover {
  border-color: rgba(0, 102, 255, 0.25);
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 102, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ---- Background floating icons ---- */
.cta-bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-float-icon {
  position: absolute;
  width: 64px;
  height: 64px;
  color: var(--primary);
  opacity: 0.12;
  filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.2));
  animation: ctaIconFloat 8s ease-in-out infinite;
}

.cta-icon-1 { top: 8%;  left: 4%;  width: 56px; animation-delay: 0s;    animation-duration: 9s;  }
.cta-icon-2 { top: 6%;  right: 5%; width: 60px; animation-delay: 1.5s;  animation-duration: 11s; }
.cta-icon-3 { bottom: 12%; left: 7%;  width: 52px; animation-delay: 0.8s;  animation-duration: 10s; color: hsl(142,71%,45%); }
.cta-icon-4 { bottom: 8%;  right: 6%; width: 58px; animation-delay: 2.2s;  animation-duration: 8s;  color: hsl(28,100%,55%); }
.cta-icon-5 { top: 50%;  left: 1%;  width: 48px; transform: translateY(-50%); animation-delay: 3s; animation-duration: 12s; color: hsl(0,84%,55%); }

@keyframes ctaIconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg);   }
  30%       { transform: translateY(-10px) rotate(4deg);  }
  60%       { transform: translateY(6px) rotate(-3deg); }
}

/* Ensure icon-5 float override */
.cta-icon-5 {
  animation-name: ctaIconFloat5;
}
@keyframes ctaIconFloat5 {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 10px)); }
}

/* ---- Main content ---- */
.cta-content {
  position: relative;
  z-index: 2;
}

.cta-box .meta-badge {
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--accent) !important;
}

.cta-box .section-title-large {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-box .section-subtitle-large {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  max-width: 600px;
  color: var(--text-muted) !important;
}

.cta-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Primary Tech Button with logo-gradient style */
.cta-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: #ffffff;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 
    0 4px 20px var(--primary-glow),
    0 0 20px rgba(0, 191, 255, 0.15);
  transition: var(--transition-smooth);
}

.cta-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 28px var(--primary-glow),
    0 0 30px rgba(0, 191, 255, 0.3);
  filter: brightness(1.1);
}

/* Secondary Tech Outline Button */
.cta-actions .btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  padding: 0.9rem 2.2rem;
  font-weight: 500;
  border-radius: 10px;
  backdrop-filter: blur(4px);
  transition: var(--transition-smooth);
}

.cta-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

/* ---- Metrics strip ---- */
.cta-metrics-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 3.5rem;
  padding: 1.8rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 24px 24px;
  position: relative;
  z-index: 2;
}

.cta-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 0.3rem;
}

.cta-metric-value {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta-metric-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* fd-number brand colors with transparency and hover reveal */
.fd-blue   { color: hsla(217, 100%, 65%, 0.3) !important; }
.fd-green  { color: hsla(142, 71%, 50%, 0.3) !important; }
.fd-red    { color: hsla(0, 84%, 60%, 0.3) !important; }
.fd-orange { color: hsla(28, 100%, 60%, 0.3) !important; }

/* Smooth fade transition */
.fd-number {
  transition: color 0.3s ease, filter 0.3s ease;
}

/* Light theme overrides (higher contrast transparency) */
.light-theme .fd-number.fd-blue   { color: hsla(217, 100%, 45%, 0.22) !important; }
.light-theme .fd-number.fd-green  { color: hsla(142, 71%, 35%, 0.22) !important; }
.light-theme .fd-number.fd-red    { color: hsla(0, 84%, 45%, 0.22) !important; }
.light-theme .fd-number.fd-orange { color: hsla(28, 100%, 45%, 0.22) !important; }

/* Hover highlight effects */
.feature-detail-card:hover .fd-number.fd-blue   { color: hsl(217, 100%, 65%) !important; filter: drop-shadow(0 0 8px hsla(217, 100%, 65%, 0.3)); }
.feature-detail-card:hover .fd-number.fd-green  { color: hsl(142, 71%, 50%) !important; filter: drop-shadow(0 0 8px hsla(142, 71%, 50%, 0.3)); }
.feature-detail-card:hover .fd-number.fd-red    { color: hsl(0, 84%, 60%) !important; filter: drop-shadow(0 0 8px hsla(0, 84%, 60%, 0.3)); }
.feature-detail-card:hover .fd-number.fd-orange { color: hsl(28, 100%, 60%) !important; filter: drop-shadow(0 0 8px hsla(28, 100%, 60%, 0.3)); }

.light-theme .feature-detail-card:hover .fd-number.fd-blue   { color: hsl(217, 100%, 45%) !important; filter: none; }
.light-theme .feature-detail-card:hover .fd-number.fd-green  { color: hsl(142, 71%, 35%) !important; filter: none; }
.light-theme .feature-detail-card:hover .fd-number.fd-red    { color: hsl(0, 84%, 45%) !important; filter: none; }
.light-theme .feature-detail-card:hover .fd-number.fd-orange { color: hsl(28, 100%, 45%) !important; filter: none; }

/* ==========================================================================
   RODAPÉ (FOOTER) - MINIMALISTA
   ========================================================================== */
.main-footer {
  background-color: var(--bg-deep) !important;
  border-top: 1px solid var(--border-subtle);
  padding-top: 80px;
  position: relative;
  color: var(--text-main);
}

/* Footer Contact Column styling */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .cta-metrics-strip {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .cta-metric-sep { display: none; }
  .cta-float-icon { display: none; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 60px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  max-width: 280px;
}

/* Social icon buttons */
.footer-social-icons {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-icon:hover {
  background: var(--primary);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--primary-glow);
}

.footer-social-wa:hover {
  background: #25D366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.cnpj-block {
  font-size: 0.78rem;
  color: var(--text-dark);
}

.brand-corp-name {
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

/* Footer Link Columns */
.footer-nav-links h4, .footer-contact-block h4 {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-nav-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.footer-nav-links a:hover {
  color: var(--text-main);
}

/* Hover behaviors for active contact items */
a.footer-contact-item:hover {
  color: var(--text-main);
}

a.footer-contact-item:hover svg {
  color: var(--accent);
}

a.footer-contact-item.phone-link {
  font-weight: 600;
  color: var(--text-muted);
}

a.footer-contact-item.phone-link:hover {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

a.footer-contact-item.whatsapp-link {
  color: var(--text-muted);
}

a.footer-contact-item.whatsapp-link:hover {
  color: #25d366;
  text-shadow: 0 0 10px rgba(37, 211, 102, 0.2);
}

a.footer-contact-item.whatsapp-link:hover svg {
  color: #25d366;
}

.footer-contact-item.address-item,
.footer-contact-item.time-item {
  cursor: default;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid var(--border-subtle);
  padding: 1.8rem 0;
  background-color: var(--bg-deep);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dark);
}

.tech-indicator {
  padding: 0.2rem 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
}

/* Modal feedback */
.feedback-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 12, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.feedback-modal-wrapper.active {
  opacity: 1;
  pointer-events: auto;
}

.feedback-modal {
  max-width: 400px;
  width: 90%;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.feedback-modal-wrapper.active .feedback-modal {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.close-modal:hover {
  color: var(--text-main);
}

.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.3);
  color: hsl(140, 100%, 45%);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.modal-icon.error {
  background: rgba(255, 50, 50, 0.1);
  border: 1px solid rgba(255, 50, 50, 0.3);
  color: hsl(0, 100%, 60%);
}

.feedback-modal h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.feedback-modal p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.feedback-modal .btn {
  width: 100%;
}

/* Keyframes & Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 12px var(--accent);
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Tech Grid/Scanning Animation elements in Hero */
.tech-grid-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.tech-glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(0, 102, 255, 0.06);
  pointer-events: none;
}

.tech-circle-1 {
  width: 600px;
  height: 600px;
  animation: rotateClockwise 60s linear infinite;
}

.tech-circle-2 {
  width: 900px;
  height: 900px;
  border-style: dotted;
  border-color: rgba(255, 255, 255, 0.02);
  animation: rotateCounterClockwise 80s linear infinite;
}

.tech-circle-3 {
  width: 1200px;
  height: 1200px;
  border-color: rgba(0, 102, 255, 0.03);
  animation: rotateClockwise 120s linear infinite;
}

.tech-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, rgba(0, 102, 255, 0.12), transparent);
  animation: scanVertical 8s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes rotateClockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateCounterClockwise {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes scanVertical {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLETS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 3.2rem;
  }
  .product-item {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  .product-item.active {
    position: relative;
  }
  .product-hub-content {
    min-height: 850px;
  }
  .experiencia-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section-title-large {
    font-size: 2.2rem;
  }
  
  .menu-burger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 3rem 2rem;
    align-items: stretch;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero-headline {
    font-size: 2.6rem;
  }
  
  .hero-subheadline {
    font-size: 1.1rem;
  }

  .manifesto-line {
    font-size: 1.8rem;
  }

  .product-item {
    grid-template-columns: 1fr !important;
    gap: 3.5rem;
  }

  .diferenciais-wrapper, .presenca-banner, .ai-automation-box {
    padding: 2rem;
  }
  
  .ai-automation-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .presenca-benefits-list {
    grid-template-columns: 1fr;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  
  .form-row-two {
    grid-template-columns: 1fr;
  }

  .tabs-container {
    flex-wrap: wrap;
    gap: 0.35rem;
  }
  
  .tab-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-main-text {
    font-size: 1.45rem;
  }
  .manifesto-line {
    font-size: 1.4rem;
    gap: 0.8rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .product-hub-content {
    min-height: 980px;
  }
}

/* ==========================================================================
   EFEITOS PREMIUM: LOGOS DINDAMICAS, TICKER & MODAL DE SERVIÇOS
   ========================================================================== */

/* 1. Active Product Brand Logo inside Hub Description */
.product-brand-logo-container {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 52px;
  transition: var(--transition-smooth);
}

/* White logos capsule on light theme backdrop */
.product-brand-logo-container.has-white-logo {
  background: rgba(15, 23, 42, 0.95) !important;
  border: 1px solid rgba(15, 23, 42, 1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-brand-logo {
  max-height: 44px;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.05));
  transition: var(--transition-smooth);
}

/* 2. Hover Border Accent Highlight for Light Theme Cards */
.light-theme .feature-detail-card, 
.light-theme .solucao-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.light-theme .feature-detail-card::before,
.light-theme .solucao-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--prod-accent, var(--primary)), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.light-theme .feature-detail-card:hover::before,
.light-theme .solucao-card:hover::before {
  opacity: 1;
}

.light-theme .feature-detail-card:hover, 
.light-theme .solucao-card:hover {
  transform: translateY(-6px) !important;
  background: #ffffff !important;
  border-color: rgba(0, 102, 255, 0.18) !important;
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.07) !important;
}

/* 3. Auto-scrolling tech ticker partners */
.section-ticker-partners {
  padding: 50px 0;
  background: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
}

.ticker-title {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-family: Consolas, Monaco, monospace;
  color: hsl(215, 20%, 45%);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2.5rem;
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.ticker-content {
  display: flex;
  gap: 0;
  animation: scrollTicker 32s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.25rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  user-select: none;
  cursor: default;
}

.ticker-item:hover {
  transform: scale(1.05);
}

.tech-icon-svg {
  width: 24px;
  height: 24px;
  margin-right: 0;
  fill: currentColor;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ticker-item:hover .tech-icon-svg {
  opacity: 1;
  transform: scale(1.1);
}

.tech-icon-img {
  width: auto;
  height: 32px;
  max-width: 120px;
  object-fit: contain;
  margin-right: 0;
  opacity: 0.85;
  filter: grayscale(0);
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.ticker-item:hover .tech-icon-img {
  opacity: 0.55;
  filter: grayscale(1);
  transform: scale(1.1);
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 4. Soluções card details triggers */
.card-detail-trigger {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.solucao-card {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solucao-card:hover .card-detail-trigger {
  opacity: 1;
  transform: translateX(3px);
  text-shadow: 0 0 8px var(--primary-glow);
}

/* 5. Service Detail Modal Wrapper */
.service-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 26, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal-wrapper.active {
  opacity: 1;
  pointer-events: auto;
}

.service-modal {
  max-width: 600px;
  width: 90%;
  padding: 3.5rem 3rem;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Beautiful spring animation */
  border-radius: 24px;
  background: rgba(10, 15, 26, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

.service-modal-wrapper.active .service-modal {
  transform: scale(1) translateY(0);
}

.close-service-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  line-height: 1;
}

.close-service-modal:hover {
  color: var(--text-main);
  transform: rotate(90deg);
}

.service-modal-badge {
  font-family: Consolas, Monaco, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.15);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-modal-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.service-modal-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.8rem;
}

.service-modal-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.service-modal-tech {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
}

.service-modal-tech strong {
  color: var(--text-main);
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.tech-tags-list {
  color: var(--accent);
  font-family: Consolas, Monaco, monospace;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.btn-modal-contact {
  width: 100%;
  text-align: center;
}

/* Light Theme Modal specifics for accessibility/readability */
.light-theme-modal .service-modal {
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15) !important;
}

.light-theme-modal .service-modal-title {
  color: #0f172a;
}

.light-theme-modal .service-modal-subtitle {
  color: #2563eb;
}

.light-theme-modal .service-modal-text {
  color: #475569;
}

.light-theme-modal .service-modal-tech {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.light-theme-modal .service-modal-tech strong {
  color: #0f172a;
}

.light-theme-modal .tech-tags-list {
  color: #1e3a8a;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

@media (max-width: 768px) {
  .tab-logo-img {
    height: 18px;
  }
  .weblike-tab-logo {
    height: 20px;
  }
  .tab-btn {
    padding: 0.5rem 0.8rem !important;
    min-height: 38px;
  }
}

/* 12. Reusable section curve dividers */
.section-curve-divider {
  width: 100%;
  height: 32px;
  line-height: 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
  margin-top: -1px;
  margin-bottom: -1px;
}

.section-curve-divider svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1.01, 1.05); /* Escala ligeiramente o SVG para cobrir riscos de subpixel */
}

.divider-dark-to-light {
  background-color: var(--bg-deep);
  color: #ffffff;
}

.divider-light-to-dark {
  background-color: #ffffff;
  color: var(--bg-deep);
}

/* 13. Presença Digital Grid & Analytics Mockup Styles */
.presenca-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.15);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.light-theme .presenca-icon-box {
  background: rgba(0, 102, 255, 0.05);
  border-color: rgba(0, 102, 255, 0.12);
  color: var(--primary);
}

.presenca-benefits-list li:hover .presenca-icon-box {
  transform: scale(1.08) translateY(-2px);
  background: var(--primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.analytics-mockup {
  background: rgba(2, 4, 8, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.light-theme .analytics-mockup {
  background: #ffffff !important;
  border-color: rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.analytics-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.analytics-title {
  font-family: Consolas, Monaco, monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 1rem;
}

.light-theme .analytics-title {
  color: hsl(215, 20%, 45%);
}

.analytics-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-mini-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.light-theme .stat-mini-card {
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(15, 23, 42, 0.04);
}

.sm-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.light-theme .sm-label {
  color: hsl(215, 20%, 45%);
}

.sm-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.analytics-chart-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 1rem;
}

.light-theme .analytics-chart-box {
  background: rgba(15, 23, 42, 0.01);
  border-color: rgba(15, 23, 42, 0.03);
}

.chart-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.light-theme .chart-label-row {
  color: hsl(215, 20%, 45%);
}

.chart-percentage {
  font-family: Consolas, Monaco, monospace;
  color: var(--accent);
  font-weight: 600;
}

.light-theme .chart-percentage {
  color: var(--primary);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 80px;
  padding-top: 10px;
}

.chart-bar {
  width: 12%;
  background: linear-gradient(to top, var(--primary), var(--accent));
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
  transition: height 0.5s ease;
  position: relative;
}

.chart-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(4px);
}

.chart-bar:hover::after {
  opacity: 0.5;
}

.chart-bar:hover {
  opacity: 1;
}

/* 14. Floating WhatsApp Button */
.float-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: floatIn 0.6s ease both;
}

.float-wa-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.float-wa-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(10, 15, 26, 0.9);
  color: #fff;
  font-size: 0.78rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
}

.float-wa-btn:hover .float-wa-tooltip {
  opacity: 1;
}

/* 15. Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2.25rem;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px var(--primary-glow);
}

@keyframes floatIn {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  to   { transform: scale(1) rotate(0);     opacity: 1; }
}

/* ==========================================================================
   VIDEO LIGHTBOX MODAL
   ========================================================================== */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.video-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 20, 0.93);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.video-lightbox-content {
  position: relative;
  z-index: 2;
  width: 90vw;
  max-width: 1000px;
  transform: scale(0.88) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-lightbox.active .video-lightbox-content {
  transform: scale(1) translateY(0);
}

.video-lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.video-lightbox-close:hover {
  background: rgba(255,255,255,0.25);
  transform: rotate(90deg) scale(1.1);
}

.video-lightbox-frame {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255,255,255,0.06);
}

.video-lightbox-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Dot item for video = red */
.dot-item.dot-video {
  background: rgba(255, 0, 0, 0.35) !important;
}
.dot-item.dot-video.active {
  background: #ff0000 !important;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5) !important;
}

/* ==========================================================================
   MODAL DE CLIENTES (ECOSSISTEMA)
   ========================================================================== */
.clients-modal-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.clients-modal-wrapper.active {
  opacity: 1;
  pointer-events: auto;
}

.clients-modal {
  width: 100%;
  max-width: 900px;
  background: rgba(9, 15, 29, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.light-theme-modal .clients-modal {
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15) !important;
}

.close-clients-modal {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
  z-index: 10;
}

.close-clients-modal:hover {
  color: #ffffff;
}

.light-theme-modal .close-clients-modal {
  color: hsl(215, 20%, 45%);
}

.light-theme-modal .close-clients-modal:hover {
  color: hsl(215, 30%, 12%);
}

.clients-modal-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}

.clients-modal-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  background: hsla(215, 100%, 50%, 0.1);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.light-theme-modal .clients-modal-badge {
  background: rgba(0, 102, 255, 0.05);
  border-color: rgba(0, 102, 255, 0.15);
  color: var(--primary);
}

.clients-modal-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.light-theme-modal .clients-modal-title {
  color: hsl(215, 30%, 12%);
}

.clients-modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.light-theme-modal .clients-modal-subtitle {
  color: hsl(215, 20%, 45%);
}

/* Control bar: search + filters */
.clients-filter-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.clients-filter-tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.filter-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-tab:hover, .filter-tab.active {
  background: var(--primary);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.light-theme-modal .filter-tab {
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(15, 23, 42, 0.06);
  color: hsl(215, 20%, 45%);
}

.light-theme-modal .filter-tab:hover, .light-theme-modal .filter-tab.active {
  background: var(--primary);
  color: #ffffff;
}

.clients-search-box {
  position: relative;
  flex-grow: 1;
  max-width: 300px;
}

.clients-search-box input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.clients-search-box input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.light-theme-modal .clients-search-box input {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
  color: hsl(215, 30%, 12%) !important;
}

.light-theme-modal .clients-search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.08);
}

/* Grid layout */
.clients-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  max-height: 48vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.clients-grid-container::-webkit-scrollbar {
  width: 6px;
}

.clients-grid-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.01);
}

.clients-grid-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.light-theme-modal .clients-grid-container::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.1);
}

/* Client Card */
.client-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 110px;
  position: relative;
  overflow: hidden;
}

.light-theme-modal .client-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.06);
}

.client-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 102, 255, 0.25);
  box-shadow: 
    0 10px 20px rgba(0, 0, 0, 0.15),
    0 0 12px rgba(0, 102, 255, 0.05);
}

.light-theme-modal .client-card:hover {
  background: rgba(0, 102, 255, 0.01);
  border-color: rgba(0, 102, 255, 0.2);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.03);
}

.client-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.badge-tech {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}

.badge-industry {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
}

.badge-health {
  background: rgba(6, 182, 212, 0.1);
  color: #22d3ee;
}

.badge-services {
  background: rgba(249, 115, 22, 0.1);
  color: #fb923c;
}

.client-card h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.light-theme-modal .client-card h4 {
  color: hsl(215, 30%, 12%);
}

.client-card a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
  margin-top: auto;
}

.client-card a:hover {
  color: var(--accent);
}

.light-theme-modal .client-card a:hover {
  color: var(--primary);
}

.ext-link-icon {
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.client-card a:hover .ext-link-icon {
  opacity: 1;
}

@media (max-width: 768px) {
  .clients-filter-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .clients-search-box {
    max-width: none;
  }
  
  .clients-modal-content {
    padding: 1.5rem;
  }

  /* Oculta botão Voltar ao Topo no celular */
  .back-to-top {
    display: none !important;
  }

  /* Ajustes do Manifesto */
  .manifesto-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }
  
  .manifesto-sidebar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
  }
  
  .manifesto-indicator-bar {
    display: none;
  }

  /* Ajustes dos Nossos Produtos */
  .product-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Editor Mockup no Hero */
  .mockup-editor-preview {
    grid-template-columns: 1fr;
  }
  
  .editor-sidebar {
    display: none;
  }

  /* Título Principal do Hero */
  .hero-main-text {
    font-size: 1.65rem;
    margin-bottom: 2.5rem;
  }
}
