.elementor-kit-15{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-15 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ═══════════════════════════════════════════════════════════════
   VLYRA LANDING PAGE - CSS STYLES (OPTIMIZED)
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   ROOT VARIABLES & RESET
   ───────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --c-void: #02020A;
  --c-deep: #07071A;
  --c-ink: #0D0D2B;
  --c-surface: #12122E;
  --c-line: rgba(255,140,60,0.12);
  --c-accent: #FF6B2C;
  --c-accent2: #FFA500;
  --c-accent3: #FF8C42;
  --c-glow: rgba(255,107,44,0.35);
  --c-glow2: rgba(255,165,0,0.2);
  --c-white: #F4F3FF;
  --c-muted: rgba(200,198,240,0.55);
  --c-text: #E8E6FF;

  /* Typography */
  --f-display: 'Syne', sans-serif;
  --f-body: 'DM Sans', sans-serif;

  /* Animation */
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  background: var(--c-void);
  color: var(--c-text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   CURSOR
   ───────────────────────────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--c-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(107,94,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s var(--transition);
}

body:hover #cursor {
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────────
   CANVAS & HERO BACKGROUND
   ───────────────────────────────────────────────────────────── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(2,2,10,0.6);
  border-bottom: 1px solid var(--c-line);
  transition: all 0.4s var(--transition);
}

nav.scrolled {
  padding: 16px 60px;
  background: rgba(2,2,10,0.92);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.logo {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--c-white) 0%, var(--c-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--c-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent2);
  transition: width 0.3s var(--transition);
}

.nav-links a:hover {
  color: var(--c-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(107,94,255,0.5);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-accent);
  transform: translateX(-101%);
  transition: transform 0.3s var(--transition);
  z-index: -1;
}

.nav-cta:hover::before {
  transform: translateX(0);
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

.nav-cta:hover {
  box-shadow: 0 0 20px rgba(107,94,255,0.4);
}

/* ─────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 120px 60px 80px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(107,94,255,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0,229,197,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 80% 70%, rgba(255,77,141,0.06) 0%, transparent 60%);
  z-index: 1;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 6px;
  border: 1px solid rgba(0,229,197,0.3);
  border-radius: 100px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition) 0.3s forwards;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--c-accent2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--c-white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 0.5s forwards;
}

.hero-title .accent-purple {
  background: linear-gradient(135deg, var(--c-accent) 0%, #9D8EFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .accent-teal {
  background: linear-gradient(135deg, var(--c-accent2) 0%, #7FFFEF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 52px;
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 0.9s forwards;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px 60px;
  border-top: 1px solid var(--c-line);
  margin-top: auto;
  opacity: 0;
  animation: fadeUp 0.9s var(--transition) 1.1s forwards;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--c-white) 0%, var(--c-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--c-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────────────────────────
   SECTIONS BASE
   ───────────────────────────────────────────────────────────── */
section {
  padding: 120px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

section.full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent2);
  margin-bottom: 20px;
  padding: 4px 12px;
  border: 1px solid rgba(0,229,197,0.25);
  border-radius: 2px;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ─────────────────────────────────────────────────────────────
   TICKER / MARQUEE
   ───────────────────────────────────────────────────────────── */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--c-deep);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 18px 0;
}

.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  white-space: nowrap;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--c-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─────────────────────────────────────────────────────────────
   PROBLEMA SECTION
   ───────────────────────────────────────────────────────────── */
#problema {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-cards {
  display: grid;
  gap: 16px;
}

.problem-card {
  padding: 24px 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-accent3);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--transition);
}

.problem-card:hover::before {
  transform: scaleY(1);
}

.problem-card:hover {
  border-color: rgba(255,77,141,0.2);
  transform: translateX(4px);
}

.problem-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,77,141,0.1);
  border: 1px solid rgba(255,77,141,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.problem-card-title {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 6px;
}

.problem-card-text {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   SERVICIOS / SERVICES
   ───────────────────────────────────────────────────────────── */
#servicios {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.service-card {
  padding: 44px 36px;
  background: linear-gradient(145deg, var(--c-surface) 0%, rgba(13,13,43,0.8) 100%);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(107,94,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(107,94,255,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.service-number {
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(107,94,255,0.08);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.06em;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  position: relative;
}

.service-icon-bg {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.icon-purple {
  background: rgba(107,94,255,0.12);
  border: 1px solid rgba(107,94,255,0.25);
}

.icon-teal {
  background: rgba(0,229,197,0.1);
  border: 1px solid rgba(0,229,197,0.2);
}

.icon-pink {
  background: rgba(255,77,141,0.1);
  border: 1px solid rgba(255,77,141,0.2);
}

.service-title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.service-text {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--c-muted);
}

.service-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0,229,197,0.15);
  border: 1px solid rgba(0,229,197,0.3);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%2300E5C5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ─────────────────────────────────────────────────────────────
   CÓMO FUNCIONA
   ───────────────────────────────────────────────────────────── */
#como-funciona {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: flex-start;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--c-line);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.process-step:first-child {
  padding-top: 0;
}

.process-step.active .step-content-title {
  color: var(--c-accent);
}

.step-num {
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.06em;
  width: 32px;
  flex-shrink: 0;
  padding-top: 2px;
}

.step-content-title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.step-content-text {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.process-visual {
  position: relative;
  height: 480px;
}

.process-screen {
  position: absolute;
  inset: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.screen-bar {
  padding: 12px 20px;
  background: var(--c-deep);
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-r {
  background: #FF5F56;
}

.dot-y {
  background: #FFBD2E;
}

.dot-g {
  background: #27C93F;
}

.screen-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

.chat-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  animation: bubbleIn 0.4s var(--transition) both;
}

@keyframes bubbleIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.chat-user {
  background: var(--c-accent);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.chat-agent {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-line);
  color: var(--c-text);
  border-bottom-left-radius: 4px;
}

.chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-line);
  border-radius: 12px 12px 12px 4px;
  width: fit-content;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--c-muted);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

/* ─────────────────────────────────────────────────────────────
   DASHBOARD PREVIEW
   ───────────────────────────────────────────────────────────── */
#dashboard-preview {
  text-align: center;
  padding: 120px 60px;
  background: linear-gradient(180deg, transparent 0%, var(--c-deep) 30%, var(--c-deep) 70%, transparent 100%);
}

.dashboard-frame {
  position: relative;
  margin: 64px auto 0;
  max-width: 1100px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(107,94,255,0.3);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(107,94,255,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}

.dashboard-top {
  background: var(--c-surface);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--c-line);
}

.dash-url {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--c-muted);
  font-family: 'Courier New', monospace;
}

