/*
Theme Name: LumenVec Landing
Theme URI: https://brma.com.br/
Author: OpenAI Codex
Description: Tema clássico WordPress para a presença institucional da BrMA Tech e a landing do produto LumenVec.
Version: 1.0.0
Text Domain: lumenvec-landing
*/

:root {
  --bg: #0b0f1a;
  --bg2: #0f1629;
  --surface: rgba(16, 26, 51, 0.6);
  --surface-strong: rgba(13, 21, 43, 0.82);
  --text: #e8eefc;
  --muted: #a6b3d2;
  --border: rgba(255, 255, 255, 0.1);
  --accent: #7c5cff;
  --accent2: #19d3ff;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(124, 92, 255, 0.25), transparent 60%),
    radial-gradient(1000px 600px at 90% 10%, rgba(25, 211, 255, 0.16), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

code,
pre {
  font-family: var(--mono);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  clip: auto !important;
  clip-path: none;
  display: block;
  height: auto;
  left: 8px;
  top: 8px;
  width: auto;
  z-index: 1000;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
}

.skip:focus {
  left: 8px;
  z-index: 1000;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-main {
  min-height: 60vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 15, 26, 0.72);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  height: 34px;
  width: auto;
}

.nav,
.footer__links-menu {
  display: flex;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav__list,
.footer__menu {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a,
.nav__link,
.footer__menu a,
.footer__links .link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover,
.nav__link:hover,
.nav .current-menu-item > a,
.nav .current_page_item > a,
.nav__link[aria-current="page"],
.footer__menu a:hover,
.footer__links .link:hover {
  color: var(--text);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--border);
  background: rgba(16, 26, 51, 0.55);
  border-radius: 999px;
}

.lang__btn {
  cursor: pointer;
  border: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
}

.lang__btn[aria-pressed="true"] {
  background: rgba(124, 92, 255, 0.25);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #5b7cff);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 24px rgba(124, 92, 255, 0.18);
}

.btn:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: rgba(16, 26, 51, 0.55);
  color: var(--text);
  box-shadow: none;
}

.hero,
.page-hero {
  padding: 76px 0 38px;
}

.hero__inner,
.split,
.product-panel,
.two {
  display: grid;
  gap: 24px;
  align-items: start;
}

.hero__inner,
.split {
  grid-template-columns: 1.08fr 0.92fr;
}

.product-panel {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
}

.two {
  grid-template-columns: 1fr 1fr;
}

.badge {
  display: inline-block;
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(16, 26, 51, 0.45);
}

.hero h1,
.page-hero h1 {
  margin: 14px 0;
  font-size: 50px;
  line-height: 1.04;
  letter-spacing: -0.9px;
  max-width: 12ch;
}

.page-hero h1 {
  max-width: 14ch;
}

.lead {
  color: var(--text);
  font-size: 18px;
  max-width: 62ch;
  margin: 0 0 14px;
}

.hero__support,
.page-hero__meta,
.hero__meta {
  color: var(--muted);
  max-width: 64ch;
  margin: 0 0 20px;
  font-size: 15px;
}

.hero__meta {
  font-size: 13px;
}

.hero__actions,
.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__aside,
.hero__panel,
.stat-grid,
.grid,
.metric-grid,
.hero__highlights {
  display: grid;
  gap: 16px;
}

.hero__highlights {
  grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.stat-grid {
  grid-template-columns: repeat(2, 1fr);
}

.metric-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.stat,
.metric,
.product-panel__media,
.product-panel__copy,
.codecard,
.hero__highlight {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.product-panel__media,
.product-panel__copy {
  background: var(--surface);
  padding: 20px;
}

.card--accent,
.usecases__card {
  background: linear-gradient(180deg, rgba(19, 31, 61, 0.85), rgba(13, 21, 43, 0.78));
}

.card__kicker,
.section__eyebrow {
  margin: 0 0 10px;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
}

.card h2,
.card h3,
.product-panel__copy h3 {
  margin: 0 0 10px;
  line-height: 1.25;
}

.product-panel__copy h3 {
  font-size: 28px;
}

.card p,
.product-panel__copy p,
.muted,
.note,
.footer__meta {
  color: var(--muted);
}

.muted {
  margin: 0 0 22px;
}

.card__list,
.list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.card__list li + li,
.list li + li {
  margin-top: 8px;
}

.stat,
.metric {
  background: rgba(13, 21, 43, 0.72);
  padding: 18px;
}

.stat strong,
.metric strong {
  display: block;
  margin-bottom: 6px;
  font-size: 28px;
  line-height: 1;
}

.stat span,
.metric span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(15, 22, 41, 0.75), rgba(11, 15, 26, 0.75));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 {
  margin: 0 0 12px;
  font-size: 32px;
  letter-spacing: -0.4px;
  max-width: 18ch;
}

.section__intro {
  max-width: 72ch;
  margin: 0 0 24px;
  color: var(--muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: 0 0 0 4px rgba(25, 211, 255, 0.08);
}

.product-panel__media img {
  max-width: 240px;
  margin: 0 auto;
}

.cta-panel {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.24), rgba(25, 211, 255, 0.15));
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 26px;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: none;
}

.cta-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 62ch;
}

.link,
.links a {
  color: rgba(25, 211, 255, 0.95);
  text-decoration: none;
  font-weight: 650;
}

.links {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.link:hover,
.links a:hover {
  text-decoration: underline;
}

.codecard {
  background: rgba(13, 21, 43, 0.72);
  overflow: hidden;
}

.codecard__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-weight: 750;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  background: rgba(16, 26, 51, 0.55);
}

.code {
  margin: 0;
  padding: 14px;
  overflow: auto;
}

.code code {
  color: #dce7ff;
  font-size: 12.5px;
}

.note {
  margin: 12px 0 0;
  font-size: 13px;
  padding: 0 14px 14px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background: rgba(11, 15, 26, 0.92);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 540px;
}

.footer__icon {
  height: 34px;
  width: auto;
}

.footer__title {
  font-weight: 800;
  margin-bottom: 4px;
}

.editorial-section__panel {
  background: rgba(13, 21, 43, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin: 0 0 12px;
  line-height: 1.25;
}

.entry-content h2 {
  font-size: 28px;
}

.entry-content h3 {
  font-size: 22px;
}

.entry-content p,
.entry-content li,
.entry-content blockquote {
  color: var(--muted);
}

.entry-content a {
  color: rgba(25, 211, 255, 0.95);
}

.entry-content ul,
.entry-content ol {
  padding-left: 20px;
}

.entry-content .wp-block-button__link {
  border-radius: 12px;
}

.entry-content .wp-block-group,
.entry-content .wp-block-columns {
  margin-bottom: 24px;
}

.copybtn {
  cursor: default;
  border: 1px solid var(--border);
  background: rgba(16, 26, 51, 0.45);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.copybtn:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

.theme-product .hero__meta {
  margin-top: 0;
}

.theme-product .hero__highlight {
  padding: 14px;
  background: linear-gradient(180deg, rgba(16, 26, 51, 0.72), rgba(13, 21, 43, 0.72));
}

.theme-product .hero__highlight strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.theme-product .hero__highlight span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.theme-product .hero .codecard {
  background: rgba(13, 21, 43, 0.82);
}

.theme-product .usecases__grid {
  margin-top: 26px;
}

@media (max-width: 960px) {
  .hero,
  .page-hero {
    padding-top: 54px;
  }

  .hero__inner,
  .split,
  .product-panel,
  .two,
  .grid--2,
  .grid--3,
  .metric-grid,
  .stat-grid,
  .hero__highlights {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
    max-width: none;
  }

  .section h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .topbar__inner {
    align-items: flex-start;
  }

  .topbar__actions {
    width: 100%;
    justify-content: space-between;
  }

  .nav,
  .footer__links-menu {
    width: 100%;
    justify-content: flex-start;
  }

  .nav__list,
  .footer__menu {
    justify-content: flex-start;
  }

  .hero__actions .btn,
  .hero__cta .btn,
  .topbar__actions .btn {
    width: 100%;
  }
}
