/* ============================================
   DBX GLOBAL — PRODUTOS MARKETPLACE CSS
   Escopo exclusivo: /produtos/
   ============================================ */

:root {
  --green-primary: #30C5B1;
  --green-dark: #159987;
  --green-light: #5DD9C8;
  --green-ultra-light: #e8fef8;
  --green-glow: rgba(48, 197, 177, 0.36);
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-300: #D4D4D8;
  --gray-400: #A1A1AA;
  --gray-500: #71717A;
  --gray-600: #52525B;
  --gray-700: #3F3F46;
  --gray-800: #27272A;
  --gray-900: #18181B;
  --gray-950: #09090B;
  --navy: #0D1B2A;
  --navy-light: #1B2D45;
  
  --font-primary: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 30px rgba(13, 27, 42, 0.04), 0 1px 3px rgba(13, 27, 42, 0.02);
  --shadow-card-hover: 0 30px 60px rgba(13, 27, 42, 0.08), 0 10px 30px rgba(13, 27, 42, 0.04);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: auto;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Ocultar barra de rolagem para Chrome, Safari e Opera */
::-webkit-scrollbar {
  display: none !important;
}
body {
  font-family: var(--font-primary);
  color: var(--gray-900);
  background:
    radial-gradient(circle at 15% 8%, rgba(48, 197, 177, 0.12), transparent 35vw),
    radial-gradient(circle at 85% 15%, rgba(6, 104, 225, 0.08), transparent 35vw),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fb 30%, #ffffff 70%, #f4f8fb 100%);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(13, 27, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 42, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.75) 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.75) 50%, transparent 100%);
}
a { color: inherit; text-decoration: none; transition: var(--transition-base); }
img { display: block; max-width: 100%; height: auto; }
.container { width: min(100% - 48px, var(--container)); margin: 0 auto; }
::selection { background: var(--green-primary); color: var(--white); }

/* Base Buttons styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white) !important;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(48, 197, 177, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(48, 197, 177, 0.35);
}

/* Floating Back Home Button */
.back-home-floating {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 1000;
  pointer-events: auto;
}
.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(13, 27, 42, 0.08);
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.06);
  color: var(--gray-800);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-back-home i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.btn-back-home:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: var(--green-primary);
  box-shadow: 0 15px 40px rgba(13, 27, 42, 0.1);
  color: var(--gray-950);
}
.btn-back-home:hover i {
  transform: translateX(-4px);
}

/* Global BG Effects - hidden for clean minimal look */
.cursor-glow {
  display: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
  z-index: 10001;
  box-shadow: 0 0 10px var(--green-glow);
}

