/* ================================================================
   LBR — Design System v5.0 | Premium Dark Glass Edition
   Audit: UI/UX Pro Max — Trust & Authority + Modern Dark Cinema
   Pattern: glassmorphism sofisticado, micro-animações, depth system
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ================================================================
   TOKENS
================================================================ */
:root {
  /* — Brand Colors — */
  --navy-deep:    #030C14;
  --navy-dark:    #071523;
  --navy-card:    #0C1F2E;
  --navy:         #0E3B4F;
  --navy-pale:    #EDF3F6;
  --orange:       #FF8200;
  --orange-dim:   rgba(255,130,0,0.12);
  --orange-glow:  rgba(255,130,0,0.08);
  --orange-glow-lg: rgba(255,130,0,0.20);
  --white:        #FFFFFF;
  --off-white:    #F5F7F9;
  --gray-light:   #E4EAed;
  --gray:         #8A9EAD;
  --gray-dim:     #B8C7D0;

  /* — Glass System — */
  --glass-deep:     rgba(255,255,255,0.03);
  --glass:          rgba(255,255,255,0.07);
  --glass-hover:    rgba(255,255,255,0.11);
  --glass-strong:   rgba(255,255,255,0.15);
  --glass-border:   rgba(255,255,255,0.10);
  --glass-border-s: rgba(255,255,255,0.06);
  --blur:           blur(20px) saturate(160%);
  --blur-sm:        blur(12px) saturate(140%);
  --blur-xs:        blur(6px);

  /* — Typography — */
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --tracking:     0.12em;

  /* — Border Radius — */
  --r-xs:      4px;
  --r-sm:      8px;
  --r-md:      16px;
  --r-card:    20px;
  --r-section: 40px;
  --r-pill:    999px;

  /* — Shadows — */
  --shadow-sm:     0 2px 8px rgba(3,12,20,0.25);
  --shadow-md:     0 8px 28px rgba(3,12,20,0.35);
  --shadow-lg:     0 24px 64px rgba(3,12,20,0.50);
  --shadow-orange: 0 6px 24px rgba(255,130,0,0.35), 0 0 60px rgba(255,130,0,0.12);
  --shadow-inset:  inset 0 1px 0 rgba(255,255,255,0.07);

  /* — Light Surface Tokens — */
  --surface:       #FFFFFF;
  --surface-alt:   #F5F7F9;
  --ink:           #0A0A0A;
  --ink-soft:      #3A4A55;
  --ink-muted:     #6B7E8A;
  --border-light:  #DDE4E9;
  --shadow-card:   0 2px 12px rgba(3,12,20,0.08), 0 8px 32px rgba(3,12,20,0.05);

  /* — Motion — */
  --ease:          cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:      150ms;
  --dur-base:      250ms;
  --dur-slow:      400ms;
  --dur-slower:    650ms;
}

/* ================================================================
   RESET
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }

/* ================================================================
   KEYFRAME ANIMATIONS
================================================================ */

@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  20%  { transform: translate(25px, -45px) scale(1.06); }
  45%  { transform: translate(-15px, -20px) scale(0.97); }
  70%  { transform: translate(35px, 30px) scale(1.04); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes orb-drift-reverse {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-30px, 40px) scale(0.96); }
  55%  { transform: translate(20px, 20px) scale(1.05); }
  80%  { transform: translate(-20px, -30px) scale(0.98); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes shimmer-pass {
  0%   { left: -80%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(255,130,0,0.30), 0 0 0 rgba(255,130,0,0);
  }
  50% {
    box-shadow: 0 6px 32px rgba(255,130,0,0.55), 0 0 60px rgba(255,130,0,0.18);
  }
}

@keyframes dot-ping {
  0%   { transform: scale(1); opacity: 0.8; }
  80%  { transform: scale(2.8); opacity: 0; }
  100% { transform: scale(2.8); opacity: 0; }
}

@keyframes gradient-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes reveal-clip {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to   { clip-path: inset(0 0% 0 0);   opacity: 1; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   BASE
================================================================ */
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--white);
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(14,59,79,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 100%, rgba(255,130,0,0.05) 0%, transparent 50%),
    linear-gradient(180deg, #0A1E2C 0%, #060F18 30%, #030C14 65%, #020A10 100%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ================================================================
   TYPOGRAPHY
================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.04em;
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.headline-sm {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 300;
}

h4 { font-size: 16px; font-weight: 400; }
h5 { font-size: 13px; font-weight: 400; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.eyebrow--gray  { color: var(--gray); }
.eyebrow--white { color: rgba(255,255,255,0.65); }
.eyebrow--sage  { color: #C0C891; }

.lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray);
}

.lead--light { color: rgba(255,255,255,0.75); }

em {
  font-style: italic;
  color: var(--orange);
  font-family: var(--font-body);
  font-weight: inherit;
}

/* ================================================================
   LAYOUT
================================================================ */
.container {
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section { padding: 80px 0; }
.section--sm { padding: 56px 0; }
.section--dark { background: rgba(7,21,35,0.60); color: var(--white); }
.section--deep { background: rgba(3,12,20,0.50); color: var(--white); }
.section--gray { background: var(--off-white); }

.section-header { margin-bottom: 48px; }
.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header h2 { margin-bottom: 16px; }

/* ================================================================
   LIQUID GLASS — Enhanced with shimmer + depth
================================================================ */
.glass {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--dur-slow) var(--ease),
    box-shadow   var(--dur-slow) var(--ease),
    background   var(--dur-slow) var(--ease),
    transform    200ms var(--ease-out);
}

/* Top-left specular highlight */
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Shimmer sweep on hover */
.glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.05) 50%,
    transparent 100%
  );
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 2;
}

.glass:hover::after {
  animation: shimmer-pass 0.80s var(--ease-out) forwards;
}

.glass:hover {
  background: var(--glass-hover);
  border-color: rgba(255,130,0,0.15);
  box-shadow: var(--shadow-md), var(--shadow-inset), 0 0 50px rgba(255,130,0,0.04);
}

.glass > * { position: relative; z-index: 1; }

.glass-sm {
  background: var(--glass);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-border-s);
  border-radius: var(--r-md);
}

.glass-light {
  background: rgba(5,15,23,0.03);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid rgba(5,15,23,0.07);
  border-radius: var(--r-card);
}

/* ================================================================
   ORBS — Animated ambient blobs
================================================================ */
.orb, .orb-orange, .orb-blue {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  will-change: transform;
}

.orb-orange {
  background: radial-gradient(circle, rgba(255,130,0,0.38) 0%, transparent 70%);
  animation: orb-drift 20s ease-in-out infinite;
}

