/* ============================================
   LUMI — Landing Page Styles (renee.cl replica)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; }

:root {
  --primary: #8993f8;
  --primary-dark: #6f3ff5;
  --accent-green: #61ce70;
  --accent-pink: #e44993;
  --dark-bg: #1d1d2d;
  --dark-nav: #1b1b22;
  --text-dark: #151515;
  --text-gray: #555;
  --white: #ffffff;
  --max-width: 1170px;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Mulish', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #39333d;
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  font-family: var(--font-secondary);
  font-size: 14px;
}
.cookie-banner a { color: #a6b9fb; text-decoration: underline; }
.cookie-banner button {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-weight: 600;
  white-space: nowrap;
}
.cookie-banner button:hover { background: var(--primary-dark); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(29, 29, 45, 0.97);
  backdrop-filter: blur(8px);
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-logo img { height: 42px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  font-family: var(--font-secondary);
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }

.btn-login {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
  margin-left: 8px;
}
.btn-login:hover { background: var(--primary-dark) !important; }

.burger { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; padding: 8px; }

/* ── HERO SECTION ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1d1d2d 0%, #2a2a4a 50%, #1d1d2d 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(137, 147, 248, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(228, 73, 147, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 20px;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(137, 147, 248, 0.15);
  border: 1px solid rgba(137, 147, 248, 0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-secondary);
}
.hero h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 20px;
}
.hero h1 span { color: var(--primary); }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 36px;
  font-weight: 400;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

.hero-image { position: relative; z-index: 1; }
.hero-mockup {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
}
.hero-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.hero-mockup-content { display: flex; flex-direction: column; gap: 12px; }
.mock-card {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(137,147,248,0.2);
}
.mock-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.mock-title { color: #fff; font-weight: 600; font-size: 14px; font-family: var(--font-secondary); }
.mock-badge {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-family: var(--font-secondary);
}
.mock-badge.active { background: rgba(97,206,112,0.2); color: #61ce70; }
.mock-badge.review { background: rgba(137,147,248,0.2); color: var(--primary); }
.mock-progress { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.mock-progress-fill { height: 100%; border-radius: 2px; background: var(--primary); }
.mock-candidates {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-secondary);
}
.candidate-avatars { display: flex; }
.avatar-mini {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #1d1d2d;
  margin-left: -6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff; font-weight: 700;
}
.avatar-mini:first-child { margin-left: 0; }

/* ── WAVE DIVIDER ── */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ── SECTION COMMON ── */
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-secondary);
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0 0 16px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 48px;
  font-weight: 400;
}

/* ── PROBLEMA SECTION ── */
.problems { background: #f9f9ff; }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.problem-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid #eee;
  transition: box-shadow 0.2s, transform 0.2s;
}
.problem-card:hover { box-shadow: 0 8px 30px rgba(137,147,248,0.15); transform: translateY(-3px); }
.problem-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(137,147,248,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}
.problem-card h3 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin: 0 0 8px; }
.problem-card p { font-size: 13px; color: #777; line-height: 1.5; margin: 0; font-weight: 400; }

/* ── FEATURES SECTION ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid #eee;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: 0 10px 40px rgba(137,147,248,0.18); transform: translateY(-4px); }
.feature-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(137,147,248,0.15), rgba(111,63,245,0.1));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin: 0 0 10px; }
.feature-card p { font-size: 14px; color: #666; line-height: 1.6; margin: 0; font-weight: 400; }

/* ── METRICS SECTION ── */
.metrics { background: linear-gradient(135deg, #1d1d2d 0%, #2a2a4a 100%); }
.metrics .section-title { color: #fff; }
.metrics .section-subtitle { color: rgba(255,255,255,0.7); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.metric-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.metric-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-secondary);
}
.metric-number span { font-size: 32px; }
.metric-label {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  line-height: 1.4;
  font-family: var(--font-secondary);
}

/* ── PLATFORM SECTION ── */
.platform { background: #f9f9ff; }
.platform-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.platform-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.platform-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #333;
  font-weight: 400;
}
.platform-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

.platform-visual {
  background: linear-gradient(135deg, #1d1d2d, #2a2a4a);
  border-radius: 20px;
  padding: 32px;
  color: #fff;
}
.kanban-preview { display: flex; gap: 12px; }
.kanban-col { flex: 1; }
.kanban-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  font-family: var(--font-secondary);
}
.kanban-item {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.kanban-item-name { font-size: 12px; font-weight: 600; margin-bottom: 6px; font-family: var(--font-secondary); }
.kanban-item-score {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-secondary);
}
.score-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: 0 8px 30px rgba(137,147,248,0.15); }
.testimonial-stars { color: #fbbf24; font-size: 14px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--text-dark); margin: 0; }
.testimonial-role { font-size: 12px; color: #888; margin: 2px 0 0; font-weight: 400; }

/* ── AWARDS SECTION ── */
.awards { background: #f9f9ff; text-align: center; }
.awards-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.award-item img { height: 80px; width: auto; object-fit: contain; opacity: 0.85; transition: opacity 0.2s; }
.award-item img:hover { opacity: 1; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { font-size: 40px; font-weight: 700; color: #fff; margin: 0 0 16px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.85); margin: 0 0 36px; font-weight: 400; }
.btn-white {
  background: #fff;
  color: var(--primary-dark);
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 17px;
  transition: transform 0.1s, box-shadow 0.2s;
  display: inline-block;
  font-family: var(--font-secondary);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin: 0 0 20px; font-weight: 400; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--primary); color: #fff; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; font-weight: 400; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .hero h1 { font-size: 34px; }
  .hero-image { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .platform-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .site-nav { display: none; }
  .burger { display: block; }
  .section-title { font-size: 28px; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section h2 { font-size: 28px; }
  .awards-grid { gap: 24px; }
  .award-item img { height: 60px; }
}
@media (max-width: 480px) {
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
}