.bg-dot-grid,
.bg-gradient-blur,
.bg-noise { display: none; }

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-aurora { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 80%, rgba(48, 197, 177, 0.08), transparent 60%); }
.loader-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.loader-icon { position: relative; width: 80px; height: 80px; display: grid; place-items: center; }
.loader-dbx { width: 67px; height: 67px; object-fit: contain; }
.loader-ring { position: absolute; inset: 0; border: 2px solid var(--gray-200); border-top-color: var(--green-primary); border-radius: 50%; animation: spin 1s linear infinite; }
.loader-text { font-size: 14px; color: var(--gray-500); letter-spacing: 2px; text-transform: uppercase; }
.loader-bar { width: 200px; height: 3px; background: var(--gray-200); border-radius: 99px; overflow: hidden; }
.loader-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--green-primary), var(--green-dark)); border-radius: 99px; animation: loaderFill 1.1s ease-in-out forwards; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loaderFill { to { width: 100%; } }
/* Hero */
.products-hero {
  position: relative;
  z-index: 1;
  padding: 140px 0 80px;
  overflow: hidden;
  background: transparent;
}
.hero-aurora,
.hero-mesh-gradient,
.hero-grid-pattern,
.hero-radial-fade { display: none; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-text-side {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-visual-side {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Badge / Pill */
.hero-badge,
.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-full);
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
}

/* Title */
.hero-title {
  margin-top: 20px;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 850;
  color: var(--navy);
  max-width: 600px;
}
.hero-title .muted-text {
  color: inherit;
  font-weight: inherit;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 18px 0 28px;
  max-width: 500px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-buttons .btn-primary {
  padding: 14px 28px;
  font-size: 14px;
}
.hero-buttons .btn-secondary {
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  font-size: 14px;
}
.hero-buttons .btn-secondary:hover {
  background: var(--white);
  border-color: var(--gray-300);
  transform: translateY(-2px);
}

/* Proof List */
.hero-proof {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-proof .proof-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
}
.hero-proof .proof-pill i {
  color: var(--green-primary);
  font-size: 15px;
}

/* ============================
   COLLAGE SHOWCASE
   ============================ */
.hero-showcase {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Decorative dashed arc behind phone */
.hero-showcase::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  border: 2px dashed rgba(13, 27, 42, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* ============================
   PHONE MOCKUP
   ============================ */
.phone-mockup {
  position: relative;
  width: 260px;
  height: 460px;
  border-radius: 36px;
  border: 10px solid #18181b;
  background: #18181b;
  box-shadow:
    0 40px 100px rgba(13, 27, 42, 0.12),
    0 10px 30px rgba(13, 27, 42, 0.06);
  overflow: hidden;
  z-index: 10;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  animation: floatPhone 6s ease-in-out infinite;
}
/* Notch */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #18181b;
  border-radius: 0 0 16px 16px;
  z-index: 20;
}
/* Gloss reflection glare */
.phone-mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 40%, transparent 40.1%);
  pointer-events: none;
  z-index: 25;
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fafafa;
  color: #18181b;
  border-radius: 26px;
  overflow: hidden;
}
.phone-header {
  height: 40px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #3f3f46;
  background: #ffffff;
}
.phone-icons {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #3f3f46;
}
.phone-app-content {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
.app-logo-area img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.app-logo-area h3 {
  font-size: 14px;
  font-weight: 800;
  color: #09090b;
  letter-spacing: -0.02em;
}
.app-summary-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid #f4f4f5;
  text-align: left;
}
.app-summary-title {
  display: block;
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #a1a1aa;
  font-weight: 700;
  margin-bottom: 6px;
}
.app-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #71717a;
}
.app-summary-row strong {
  color: #18181b;
  font-weight: 800;
}
.app-recent-chats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  height: 150px;
  overflow: hidden;
}
.recent-chat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 10px;
  border: 1px solid #f4f4f5;
  text-align: left;
  opacity: 0;
  transform: translateY(15px);
  position: absolute;
  left: 0;
  right: 0;
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.02);
}
.chat-anim-1 {
  animation: chatPopupLoop 9s infinite;
}
.chat-anim-2 {
  animation: chatPopupLoop 9s infinite 3s;
}
.chat-anim-3 {
  animation: chatPopupLoop 9s infinite 6s;
}
.chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.chat-dot.dot-whats { background: #25D366; }
.chat-dot.dot-bot { background: #10B981; }
.chat-dot.dot-voice { background: #3b82f6; }
.chat-info {
  display: flex;
  flex-direction: column;
}
.chat-info strong {
  font-size: 11px;
  color: #18181b;
  font-weight: 700;
}
.chat-info span {
  font-size: 9px;
  color: #a1a1aa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

@keyframes floatPhone {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes chatPopupLoop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  4%, 30% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  34%, 100% {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
  }
}

/* ============================
   FLOATING WIDGETS
   ============================ */
.floating-widget {
  position: absolute;
  background: #ffffff;
  border: 1px solid #f4f4f5;
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 15;
  text-align: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.floating-widget:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}
.shadow-premium {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.widget-avatar, .widget-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}
.whats-avatar { background: #ecfdf5; color: #25D366; }
.bot-avatar { background: #ecfdf5; color: #10B981; }
.icon-tracker { background: #ecfeff; color: #00B7C7; }
.icon-send { background: #eff6ff; color: #3182FF; }
.icon-voice { background: #fff7ed; color: #FF8A3D; }

.widget-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.widget-details strong {
  font-size: 12.5px;
  color: #18181b;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}
.widget-details span {
  font-size: 10px;
  color: #a1a1aa;
  margin-top: 1px;
  white-space: nowrap;
}

.widget-tag {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  flex-shrink: 0;
}
.tag-whats { background: #ecfdf5; color: #16a34a; }
.tag-bot { background: #ecfdf5; color: #059669; }
.tag-tracker { background: #ecfeff; color: #0891b2; }
.tag-send { background: #eff6ff; color: #2563eb; }
.tag-voice { background: #fff7ed; color: #ea580c; }

/* Widget Positions - spread wider & staggered like reference */
.widget-whats {
  top: 15%;
  left: -80px;
  animation: w-float-1 7s ease-in-out infinite alternate;
}
.widget-tracker {
  bottom: 15%;
  left: -70px;
  animation: w-float-2 8s ease-in-out infinite alternate;
}
.widget-send {
  top: 8%;
  right: -90px;
  animation: w-float-3 6s ease-in-out infinite alternate;
}
.widget-bot {
  bottom: 18%;
  right: -60px;
  animation: w-float-4 7.5s ease-in-out infinite alternate;
}
.widget-voice {
  top: 44%;
  right: -100px;
  animation: w-float-5 9s ease-in-out infinite alternate;
}

@keyframes w-float-1 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@keyframes w-float-2 {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}
@keyframes w-float-3 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}
@keyframes w-float-4 {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}
@keyframes w-float-5 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

/* Marketplace Section & Grid */
.marketplace-section {
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
  background: #fafafa;
}
.marketplace-header {
  text-align: center;
  margin-bottom: 56px;
}
.marketplace-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #18181b;
  letter-spacing: -0.03em;
}
.marketplace-header p {
  margin-top: 10px;
  color: #71717a;
  font-size: 15px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

/* App Card styling */
.app-card {
  position: relative;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(13, 27, 42, 0.07);
  background: var(--white);
  box-shadow: var(--shadow-card);
  padding: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
  height: 100%;
}
.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--card-accent-rgb), 0.28);
  box-shadow: var(--shadow-card-hover);
}

.card-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--card-accent-rgb), 0.14) 0%, transparent 65%);
  transition: opacity 0.35s ease;
}
.app-card:hover .card-glow {
  opacity: 1;
}

/* Card Branding Configurations */
.card-whats {
  grid-column: span 2;
  --card-accent: #25d366;
  --card-accent-rgb: 37, 211, 102;
}
.card-send {
  grid-column: span 2;
  --card-accent: #3182ff;
  --card-accent-rgb: 49, 130, 255;
}
.card-bot {
  grid-column: span 2;
  --card-accent: #10b981;
  --card-accent-rgb: 16, 185, 129;
}
.card-tracker {
  grid-column: span 3;
  --card-accent: #00b7c7;
  --card-accent-rgb: 0, 183, 199;
}
.card-voice {
  grid-column: span 3;
  --card-accent: #ff8a3d;
  --card-accent-rgb: 255, 138, 61;
}

/* Card Elements */
.app-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.app-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--card-accent), rgba(var(--card-accent-rgb), 0.78));
  box-shadow: 0 8px 20px rgba(var(--card-accent-rgb), 0.2);
}
.app-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.app-category {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--card-accent);
  letter-spacing: 0.5px;
}
.app-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--gray-950);
  letter-spacing: -0.02em;
}

.app-description {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  height: 68px; /* Fixed height for title descriptions to align features */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.app-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}
.app-features li {
  font-size: 13.5px;
  color: var(--gray-700);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-features li i {
  color: var(--card-accent);
  font-size: 12px;
}

/* App Mockups (High-fidelity HTML components) */
.app-mockup {
  position: relative;
  background: var(--gray-50);
  border: 1px solid rgba(13, 27, 42, 0.05);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 30px;
  min-height: 140px;
  overflow: hidden;
  z-index: 1;
}

/* 1. Whats Mockup */
.mockup-chat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-chat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.mockup-chat-item.active {
  border-left: 3px solid var(--card-accent);
  background: rgba(var(--card-accent-rgb), 0.04);
}
.mockup-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  flex-shrink: 0;
  position: relative;
}
.mockup-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  border: 1px solid var(--white);
}
.mockup-avatar-ana::after {
  background: #a1a1aa;
}
.mockup-chat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
  min-width: 0;
}
.mockup-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-msg {
  font-size: 9.5px;
  color: var(--gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-badge {
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 99px;
  background: var(--card-accent);
  color: var(--white);
}

/* 2. Send Mockup */
.mockup-campaign {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup-campaign-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-800);
}
.mockup-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mockup-progress-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 99px;
  overflow: hidden;
}
.mockup-progress-fill {
  height: 100%;
  width: 88%;
  background: linear-gradient(90deg, var(--card-accent), #006aff);
  border-radius: 99px;
  position: relative;
}
.mockup-campaign-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.mockup-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mockup-stat-num {
  font-size: 12px;
  font-weight: 900;
  color: var(--gray-900);
}
.mockup-stat-lbl {
  font-size: 8px;
  color: var(--gray-500);
}

/* 3. Bot Mockup */
.mockup-bot-flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding-top: 4px;
}
.mockup-node {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--gray-800);
  box-shadow: 0 2px 4px rgba(0,0,0,0.01);
  position: relative;
}
.mockup-node.node-highlight {
  border-color: var(--card-accent);
  background: rgba(var(--card-accent-rgb), 0.04);
}
.mockup-node-arrow {
  width: 1.5px;
  height: 12px;
  background: var(--card-accent);
  position: relative;
}
.mockup-node-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 4px;
  height: 4px;
  border-right: 1.5px solid var(--card-accent);
  border-bottom: 1.5px solid var(--card-accent);
}