.orb-blue {
  background: radial-gradient(circle, rgba(14,59,79,0.60) 0%, transparent 70%);
  animation: orb-drift-reverse 25s ease-in-out infinite;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 55% at 50% 0%, rgba(14,59,79,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 70% 45% at 0% 70%, rgba(9,28,40,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 30%, rgba(255,130,0,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* ================================================================
   NAVIGATION — Enhanced
================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(3,12,20,0.80);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
}

.site-header.scrolled {
  background: rgba(3,12,20,0.92);
  border-bottom-color: rgba(255,255,255,0.09);
  box-shadow: 0 4px 32px rgba(3,12,20,0.5);
}

.site-header.light {
  background: rgba(245,247,249,0.90);
  border-bottom: 1px solid rgba(5,15,23,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.header-logo { height: 28px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  transition: color var(--dur-base) var(--ease);
  white-space: nowrap;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width var(--dur-slow) var(--ease-out);
}

.header-nav a:hover { color: var(--white); }
.header-nav a:hover::after { width: 100%; }
.header-nav a.active { color: rgba(255,255,255,0.90); }
.header-nav a.active::after { width: 100%; }

.site-header.light .header-nav a { color: rgba(5,15,23,0.55); }
.site-header.light .header-nav a:hover { color: var(--navy-deep); }
.site-header.light .header-nav a.active { color: var(--orange); }

.header-cta-desktop { white-space: nowrap; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: background var(--dur-fast);
}
.nav-toggle:hover { background: var(--glass); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.80);
  border-radius: 2px;
  transition: all 250ms var(--ease);
}
.site-header.light .nav-toggle span { background: rgba(5,15,23,0.7); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(3,12,20,0.97);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 28px 28px 36px;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
  z-index: 999;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); }
.mobile-nav a {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.70);
  transition: color var(--dur-fast), transform var(--dur-fast);
  display: block;
}
.mobile-nav a:hover { color: var(--white); transform: translateX(4px); }
.mobile-cta { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }

/* ================================================================
   BUTTONS — Redesigned with micro-interactions
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: none;
  transition:
    background   var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease),
    box-shadow   var(--dur-base) var(--ease),
    transform    150ms var(--ease-out),
    color        var(--dur-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Ripple layer on all buttons */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.96) !important; transition-duration: 80ms !important; }

/* Primary — orange with glow */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
}
.btn-primary::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
}
.btn-primary:hover {
  background: #e67300;
  border-color: #e67300;
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px) scale(1.02);
}

/* Ghost — translucent with border */
.btn-ghost {
  background: rgba(255,255,255,0.05);
  backdrop-filter: var(--blur-xs);
  -webkit-backdrop-filter: var(--blur-xs);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost::before {
  background: rgba(255,255,255,0.05);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.38);
  color: var(--white);
  transform: translateY(-1px);
}

/* Glass — frosted */
.btn-glass {
  background: var(--glass);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  color: var(--white);
  border: 1px solid var(--glass-border);
}
.btn-glass::before { background: rgba(255,255,255,0.04); }
.btn-glass:hover {
  background: var(--glass-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline::before { background: rgba(255,255,255,0.05); }
.btn-outline:hover {
  border-color: rgba(255,255,255,0.50);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--dur-base) var(--ease);
  padding: 13px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.50);
}

.btn-secondary {
  background: var(--glass);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  color: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--dur-base) var(--ease);
  padding: 13px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-secondary:hover { background: var(--glass-hover); transform: translateY(-1px); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(14,59,79,0.25);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--dur-base) var(--ease);
  padding: 13px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-dark:hover { background: rgba(14,59,79,0.05); border-color: var(--navy); }

.btn-lg { padding: 16px 38px; font-size: 13px; }
.btn-sm { padding: 8px 20px; font-size: 11px; }
.w-full { width: 100%; }
.justify-center { justify-content: center; }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  background: transparent;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  mix-blend-mode: luminosity;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 120px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  position: relative;
}

.hero-label-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(255,130,0,0.45);
  animation: dot-ping 2.5s ease-out infinite;
}

.hero-label-text {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.07em;
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 44px; }

.hero-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 64px; }
.hero-stat { padding: 16px 22px; }
.hero-stat-num { font-family: var(--font-display); font-size: 26px; font-weight: 300; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 10px; color: rgba(255,255,255,0.75); margin-top: 4px; letter-spacing: 0.04em; }

/* Page hero (inner pages) */
.page-hero {
  background: transparent;
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 108px);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.05;
}

.page-hero-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  font-weight: 300;
}

/* ================================================================
   STATS BAR — with animated numbers
================================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--glass);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--glass-border);
  transition: background var(--dur-slow) var(--ease);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--glass-hover); }

.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.65); margin-top: 8px; letter-spacing: 0.04em; }

.stats-bar--light { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.06); }

/* ================================================================
   PROCESS CARDS
================================================================ */
.process-grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 20px; }

.process-card {
  padding: 36px 28px;
  border-radius: var(--r-card);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  position: relative;
  overflow: hidden;
  transition:
    transform    200ms var(--ease-out),
    border-color var(--dur-slow) var(--ease),
    box-shadow   var(--dur-slow) var(--ease),
    background   var(--dur-slow) var(--ease);
}

.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,130,0,0.18);
  box-shadow: var(--shadow-md), 0 0 40px rgba(255,130,0,0.04);
}

.process-card--featured { background: rgba(255,130,0,0.07); border-color: rgba(255,130,0,0.18); }

.process-num { font-family: var(--font-display); font-size: 52px; font-weight: 200; color: rgba(255,255,255,0.09); line-height: 1; margin-bottom: 20px; }
.process-card--featured .process-num { color: rgba(255,130,0,0.22); }
.process-card h3 { font-size: 17px; font-weight: 300; color: var(--white); margin-bottom: 10px; position: relative; z-index: 1; }
.process-card p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.65; position: relative; z-index: 1; }

.process-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  mix-blend-mode: luminosity;
}

/* ================================================================
   SOLUTIONS TOGGLE
================================================================ */
.solutions-toggle-wrap { display: flex; justify-content: center; margin-bottom: 52px; }

.solutions-toggle {
  display: inline-flex;
  background: var(--glass);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  padding: 4px;
  box-shadow: var(--shadow-sm);
}

.toggle-btn {
  padding: 11px 32px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.60);
  transition: all var(--dur-base) var(--ease);
  letter-spacing: 0.04em;
}
.toggle-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 16px rgba(3,12,20,0.5);
}
.toggle-btn:hover:not(.active) { color: rgba(255,255,255,0.85); }

