/* ============================================================
   COMPANHIA DE VENDAS — Corporate Style Sheet
   Premium B2B Corporate Design — Light Orange Theme
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* === ORANGE LIGHT THEME PALETTE === */
  /* Page backgrounds */
  --navy-950: #fff7ed;   /* warm orange-tinted white (sections alt) */
  --navy-900: #ffffff;   /* pure white (main bg) */
  --navy-800: #fff3e0;   /* light orange wash */
  --navy-700: #ffe0b2;   /* soft orange */
  --navy-600: #ffcc80;   /* medium orange tint */
  --navy-500: #ffb74d;   /* deeper orange tint */

  /* Orange Accent */
  --gold-500: #ea6c00;   /* deep orange */
  --gold-400: #f97316;   /* primary orange */
  --gold-300: #fb923c;   /* light orange */
  --gold-200: #fed7aa;   /* pale orange */

  /* Blue - kept for secondary accents */
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #60a5fa;
  --blue-glow: rgba(37, 99, 235, 0.15);

  /* Text Colors */
  --white: #1a1a1a;        /* headings — near black */
  --pure-white: #ffffff;   /* button text */

  --gray-100: #111827;
  --gray-200: #1f2937;
  --gray-300: #374151;     /* body text */
  --gray-400: #4b5563;
  --gray-500: #6b7280;
  --gray-600: #9ca3af;
  --gray-700: #d1d5db;
  --gray-800: #f3f4f6;

  --success: #10b981;
  --danger: #ef4444;

  /* Typography */
  --font-main: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container-max: 1280px;
  --container-px: 24px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(249,115,22,0.10);
  --shadow-glow: 0 0 40px rgba(249,115,22,0.20);
  --shadow-blue-glow: 0 0 40px rgba(37,99,235,0.15);

  /* Borders */
  --border-light: 1px solid rgba(249,115,22,0.15);
  --border-gold: 1px solid rgba(249,115,22,0.35);
  --border-blue: 1px solid rgba(37,99,235,0.25);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --trans-fast: 0.15s ease;
  --trans-med: 0.3s ease;
  --trans-slow: 0.5s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--navy-900);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
input, textarea, select, button { font-family: inherit; }

/* ---------- Scroll Bar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--gold-400); border-radius: 3px; }

/* ---------- Selection ---------- */
::selection { background: var(--gold-300); color: #fff; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
}

.dark-section {
  background: var(--navy-950);
  position: relative;
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(249,115,22,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(234,108,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header.light .section-title { color: var(--white); }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05));
  border: var(--border-gold);
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.light-tag {
  background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(249,115,22,0.08));
}
.section-title {
  font-family: var(--font-main);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle.light-text { color: var(--gray-300); }

/* ---------- Text Utilities ---------- */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-300), var(--blue-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--trans-med);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--trans-med);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--pure-white);
  box-shadow: 0 4px 20px rgba(249,115,22,0.40);
}
.btn-primary::before { background: linear-gradient(135deg, var(--gold-400), var(--gold-300)); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(249,115,22,0.55); }

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-glow:hover::after { transform: rotate(45deg) translateX(100%); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold-400);
  border: var(--border-gold);
}
.btn-outline-gold:hover {
  background: rgba(249,115,22,0.10);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(249,115,22,0.20);
}

.btn-large { padding: 18px 44px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--trans-med);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: var(--border-light);
  box-shadow: 0 4px 32px rgba(249,115,22,0.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  transition: color var(--trans-med);
  text-decoration: none;
}
.navbar.scrolled .logo {
  color: #1a1a1a;
}
.logo-icon {
  color: var(--gold-400);
  font-size: 20px;
  display: inline-block;
}
.logo-img {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: contain;
}
@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.logo-accent { color: var(--gold-400); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pure-white);
  border-radius: var(--radius-full);
  transition: all var(--trans-fast);
}
.navbar.scrolled .nav-link {
  color: var(--gray-400);
}
.nav-link:hover, .navbar.scrolled .nav-link:hover { color: var(--gold-500); background: rgba(249,115,22,0.08); }
.nav-link.active, .navbar.scrolled .nav-link.active { color: var(--gold-500); }
.nav-cta {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--trans-med);
  letter-spacing: 0.3px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.40); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans-fast);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 13, 31, 0.92) 0%,
    rgba(7, 13, 31, 0.75) 40%,
    rgba(7, 13, 31, 0.85) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px var(--container-px);
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
.hero-title {
  font-family: var(--font-main);
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: #fff;
}
.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #cbd5e1;
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  backdrop-filter: blur(20px);
  max-width: 680px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.hero-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  margin: 0 20px;
}
.stat-number {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-plus {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 1px;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-scroll {
  position: relative;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold-400);
  border-bottom: 2px solid var(--gold-400);
  transform: rotate(45deg);
  animation: bounce-arrow 1.5s ease infinite;
}
@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ============================================================
   CLIENT STRIP / MARQUEE
   ============================================================ */
.clients-strip {
  background: var(--navy-950);
  padding: 36px 0;
  border-top: var(--border-light);
  border-bottom: var(--border-light);
}
.strip-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.strip-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.strip-logo {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-500);
  transition: color var(--trans-fast);
  cursor: default;
  white-space: nowrap;
}
.strip-logo:hover { color: var(--gray-300); }

