:root {
  --ink: #0D1117;
  --ink-soft: #1C2333;
  --amber: #F5A623;
  --amber-light: #FBBF24;
  --slate: #8B96A8;
  --white: #FFFFFF;
  --off-white: #F0EDE8;
  --green: #22C55E;
  --border: rgba(255,255,255,0.08);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { border: none; outline: none; box-shadow: none; vertical-align: bottom; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(13,17,23,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  font-size: 0;
  text-decoration: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}
.nav-logo img {
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
  vertical-align: bottom;
}
nav ul { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
nav ul a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--white); }
.nav-cta {
  background: var(--amber) !important;
  color: var(--ink) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600 !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 4rem 5rem;
}
.hero-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.hero-right {
  position: relative;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(245,166,35,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(245,166,35,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  position: relative;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  max-width: 800px;
  margin-bottom: 1.5rem;
  position: relative;
}
.hero h1 strong { font-weight: 700; color: var(--amber); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.7;
  position: relative;
}
.split-cta { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; }
.cta-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s;
  cursor: pointer;
  border: none;
  text-align: left;
}
.cta-card:hover { transform: translateY(-2px); }
.cta-card-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }
.cta-card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; letter-spacing: 0.02em; }
.cta-investor { background: var(--amber); color: var(--ink); }
.cta-client { background: var(--ink-soft); color: var(--white); border: 0.5px solid var(--border); }

/* STATS */
.stats-bar { display: flex; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.stat-item { flex: 1; padding: 2.5rem 4rem; border-right: 0.5px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.8rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

/* SECTION */
section { padding: 6rem 4rem; }
.section-eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section-sub { font-size: 1rem; color: var(--slate); max-width: 540px; line-height: 1.7; margin-bottom: 3rem; }

/* DIVIDER */
.audience-divider {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem 4rem;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: var(--ink-soft);
}
.divider-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--slate); white-space: nowrap; }
.divider-line { flex: 1; height: 0.5px; background: var(--border); }
.divider-pill { padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.pill-investor { background: rgba(245,166,35,0.15); color: var(--amber); }
.pill-client { background: rgba(34,197,94,0.12); color: var(--green); }

/* INVESTOR */
.investor-section { background: var(--ink); }
.investor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.investor-right { display: flex; flex-direction: column; gap: 1rem; }
.invest-card { background: var(--ink-soft); border: 0.5px solid var(--border); border-radius: 8px; padding: 1.5rem; }
.invest-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.invest-icon { width: 36px; height: 36px; border-radius: 6px; background: rgba(245,166,35,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--amber); }
.invest-card-title { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.invest-card-text { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }
.invest-highlight { border-left: 2px solid var(--amber); padding-left: 1.25rem; margin: 1.5rem 0; }
.invest-highlight-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--amber); line-height: 1; }
.invest-highlight-label { font-size: 0.8rem; color: var(--slate); margin-top: 0.2rem; }
.highlight-row { display: flex; gap: 2rem; margin: 2rem 0; }

/* PROJECTS */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 0.5px solid var(--border); border-radius: 8px; overflow: hidden; margin-top: 2rem; }
.project-card { background: var(--ink-soft); padding: 2rem; }
.project-status { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot-active { background: var(--green); }
.dot-pipeline { background: var(--amber); }
.status-active { color: var(--green); }
.status-pipeline { color: var(--amber); }
.project-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--white); }
.project-meta { font-size: 0.8rem; color: var(--slate); margin-bottom: 1rem; }
.project-power { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--amber); line-height: 1; }
.project-power-unit { font-size: 0.85rem; color: var(--slate); margin-top: 0.1rem; }

/* MODELS */
.models-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.model-card { background: var(--ink-soft); border: 0.5px solid var(--border); border-radius: 8px; padding: 2rem; position: relative; overflow: hidden; }
.model-card.featured { border-color: rgba(245,166,35,0.35); }
.featured-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(245,166,35,0.15); color: var(--amber); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 100px; }
.model-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--white); }
.model-desc { font-size: 0.85rem; color: var(--slate); line-height: 1.65; margin-bottom: 1.25rem; }
.model-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag { font-size: 0.7rem; padding: 0.25rem 0.65rem; border-radius: 100px; font-weight: 600; letter-spacing: 0.05em; }
.tag-amber { background: rgba(245,166,35,0.1); color: var(--amber); }
.tag-slate { background: rgba(139,150,168,0.1); color: var(--slate); }
.tag-green { background: rgba(34,197,94,0.1); color: var(--green); }