.solutions-panel { transition: opacity 300ms var(--ease); }
.solutions-panel.hidden { display: none; }

.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.solution-card {
  padding: 36px 28px;
  border-radius: var(--r-card);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform    200ms var(--ease-out),
    border-color var(--dur-slow) var(--ease),
    box-shadow   var(--dur-slow) var(--ease),
    background   var(--dur-slow) var(--ease);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.solution-card:hover {
  background: var(--glass-hover);
  border-color: rgba(255,130,0,0.22);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 40px rgba(255,130,0,0.04);
}
.solution-card--featured { background: rgba(255,130,0,0.06); border-color: rgba(255,130,0,0.18); }
.solution-card--full { grid-column: span 3; }

.solution-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); }
.solution-title { font-family: var(--font-display); font-size: 28px; font-weight: 300; color: var(--white); line-height: 1.05; }
.solution-desc { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.65; flex: 1; }
.solution-features { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; border-top: 1px solid rgba(255,255,255,0.06); }
.solution-feature { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.68); }
.solution-feature::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--orange); flex-shrink: 0; opacity: 0.8; }

/* ================================================================
   CASES GRID
================================================================ */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.case-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  overflow: hidden;
  transition:
    transform    200ms var(--ease-out),
    border-color var(--dur-slow) var(--ease),
    box-shadow   var(--dur-slow) var(--ease);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
}
.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,130,0,0.22);
  box-shadow: var(--shadow-md), 0 0 40px rgba(255,130,0,0.04);
}

.case-thumb { height: 148px; background: var(--navy-card); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.case-thumb-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy-deep), var(--navy-card)); }
.case-thumb-initials { font-family: var(--font-display); font-size: 40px; font-weight: 200; color: rgba(255,255,255,0.14); position: relative; z-index: 1; letter-spacing: 0.1em; }

.case-body { padding: 26px; }
.case-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.case-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-pill); background: var(--glass); color: rgba(255,255,255,0.72); border: 1px solid var(--glass-border-s); }
.case-tag--orange { background: var(--orange-dim); color: var(--orange); border-color: rgba(255,130,0,0.22); }

.case-body h4 { font-size: 14px; font-weight: 400; line-height: 1.45; margin-bottom: 8px; color: var(--white); }
.case-result { font-family: var(--font-display); font-size: 36px; font-weight: 300; color: var(--orange); line-height: 1; margin-top: 16px; }
.case-result-label { font-size: 11px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ================================================================
   BLOG GRID
================================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.blog-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  overflow: hidden;
  transition:
    transform    200ms var(--ease-out),
    border-color var(--dur-slow) var(--ease),
    box-shadow   var(--dur-slow) var(--ease);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,130,0,0.22);
  box-shadow: var(--shadow-md), 0 0 40px rgba(255,130,0,0.04);
}

.blog-thumb { height: 168px; overflow: hidden; position: relative; }
.blog-body { padding: 26px; }
.blog-category { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.blog-body h4 { font-size: 14px; font-weight: 400; line-height: 1.45; margin-bottom: 8px; color: var(--white); }
.blog-body p { font-size: 12px; color: rgba(255,255,255,0.70); line-height: 1.65; }
.blog-meta { display: flex; gap: 12px; margin-top: 16px; font-size: 11px; color: rgba(255,255,255,0.55); }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.testimonial-card {
  padding: 32px 28px;
  border-radius: var(--r-card);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  transition:
    transform    200ms var(--ease-out),
    border-color var(--dur-slow) var(--ease),
    box-shadow   var(--dur-slow) var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: var(--shadow-md);
}
.testimonial-card blockquote { font-size: 15px; font-weight: 300; font-style: italic; line-height: 1.75; color: rgba(255,255,255,0.82); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--orange-dim); border: 1px solid rgba(255,130,0,0.28); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; color: var(--orange); letter-spacing: 0.06em; flex-shrink: 0; }
.testimonial-name { font-size: 12px; font-weight: 500; color: var(--white); }
.testimonial-role { font-size: 11px; color: rgba(255,255,255,0.60); margin-top: 2px; }

/* ================================================================
   FAQ — Enhanced with smooth transitions
================================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--glass);
  transition: border-color var(--dur-slow) var(--ease);
}
.faq-item:hover { border-color: rgba(255,255,255,0.15); }
.section--gray .faq-item { background: var(--white); border-color: var(--gray-light); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  text-align: left;
  color: rgba(255,255,255,0.90);
  gap: 16px;
  transition: background var(--dur-base) var(--ease), color var(--dur-base);
  letter-spacing: 0.01em;
}
.section--gray .faq-question { color: var(--navy); }
.faq-question:hover { background: var(--glass-hover); }

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(255,130,0,0.35);
  border-radius: 50%;
  position: relative;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base);
}
.faq-question:hover .faq-icon { border-color: var(--orange); }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.faq-icon::before { width: 9px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 9px; transition: transform 250ms var(--ease), opacity 250ms; }
.faq-question.open .faq-icon { transform: rotate(45deg); border-color: var(--orange); }
.faq-question.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 350ms var(--ease); }
.faq-answer-inner { padding: 0 24px 22px; font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.72); }
.section--gray .faq-answer-inner { color: var(--gray); }

/* ================================================================
   FILTER BUTTONS
================================================================ */
.cases-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }

.filter-btn {
  padding: 9px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  letter-spacing: 0.04em;
  transition: all var(--dur-base) var(--ease);
}
.filter-btn:hover { background: var(--glass-hover); color: var(--white); transform: translateY(-1px); }
.filter-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); box-shadow: 0 4px 16px rgba(255,130,0,0.30); }

/* ================================================================
   FORMS — Enhanced
================================================================ */
.form-input {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--r-md);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color var(--dur-base), box-shadow var(--dur-base), background var(--dur-base);
}
.form-input:focus {
  border-color: rgba(255,130,0,0.45);
  box-shadow: 0 0 0 3px rgba(255,130,0,0.08);
  background: var(--glass-hover);
}
.form-input::placeholder { color: rgba(255,255,255,0.22); }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-label { font-size: 10px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.60); display: block; margin-bottom: 7px; }

/* ================================================================
   NEWSLETTER
================================================================ */
.newsletter-block { padding: 44px 52px; border-radius: var(--r-card); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  padding: 13px 22px;
  border-radius: var(--r-pill);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  min-width: 260px;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.28); }
.newsletter-form input:focus {
  border-color: rgba(255,130,0,0.45);
  box-shadow: 0 0 0 3px rgba(255,130,0,0.08);
}

/* ================================================================
   CTA FINAL
================================================================ */
.cta-final { background: transparent; }
.cta-final-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ================================================================
   MANIFESTO
