/* ============================================ */
/* Extras de Grupos JK5                            */
/* (jk5-hero, comparison, process, schedules, cta) */
/* ============================================ */

/* HERO */
.jk5-hero {
  padding-top: calc(var(--header-height, 80px) + 80px);
  padding-bottom: 100px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: white; position: relative; overflow: hidden;
}
.jk5-hero::before {
  content: ''; position: absolute; top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.jk5-hero::after {
  content: ''; position: absolute; bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.jk5-hero-content { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.jk5-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  color: var(--color-orange); font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px; backdrop-filter: blur(8px);
}
.jk5-hero-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--color-orange); border-radius: 50%;
  animation: jk5Pulse 2s infinite;
}
@keyframes jk5Pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.jk5-hero h1 {
  color: white; font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 20px; line-height: 1.05;
}
.jk5-hero h1 .orange { color: var(--color-orange); }
.jk5-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px; margin: 0 auto 40px;
}
.jk5-hero .breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 24px; }
.jk5-hero .breadcrumb a { color: var(--color-orange); text-decoration: none; }

/* Stats row */
.jk5-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 800px; margin: 0 auto; }
@media (min-width: 640px) { .jk5-stats { grid-template-columns: repeat(4, 1fr); } }
.jk5-stat {
  text-align: center; padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}
.jk5-stat-number {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
  color: var(--color-orange); line-height: 1; margin-bottom: 4px;
}
.jk5-stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* COMPARISON */
.comparison { background: var(--color-white, #fff); padding: var(--spacing-xxl) 0; }
.comparison-table { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 900px; margin: 40px auto 0; }
@media (min-width: 768px) { .comparison-table { grid-template-columns: 1fr 1fr; } }
.comparison-card { padding: var(--spacing-lg); border-radius: var(--radius-lg); border: 2px solid; }
.comparison-card.bad { background: #FFF5F5; border-color: #FED7D7; }
.comparison-card.good { background: #F0FDF4; border-color: #86EFAC; }
.comparison-card h3 { font-size: 1.15rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.comparison-card.bad h3 { color: #C53030; }
.comparison-card.good h3 { color: #15803D; }
.comparison-card ul { list-style: none; padding: 0; margin: 0; }
.comparison-card li { padding: 8px 0; display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; }
.comparison-card.bad li::before { content: '✗'; color: #C53030; font-weight: 700; flex-shrink: 0; }
.comparison-card.good li::before { content: '✓'; color: #15803D; font-weight: 700; flex-shrink: 0; }

/* PROCESS */
.process { background: var(--color-bg-light); padding: var(--spacing-xxl) 0; }
.process-steps { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1000px; margin: 40px auto 0; }
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }
.process-step { background: white; padding: var(--spacing-lg); border-radius: var(--radius-lg); position: relative; text-align: center; }
.process-number {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 48px; height: 48px;
  background: var(--color-orange); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  box-shadow: var(--shadow-orange);
}
.process-step h4 { font-size: 1.15rem; margin: 16px 0 8px; }
.process-step p { color: var(--color-gray); font-size: 0.95rem; }

/* SCHEDULES */
.schedules { padding: var(--spacing-xxl) 0; }

/* BIG CTA */
.jk5-final-cta {
  background: var(--color-black); color: white;
  padding: var(--spacing-xxl) 0;
  text-align: center; position: relative; overflow: hidden;
}
.jk5-final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
}
.jk5-final-cta-content {
  position: relative; z-index: 2; max-width: 700px;
  margin: 0 auto; padding: 0 var(--spacing-md);
}
.jk5-final-cta h2 { color: white; margin-bottom: 16px; }
.jk5-final-cta p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; }

.price-box {
  display: inline-block;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  padding: 20px 40px; border-radius: var(--radius-lg);
  margin-bottom: 24px; backdrop-filter: blur(8px);
}
.price-box-amount {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 800;
  color: var(--color-orange); line-height: 1;
}
.price-box-amount sub { font-size: 1rem; font-weight: 500; color: var(--color-orange); }
.price-box-unit { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-top: 6px; }

.jk5-final-cta .cta-final-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