.dashboard-body {
  background: var(--c-ink);
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 500px;
}

.dash-sidebar {
  background: var(--c-surface);
  border-right: 1px solid var(--c-line);
  padding: 24px 0;
}

.dash-sidebar-logo {
  padding: 0 24px 24px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.dash-nav-item {
  padding: 10px 24px;
  font-size: 0.82rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.dash-nav-item:hover,
.dash-nav-item.active {
  background: rgba(107,94,255,0.08);
  color: var(--c-accent);
}

.dash-nav-item.active {
  border-right: 2px solid var(--c-accent);
}

.dash-main {
  padding: 32px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.dash-greeting {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-white);
}

.dash-greeting span {
  color: var(--c-muted);
  font-weight: 400;
  font-size: 0.85rem;
  display: block;
  margin-top: 2px;
}

.dash-badge {
  padding: 6px 14px;
  background: rgba(0,229,197,0.1);
  border: 1px solid rgba(0,229,197,0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--c-accent2);
  font-weight: 500;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.kpi-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 20px;
}

.kpi-label {
  font-size: 0.72rem;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kpi-value {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
}

.kpi-change {
  font-size: 0.72rem;
  margin-top: 4px;
}

.kpi-up {
  color: var(--c-accent2);
}

.kpi-down {
  color: var(--c-accent3);
}

.dash-charts {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.dash-chart-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 20px;
}

.dash-chart-title {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 16px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
}

.bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--c-accent) 0%, rgba(107,94,255,0.3) 100%);
  transition: opacity 0.2s;
  position: relative;
  min-height: 10%;
}

.bar:hover {
  opacity: 0.8;
}

.donut-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  position: relative;
}

.donut-legend {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--c-muted);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   CONFIANZA / TRUST
   ───────────────────────────────────────────────────────────── */
#confianza {
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.trust-card {
  padding: 40px 32px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  text-align: left;
  position: relative;
  transition: all 0.3s var(--transition);
}

.trust-card:hover {
  border-color: rgba(107,94,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.trust-quote {
  font-size: 2.5rem;
  color: var(--c-accent);
  font-family: var(--f-display);
  line-height: 1;
  margin-bottom: 16px;
}

.trust-text {
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
}

.trust-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--c-white);
  flex-shrink: 0;
}

.av1 {
  background: linear-gradient(135deg, var(--c-accent), #9D8EFF);
}

.av2 {
  background: linear-gradient(135deg, var(--c-accent2), #7FFFEF);
}

.av3 {
  background: linear-gradient(135deg, var(--c-accent3), #FF9EC0);
}

.trust-name {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-white);
}

.trust-role {
  font-size: 0.78rem;
  color: var(--c-muted);
}

.trust-stars {
  color: #FFD700;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

/* ─────────────────────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────────────────────── */
#cta {
  position: relative;
  text-align: center;
  padding: 140px 60px;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(107,94,255,0.2) 0%, transparent 70%);
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,94,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,94,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--c-muted);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
}

.cta-guarantee {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-guarantee::before {
  content: '🔒';
  font-size: 0.75rem;
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────── */
.btn-primary {
  padding: 16px 40px;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--transition);
  box-shadow: 0 0 40px rgba(107,94,255,0.4);
  display: inline-block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  box-shadow: 0 0 60px rgba(107,94,255,0.6);
  transform: translateY(-2px);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  padding: 16px 40px;
  background: transparent;
  color: var(--c-white);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(200,198,240,0.2);
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  border-color: var(--c-accent2);
  color: var(--c-accent2);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.3s;
  display: inline-block;
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--c-line);
  padding: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  grid-column: 1;
}

.footer-logo {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--c-white) 0%, var(--c-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.footer-col-title {
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--c-white);
}

.footer-bottom {
  border-top: 1px solid var(--c-line);
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--c-muted);
}

.footer-made {
  font-size: 0.8rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-made span {
  color: var(--c-accent3);
}

/* ─────────────────────────────────────────────────────────────
   SCROLL ANIMATIONS
   ───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav {
    padding: 20px 30px;
  }

  section {
    padding: 80px 30px;
  }

  #problema,
  #como-funciona {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

  .dash-charts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #hero {
    padding: 80px 20px 40px;
  }

  .hero-stats {
    gap: 20px;
    padding: 24px 20px;
    border-top: 1px solid var(--c-line);
  }

  nav {
    padding: 16px 20px;
  }
}/* End custom CSS */