================================================================ */
.manifesto-block { background: rgba(3,12,20,0.55); padding: 100px 0; position: relative; overflow: hidden; color: var(--white); }
.manifesto-block blockquote { font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: clamp(22px, 3.5vw, 42px); line-height: 1.4; color: rgba(255,255,255,0.80); text-align: left; }
.accent { color: var(--orange); }

/* ================================================================
   ABOUT
================================================================ */
.about-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.about-image { border-radius: var(--r-card); overflow: hidden; aspect-ratio: 3/4; }
.about-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; mix-blend-mode: luminosity; transition: opacity var(--dur-slower) var(--ease); }
.about-image:hover img { opacity: 0.92; }
.about-quote { margin-top: 28px; padding: 22px 26px; border-left: 2px solid var(--orange); background: rgba(255,130,0,0.05); border-radius: 0 var(--r-md) var(--r-md) 0; }
.about-quote p { font-family: var(--font-display); font-size: 15px; font-style: italic; color: rgba(255,255,255,0.88); font-weight: 300; line-height: 1.65; }
.about-credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.credential-tag {
  padding: 6px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.03em;
  transition: background var(--dur-base), border-color var(--dur-base), transform var(--dur-fast);
}
.credential-tag:hover { background: var(--glass-hover); border-color: rgba(255,130,0,0.2); transform: translateY(-1px); }
.dimensions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.dimension-card {
  padding: 24px 16px;
  border-radius: var(--r-md);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-slow), box-shadow var(--dur-slow);
}
.dimension-card:hover { transform: translateY(-3px); border-color: rgba(255,130,0,0.2); box-shadow: var(--shadow-sm); }
.dim-num { font-family: var(--font-display); font-size: 34px; font-weight: 300; color: var(--orange); line-height: 1; margin-bottom: 12px; display: block; }
.dimension-card h4 { font-size: 12px; font-weight: 500; margin-bottom: 6px; color: var(--white); }
.dimension-card p  { font-size: 11px; color: rgba(255,255,255,0.70); line-height: 1.55; }

/* ================================================================
   PRODUCT DETAIL
================================================================ */
.product-detail { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
.product-detail-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px); font-weight: 300; line-height: 1; margin-bottom: 6px; }
.product-detail-tagline { font-size: 13px; color: rgba(255,255,255,0.72); margin-bottom: 24px; }
.product-detail-desc { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.75; margin-bottom: 20px; }
.detail-features { display: flex; flex-direction: column; gap: 22px; margin: 32px 0; }
.detail-feature { display: flex; gap: 14px; align-items: flex-start; }
.detail-feature-icon { width: 38px; height: 38px; border-radius: var(--r-sm); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--dur-base); }
.detail-feature:hover .detail-feature-icon { background: rgba(255,130,0,0.10); }
.detail-feature h5 { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.detail-feature p  { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* ================================================================
   TABS
================================================================ */
.tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tab-btn {
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--dur-base), border-color var(--dur-base);
  letter-spacing: 0.04em;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ================================================================
   DIAGNOSTICO — Enhanced multi-step
================================================================ */
.diag-wrap { width: 100%; }
.diag-progress-bar-wrap { height: 2px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; margin-bottom: 10px; }
.diag-progress-bar { height: 100%; background: linear-gradient(90deg, var(--orange), rgba(255,160,50,0.9)); border-radius: 2px; transition: width 400ms var(--ease-out); width: 0%; }
.diag-counter { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.50); letter-spacing: 0.08em; margin-bottom: 44px; }
.diag-step { display: none; }
.diag-step.active { display: block; }
.diag-question { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 30px); font-weight: 300; color: var(--white); margin-bottom: 28px; line-height: 1.3; }

.diag-options { display: flex; flex-direction: column; gap: 10px; }
.diag-option {
  padding: 20px 26px;
  border-radius: var(--r-card);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  text-align: left;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.diag-option::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--orange);
  opacity: 0.08;
  transition: width 300ms var(--ease-out);
}
.diag-option:hover { background: var(--glass-hover); border-color: rgba(255,130,0,0.30); color: var(--white); transform: translateX(4px); }
.diag-option:hover::before { width: 100%; }
.diag-option.selected { background: var(--orange-dim); border-color: rgba(255,130,0,0.45); color: var(--orange); }
.diag-option.selected::before { width: 100%; opacity: 0.15; }

/* ================================================================
   AGENDAR
================================================================ */
.agendar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.agendar-option { border-radius: var(--r-card); background: var(--glass); border: 1px solid var(--glass-border); overflow: hidden; }
.agendar-option-header { padding: 36px 36px 24px; border-bottom: 1px solid var(--glass-border); }
.agendar-option-header h3 { font-size: 18px; font-weight: 300; color: var(--white); margin-bottom: 8px; }
.agendar-option-header p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.6; }
.agendar-option-body { padding: 24px 36px 36px; }
.calendly-placeholder { background: var(--navy-card); border: 1px dashed var(--glass-border); border-radius: var(--r-md); padding: 48px; text-align: center; color: rgba(255,255,255,0.62); font-size: 13px; }

/* ================================================================
   FOOTER — Enhanced
================================================================ */
.site-footer {
  background: rgba(2,8,14,0.95);
  color: var(--white);
  padding: 72px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,130,0,0.25), transparent);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-brand img { height: 26px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.75; white-space: nowrap; margin-bottom: 12px; }
.footer-tagline { font-size: 10px; color: var(--orange); letter-spacing: 0.08em; font-weight: 400; }
.footer-social { display:flex; gap:14px; margin-top:20px; }
.fsoc-link { color:rgba(255,255,255,0.30); transition:color 220ms; display:flex; align-items:center; }
.fsoc-link:hover { color:var(--orange); }
.footer-col h5 { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.55); transition: color var(--dur-base), transform var(--dur-fast); display: inline-block; }
.footer-col a:hover { color: rgba(255,255,255,0.90); transform: translateX(3px); }
.footer-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 10px; color: rgba(255,255,255,0.45); }
.footer-admin-link { font-size: 10px; color: rgba(255,255,255,0.12); text-decoration: none; letter-spacing: 0.06em; transition: color 300ms; }
.footer-admin-link:hover { color: rgba(255,255,255,0.38); }

/* ================================================================
   SCROLL ANIMATIONS — Multiple variants with easing
================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity   var(--dur-slower) var(--ease-out),
    transform var(--dur-slower) var(--ease-out),
    filter    var(--dur-slower) var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Direction variants */
.fade-in-left  { transform: translateX(-32px); transition-property: opacity, transform; }
.fade-in-right { transform: translateX(32px);  transition-property: opacity, transform; }
.fade-in-scale { transform: scale(0.92) translateY(8px); }
.fade-in-blur  { filter: blur(10px); transform: scale(0.98); }