/* ============================================================
   METRICS GRID
   ============================================================ */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.metric-card {
  background: rgba(249,115,22,0.04);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--trans-med);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0;
  transition: opacity var(--trans-med);
}
.metric-card:hover {
  border-color: rgba(249,115,22,0.30);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.metric-card:hover::before { opacity: 1; }
.metric-card.featured {
  background: linear-gradient(135deg, rgba(249,115,22,0.10), rgba(249,115,22,0.04));
  border-color: rgba(249,115,22,0.30);
}
.metric-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 1;
}
.metric-card.featured:hover {
  border-color: rgba(249,115,22,0.50);
  box-shadow: 0 8px 32px rgba(249,115,22,0.20);
}
.metric-card.featured {
  position: relative;
  isolation: isolate;
}
.metric-card.featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(249,115,22,0.35), transparent, rgba(249,115,22,0.20));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--trans-med);
}
.metric-card.featured:hover::after { opacity: 1; }

.metric-icon { font-size: 36px; margin-bottom: 16px; }
.metric-value {
  font-family: var(--font-main);
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-card.featured .metric-value {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.metric-detail {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ---------- Comparison Block ---------- */
.comparison-block {
  background: rgba(249,115,22,0.03);
  border: var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  overflow: hidden;
  position: relative;
}
.comparison-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(249,115,22,0.10);
}
.comparison-header {
  text-align: center;
  margin-bottom: 40px;
}
.comparison-header h3 {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.comp-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: var(--border-light);
  color: var(--white);
}
.comp-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.comp-icon.danger { background: rgba(239,68,68,0.15); color: #f87171; }
.comp-icon.success { background: rgba(16,185,129,0.15); color: #34d399; }
.comp-list li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-400);
  border-bottom: 1px solid rgba(249,115,22,0.06);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.comp-list li::before { content: '\2022'; position: absolute; left: 0; }
.others .comp-list li { color: #ef4444; }
.others .comp-list li::before { color: #ef4444; }
.cia .comp-list li { color: #10b981; }
.cia .comp-list li::before { color: #10b981; }
.comparison-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.comp-tag {
  background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(249,115,22,0.05));
  border: var(--border-gold);
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: var(--radius-full);
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 64px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold-400), var(--gold-500), transparent);
  opacity: 0.4;
}
.process-step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-bottom: var(--border-light);
  position: relative;
  transition: all var(--trans-med);
}
.process-step:last-child { border-bottom: none; }
.process-step:hover .step-content {
  transform: translateX(8px);
}
.step-number {
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 900;
  color: rgba(249,115,22,0.10);
  width: 100px;
  min-width: 100px;
  text-align: center;
  line-height: 1;
  margin-top: 4px;
  transition: color var(--trans-med);
}
.process-step:hover .step-number { color: rgba(249,115,22,0.30); }
.step-content {
  flex: 1;
  transition: transform var(--trans-med);
}
.step-icon { font-size: 32px; margin-bottom: 12px; }
.step-content h3 {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 580px;
}
.step-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.step-tags span {
  background: rgba(249,115,22,0.10);
  border: 1px solid rgba(249,115,22,0.20);
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
}

/* ============================================================
   METHOD GRID
   ============================================================ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.method-card {
  background: rgba(249,115,22,0.03);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--trans-med);
  position: relative;
  isolation: isolate;
}
.method-card:hover {
  border-color: rgba(249,115,22,0.20);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.method-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(249,115,22,0.25), transparent, rgba(249,115,22,0.15));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.method-card:hover::after { opacity: 1; }
.method-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.method-icon-wrap.blue { background: rgba(37,99,235,0.12); color: var(--blue-300); border: 1px solid rgba(37,99,235,0.20); }
.method-icon-wrap.gold { background: rgba(249,115,22,0.12); color: var(--gold-400); border: 1px solid rgba(249,115,22,0.20); }
.method-icon-wrap.purple { background: rgba(139,92,246,0.12); color: #a78bfa; border: 1px solid rgba(139,92,246,0.20); }
.method-icon-wrap.green { background: rgba(16,185,129,0.12); color: #34d399; border: 1px solid rgba(16,185,129,0.20); }
.method-icon-wrap.orange { background: rgba(249,115,22,0.12); color: var(--gold-400); border: 1px solid rgba(249,115,22,0.20); }
.method-icon-wrap.red { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.20); }
.method-card h3 {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.method-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ---------- Segments ---------- */
.segments-wrap {
  background: rgba(249,115,22,0.04);
  border: var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}
.segments-title {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}
.segments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.segment-pill {
  background: rgba(249,115,22,0.06);
  border: var(--border-light);
  color: var(--gray-300);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: all var(--trans-fast);
  cursor: default;
}
.segment-pill:hover {
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.30);
  color: var(--gold-500);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-image-wrap {
  position: relative;
  width: 100%;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.07);
}
.about-badge-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(249,115,22,0.15);
}
.abc-number {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-400);
}
.abc-label {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-link {
  flex: 1;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--trans-med);
}
.social-link.whatsapp { background: rgba(37,211,102,0.10); border: 1px solid rgba(37,211,102,0.30); color: #25D366; }
.social-link.whatsapp:hover { background: rgba(37,211,102,0.20); transform: translateY(-2px); }
.social-link.email { background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.20); color: var(--blue-400); }
.social-link.email:hover { background: rgba(37,99,235,0.15); transform: translateY(-2px); }
.social-link.linkedin { background: rgba(10,102,194,0.08); border: 1px solid rgba(10,102,194,0.20); color: #0a66c2; }
.social-link.linkedin:hover { background: rgba(10,102,194,0.15); transform: translateY(-2px); color: #2d8fda; }

.about-text { padding-top: 16px; }
.about-lead {
  font-size: 18px;
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
}
.about-lead strong { color: var(--gold-500); font-weight: 600; }
.about-body {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-body strong { color: var(--gray-200); font-weight: 600; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(249,115,22,0.04);
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: border-color var(--trans-fast);
}
.value-item:hover { border-color: rgba(249,115,22,0.25); }
.value-check {
  width: 26px;
  height: 26px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.value-item p { font-size: 12px; color: var(--gray-500); line-height: 1.5; }

/* ============================================================
   CLIENTS GRID
   ============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.client-card {
  background: rgba(249,115,22,0.04);
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--trans-med);
}
.client-card:hover {
  border-color: rgba(249,115,22,0.30);
  background: rgba(249,115,22,0.08);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(249,115,22,0.10);
}
.client-logo-text {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gray-400), var(--gray-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  transition: all var(--trans-fast);
}
.client-card:hover .client-logo-text {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.client-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.client-sector {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Testimonials ---------- */
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(249,115,22,0.04);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--trans-med);
  backdrop-filter: blur(16px);
}
.testimonial-card:hover {
  border-color: rgba(249,115,22,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.quote-icon {
  font-family: Georgia, serif;
  font-size: 64px;
  color: rgba(249,115,22,0.20);
  line-height: 0.8;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.author-info {
  flex: 1;
}
.author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.author-info span {
  font-size: 12px;
  color: var(--gray-500);
}
.testimonial-stars {
  color: var(--gold-400);
  font-size: 14px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,247,237,1) 0%, rgba(255,237,213,0.95) 50%, rgba(255,247,237,1) 100%);
  z-index: 0;
}
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% 50%, rgba(249,115,22,0.10), transparent),
    radial-gradient(ellipse 600px 300px at 30% 50%, rgba(234,108,0,0.07), transparent);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-badge {
  display: inline-block;
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.30);
  color: #10b981;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}
.cta-title {
  font-family: var(--font-main);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.cta-subtitle {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--gray-500);
}
.cta-guarantees span { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 40px;
  margin-top: 16px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon { font-size: 22px; min-width: 30px; }
.contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  font-size: 15px;
  color: var(--white);
  transition: color var(--trans-fast);
}
.contact-item a:hover { color: var(--gold-400); }

/* ---------- Form ---------- */
.contact-form-wrap {
  background: rgba(249,115,22,0.04);
  border: var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid rgba(249,115,22,0.20);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  transition: all var(--trans-fast);
  outline: none;
}
.form-group select option { background: #fff; color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-600); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(249,115,22,0.50);
  background: rgba(249,115,22,0.04);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-950);
  border-top: var(--border-light);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--gray-500);
  margin: 12px 0 24px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 40px;
  height: 40px;
  background: rgba(249,115,22,0.06);
  border: var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--trans-fast);
}
.footer-social:hover {
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.30);
  color: var(--gold-400);
  transform: translateY(-2px);
}
.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--gray-500);
  transition: color var(--trans-fast);
}
.footer-col ul li a:hover { color: var(--gold-400); }
.footer-address {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}
.footer-bottom {
  border-top: var(--border-light);
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--gray-600);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.40);
  transition: all var(--trans-med);
  z-index: 999;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37,211,102,0.60);
}
.float-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.50);
  animation: wapulse 2s ease infinite;
}
@keyframes wapulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.visible { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .about-layout { grid-template-columns: 320px 1fr; gap: 48px; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-py: 72px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-grid { grid-template-columns: 1fr; gap: 24px; }
  .comparison-block::before { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .about-image-wrap { width: 220px; }
  .about-socials { flex: 1; min-width: 200px; }
  .testimonials-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-wrap { grid-template-columns: repeat(2, 1fr); }
  .process-visual-wrap img { position: relative !important; top: auto !important; margin-bottom: 32px; margin-top: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 999;
  }
  .nav-links.open .nav-link { font-size: 18px; padding: 12px 24px; }
  .nav-links.open .nav-cta { font-size: 18px; padding: 14px 32px; }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-content { padding: 60px var(--container-px); }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 24px;
  }
  .hero-divider { width: 100%; height: 1px; margin: 0; }
  .hero-stat { width: 100%; flex-direction: row; gap: 12px; align-items: center; }
  .stat-label { text-align: left; }
  .hero-noise, .hero-canvas { display: none !important; }

  .strip-logos { gap: 24px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-links-wrap { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .about-values { grid-template-columns: 1fr; }
  .process-timeline::before { left: 44px; }
  .step-number { width: 72px; min-width: 72px; font-size: 40px; }

  .cta-actions { flex-direction: column; }
  .cta-guarantees { gap: 16px; flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; letter-spacing: -0.5px; }
  .section-title { font-size: 28px; }
  .clients-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .comparison-block { padding: 28px 20px; }
  .about-badge-card { right: auto; left: 50%; transform: translateX(-50%); bottom: -20px; width: 80%; justify-content: center; z-index: 10; }
  .about-image-wrap { margin-bottom: 24px; max-width: 280px; }
}

/* ============================================================
   ELITE TIER ADDITIONS
   ============================================================ */

/* ---- LOADER ---- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.loader-diamond {
  font-size: 36px;
  color: var(--gold-400);
  animation: loader-spin 2s linear infinite;
  display: inline-block;
}
.loader-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  animation: loader-pulse 1.5s ease-in-out infinite;
}
@keyframes loader-spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
}
.loader-name {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.loader-bar-wrap {
  width: 260px;
  height: 3px;
  background: rgba(249,115,22,0.12);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 12px;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  transition: width 0.05s linear;
}
.loader-pct {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 2px;
}

/* ---- CUSTOM CURSOR ---- */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.1s ease;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(249,115,22,0.50);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, transform 0.12s ease;
}
.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  border-color: var(--gold-400);
  background: rgba(249,115,22,0.06);
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 52px; height: 52px; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---- ROI CALCULATOR ---- */
.roi-calculator {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.calc-header { margin-bottom: 30px; text-align: center; }
.calc-header h3 { font-size: 24px; color: var(--gray-100); margin-bottom: 8px; }
.calc-header p { color: var(--gray-400); }
.calc-body { display: flex; flex-direction: column; gap: 24px; }
.calc-input-group label { display: block; font-weight: 600; color: var(--gray-200); margin-bottom: 12px; }
.calc-range-wrap { position: relative; }
.calc-val-display { display: block; font-size: 20px; font-weight: 700; color: var(--gold-500); margin-bottom: 10px; text-align: center; }
.calc-range-wrap input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  background: var(--gray-200);
  height: 8px;
  border-radius: 4px;
  outline: none;
}
.calc-range-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--gold-500);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(249,115,22,0.3);
  transition: transform 0.2s ease;
}
.calc-range-wrap input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-range-labels { display: flex; justify-content: space-between; font-size: 13px; color: var(--gray-500); margin-top: 8px; }
.calc-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 10px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-200);
}
.calc-result-item {
  background: var(--gray-50);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--gray-200);
}
.calc-result-item span { display: block; font-size: 14px; color: var(--gray-500); margin-bottom: 8px; }
.calc-result-item strong { display: block; font-size: 24px; color: var(--gray-100); }
.calc-result-item.highlight-main { background: rgba(249,115,22,0.05); border-color: rgba(249,115,22,0.2); }
.calc-result-item.highlight-main strong { color: var(--gold-500); font-size: 28px; }

