/* ============================================================
   KPM Prime — Site Institucional — kpmprime.com.br
   Identidade visual herdada da LP Founders (aprovada em produção)
   ============================================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --black: #0a0a0a;
  --black-card: #111111;
  --black-card-2: #161616;
  --black-border: #1e1e1e;
  --white: #ffffff;
  --gray: #999999;
  --gray-light: #cccccc;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.serif-em { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; color: var(--gold); }

.section-line { width: 48px; height: 2px; background: var(--gold); margin-bottom: 24px; opacity: 0.6; }
.section-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; opacity: 0.85; }
.section-title { font-size: clamp(28px, 4vw, 46px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 18px; }
.section-desc { font-size: 16px; color: var(--gray); max-width: 620px; line-height: 1.7; }
.section-desc.center { margin: 0 auto; }
.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }
.section-header { text-align: center; }
.section-header .section-line { margin-left: auto; margin-right: auto; }
.section-header .section-eyebrow { justify-content: center; display: flex; }

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .4s; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 16px 0;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: padding .3s ease;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; color: var(--gray-light); transition: color .2s ease; position: relative; padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--gold);
}
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-login { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; color: var(--gray-light); transition: color .2s ease; }
.nav-login:hover { color: var(--white); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: var(--gold); color: var(--black); font-weight: 800; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: all .2s ease; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px; background: none; border: none; cursor: pointer; padding: 0;
}
.nav-burger span { display: block; width: 100%; height: 2px; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 62px; left: 0; right: 0; bottom: 0; z-index: 998;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(12px);
  padding: 32px 24px; flex-direction: column; gap: 4px;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  font-size: 18px; font-weight: 700; text-decoration: none; color: var(--white);
  padding: 16px 4px; border-bottom: 1px solid var(--black-border);
}
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .mm-login { color: var(--gray-light); font-size: 14px; font-weight: 600; }
.mobile-menu .nav-cta { margin-top: 20px; justify-content: center; padding: 16px; font-size: 12px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
  .nav-cta { padding: 9px 16px; font-size: 10px; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px; padding: 17px 36px;
  background: var(--gold); color: var(--black); font-weight: 800; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: all .25s ease; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.28); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 34px;
  background: transparent; color: var(--white); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.2); transition: all .25s ease;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ─── PAGE HERO (páginas internas) ─── */
.page-hero { padding: 170px 0 64px; text-align: center; position: relative; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; top: -80px;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; max-width: 760px; margin: 0 auto 20px; position: relative; }
.page-hero p { font-size: 16px; color: var(--gray); max-width: 560px; margin: 0 auto; position: relative; }