/* 4. Tracker Mockup */
.mockup-tracker-dashboard {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mockup-tracker-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mockup-tracker-mini-card {
  background: var(--white);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 4px rgba(0,0,0,0.01);
  display: flex;
  flex-direction: column;
}
.mockup-tracker-lbl {
  font-size: 8px;
  color: var(--gray-500);
}
.mockup-tracker-val {
  font-size: 13px;
  font-weight: 900;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 4px;
}
.mockup-tracker-trend {
  font-size: 8px;
  color: #10b981;
  font-weight: 800;
}
.mockup-tracker-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 38px;
  padding: 0 4px;
}
.mockup-chart-bar {
  width: 14%;
  background: linear-gradient(0deg, var(--card-accent), rgba(0, 183, 199, 0.4));
  border-radius: 2px;
}

/* 5. Voice Mockup */
.mockup-voice-widget {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-call-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid rgba(255, 138, 61, 0.2);
  box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}
.mockup-call-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-call-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--card-accent);
  animation: pulseDot 1.5s infinite;
}
.mockup-call-details {
  display: flex;
  flex-direction: column;
}
.mockup-call-title {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--gray-900);
}
.mockup-call-timer {
  font-size: 8.5px;
  color: var(--gray-500);
}
.mockup-waves {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 14px;
}
.mockup-wave-bar {
  width: 2px;
  height: 60%;
  background: var(--card-accent);
  border-radius: 99px;
  animation: waveGrow 1s infinite ease-in-out alternate;
}
.mockup-wave-bar:nth-child(2) { animation-delay: 0.2s; height: 90%; }
.mockup-wave-bar:nth-child(3) { animation-delay: 0.4s; height: 40%; }
.mockup-wave-bar:nth-child(4) { animation-delay: 0.6s; height: 70%; }
@keyframes waveGrow {
  from { height: 20%; }
  to { height: 100%; }
}