/* ---- FAQ SECTION ---- */
.faq-section { background: var(--gray-50); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.faq-item.active { border-color: rgba(249,115,22,0.3); box-shadow: var(--shadow-md); }
.faq-question {
  padding: 24px;
  font-weight: 600;
  font-size: 18px;
  color: var(--gray-200);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--gold-500); }
.faq-icon { font-size: 24px; font-weight: 300; transition: transform 0.3s ease; color: var(--gold-500); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer { padding: 0 24px 24px 24px; max-height: 500px; }
.faq-answer p { color: var(--gray-400); margin: 0; line-height: 1.6; }

/* ---- FLOATING WHATSAPP ---- */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
}
.float-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}
.float-whatsapp svg {
  z-index: 2;
  width: 32px;
  height: 32px;
}
.float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2s infinite;
  z-index: 1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-400));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ---- HERO CANVAS / NOISE ---- */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
  mix-blend-mode: overlay;
}

/* ---- TYPED CURSOR ---- */
.typed-cursor {
  color: var(--gold-400);
  animation: blink-cursor 0.75s step-end infinite;
  font-weight: 300;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.reveal-line {
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}
.reveal-line.visible { opacity: 1; transform: translateY(0); }

/* ---- MARQUEE ---- */
.marquee-section {
  background: var(--navy-950);
  padding: 28px 0 24px;
  border-top: var(--border-light);
  border-bottom: var(--border-light);
  overflow: hidden;
}
.marquee-section .strip-label {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.marquee-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.m-logo {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-500);
  white-space: nowrap;
  padding: 0 32px;
  transition: color var(--trans-fast);
  cursor: default;
}
.m-logo em { font-style: normal; color: var(--gray-300); }
.m-logo:hover { color: var(--gray-200); }
.m-sep {
  color: var(--gold-400);
  font-size: 10px;
  opacity: 0.5;
}

/* ---- WAVE DIVIDERS ---- */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}
.wave-divider.dark { background: var(--navy-900); }
.wave-divider.light { background: var(--navy-950); }