/* CLIENT */
.client-section { background: var(--ink-soft); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1rem; }
.how-step { padding: 2rem; background: var(--ink); border: 0.5px solid var(--border); border-radius: 8px; }
.step-num { font-family: var(--font-display); font-size: 4rem; font-weight: 700; color: rgba(245,166,35,0.12); line-height: 1; margin-bottom: 1rem; }
.step-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--white); }
.step-text { font-size: 0.85rem; color: var(--slate); line-height: 1.65; }
.savings-box { background: var(--ink); border: 0.5px solid var(--border); border-radius: 8px; padding: 3rem; margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.savings-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; line-height: 1.2; margin-bottom: 0.75rem; }
.savings-text { font-size: 0.9rem; color: var(--slate); line-height: 1.7; margin-bottom: 1.5rem; }
.bar-visual { display: flex; flex-direction: column; gap: 0.75rem; }
.bar-row { display: flex; align-items: center; gap: 1rem; }
.bar-label { font-size: 0.75rem; color: var(--slate); width: 80px; flex-shrink: 0; text-align: right; }
.bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; }
.bar-fill-before { background: rgba(255,255,255,0.25); width: 100%; }
.bar-fill-after { background: var(--green); width: 30%; }
.bar-value { font-size: 0.75rem; font-weight: 600; width: 36px; flex-shrink: 0; }

/* BTNS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: 4px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s; border: none; }
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-outline { background: transparent; color: var(--white); border: 0.5px solid rgba(255,255,255,0.25); }
.btn-green { background: var(--green); color: var(--ink); }

/* CONTACT */
.contact-section { background: var(--ink); border-top: 0.5px solid var(--border); padding: 6rem 4rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.info-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.info-sub { font-size: 0.9rem; color: var(--slate); line-height: 1.7; margin-bottom: 2rem; }
.info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.info-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); margin-top: 7px; flex-shrink: 0; }
.info-item-title { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate); margin-bottom: 0.15rem; }
.info-item-value { font-size: 0.9rem; color: var(--white); line-height: 1.5; }

/* CF7 form override */
.contact-form-area .wpcf7-form { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-form-area input[type="text"],
.contact-form-area input[type="email"],
.contact-form-area input[type="tel"],
.contact-form-area select,
.contact-form-area textarea {
  background: var(--ink-soft);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  width: 100%;
}
.contact-form-area input[type="submit"] {
  background: var(--amber);
  color: var(--ink);
  border: none;
  border-radius: 4px;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
}

/* FOOTER */
footer {
  background: var(--ink-soft);
  border-top: 0.5px solid var(--border);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.06em; color: var(--white); }
.footer-logo span { color: var(--amber); }
.footer-copy { font-size: 0.75rem; color: var(--slate); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.75rem; color: var(--slate); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* SCROLL OFFSET */
#investidores, #clientes, #contato, #projetos { scroll-margin-top: 80px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { display: none; }
  .hero, section, .contact-section { padding: 5rem 1.5rem 3rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 0.95rem; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 0.5px solid var(--border); padding: 1.25rem 1.5rem; }
  .stat-number { font-size: 2rem; }

  /* GRIDS — tudo em coluna única */
  .investor-grid,
  .contact-grid,
  .how-grid,
  .models-grid,
  .savings-box { grid-template-columns: 1fr; gap: 1.25rem; }

  /* PROJETOS — 1 coluna no mobile */
  .projects-grid { grid-template-columns: 1fr !important; }
  .project-card { padding: 1.25rem; }
  .project-power { font-size: 1.6rem; }
  .project-power-unit { font-size: 0.75rem; white-space: normal; word-break: break-word; }
  .project-name { font-size: 1rem; }
  .project-meta { font-size: 0.72rem; margin-bottom: 0.5rem; }

  /* HERO dois painéis empilhados */
  .hero-two-col {
    grid-template-columns: 1fr !important;
    padding: 6rem 1.5rem 3rem;
    gap: 2rem;
  }
  .hero-left, .hero-right { grid-column: 1; }

  /* BESS card */
  .bess-title { font-size: 1.8rem; }
  .bess-stats { flex-direction: column; gap: 0; }
  .bess-stat-div { width: 100%; height: 0.5px; }
  .bess-stat { padding: 0.85rem 1rem; }

  /* HIGHLIGHT PANEL */
  .hp-grid { grid-template-columns: 1fr 1fr; }

  /* AUDIENCE DIVIDER */
  .audience-divider { padding: 1.5rem; flex-wrap: wrap; gap: 0.75rem; }
  .divider-label { display: none; }

  /* FOOTER */
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { justify-content: center; }

  /* SECTION TITLE */
  .section-title { font-size: 1.8rem; }

  /* INVEST HIGHLIGHTS */
  .highlight-row { flex-direction: column; gap: 1rem; }

  /* SAVINGS BOX */
  .savings-box { padding: 1.5rem; }

  /* CONTACT FORM */
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr !important; }
  .hero h1 { font-size: 2rem; }
  .bess-title { font-size: 1.5rem; }
  .split-cta { flex-direction: column; }
  .cta-card { width: 100%; }
}