/* ─── CARDS ─── */
.card {
  background: var(--black-card); border: 1px solid var(--black-border); border-radius: 8px;
  padding: 28px 24px; transition: border-color .3s, transform .3s;
}
.card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.card-icon { width: 40px; height: 40px; background: var(--gold-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 16px; }
.card-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.card-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ─── STAT ROW ─── */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { background: var(--black-card); border: 1px solid var(--black-border); border-left: 2px solid var(--gold); border-radius: 4px; padding: 20px 22px; }
.stat-value { font-size: 28px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; color: var(--gray); line-height: 1.5; }
@media (max-width: 860px) { .stat-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .stat-row { grid-template-columns: 1fr; } }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.price-card {
  background: var(--black-card); border: 1px solid var(--black-border); border-radius: 8px;
  padding: 30px 24px; display: flex; flex-direction: column;
}
.price-card.founders { border: 1px solid rgba(201,168,76,0.45); box-shadow: 0 0 40px rgba(201,168,76,0.06); position: relative; }
.price-card.soon { opacity: 0.55; }
.price-tag {
  display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: var(--black);
  font-size: 9px; font-weight: 800; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 2px;
  margin-bottom: 14px; width: fit-content; text-transform: uppercase;
}
.price-type { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray); margin-bottom: 14px; }
.price-amount { margin-bottom: 4px; }
.price-amount .cur { font-size: 15px; font-weight: 700; color: var(--gold); vertical-align: super; }
.price-amount .num { font-size: 40px; font-weight: 900; color: var(--gold); line-height: 1; }
.price-card.soon .price-amount .num, .price-card.soon .price-amount .cur { color: var(--gray-light); }
.price-period { font-size: 12px; color: var(--gray); margin-bottom: 18px; }
.price-note { font-size: 11px; color: rgba(201,168,76,0.7); margin-bottom: 18px; min-height: 14px; }
.price-divider { height: 1px; background: var(--black-border); margin: 6px 0 18px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 20px; }
.price-features li { display: flex; gap: 8px; font-size: 12.5px; color: var(--gray-light); line-height: 1.4; }
.price-features li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 11px; flex-shrink: 0; }
.price-cta { display: block; text-align: center; padding: 14px; font-weight: 800; font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; border-radius: 2px; }
.price-cta.active { background: var(--gold); color: var(--black); transition: all .2s ease; }
.price-cta.active:hover { background: var(--gold-light); transform: translateY(-2px); }
.price-cta.disabled { background: rgba(255,255,255,0.06); color: var(--gray); cursor: default; }
@media (max-width: 920px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ─── FEATURE LIST (Recursos) ─── */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--black-border); }
.feature-block:last-child { border-bottom: none; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-num { font-size: 12px; font-weight: 800; color: var(--gold); opacity: 0.5; letter-spacing: 0.1em; margin-bottom: 12px; }
.feature-block h3 { font-size: 26px; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.01em; }
.feature-block p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag { font-size: 11px; color: var(--gold); background: var(--gold-dim); padding: 5px 12px; border-radius: 100px; font-weight: 600; }
.feature-visual {
  background: var(--black-card); border: 1px solid var(--black-border); border-radius: 10px;
  padding: 24px; min-height: 220px; display: flex; align-items: center; justify-content: center;
}
@media (max-width: 860px) {
  .feature-block, .feature-block.reverse { grid-template-columns: 1fr; direction: ltr; gap: 28px; }
  .feature-visual { order: -1; }
}

/* ─── CTA BAND ─── */
.cta-band { padding: 90px 0; text-align: center; border-top: 1px solid var(--black-border); position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; height: 360px; background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.cta-band h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; line-height: 1.2; max-width: 620px; margin: 0 auto 16px; position: relative; }
.cta-band p { font-size: 14px; color: var(--gray); margin-bottom: 36px; position: relative; }
.cta-band .btn-group { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ─── FOOTER ─── */
footer { border-top: 1px solid var(--black-border); padding: 56px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-brand img { height: 34px; margin-bottom: 12px; }
.footer-brand p { font-size: 12px; color: var(--gray); }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--gray-light); text-decoration: none; margin-bottom: 10px; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--black-border); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 11px; color: #555; line-height: 1.8; max-width: 780px; margin: 0 auto 10px; }
.footer-bottom a { color: rgba(201,168,76,0.6); text-decoration: none; }

/* ─── SIMPLE FORM (contato) ─── */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%; background: var(--black-card); border: 1px solid var(--black-border); border-radius: 6px;
  padding: 13px 16px; color: var(--white); font-family: inherit; font-size: 14px; transition: border-color .2s ease;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* ─── CONTACT CHANNELS ─── */
.channel-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px; background: var(--black-card); border: 1px solid var(--black-border); border-radius: 8px; text-decoration: none; transition: border-color .3s, transform .3s; }
.channel-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.channel-icon { width: 42px; height: 42px; background: var(--gold-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.channel-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.channel-desc { font-size: 12px; color: var(--gray); }

/* ─── MISC ─── */
.badge-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border: 1px solid rgba(201,168,76,0.4); border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.badge-pill::before { content: '◆'; font-size: 7px; }
.divider-soft { height: 1px; background: var(--black-border); }

.mote-i{font-family:'Playfair Display',serif;font-style:italic;font-weight:700;font-size:1.12em;}

.badge-pill.badge-plain::before{content:none;}