/* ---- ROI BARS SECTION ---- */
.roi-section {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.roi-section::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.roi-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}
.roi-left .section-title { text-align: left; }
.roi-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.roi-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.roi-bar-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
}
.roi-bar-val {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}
.roi-bar-track {
  height: 8px;
  background: rgba(249,115,22,0.10);
  border-radius: 4px;
  overflow: hidden;
}
.roi-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.roi-bar-fill.gold {
  background: linear-gradient(90deg, var(--gold-400), var(--gold-200));
}
.roi-bar-fill.animate { width: var(--pct); }

/* ---- NAV LINK ACTIVE INDICATOR ---- */
.nav-link.active {
  color: var(--gold-500);
}
.nav-link.active::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--gold-400);
  border-radius: 50%;
  margin: 0 auto;
  margin-top: 2px;
}

/* ---- BUTTON MAGNETIC HOVER ---- */
.btn { will-change: transform; }

/* ---- SECTION ENTRANCE ---- */
.section-header { transition: opacity 0.7s ease, transform 0.7s ease; }

/* ---- RICH IMAGE LAYOUTS ---- */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  align-items: start;
}
.comparison-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: stretch;
}
.rich-visual {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 20px 40px rgba(249,115,22,0.15);
  border-radius: var(--radius-lg);
}