/* HERO PANEL */
.hero-panel {
  background: rgba(28,35,51,0.85);
  border: 0.5px solid rgba(245,166,35,0.25);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.panel-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border-bottom: 0.5px solid var(--border);
}
.panel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.panel-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.panel-usinas {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.usina-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.usina-name {
  font-size: 0.75rem;
  color: var(--slate);
  width: 72px;
  flex-shrink: 0;
}
.usina-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.usina-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--amber-dim), var(--amber));
  border-radius: 3px;
}
.usina-val {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  width: 60px;
  text-align: right;
  flex-shrink: 0;
}
.panel-total {
  padding: 0.85rem 1.25rem;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-total-label {
  font-size: 0.72rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.panel-total-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.panel-footer {
  display: flex;
  padding: 0.85rem 1.25rem;
  gap: 0;
}
.panel-stat {
  flex: 1;
  text-align: center;
  border-right: 0.5px solid var(--border);
  padding: 0 0.5rem;
}
.panel-stat:last-child { border-right: none; }
.panel-stat-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.panel-stat-label {
  font-size: 0.65rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .hero-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 6rem 1.5rem 3rem;
  }
}

/* HERO PANEL REDESIGN */
.hp-card {
  background: var(--ink-soft);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.hp-card-highlight {
  border-color: rgba(245,166,35,0.35);
  background: linear-gradient(135deg, rgba(245,166,35,0.07) 0%, var(--ink-soft) 60%);
}
.hp-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.75rem;
}
.hp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.hp-total-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hp-total-label {
  font-size: 0.8rem;
  color: var(--slate);
}
.hp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.hp-usina {
  background: var(--ink-soft);
  padding: 1rem;
}
.hp-usina-name {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.3rem;
}
.hp-usina-power {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hp-usina-meta {
  font-size: 0.65rem;
  color: var(--slate);
  opacity: 0.7;
}
.hp-footer {
  background: var(--ink-soft);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hp-footer-item { flex: 1; }
.hp-footer-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hp-footer-label {
  font-size: 0.7rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hp-footer-divider {
  width: 0.5px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* BESS CARD */
.bess-card {
  background: var(--ink-soft);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.bess-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), rgba(245,166,35,0.2), transparent);
}
.bess-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.bess-header { margin-bottom: 1.5rem; }
.bess-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245,166,35,0.1);
  border: 0.5px solid rgba(245,166,35,0.25);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.bess-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.bess-title-hl {
  color: var(--amber);
}
.bess-intro {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.bess-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0,0,0,0.2);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.bess-stat {
  flex: 1;
  padding: 1.1rem 1rem;
  text-align: center;
}
.bess-stat-div {
  width: 0.5px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.bess-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.bess-stat-label {
  font-size: 0.68rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.bess-divider {
  height: 0.5px;
  background: var(--border);
  margin-bottom: 1.25rem;
}
.bess-claim {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* KWP 10 DESTAQUE */
.kwp10-destaque {
  margin-top: 2rem;
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink-soft);
  position: relative;
}
.kwp10-destaque::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), rgba(245,166,35,0.15));
}

/* HEADER */
.kwp10-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: rgba(245,166,35,0.08);
  border-bottom: 0.5px solid rgba(245,166,35,0.2);
}
.kwp10-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
.kwp10-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  flex-shrink: 0;
  animation: pulse-amber 2s infinite;
}
@keyframes pulse-amber {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--amber); }
  50% { opacity: 0.6; box-shadow: 0 0 18px var(--amber); }
}
.kwp10-header-right {
  font-size: 0.68rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* BODY — 3 colunas igual ao portfólio */
.kwp10-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

/* COLUNA IDENTIDADE */
.kwp10-identity {
  padding: 1.5rem;
  border-right: 0.5px solid var(--border);
}
.kwp10-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.4rem 0 0.2rem;
}
.kwp10-categoria {
  font-size: 0.75rem;
  color: var(--slate);
  margin-bottom: 1rem;
}
.kwp10-power {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.2rem;
}

/* COLUNA SPECS */
.kwp10-specs-col {
  padding: 1.5rem;
  border-right: 0.5px solid var(--border);
}
.kwp10-spec-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.kwp10-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
  color: var(--slate);
}
.kwp10-spec-row span:last-child {
  color: var(--white);
  font-weight: 500;
}

/* COLUNA CTA */
.kwp10-cta-col {
  padding: 1.5rem;
}
.kwp10-cta-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.kwp10-cta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--slate);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.kwp10-cta-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 5px;
}

@media (max-width: 900px) {
  .kwp10-body { grid-template-columns: 1fr; }
  .kwp10-identity, .kwp10-specs-col { border-right: none; border-bottom: 0.5px solid var(--border); }
  .kwp10-header { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}