.fade-in-left.visible,
.fade-in-right.visible { transform: translateX(0); opacity: 1; }
.fade-in-scale.visible { transform: scale(1) translateY(0); opacity: 1; }
.fade-in-blur.visible  { filter: blur(0); transform: scale(1); opacity: 1; }

/* ================================================================
   CURSOR SPOTLIGHT
================================================================ */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,130,0,0.055) 0%, rgba(255,130,0,0.02) 40%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: opacity 400ms;
  mix-blend-mode: screen;
  will-change: left, top;
}

/* ================================================================
   CARD TILT UTILITY
================================================================ */
[data-tilt] {
  will-change: transform;
  transform: perspective(900px) rotateX(0) rotateY(0) scale3d(1,1,1);
  transition: transform 150ms linear, box-shadow 200ms var(--ease);
}

/* ================================================================
   UTILITIES
================================================================ */
.text-center  { text-align: center; }
.text-orange  { color: var(--orange); }
.text-gray    { color: var(--gray); }
.text-white   { color: var(--white); }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-8  { margin-bottom: 32px; }
.hidden { display: none !important; }

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--orange), rgba(255,160,60,0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider with glow */
.divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,130,0,0.3), transparent);
  border: none;
  margin: 0;
}

/* ================================================================
   LIGHT CONTEXT — .section--light
   Seções brancas contrastando com o azul navy base do site
================================================================ */

/* Base da seção clara */
.section--light {
  background: var(--surface);
  color: var(--ink);
}

/* Variante cinza-claro: .section--light.section--alt */
.section--light.section--alt {
  background: var(--surface-alt);
}

/* Tipografia */
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4,
.section--light h5,
.section--light h6 {
  color: var(--ink);
}

.section--light p,
.section--light li {
  color: var(--ink-soft);
}

.section--light small { color: var(--ink-muted); }
.section--light .lead { color: var(--ink-soft); }

.section--light .eyebrow { color: var(--orange); }
.section--light .eyebrow--gray { color: var(--ink-muted); }

/* Cobrir inline color:rgba(255,255,255,...) sem tocar no HTML */
.section--light [style*="color:rgba(255,255,255,0.9"],
.section--light [style*="color:rgba(255,255,255,1.0"],
.section--light [style*="color:rgb(255,255,255"],
.section--light [style*="color:#fff"],
.section--light [style*="color: #fff"],
.section--light [style*="color:white"],
.section--light [style*="color: white"] {
  color: var(--ink) !important;
}

.section--light [style*="color:rgba(255,255,255,0.7"],
.section--light [style*="color:rgba(255,255,255,0.8"] {
  color: var(--ink-soft) !important;
}

.section--light [style*="color:rgba(255,255,255,0.5"],
.section--light [style*="color:rgba(255,255,255,0.6"] {
  color: var(--ink-muted) !important;
}

.section--light [style*="color:rgba(255,255,255,0.3"],
.section--light [style*="color:rgba(255,255,255,0.4"] {
  color: #9AABB5 !important;
}

/* Variantes com espaço após "color: " (alguns editores inserem espaço) */
.section--light [style*="color: rgba(255,255,255,0.9"],
.section--light [style*="color: rgba(255,255,255,1.0"],
.section--light [style*="color: rgb(255,255,255"] {
  color: var(--ink) !important;
}
.section--light [style*="color: rgba(255,255,255,0.7"],
.section--light [style*="color: rgba(255,255,255,0.8"] {
  color: var(--ink-soft) !important;
}
.section--light [style*="color: rgba(255,255,255,0.5"],
.section--light [style*="color: rgba(255,255,255,0.6"] {
  color: var(--ink-muted) !important;
}
.section--light [style*="color: rgba(255,255,255,0.3"],
.section--light [style*="color: rgba(255,255,255,0.4"] {
  color: #9AABB5 !important;
}

/* Cards glass → flat cards com borda */
.section--light .glass {
  background: var(--surface);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.section--light .glass::before {
  background: none;
}

.section--light .glass::after {
  display: none;
}

.section--light .glass:hover {
  background: var(--surface);
  border-color: rgba(255,130,0,0.35);
  box-shadow: 0 4px 24px rgba(255,130,0,0.12), 0 8px 40px rgba(3,12,20,0.08);
  transform: translateY(-3px);
}

.section--light .glass-sm {
  background: var(--surface-alt);
  border: 1px solid var(--border-light);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Process cards */
.section--light .process-card {
  background: var(--surface);
  border-color: var(--border-light);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-card);
}
.section--light .process-card::before { background: none; }
.section--light .process-card:hover {
  border-color: rgba(255,130,0,0.30);
  box-shadow: 0 4px 24px rgba(255,130,0,0.10), 0 8px 40px rgba(3,12,20,0.08);
}
.section--light .process-card h3 { color: var(--ink); }
.section--light .process-card p  { color: var(--ink-soft); }
.section--light .process-num { color: rgba(10,10,10,0.08); }
.section--light .process-card--featured .process-num { color: rgba(255,130,0,0.22); }

/* Solution cards */
.section--light .solution-card {
  background: var(--surface);
  border-color: var(--border-light);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-card);
}
.section--light .solution-card::before { background: none; }
.section--light .solution-card:hover {
  background: var(--surface);
  border-color: rgba(255,130,0,0.30);
  box-shadow: 0 4px 24px rgba(255,130,0,0.10), 0 8px 40px rgba(3,12,20,0.08);
}
.section--light .solution-title   { color: var(--ink); }
.section--light .solution-desc    { color: var(--ink-soft); }
.section--light .solution-feature { color: var(--ink-muted); }
.section--light .solution-features { border-top-color: var(--border-light); }

/* Blog / Insight cards */
.section--light .blog-card,
.section--light .case-card {
  background: var(--surface);
  border-color: var(--border-light);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-card);
}
.section--light .blog-card:hover,
.section--light .case-card:hover {
  border-color: rgba(255,130,0,0.30);
  box-shadow: 0 4px 24px rgba(255,130,0,0.10), 0 8px 40px rgba(3,12,20,0.08);
}
.section--light .blog-body h4   { color: var(--ink); }
.section--light .blog-body p    { color: var(--ink-soft); }
.section--light .blog-meta      { color: var(--ink-muted); }
.section--light .case-body h4   { color: var(--ink); }
.section--light .case-tag       { background: var(--surface-alt); color: var(--ink-soft); border-color: var(--border-light); }
.section--light .case-result-label { color: var(--ink-muted); }
.section--light .case-thumb     { background: var(--surface-alt); }
.section--light .case-thumb-bg  { background: linear-gradient(135deg, #E8EEF2, var(--surface-alt)); }
.section--light .case-thumb-initials { color: rgba(10,10,10,0.14); }

/* Testimonial cards */
.section--light .testimonial-card {
  background: var(--surface);
  border-color: var(--border-light);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-card);
}
.section--light .testimonial-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}
.section--light .testimonial-card blockquote { color: var(--ink-soft); }
.section--light .testimonial-name            { color: var(--ink); }
.section--light .testimonial-role            { color: var(--ink-muted); }