/* ---- Illustrative image backgrounds — LIGHT ORANGE ---- */
.comparison-visual,
.roi-visual-wrap,
.process-visual-wrap {
  background: linear-gradient(135deg, rgba(255,247,237,1), rgba(255,228,196,0.85));
  border-radius: var(--radius-xl);
  padding: 20px;
  border: var(--border-gold);
}
.comparison-visual img,
.roi-visual-wrap img,
.process-visual-wrap img {
  border-radius: var(--radius-lg);
}

.glow-img {
  border: 1px solid rgba(249,115,22,0.25);
  box-shadow: 0 0 40px rgba(249,115,22,0.15);
}
.float-anim, .float-anim-slow {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .process-layout, .comparison-layout {
    grid-template-columns: 1fr;
  }
}

/* ---- RESPONSIVE ELITE ---- */
@media (max-width: 1024px) {
  .roi-layout { grid-template-columns: 1fr; gap: 48px; }
  .roi-left .section-title { font-size: 32px; }
}
@media (max-width: 768px) {
  .roi-layout { grid-template-columns: 1fr; gap: 40px; }
  .wave-divider svg { height: 50px; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================================
   GALLERY / BASTIDORES
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
  grid-auto-flow: dense;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  cursor: pointer;
  contain: layout style paint;
  will-change: transform;
}
.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.9);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
  filter: brightness(1.1);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-500);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}