.btn-app-cta {
  width: 100%;
  margin-top: auto;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  font-weight: 850;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(var(--card-accent-rgb), 0.18);
  background: rgba(var(--card-accent-rgb), 0.05);
  color: var(--card-accent);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.app-card:hover .btn-app-cta {
  background: linear-gradient(135deg, var(--card-accent), rgba(var(--card-accent-rgb), 0.88));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(var(--card-accent-rgb), 0.2);
}
.btn-app-cta i {
  font-size: 12px;
  transition: transform 0.25s ease;
}
.app-card:hover .btn-app-cta i {
  transform: translateX(4px);
}

/* Unified Database / Ecosystem Connection Section */
.ecosystem-section {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--white), #f9fffd);
}
.ecosystem-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ecosystem-copy h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--gray-950);
}
.ecosystem-copy p {
  margin: 20px 0 32px;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

.integration-visual-card {
  position: relative;
  padding: 44px;
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.integration-nodes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.integration-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.integration-row::before {
  content: '';
  position: absolute;
  left: 36px;
  right: 36px;
  height: 1px;
  border-top: 1px dashed rgba(48, 197, 177, 0.22);
  z-index: -1;
}
.integration-node {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 20px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  box-shadow: 0 8px 20px rgba(48,197,177,0.18);
}
.node-whats-color { background: #25d366; box-shadow: 0 8px 20px rgba(37,211,102,0.18); }
.node-send-color { background: #3182ff; box-shadow: 0 8px 20px rgba(49,130,255,0.18); }
.node-bot-color { background: #10b981; box-shadow: 0 8px 20px rgba(16,185,129,0.18); }
.node-tracker-color { background: #00b7c7; box-shadow: 0 8px 20px rgba(0,183,199,0.18); }
.node-voice-color { background: #ff8a3d; box-shadow: 0 8px 20px rgba(255,138,61,0.18); }

.integration-core {
  margin: 10px auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--green-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  box-shadow: 0 15px 45px rgba(48,197,177,0.22);
  position: relative;
  z-index: 2;
}
.integration-core i {
  font-size: 28px;
  animation: pulseDot 2.5s infinite;
}
.integration-core span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Call to Action Section */
.cta-section {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
  background: var(--white);
}
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  padding: clamp(36px, 6vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  box-shadow: 0 30px 80px rgba(13,27,42,0.2);
}
.cta-aurora {
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at 25% 20%, rgba(48,197,177,0.22), transparent 35%), radial-gradient(circle at 80% 80%, rgba(93,217,200,0.12), transparent 42%);
  animation: visualGlow 8s ease-in-out infinite alternate;
}
.cta-content { position: relative; z-index: 1; max-width: 780px; }
.cta-content h2 { font-size: clamp(1.8rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -0.05em; }
.cta-content p { max-width: 640px; margin-top: 18px; color: rgba(255,255,255,0.72); font-size: 1.08rem; line-height: 1.65; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.btn-cta-primary {
  min-height: 52px;
  padding: 0 26px;
  color: var(--navy);
  background: var(--white);
  font-size: 13.5px;
}
.btn-cta-secondary {
  min-height: 52px;
  padding: 0 26px;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13.5px;
}
.btn-cta-primary:hover,
.btn-cta-secondary:hover { transform: translateY(-2px); }

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  padding: 64px 0 30px;
  color: rgba(255,255,255,0.7);
  background: #08111f;
  overflow: hidden;
}
.footer-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 44px 44px;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo .brand-logo-img { filter: brightness(0) invert(1); }
.footer-brand p { max-width: 320px; margin-top: 14px; color: rgba(255,255,255,0.5); font-size: 13.5px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { margin-bottom: 8px; color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-col a { color: rgba(255,255,255,0.5); font-size: 13.5px; font-weight: 600; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom { position: relative; z-index: 1; padding-top: 24px; font-size: 0.88rem; color: rgba(255,255,255,0.4); text-align: center; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #25D366, #159987);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(37,211,102,0.24);
  font-size: 1.48rem;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.02); }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text-side { align-items: center; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-proof { justify-content: center; }
  .marketplace-grid { gap: 20px; }
  .card-whats, .card-send, .card-bot { grid-column: span 3; }
  .card-tracker, .card-voice { grid-column: span 3; }
  .ecosystem-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-showcase { max-width: 480px; height: 480px; margin: 0 auto; }
  .floating-widget { padding: 8px 12px; }
  .widget-details strong { font-size: 11px; }
  .widget-details span { font-size: 9px; }
  .widget-tag { font-size: 7.5px; }
}

@media (max-width: 768px) {
  .hero-grid { gap: 32px; }
  .products-hero { padding-top: 110px; padding-bottom: 40px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-subtitle { font-size: 1rem; margin-bottom: 24px; }
  .hero-buttons { margin-bottom: 24px; }
  .hero-showcase { height: 400px; max-width: 100%; }
  .phone-mockup { width: 200px; height: 350px; border-radius: 28px; border-width: 7px; }
  .phone-mockup::before { width: 70px; height: 16px; }
  .hero-showcase::before { width: 240px; height: 240px; }
  .floating-widget { display: none; }
  .card-whats, .card-send, .card-bot, .card-tracker, .card-voice { grid-column: span 6; }
  .app-card { padding: 28px; }
  .app-description { height: auto; -webkit-line-clamp: unset; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-ctas, .cta-buttons { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn, .cta-buttons .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
}
