/* ===========================
   KAHPRIME LANDING PAGE
   =========================== */

:root {
  --kp-bg: radial-gradient(circle at top left, #020617, #020617 40%, #020617 100%);
  --kp-accent: #3b82f6;
  --kp-accent-soft: rgba(59, 130, 246, 0.12);
  --kp-card-bg: radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), rgba(15, 23, 42, 0.96));
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: var(--kp-bg);
  color: #e5e7eb;
}

/* Hero principal */
.kp-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.kp-hero-top {
  padding: 0.75rem 1rem;
}

.kp-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kp-brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #f97316, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #0f172a;
  box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.3);
}

.kp-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.kp-brand-title {
  font-size: 1.05rem;
  font-weight: 700;
}

.kp-brand-sub {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Navbar leve */
.kp-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.kp-nav-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.kp-nav-links a {
  color: #9ca3af;
  text-decoration: none;
}

.kp-nav-links a:hover {
  color: #e5e7eb;
}

/* Conteúdo principal do hero */
.kp-hero-main {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: 1.5rem 1rem 2rem;
}

.kp-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.kp-hero-grid {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .kp-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
  }
}

/* Texto do hero */
.kp-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
  margin-bottom: 0.45rem;
}

.kp-hero-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.kp-hero-title span {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kp-hero-subtitle {
  font-size: 0.95rem;
  max-width: 460px;
  color: #9ca3af;
  margin-bottom: 0.95rem;
}

/* CTAs */
.kp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.kp-hero-meta {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Cartão visual à direita */
.kp-hero-card {
  border-radius: 20px;
  background: var(--kp-card-bg);
  border: 1px solid rgba(59, 130, 246, 0.6);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
  padding: 1rem;
}

.kp-hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.kp-dot-group {
  display: flex;
  gap: 0.25rem;
}

.kp-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f97316;
  opacity: 0.95;
}

.kp-dot:nth-child(2) { background: #22c55e; }
.kp-dot:nth-child(3) { background: #3b82f6; }

.kp-hero-card-body {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.kp-hero-tagline {
  font-size: 0.75rem;
  color: #a5b4fc;
  margin-bottom: 0.45rem;
}

.kp-hero-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.75rem;
}

.kp-hero-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.kp-hero-list span.icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

/* Seção de features */
.kp-section {
  padding: 2rem 1rem 3rem;
}

.kp-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.kp-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.kp-section-sub {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 1.2rem;
}

.kp-features-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .kp-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.kp-feature-card {
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.4), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(30, 64, 175, 0.7);
  padding: 0.85rem 0.9rem;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.9);
  font-size: 0.85rem;
}

.kp-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}

.kp-feature-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* CTA final */
.kp-cta {
  margin-top: 1.6rem;
  padding: 1rem 0.9rem;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(30, 64, 175, 0.95), rgba(59, 130, 246, 0.95));
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.kp-cta small {
  color: #e5e7eb;
}

/* Ajustes responsivos */
@media (max-width: 576px) {
  .kp-hero-top {
    padding-inline: 0.85rem;
  }
  .kp-hero-main {
    padding-inline: 0.85rem;
  }
  .kp-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