.gallery-item:hover .gallery-icon {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .gallery-item.wide { grid-column: span 1; }
  .gallery-grid { grid-auto-rows: 200px; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.3s ease;
  padding: 20px;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
  background: rgba(0, 0, 0, 0.92);
}
.lightbox-inner {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.88);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lightbox-overlay.active .lightbox-inner {
  transform: scale(1);
}
.lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  display: block;
  user-select: none;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10000;
}
.lightbox-close:hover {
  background: rgba(249,115,22,0.5);
  transform: scale(1.1);
}
.lightbox-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.25s ease;
  z-index: 10000;
  user-select: none;
}
.lightbox-btn:hover {
  background: rgba(249,115,22,0.5);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 1px;
  z-index: 10000;
  pointer-events: none;
}
/* Clickable foto items */
.photo-strip-item,
.equipe-card,
.bastidores-card,
.gallery-item {
  cursor: zoom-in;
}
@media (max-width: 600px) {
  .lightbox-btn { width: 38px; height: 38px; font-size: 16px; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* ============================================================
   PORTFOLIO FEATURE CARD
   ============================================================ */
.portfolio-feature-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 16px;
  padding: 28px 28px 24px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.portfolio-feature-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pf-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F5A623;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 50px;
  padding: 5px 12px;
  margin-bottom: 14px;
}
.pf-title {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}
.pf-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0 0 22px;
}
.pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #F5A623, #e8960f);
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.35);
  letter-spacing: 0.2px;
}
.pf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 166, 35, 0.5);
  background: linear-gradient(135deg, #ffb733, #F5A623);
}

/* ============================================================
   DOWNLOADS BOX — Elite UI
   ============================================================ */
.downloads-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.downloads-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.10) 0%, transparent 100%);
}
.downloads-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
  border: 1px solid rgba(245, 166, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5A623;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.15);
}
.downloads-title {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 800;
  color: #F5A623;
  margin: 0 0 4px;
  letter-spacing: -0.3px;
  text-shadow: 0 0 20px rgba(245, 166, 35, 0.25);
}
.downloads-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-weight: 400;
}
.downloads-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}
.dl-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  position: relative;
}
.dl-item:last-child { border-bottom: none; }
.dl-item:hover { 
  background: rgba(245, 166, 35, 0.06); 
}
.dl-item:hover .dl-info {
  transform: translateX(4px);
}
.dl-emoji-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.15);
}
.dl-info {
  flex: 1;
  min-width: 0;
  transition: transform 0.3s ease;
}
.dl-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0;
}
.dl-tag {
  display: inline-block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45) !important;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.dl-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.dl-btn svg {
  width: 16px;
  height: 16px;
}
.dl-item:hover .dl-btn {
  background: #F5A623;
  border-color: #F5A623;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(245, 166, 35, 0.35);
}
.downloads-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
  font-weight: 500;
}
.downloads-footer svg {
  flex-shrink: 0;
  opacity: 0.55;
}

/* Fix footer logo contrast for light mode */
.footer-brand .logo,
.footer .logo,
.footer .logo-text {
  color: #1a1a1a !important;
}

/* ============================================================
   TRANSLATOR / LANG SELECTOR
   ============================================================ */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.4;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flag-icon {
  width: 24px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.lang-btn:hover {
  opacity: 0.9;
  transform: scale(1.15);
  filter: grayscale(30%);
}
.lang-btn.active {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Hides Google Translate default UI gracefully */
body {
  top: 0 !important;
  position: static !important;
}
.skiptranslate iframe,
.goog-te-banner-frame {
  display: none !important;
}
.goog-te-combo { display: none !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .lang-selector {
    margin-left: auto;
    margin-right: 16px;
    gap: 4px;
  }
}