/* FAQ */
.section--light .faq-item {
  background: var(--surface);
  border-color: var(--border-light);
}
.section--light .faq-item:hover { border-color: #C8D4DC; }
.section--light .faq-question   { color: var(--ink); }
.section--light .faq-question:hover { background: var(--surface-alt); }
.section--light .faq-answer-inner   { color: var(--ink-soft); }

/* Stats bar */
.section--light .stats-bar {
  background: var(--surface);
  border-color: var(--border-light);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-card);
}
.section--light .stat-item  { border-right-color: var(--border-light); }
.section--light .stat-item:hover { background: var(--surface-alt); }
.section--light .stat-label { color: var(--ink-muted); }

/* Filter buttons */
.section--light .filter-btn {
  background: var(--surface);
  border-color: var(--border-light);
  color: var(--ink-soft);
  backdrop-filter: none;
}
.section--light .filter-btn:hover {
  background: var(--surface-alt);
  color: var(--ink);
}
.section--light .filter-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* Solutions toggle */
.section--light .solutions-toggle {
  background: var(--surface);
  border-color: var(--border-light);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-card);
}
.section--light .toggle-btn { color: var(--ink-muted); }
.section--light .toggle-btn.active {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.section--light .toggle-btn:hover:not(.active) { color: var(--ink); }

/* Credential tags */
.section--light .credential-tag {
  background: var(--surface-alt);
  border-color: var(--border-light);
  color: var(--ink-soft);
}
.section--light .credential-tag:hover {
  background: #EBF0F3;
  border-color: #C8D4DC;
}

/* Dimension cards */
.section--light .dimension-card {
  background: var(--surface);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}
.section--light .dimension-card:hover {
  border-color: rgba(255,130,0,0.25);
  box-shadow: 0 4px 16px rgba(255,130,0,0.08), 0 8px 32px rgba(3,12,20,0.06);
}
.section--light .dimension-card h4 { color: var(--ink); }
.section--light .dimension-card p  { color: var(--ink-muted); }

/* Botões em contexto claro */
.section--light .btn-ghost,
.section--light .btn-secondary,
.section--light .btn-glass {
  background: var(--surface-alt);
  border-color: var(--border-light);
  color: var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.section--light .btn-ghost:hover,
.section--light .btn-secondary:hover,
.section--light .btn-glass:hover {
  background: #EBF0F3;
  border-color: #C8D4DC;
  color: var(--ink);
  transform: translateY(-1px);
}

.section--light .btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(10,10,10,0.22);
}
.section--light .btn-outline:hover {
  border-color: rgba(10,10,10,0.50);
  background: var(--surface-alt);
}

/* Formulários */
.section--light .form-input,
.section--light input:not([type="submit"]):not([type="button"]),
.section--light textarea {
  background: var(--surface);
  border-color: var(--border-light);
  color: var(--ink);
}
.section--light .form-input::placeholder,
.section--light input::placeholder,
.section--light textarea::placeholder {
  color: var(--ink-muted);
}
.section--light .form-input:focus,
.section--light input:focus,
.section--light textarea:focus {
  border-color: rgba(255,130,0,0.50);
  box-shadow: 0 0 0 3px rgba(255,130,0,0.10);
  background: var(--surface);
}
.section--light .form-label { color: var(--ink-muted); }

/* Tabs */
.section--light .tabs { border-bottom-color: var(--border-light); }
.section--light .tab-btn { color: var(--ink-muted); }
.section--light .tab-btn:hover { color: var(--ink); }
.section--light .tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }

/* Dividers */
.section--light .divider-glow {
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* Orbs azuis, grid-overlay e bg-images decorativas: sumir em fundo claro */
.section--light .orb-blue { display: none; }
.section--light .grid-overlay { display: none; }
.section--light [data-lbr-bg] { display: none; }

/* var(--white) inline → tinta escura */
.section--light [style*="color:var(--white)"] { color: var(--ink) !important; }
.section--light [style*="color:var(--gray)"]  { color: var(--ink-muted) !important; }

/* Bordas brancas translúcidas → bordas claras */
.section--light [style*="border-right:1px solid rgba(255,255,255"] {
  border-right-color: var(--border-light) !important;
}
.section--light [style*="border-left:1px solid rgba(255,255,255"] {
  border-left-color: var(--border-light) !important;
}
.section--light [style*="border-top:1px solid rgba(255,255,255"] {
  border-top-color: var(--border-light) !important;
}
.section--light [style*="border-bottom:1px solid rgba(255,255,255"] {
  border-bottom-color: var(--border-light) !important;
}
.section--light [style*="border:1px solid rgba(255,255,255"] {
  border-color: var(--border-light) !important;
}

/* Bordas com espaço após "border" */
.section--light [style*="border-right: 1px solid rgba(255,255,255"] {
  border-right-color: var(--border-light) !important;
}
.section--light [style*="border-left: 1px solid rgba(255,255,255"] {
  border-left-color: var(--border-light) !important;
}
.section--light [style*="border-top: 1px solid rgba(255,255,255"] {
  border-top-color: var(--border-light) !important;
}
.section--light [style*="border-bottom: 1px solid rgba(255,255,255"] {
  border-bottom-color: var(--border-light) !important;
}
.section--light [style*="border: 1px solid rgba(255,255,255"] {
  border-color: var(--border-light) !important;
}

/* Backgrounds de card inline em seção clara */
.section--light [style*="background:rgba(255,130,0,0.05)"],
.section--light [style*="background:rgba(255,130,0,0.04)"],
.section--light [style*="background:rgba(255,130,0,0.07)"],
.section--light [style*="background:rgba(255,130,0,0.06)"] {
  background: rgba(255,130,0,0.06) !important;
}

/* Stats-bar-grid borders via class selector (mobile responsive) */
.section--light .stats-bar-grid > div {
  border-right-color: var(--border-light) !important;
  border-top-color: var(--border-light) !important;
}

/* Cursor glow: invisível em contexto claro sem ajuste */
.section--light ~ .cursor-glow,
.cursor-glow { mix-blend-mode: multiply; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .solutions-grid, .cases-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .dimensions-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .agendar-grid { grid-template-columns: 1fr; }
  .cta-final-inner { flex-direction: column; gap: 32px; }
  .solution-card--full { grid-column: span 2; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .header-nav, .header-cta-desktop { display: none; }
  .nav-toggle { display: flex; }
  .solutions-grid, .cases-grid, .testimonials-grid, .blog-grid, .process-grid, .dimensions-grid { grid-template-columns: 1fr; }
  .solution-card--full { grid-column: span 1; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .newsletter-block { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: unset; }
  .cta-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-hero { padding: 120px 0 60px; }
  .cursor-glow { display: none; }

  /* Seções claras no mobile */
  .section--light .glass:hover { transform: none; }
  .section--light .glass { padding-left: 20px; padding-right: 20px; }
  .section--light .glass { border-color: #C8D4DC; }
  .section--light .credential-tag,
  .section--light .case-tag { border-color: #C8D4DC; }
  .section--light .stat-label { color: var(--ink-muted); }
  .section--light [class*="stat-num"],
  .section--light [class*="stat-value"],
  .section--light [class*="stat-number"] { color: var(--ink) !important; }
  .section--light p,
  .section--light li { line-height: 1.7; }

  /* Orbs — evitar overflow horizontal em mobile */
  .orb-orange, .orb-blue, .orb {
    width: min(400px, 90vw) !important;
    height: min(400px, 90vw) !important;
  }

  /* Mobile nav — nunca cobrir a tela inteira */
  .mobile-nav {
    max-height: calc(100vh - 68px) !important;
    overflow-y: auto !important;
  }
}

/* ================================================================
   MOBILE OVERRIDES — inline grid styles via attribute selectors
================================================================ */

/* ── Tablet (≤1024px): grids inline → reduzir colunas ── */
@media (max-width: 1024px) {
  [style*="grid-template-columns:repeat(5,1fr)"] { grid-template-columns: repeat(3,1fr) !important; }
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
  [style*="grid-template-columns:1fr 1fr 1fr"]   { grid-template-columns: repeat(2,1fr) !important; }
}

/* ── Mobile (≤768px): empilhar todos os grids inline ── */
@media (max-width: 768px) {
  body { overflow-x: hidden; }

  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1fr"][style*="gap:80px"] { gap: 40px !important; }
  [style*="grid-template-columns:1fr 1fr"][style*="gap:60px"] { gap: 32px !important; }
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1fr 1fr"]   { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
  [style*="grid-template-columns:repeat(5,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }

  [style*="grid-template-columns:120px 1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  [style*="min-height:85vh"] { min-height: 0 !important; padding-top: 48px !important; padding-bottom: 36px !important; }
  [style*="padding:100px 0 60px"] { padding-top: 84px !important; padding-bottom: 40px !important; }
  [style*="padding:80px 0 60px"]  { padding-top: 48px !important; padding-bottom: 36px !important; }
  [style*="padding:64px 48px"] { padding: 32px 20px !important; }
  [style*="padding:56px 48px"] { padding: 28px 20px !important; }
  [style*="padding:52px"]      { padding: 28px 20px !important; }

  .section { padding: 40px 0 !important; }

  input, select, textarea { font-size: max(16px, 1em) !important; }
}

/* ── Telefones pequenos (≤480px): ── */
@media (max-width: 480px) {
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(5,1fr)"] { grid-template-columns: 1fr !important; }
  .section { padding: 28px 0 !important; }
  [style*="padding:64px 48px"],
  [style*="padding:56px 48px"],
  [style*="padding:52px"] { padding: 24px 16px !important; }

  /* CTA buttons — coluna, alinhado à esquerda, tamanho natural */
  .hero-cta-row .btn, .hero-cta-row a.btn,
  .hero-section [style*="flex-wrap:wrap"] .btn,
  .hero-section [style*="flex-wrap: wrap"] .btn {
    text-align: center !important;
    box-sizing: border-box !important;
  }
  .hero-section [style*="flex-wrap:wrap"],
  .hero-section [style*="flex-wrap: wrap"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  /* btn-lg menor em mobile */
  .btn-lg { padding: 10px 22px !important; font-size: 13px !important; }

  /* Stats bar: menos padding para labels não quebrarem */
  .stats-bar-grid [style*="padding:40px"] { padding: 20px 10px !important; }

  /* Newsletter — garantir sem scroll horizontal */
  .newsletter-form input { width: 100% !important; min-width: 0 !important; box-sizing: border-box; }

  /* Eyebrow legível */
  .eyebrow { font-size: 11px !important; }

  /* Footer menos espaçado */
  .footer-grid { gap: 16px !important; }

  /* Touch targets mínimos (WCAG 2.1) */
  .filter-btn  { min-height: 44px !important; padding: 10px 16px !important; }
  .toggle-btn  { min-height: 44px !important; }
  .faq-icon    { width: 44px !important; height: 44px !important; }
}

/* ================================================================
   MOBILE — Tipografia e componentes ≤768px
================================================================ */
@media (max-width: 768px) {
  .display {
    font-size: clamp(28px, 7.5vw, 38px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
  }
  .headline {
    font-size: clamp(20px, 5.5vw, 28px) !important;
    line-height: 1.2 !important;
  }
  .headline-sm { font-size: clamp(15px, 4vw, 19px) !important; }
  .page-hero-inner h1 {
    font-size: clamp(22px, 6.5vw, 34px) !important;
    line-height: 1.1 !important;
  }
  .page-hero-inner p { font-size: 13px !important; line-height: 1.6 !important; }

  p:not([style*="font-size"]) { font-size: 13px; line-height: 1.6; }
  /* p injetado dentro de heading herda o tamanho do heading */
  h1 p, h2 p, h3 p { font-size: inherit !important; line-height: inherit !important; margin: 0 !important; }

  .solution-title  { font-size: 17px !important; line-height: 1.2 !important; }
  .stat-num        { font-size: 24px !important; }
  .hero-stat-num   { font-size: 18px !important; }
  .process-num     { font-size: 32px !important; }
  .case-result     { font-size: 22px !important; }
  .dim-num         { font-size: 22px !important; }
  .case-thumb-initials { font-size: 26px !important; }
  .manifesto-block blockquote { font-size: clamp(15px, 4.5vw, 20px) !important; line-height: 1.55 !important; }
  .lead { font-size: 13px !important; line-height: 1.6 !important; }

  .lbr-block h3 { font-size: 15px !important; margin-bottom: 8px !important; }
  .lbr-block p  { font-size: 12px !important; line-height: 1.6 !important; }

  .section-header { margin-bottom: 20px !important; }
  .hero-cta-row   { margin-top: 20px !important; }
  .hero-stats     { margin-top: 28px !important; }

  [style*="line-height:1.8"]  { line-height: 1.55 !important; }
  [style*="line-height:1.75"] { line-height: 1.55 !important; }
  [style*="line-height:1.7"]  { line-height: 1.55 !important; }
  [style*="line-height:1.65"] { line-height: 1.55 !important; }

  [style*="font-size:80px"] { font-size: 28px !important; line-height: 1.1 !important; }
  [style*="font-size:72px"] { font-size: 26px !important; line-height: 1.1 !important; }
  [style*="font-size:56px"] { font-size: 24px !important; line-height: 1.1 !important; }
  [style*="font-size:52px"] { font-size: 22px !important; line-height: 1.1 !important; }
  [style*="font-size:48px"] { font-size: 22px !important; line-height: 1.1 !important; }
  [style*="font-size:44px"] { font-size: 20px !important; line-height: 1.1 !important; }
  [style*="font-size:40px"] { font-size: 20px !important; line-height: 1.15 !important; }
  [style*="font-size:32px"] { font-size: 17px !important; }
  [style*="font-size:28px"] { font-size: 15px !important; }
  [style*="font-size:24px"] { font-size: 14px !important; }
  [style*="font-size:22px"] { font-size: 14px !important; }
  [style*="font-size:20px"] { font-size: 13px !important; }
  [style*="font-size:19px"] { font-size: 13px !important; }
  [style*="font-size:18px"] { font-size: 13px !important; }
  [style*="font-size:17px"] { font-size: 13px !important; }
  [style*="font-size:16px"] { font-size: 13px !important; }
  [style*="font-size:15px"] { font-size: 12px !important; }
  [style*="font-size:clamp(52px"] { font-size: clamp(22px, 6.5vw, 32px) !important; }
  [style*="font-size:clamp(48px"] { font-size: clamp(22px, 6.5vw, 32px) !important; }
  [style*="font-size:clamp(44px"] { font-size: clamp(20px, 6vw, 28px) !important; }
  [style*="font-size:clamp(36px"] { font-size: clamp(17px, 5vw, 22px) !important; }

  .page-hero { padding: 88px 0 32px !important; }
  .hero { min-height: 0 !important; }
  .hero-content { padding: 88px 0 44px !important; }

  [style*="min-height:100vh"] { min-height: 0 !important; }
  [style*="min-height:80vh"]  { min-height: 0 !important; }
  [style*="min-height:52vh"]  { min-height: 0 !important; }
  [style*="min-height:44vh"]  { min-height: 0 !important; }
  [style*="min-height:70vh"]  { min-height: 0 !important; }
  [style*="min-height:60vh"]  { min-height: 0 !important; }
  [style*="min-height:50vh"]  { min-height: 0 !important; }

  [style*="padding:80px 0 52px"] { padding-top: 88px !important; padding-bottom: 24px !important; }

  [style*="padding:72px 0"] { padding: 32px 0 !important; }
  [style*="padding:64px 0"] { padding: 32px 0 !important; }

  [style*="gap:80px"] { gap: 32px !important; }
  [style*="gap:72px"] { gap: 28px !important; }
  [style*="gap:64px"] { gap: 24px !important; }
  [style*="gap:56px"] { gap: 20px !important; }
  [style*="grid-template-columns:1fr 1fr"][style*="gap:64px"] { gap: 24px !important; }

  [style*="padding:28px 36px"] { padding: 16px 14px !important; }
  [style*="padding:36px 32px"] { padding: 16px 14px !important; }
  [style*="padding:36px 40px"] { padding: 16px 16px !important; }
  [style*="padding:40px 36px"] { padding: 16px 14px !important; }
  [style*="padding:32px 28px"] { padding: 16px 14px !important; }
  [style*="padding:24px 18px"] { padding: 14px 12px !important; }

  .hero-partners { padding-top: 88px !important; padding-bottom: 12px !important; }
  .marketplace-section { padding: 16px 0 40px !important; }
}

/* ── Extra pequeno (≤480px) ── */
@media (max-width: 480px) {
  .display,
  .page-hero-inner h1,
  [style*="font-size:clamp(52px"],
  [style*="font-size:clamp(48px"],
  [style*="font-size:clamp(44px"] {
    font-size: clamp(19px, 5.5vw, 24px) !important;
    line-height: 1.15 !important;
  }
  .headline  { font-size: clamp(15px, 4.5vw, 20px) !important; }
  .lead, .page-hero-inner p { font-size: 13px !important; }
  .solution-title { font-size: 15px !important; }
  .stat-num       { font-size: 20px !important; }

  [style*="font-size:80px"],
  [style*="font-size:72px"],
  [style*="font-size:56px"],
  [style*="font-size:52px"],
  [style*="font-size:48px"] { font-size: 20px !important; }
  [style*="font-size:44px"],
  [style*="font-size:40px"],
  [style*="font-size:32px"] { font-size: 18px !important; }
  [style*="font-size:28px"],
  [style*="font-size:24px"],
  [style*="font-size:22px"] { font-size: 14px !important; }
  [style*="font-size:20px"] { font-size: 13px !important; }

  .page-hero { padding: 80px 0 24px !important; }
  [style*="padding:72px 0"],
  [style*="padding:64px 0"] { padding: 24px 0 !important; }
  [style*="padding:80px 0 52px"] { padding-top: 80px !important; padding-bottom: 16px !important; }
}


/* ── Exit intent modal ── */
.ei-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5, 10, 20, 0.78);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 350ms ease;
}
.ei-overlay.active { opacity: 1; pointer-events: all; }
.ei-modal {
  position: relative; max-width: 480px; width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 48px 40px 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  text-align: center;
  transform: translateY(16px);
  transition: transform 350ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ei-overlay.active .ei-modal { transform: translateY(0); }
.ei-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.3); font-size: 22px; line-height: 1;
  transition: color 200ms; padding: 4px;
}
.ei-close:hover { color: rgba(255,255,255,0.7); }
.ei-eyebrow {
  font-size: 11px; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px; display: block;
}
.ei-title {
  font-size: clamp(22px, 4vw, 28px); font-weight: 200;
  color: #fff; line-height: 1.25; margin: 0 0 14px;
}
.ei-body {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.75;
  margin: 0 0 32px;
}
.ei-dismiss {
  display: block; margin: 16px auto 0;
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.28); cursor: pointer;
  background: none; border: none; font-family: inherit;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 200ms;
}
.ei-dismiss:hover { color: rgba(255,255,255,0.55); }
