/*
Theme Name: NoroLabs Performance & GEO
Theme URI: https://norolabs.com.br
Author: NoroLabs
Description: Tema premium da NoroLabs com Performance, GEO, blog, serviços detalhados, cases, SEO e dados estruturados.
Version: 2.5.2
Text Domain: noro-labs-pro
*/

:root {
  --noro-ink: #072141;
  --noro-navy: #08386f;
  --noro-blue: #075aa6;
  --noro-cyan: #1399d3;
  --noro-sky: #eaf6ff;
  --noro-paper: #ffffff;
  --noro-bg: #f5f9fd;
  --noro-soft: #36546f;
  --noro-muted: #667d92;
  --noro-line: #d8e7f3;
  --noro-card: #ffffff;
  --font-display: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--noro-bg);
  color: var(--noro-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 4px;
  background: #fff;
  color: #061a30;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #55c7f3;
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(7,33,65,.1);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(7,33,65,.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 92px;
  padding: 14px 24px;
}

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

.brand img {
  display: block;
  width: 176px;
  max-height: 54px;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--noro-ink);
  font-size: .96rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--noro-cyan);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(126, 219, 255, .22);
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #d7ecfb;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(7,90,166,.14);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--noro-blue), var(--noro-cyan));
  color: #fff;
}

.btn-secondary {
  border-color: rgba(7,90,166,.25);
  background: #fff;
  color: var(--noro-blue);
}

.btn-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: .86rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  min-height: auto;
  margin: 0 auto;
  padding: 72px 24px 76px;
}

.hero::before {
  content: "";
  position: absolute;
  right: -18vw;
  top: 14%;
  width: 72vw;
  height: 72vw;
  max-width: 860px;
  max-height: 860px;
  background: radial-gradient(circle, rgba(19,153,211,.22), rgba(19,153,211,0) 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 -16vw 0 -16vw;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(234,246,255,.95), rgba(255,255,255,.58) 55%, rgba(19,153,211,.08)),
    radial-gradient(circle at 18% 22%, rgba(7,90,166,.12), transparent 32%);
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--noro-blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--noro-cyan);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display) !important;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  font-size: 3.35rem !important;
  font-weight: 750;
  color: var(--noro-ink);
}

h1 span,
.section-title span {
  color: var(--noro-cyan);
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #294965;
  font-size: 1.12rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--noro-line);
  border-radius: 8px;
  background: var(--noro-line);
  box-shadow: 0 18px 50px rgba(7,33,65,.08);
}

.metric {
  min-height: 106px;
  padding: 22px;
  background: #fff;
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--noro-blue);
}

.metric span {
  display: block;
  margin-top: 9px;
  color: var(--noro-soft);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(7,90,166,.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(7,33,65,.14);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--noro-line);
}

.dashboard-title {
  font-weight: 800;
  color: var(--noro-ink);
}

.live-pill {
  color: var(--noro-cyan);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.dash-card {
  min-height: 128px;
  padding: 18px;
  border-radius: 8px;
  background: var(--noro-sky);
  border: 1px solid rgba(7,90,166,.08);
}

.dash-card b {
  display: block;
  color: var(--noro-blue);
  font-family: var(--font-display);
  font-size: 1.75rem;
}

.dash-card span {
  display: block;
  color: var(--noro-soft);
  font-size: .85rem;
}

.dash-bar {
  height: 8px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: #d6e9f6;
}

.dash-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--noro-blue), var(--noro-cyan));
}

.section {
  padding: 92px 24px;
  background: var(--noro-bg);
}

.section.alt {
  background: #fff;
}

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

.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-title {
  max-width: 760px;
  font-size: 2.35rem !important;
  font-weight: 750;
  color: var(--noro-ink);
}

.section-sub {
  max-width: 650px;
  margin: 18px 0 0;
  color: #35536e;
  font-size: 1.1rem;
  font-weight: 500;
}

.grid-2,
.grid-3,
.stack-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--noro-line);
  border-radius: 8px;
  background: var(--noro-card);
  box-shadow: 0 14px 36px rgba(7,33,65,.07);
}

.card h3 {
  margin-top: 12px;
  font-size: 1.12rem;
  line-height: 1.28;
  color: var(--noro-ink);
}

.card p {
  margin: 12px 0 0;
  color: #36546f;
  font-weight: 500;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #e8f5fc;
  color: var(--noro-blue);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.number {
  color: var(--noro-cyan);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.vertical-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #36546f;
  font-weight: 500;
}

.vertical-list li {
  position: relative;
  padding-left: 24px;
}

.vertical-list li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--noro-cyan);
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 44px;
  align-items: start;
}

.about-copy {
  padding: 30px;
  border: 1px solid var(--noro-line);
  border-radius: 8px;
  background: var(--noro-sky);
}

.about-copy p {
  margin: 0;
  color: #294965;
  font-size: 1.04rem;
  font-weight: 500;
}

.about-copy p + p {
  margin-top: 16px;
}

.founder-link {
  margin-top: 24px;
}

.founder-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.founder-timeline > div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(19, 153, 211, .18);
  border-radius: 6px;
  background: rgba(19, 153, 211, .06);
}

.founder-timeline strong,
.founder-timeline span {
  display: block;
}

.founder-timeline strong {
  color: var(--noro-blue);
  font-size: .9rem;
}

.founder-timeline span {
  margin-top: 4px;
  color: var(--noro-soft);
  font-size: .78rem;
  line-height: 1.4;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.quote {
  position: relative;
  margin: 0 !important;
  color: #263f58 !important;
  font-size: 1rem;
  line-height: 1.65;
}

.quote::before {
  content: "“";
  display: block;
  margin-bottom: 8px;
  color: var(--noro-cyan);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: .6;
}

.testimonial-author {
  padding-top: 18px;
  border-top: 1px solid var(--noro-line);
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  color: var(--noro-ink);
  font-size: 1rem;
}

.testimonial-author span {
  margin-top: 4px;
  color: var(--noro-muted);
  font-size: .9rem;
  font-weight: 700;
}

.certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.certs span {
  padding: 8px 12px;
  border: 1px solid var(--noro-line);
  border-radius: 999px;
  color: var(--noro-blue);
  background: #fff;
  font-size: .88rem;
  font-weight: 800;
}

.cta {
  padding: 72px 24px;
  background: linear-gradient(135deg, var(--noro-ink), var(--noro-blue));
  color: #fff;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.55rem !important;
  color: #fff;
}

.cta p {
  max-width: 680px;
  margin: 14px 0 0;
  color: #d6e9f6;
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--noro-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(7,33,65,.05);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--noro-ink);
  font: 800 1rem var(--font-body);
  text-align: left;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding: 0 22px 22px;
  color: #36546f;
  font-weight: 500;
}

.faq-item.is-open .faq-a {
  display: block;
}

.site-footer {
  padding: 42px 24px;
  border-top: 1px solid var(--noro-line);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--noro-soft);
  font-size: .92rem;
  font-weight: 700;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .ai-presence-layout,
  .static-faq {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .service-card.featured,
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: span 1;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 52px;
  }

  .grid-2,
  .grid-3,
  .stack-grid,
  .steps-grid,
  .about-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 12px 18px;
  }

  .btn-small {
    display: none;
  }

  .hero,
  .section,
  .cta,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: 2.05rem !important;
  }
}

/* Modern NoroLabs dark-tech layer */
.ai-presence-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.performance-spotlight {
  overflow: hidden;
}

.performance-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 26%, rgba(24,169,230,.2), transparent 34%),
    linear-gradient(180deg, rgba(8,116,201,.1), rgba(255,255,255,.018));
  border-top: 1px solid rgba(94,176,232,.12);
  border-bottom: 1px solid rgba(94,176,232,.12);
  pointer-events: none;
}

.performance-layout {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(420px, 1.02fr);
  gap: 48px;
  align-items: center;
}

.performance-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.performance-points > div {
  padding: 18px;
  border: 1px solid rgba(126,219,255,.16);
  border-radius: 8px;
  background: rgba(3,13,28,.44);
}

.performance-points strong,
.performance-points span {
  display: block;
}

.performance-points strong {
  color: #f4fbff;
}

.performance-points span {
  margin-top: 6px;
  color: var(--noro-muted);
  font-size: .9rem;
}

.performance-visual {
  padding: 12px;
  border: 1px solid rgba(126,219,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 30px 84px rgba(0,0,0,.34);
}

.performance-visual img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.performance-visual-note {
  display: grid;
  gap: 5px;
  padding: 15px 10px 5px;
}

.performance-visual-note strong {
  color: #fff;
}

.performance-visual-note span {
  color: var(--noro-muted);
  font-size: .9rem;
}

.ai-presence-layout .section-head {
  margin-bottom: 0;
}

.ai-presence-layout .btn {
  margin-top: 28px;
}

.ai-presence-panel {
  padding: 28px;
  border: 1px solid rgba(94,176,232,.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 10%, rgba(24,169,230,.22), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 28px 80px rgba(0,0,0,.3);
}

.ai-query {
  display: grid;
  gap: 12px;
}

.ai-query-label {
  color: #72d8ff;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ai-query p {
  margin: 0;
  padding: 15px 18px;
  border: 1px solid rgba(126,219,255,.16);
  border-radius: 8px;
  background: rgba(3,13,28,.58);
  color: #effaff;
  font-weight: 700;
}

.ai-answer {
  margin-top: 18px;
  padding: 18px;
  border-left: 3px solid #18a9e6;
  background: rgba(24,169,230,.09);
  color: #b8d2e6;
}

.ai-verticals {
  margin-top: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  grid-column: span 2;
}

.service-card.featured {
  grid-column: span 4;
  background:
    radial-gradient(circle at 88% 12%, rgba(24,169,230,.2), transparent 34%),
    linear-gradient(180deg, rgba(8,116,201,.2), rgba(7,26,51,.8));
}

.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
  grid-column: span 3;
}

.static-faq {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.static-faq .faq-item {
  padding: 24px;
}

.static-faq .faq-item h3 {
  margin: 0;
  color: #f3fbff;
  font-size: 1.08rem;
  line-height: 1.35;
}

.static-faq .faq-a {
  display: block;
  padding: 12px 0 0;
}

:root {
  --noro-ink: #eaf6ff;
  --noro-deep: #041225;
  --noro-deeper: #020915;
  --noro-navy: #08284d;
  --noro-blue: #0874c9;
  --noro-cyan: #18a9e6;
  --noro-sky: rgba(15, 49, 89, .78);
  --noro-bg: #041225;
  --noro-soft: #b8d2e6;
  --noro-muted: #86a8c1;
  --noro-line: rgba(94, 176, 232, .22);
  --noro-card: rgba(9, 31, 59, .78);
}

body {
  background:
    radial-gradient(circle at 78% 12%, rgba(24,169,230,.18), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(8,116,201,.16), transparent 30%),
    linear-gradient(180deg, var(--noro-deeper), var(--noro-deep) 42%, #061b33);
  color: var(--noro-ink);
}

.site-shell {
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 44px 44px;
}

.site-header {
  border-bottom: 1px solid rgba(94,176,232,.16);
  background: rgba(3, 13, 28, .78);
  box-shadow: 0 16px 44px rgba(0,0,0,.22);
}

.nav {
  min-height: 84px;
}

.brand {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
}

.brand img {
  width: 168px;
  max-height: 48px;
}

.nav-links a {
  color: #d7ecfb;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--noro-cyan);
}

.btn {
  box-shadow: 0 16px 42px rgba(8,116,201,.28);
}

.btn-primary {
  background: linear-gradient(135deg, #0874c9, #18a9e6);
  color: #fff;
}

.btn-secondary {
  border-color: rgba(139,205,246,.26);
  background: rgba(255,255,255,.04);
  color: #dff5ff;
}

.hero {
  max-width: 1240px;
  min-height: calc(100vh - 84px);
  padding-top: 86px;
  padding-bottom: 92px;
}

.hero::before {
  right: -24vw;
  top: -15%;
  background: radial-gradient(circle, rgba(24,169,230,.34), rgba(24,169,230,0) 66%);
}

.hero::after {
  inset: 0 -18vw 0 -18vw;
  background:
    radial-gradient(circle at 72% 38%, rgba(8,116,201,.18), transparent 28%),
    linear-gradient(135deg, rgba(9,31,59,.74), rgba(4,18,37,.18) 54%, rgba(24,169,230,.06));
}

.eyebrow {
  color: var(--noro-cyan);
}

h1,
.section-title,
.card h3 {
  color: #f3fbff;
}

h1 {
  max-width: 760px;
  font-size: 4.7rem !important;
  line-height: 1.04;
}

.hero-lead,
.section-sub {
  color: var(--noro-soft);
}

.hero-metrics {
  border-color: rgba(94,176,232,.18);
  background: rgba(94,176,232,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

.metric {
  background: rgba(7, 26, 51, .86);
}

.metric strong {
  color: #f6fbff;
}

.metric span {
  color: var(--noro-muted);
}

.hero-panel {
  padding: 12px;
  border-color: rgba(94,176,232,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.visual-panel {
  overflow: hidden;
}

.visual-panel img,
.visual-stack img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.visual-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 10px 4px;
  color: #dff5ff;
}

.visual-caption strong {
  color: #fff;
}

.visual-caption span {
  color: var(--noro-muted);
  font-size: .92rem;
}

.section,
.section.alt {
  background: transparent;
}

.section {
  position: relative;
  padding-top: 104px;
  padding-bottom: 104px;
}

.section.alt::before,
.visual-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  border-top: 1px solid rgba(94,176,232,.1);
  border-bottom: 1px solid rgba(94,176,232,.1);
  pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 3.1rem !important;
  line-height: 1.08;
}

.card {
  border-color: rgba(94,176,232,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.032)),
    rgba(7,26,51,.76);
  box-shadow: 0 22px 64px rgba(0,0,0,.24);
}

.card p,
.vertical-list,
.about-copy p,
.quote,
.faq-a {
  color: var(--noro-soft) !important;
}

.tag {
  background: rgba(24,169,230,.13);
  color: #7edbff;
  border: 1px solid rgba(126,219,255,.2);
}

.number {
  color: #51c9f7;
}

.vertical-list li::before,
.eyebrow::before {
  background: #51c9f7;
  box-shadow: 0 0 18px rgba(81,201,247,.7);
}

.visual-section {
  overflow: hidden;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.visual-copy {
  max-width: 560px;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.signal-list span {
  padding: 10px 12px;
  border: 1px solid rgba(126,219,255,.22);
  border-radius: 999px;
  background: rgba(24,169,230,.1);
  color: #dff5ff;
  font-size: .9rem;
  font-weight: 700;
}

.visual-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.visual-stack img {
  border: 1px solid rgba(94,176,232,.2);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.visual-stack img + img {
  margin-left: 72px;
  width: calc(100% - 72px);
}

.about-copy,
.dash-card,
.faq-item {
  border-color: rgba(94,176,232,.18);
  background: rgba(7,26,51,.72);
}

.testimonial-author {
  border-top-color: rgba(94,176,232,.18);
}

.testimonial-author strong,
.faq-q {
  color: #f3fbff;
}

.testimonial-author span {
  color: var(--noro-muted);
}

.certs span {
  border-color: rgba(94,176,232,.22);
  background: rgba(255,255,255,.045);
  color: #dff5ff;
}

.cta {
  background:
    radial-gradient(circle at 82% 18%, rgba(24,169,230,.35), transparent 32%),
    linear-gradient(135deg, #062044, #0874c9);
}

.site-footer {
  border-top-color: rgba(94,176,232,.16);
  background: rgba(3, 13, 28, .92);
}

.footer-inner {
  color: var(--noro-muted);
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    padding-top: 58px;
  }

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

  .ai-presence-layout,
  .static-faq {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .service-card.featured,
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: span 1;
  }

  .visual-stack img + img {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.35rem !important;
  }

  .visual-caption {
    display: block;
  }

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

/* Editorial, blog and service pages */
.editorial-container,
.article-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.editorial-hero,
.service-hero,
.article-header {
  position: relative;
  padding: 104px 0 76px;
  overflow: hidden;
  border-bottom: 1px solid rgba(94,176,232,.14);
  background:
    radial-gradient(circle at 78% 14%, rgba(24,169,230,.24), transparent 30%),
    linear-gradient(145deg, rgba(8,40,77,.72), rgba(4,18,37,.24));
}

.editorial-hero.compact {
  padding: 72px 0 58px;
}

.editorial-hero h1,
.service-hero h1,
.article-header h1 {
  max-width: 900px;
  margin: 0;
  color: #f4fbff;
  font-size: 4.15rem !important;
  line-height: 1.05;
}

.editorial-hero p,
.service-hero > .editorial-container > p,
.article-deck,
.archive-description {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--noro-soft);
  font-size: 1.12rem;
}

.editorial-section {
  padding: 86px 0;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 32px;
}

.category-nav a,
.content-categories a {
  color: #91ddfb;
  text-decoration: none;
}

.category-nav a {
  padding: 9px 13px;
  border: 1px solid rgba(126,219,255,.2);
  border-radius: 999px;
  background: rgba(24,169,230,.08);
  font-size: .88rem;
  font-weight: 700;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.content-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(94,176,232,.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(7,26,51,.8);
  box-shadow: 0 22px 62px rgba(0,0,0,.22);
}

.content-thumb {
  display: block;
  margin: -26px -26px 22px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.content-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.content-meta {
  color: var(--noro-cyan);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.content-card h2,
.content-card h3 {
  margin: 12px 0 0;
  color: #f4fbff;
  font-size: 1.32rem;
  line-height: 1.25;
}

.content-card h2 a,
.content-card h3 a {
  color: inherit;
  text-decoration: none;
}

.content-card p {
  flex: 1;
  margin: 14px 0 0;
  color: var(--noro-soft);
}

.content-categories {
  margin-top: 18px;
  font-size: .86rem;
}

.content-link {
  display: inline-block;
  margin-top: 20px;
  color: #7edbff;
  font-weight: 800;
  text-decoration: none;
}

.content-actions {
  margin-top: 30px;
}

.search-form {
  display: flex;
  max-width: 620px;
  margin-top: 30px;
}

.search-field {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(126,219,255,.22);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  outline: 0;
  background: rgba(3,13,28,.66);
  color: #fff;
  font: inherit;
}

.search-submit {
  padding: 12px 18px;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(135deg, var(--noro-blue), var(--noro-cyan));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.pagination {
  margin-top: 36px;
}

.pagination .nav-links {
  display: flex;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  margin-right: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(126,219,255,.18);
  border-radius: 6px;
  color: #dff5ff;
  text-decoration: none;
}

.pagination .current {
  background: var(--noro-blue);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--noro-muted);
  font-size: .86rem;
}

.breadcrumbs a {
  color: #8edfff;
  text-decoration: none;
}

.article-header {
  padding-bottom: 64px;
}

.article-header h1 {
  font-size: 3.9rem !important;
}

.article-categories {
  margin-bottom: 16px;
}

.article-categories a {
  color: var(--noro-cyan);
  font-weight: 800;
  text-decoration: none;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  color: var(--noro-muted);
  font-size: .9rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
  gap: 56px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 92px;
}

.article-content,
.service-content {
  color: #d3e8f6;
  font-size: 1.06rem;
  line-height: 1.82;
}

.service-visual-band {
  padding: 64px 0;
  border-bottom: 1px solid rgba(94,176,232,.12);
  background: rgba(255,255,255,.018);
}

.service-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1.28fr);
  gap: 44px;
  align-items: center;
}

.service-visual-grid h2 {
  margin: 0;
  color: #f4fbff;
  font-size: 2.5rem;
  line-height: 1.1;
}

.service-visual-grid p:not(.eyebrow) {
  color: var(--noro-soft);
  line-height: 1.7;
}

.service-visual-grid img {
  display: block;
  width: 100%;
  border: 1px solid rgba(126,219,255,.18);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0,0,0,.3);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 42px;
}

.service-feature-grid > div {
  padding: 20px;
  border: 1px solid rgba(126,219,255,.16);
  border-radius: 8px;
  background: rgba(7,26,51,.72);
}

.service-feature-grid strong,
.service-feature-grid span {
  display: block;
}

.service-feature-grid strong {
  color: #f4fbff;
  font-size: 1rem;
}

.service-feature-grid span {
  margin-top: 7px;
  color: var(--noro-muted);
  font-size: .9rem;
  line-height: 1.5;
}

.service-final-cta {
  margin-top: 64px;
  padding: 32px;
  border: 1px solid rgba(126,219,255,.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 10%, rgba(24,169,230,.2), transparent 32%),
    rgba(7,26,51,.78);
}

.service-final-cta h2 {
  margin: 8px 0 0;
}

.article-content > p:first-child,
.service-content > p:first-child,
.answer-first {
  padding: 22px 24px;
  border-left: 3px solid var(--noro-cyan);
  background: rgba(24,169,230,.08);
  color: #effaff;
  font-size: 1.1rem;
}

.article-content h2,
.article-content h3,
.service-content h2,
.service-content h3 {
  margin: 48px 0 16px;
  color: #f4fbff;
  line-height: 1.22;
}

.article-content h2,
.service-content h2 {
  font-size: 1.75rem;
}

.article-content a,
.service-content a {
  color: #7edbff;
}

.article-content ul,
.article-content ol,
.service-content ul,
.service-content ol {
  padding-left: 24px;
}

.article-content li,
.service-content li {
  margin-bottom: 8px;
}

.article-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
}

.sidebar-box {
  padding: 20px;
  border: 1px solid rgba(94,176,232,.16);
  border-radius: 8px;
  background: rgba(7,26,51,.7);
}

.sidebar-box strong {
  color: #fff;
}

.sidebar-box p {
  margin: 8px 0 0;
  color: var(--noro-muted);
  font-size: .9rem;
}

.article-cta {
  margin-top: 56px;
  padding: 30px;
  border: 1px solid rgba(94,176,232,.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 10%, rgba(24,169,230,.2), transparent 34%),
    rgba(7,26,51,.82);
}

.article-cta h2 {
  margin-top: 8px;
}

.related-section {
  border-top: 1px solid rgba(94,176,232,.12);
  background: rgba(255,255,255,.02);
}

.service-hero .btn {
  margin-top: 28px;
}

.service-content {
  max-width: 820px;
  padding-top: 72px;
  padding-bottom: 96px;
}

.empty-state {
  padding: 46px;
  border: 1px solid rgba(94,176,232,.16);
  border-radius: 8px;
  background: rgba(7,26,51,.7);
}

.editorial-footer .footer-inner > div:first-child {
  display: grid;
  gap: 4px;
}

.editorial-footer strong {
  color: #fff;
}

.footer-nav {
  display: flex;
  gap: 16px;
}

.footer-nav a {
  color: #9ddffc;
  text-decoration: none;
}

@media (max-width: 920px) {
  .content-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .performance-layout,
  .service-visual-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .editorial-footer .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .editorial-container,
  .article-container {
    width: min(100% - 36px, 1120px);
  }

  .editorial-hero,
  .service-hero,
  .article-header {
    padding: 64px 0 50px;
  }

  .editorial-hero h1,
  .service-hero h1,
  .article-header h1 {
    font-size: 2.25rem !important;
  }

  .editorial-section {
    padding: 64px 0;
  }

  .search-form {
    display: grid;
    gap: 8px;
  }

  .search-field,
  .search-submit {
    border: 1px solid rgba(126,219,255,.22);
    border-radius: 8px;
  }

  .performance-points,
  .service-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NOVOS ESTILOS — homepage v2 GEO-ready
   ═══════════════════════════════════════════════════════════════ */

/* ── Geo bar ── */
.geo-bar {
  background: var(--noro-ink);
  padding: 10px 24px;
  overflow: hidden;
}
.geo-bar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.geo-bar-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--noro-cyan);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.geo-bar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.geo-bar-list li {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
.geo-bar-list li::before {
  content: "·";
  margin-right: 6px;
  color: var(--noro-cyan);
}

/* ── Feature detail grid (Noro Performance) ── */
.feature-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 24px;
}
.feature-detail-item {
  background: rgba(7,90,166,.07);
  border: 1px solid rgba(19,153,211,.15);
  border-radius: 8px;
  padding: 16px 18px;
}
.feature-detail-item strong {
  display: block;
  font-size: .93rem;
  color: var(--noro-ink);
  margin-bottom: 6px;
}
.feature-detail-item p {
  margin: 0;
  font-size: .88rem;
  color: var(--noro-soft);
  line-height: 1.55;
}

/* ── Channel tags ── */
.channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}
.channel-tags span {
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--noro-sky);
  color: var(--noro-blue);
  border: 1px solid rgba(7,90,166,.15);
}

/* ── GEO split layout ── */
.geo-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}
.geo-query-block {
  background: linear-gradient(160deg, rgba(7,26,51,.95), rgba(7,56,111,.9));
  border: 1px solid rgba(19,153,211,.2);
  border-radius: 12px;
  padding: 28px;
}
.geo-query-label {
  font-size: .8rem;
  color: var(--noro-cyan);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
  margin: 0 0 16px;
}
.geo-query {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  padding: 10px 14px;
  border-left: 2px solid rgba(19,153,211,.4);
  margin-bottom: 10px;
  font-style: italic;
  line-height: 1.5;
}
.geo-answer {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(19,153,211,.12);
  border-radius: 8px;
  border: 1px solid rgba(19,153,211,.2);
}
.geo-answer-label {
  font-size: .88rem;
  color: #7edbff;
  line-height: 1.5;
  font-weight: 600;
}
.geo-right h3 {
  font-size: 1.15rem;
  color: var(--noro-ink);
  margin: 0 0 20px;
}
.geo-steps {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}
.geo-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.geo-step-num {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--noro-blue), var(--noro-cyan));
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.geo-step strong {
  display: block;
  font-size: .93rem;
  color: var(--noro-ink);
  margin-bottom: 4px;
}
.geo-step p {
  margin: 0;
  font-size: .87rem;
  color: var(--noro-soft);
  line-height: 1.5;
}

/* ── Services detailed grid ── */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.service-detail-card {
  background: var(--noro-card);
  border: 1px solid var(--noro-line);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .2s ease, transform .2s ease;
}
.service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(7,33,65,.1);
}
.service-detail-card.featured {
  border-color: var(--noro-cyan);
  grid-column: span 2;
}
.service-detail-head {
  margin-bottom: 16px;
}
.service-detail-sub {
  font-size: .9rem;
  color: var(--noro-soft);
  margin: 8px 0 0;
  line-height: 1.55;
}
.service-detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
  margin-bottom: 16px;
}
.service-detail-card.featured .service-detail-body {
  grid-template-columns: 1.2fr 1fr;
}
.service-what strong,
.service-for strong {
  display: block;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--noro-blue);
  margin-bottom: 10px;
}
.service-what ul,
.service-for ul {
  margin: 0;
  padding: 0 0 0 16px;
}
.service-what li,
.service-for li {
  font-size: .87rem;
  color: var(--noro-soft);
  margin-bottom: 6px;
  line-height: 1.45;
}

/* ── Niche cards ── */
.niche-card {
  padding: 28px;
}
.niche-card .vertical-list {
  margin: 16px 0;
  padding: 0 0 0 18px;
}
.niche-card .vertical-list li {
  font-size: .9rem;
  color: var(--noro-soft);
  margin-bottom: 8px;
}

/* ── Results numbers ── */
.results-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
.result-num {
  background: linear-gradient(135deg, rgba(7,90,166,.07), rgba(19,153,211,.05));
  border: 1px solid rgba(19,153,211,.15);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.result-num strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--noro-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.result-num span {
  font-size: .82rem;
  color: var(--noro-soft);
  line-height: 1.4;
}

/* ── Cert / tag rows ── */
.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.cert-row span {
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  background: var(--noro-sky);
  color: var(--noro-blue);
  border-radius: 20px;
  border: 1px solid rgba(7,90,166,.15);
}

/* ── Glossary ── */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.glossary-item {
  background: var(--noro-card);
  border: 1px solid var(--noro-line);
  border-radius: 10px;
  padding: 20px 22px;
}
.glossary-item dt {
  font-size: .92rem;
  font-weight: 700;
  color: var(--noro-blue);
  margin-bottom: 8px;
  line-height: 1.35;
}
.glossary-item dd {
  margin: 0;
  font-size: .87rem;
  color: var(--noro-soft);
  line-height: 1.65;
}

/* ── Footer brand ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand img {
  margin-bottom: 4px;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.footer-brand span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer-nav a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .15s;
}
.footer-nav a:hover {
  color: var(--noro-cyan);
}

/* ── FAQ accordion ── */
.faq-item { border-bottom: 1px solid var(--noro-line); }
.faq-item h3 { user-select: none; }
.faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 0 0 0;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 20px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .geo-split { grid-template-columns: 1fr; }
  .feature-detail-grid { grid-template-columns: 1fr; }
  .service-detail-card.featured { grid-column: span 1; }
  .service-detail-body { grid-template-columns: 1fr; }
  .results-numbers { grid-template-columns: 1fr 1fr; }
  .glossary-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .geo-bar-list { gap: 4px 12px; }
  .results-numbers { grid-template-columns: 1fr 1fr; gap: 10px; }
  .services-detailed-grid { grid-template-columns: 1fr; }
  .channel-tags { gap: 6px; }
}

/* Cases */
.case-showcase {
  color: #f4fbff;
  background:
    linear-gradient(135deg, rgba(7, 90, 166, .18), transparent 42%),
    #061a30;
}

.case-showcase .section-title,
.case-showcase .section-sub {
  color: #f4fbff;
}

.case-showcase .section-sub {
  color: rgba(225, 241, 252, .72);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.case-card {
  display: flex;
  min-width: 0;
  min-height: 320px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(92, 184, 235, .22);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(16, 54, 88, .96), rgba(7, 32, 58, .98));
  box-shadow: 0 18px 50px rgba(0, 15, 31, .18);
}

.case-card-top,
.case-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.case-focus,
.case-kicker > span:not(.tag) {
  color: #8fcbed;
  font-size: .78rem;
  font-weight: 700;
}

.case-card h2,
.case-card h3 {
  margin: 22px 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
}

.case-card h2 a,
.case-card h3 a {
  color: inherit;
  text-decoration: none;
}

.case-card p {
  flex: 1;
  margin: 14px 0 24px;
  color: rgba(225, 241, 252, .72);
}

.case-card .content-link {
  color: #55c7f3;
}

.case-showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(92, 184, 235, .18);
}

.case-showcase-footer p,
.case-disclaimer {
  margin: 0;
  color: rgba(225, 241, 252, .62);
  font-size: .86rem;
}

.case-archive-hero {
  background:
    linear-gradient(120deg, rgba(19, 153, 211, .16), transparent 50%),
    #061a30;
}

.post-type-archive-noro_case .editorial-section {
  background: #0a223b;
}

.post-type-archive-noro_case .case-disclaimer {
  margin-top: 26px;
}

.case-header {
  background:
    linear-gradient(120deg, rgba(19, 153, 211, .14), transparent 52%),
    #061a30;
}

.case-kicker {
  margin: 18px 0;
}

.case-page .article-content blockquote {
  margin: 32px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--noro-cyan);
  background: rgba(19, 153, 211, .08);
  color: #dcecf7;
  font-size: 1.08rem;
}

.case-note {
  margin: 34px 0;
  padding: 20px 22px;
  border: 1px solid rgba(92, 184, 235, .2);
  border-radius: 8px;
  background: rgba(7, 90, 166, .08);
}

.case-note strong {
  color: var(--noro-blue);
}

.case-note p {
  margin: 6px 0 0;
}

/* Founder profile */
.founder-hero {
  padding: 92px 0 76px;
  border-bottom: 1px solid rgba(94, 176, 232, .14);
  background:
    linear-gradient(120deg, rgba(19, 153, 211, .16), transparent 52%),
    #061a30;
}

.founder-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 54px;
  align-items: center;
}

.founder-hero h1 {
  max-width: 780px;
  margin: 16px 0 0;
  color: #f4fbff;
  font-size: 4.2rem;
  line-height: 1.02;
}

.founder-deck {
  max-width: 720px;
  margin: 24px 0 0;
  color: #b8d3e5;
  font-size: 1.1rem;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.founder-tags span {
  padding: 6px 11px;
  border: 1px solid rgba(126, 219, 255, .2);
  border-radius: 4px;
  color: #9bdcf7;
  background: rgba(19, 153, 211, .08);
  font-size: .78rem;
  font-weight: 700;
}

.founder-manifesto {
  padding: 30px;
  border: 1px solid rgba(126, 219, 255, .2);
  border-radius: 8px;
  background: rgba(10, 38, 65, .88);
}

.founder-monogram {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(126, 219, 255, .3);
  color: #fff;
  background: linear-gradient(135deg, var(--noro-blue), var(--noro-cyan));
  font-size: 1.25rem;
  font-weight: 800;
}

.founder-manifesto strong,
.founder-manifesto span {
  display: block;
}

.founder-manifesto strong {
  color: #fff;
}

.founder-manifesto p {
  margin: 10px 0 18px;
  color: #d7eaf6;
  font-size: 1.08rem;
}

.founder-manifesto > span:last-child {
  color: #82bddc;
  font-size: .82rem;
}

.founder-path {
  border-bottom: 1px solid rgba(94, 176, 232, .12);
  background: #0a223b;
}

.founder-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.founder-path-grid > div {
  min-width: 0;
  padding: 28px 22px;
  border-right: 1px solid rgba(94, 176, 232, .12);
}

.founder-path-grid > div:first-child {
  border-left: 1px solid rgba(94, 176, 232, .12);
}

.founder-path-grid strong,
.founder-path-grid span {
  display: block;
}

.founder-path-grid strong {
  color: #fff;
  font-size: .96rem;
}

.founder-path-grid span {
  margin-top: 7px;
  color: #83a9c2;
  font-size: .8rem;
  line-height: 1.45;
}

.founder-content {
  max-width: 820px;
  padding-top: 76px;
  padding-bottom: 100px;
  color: #d3e8f6;
  font-size: 1.06rem;
  line-height: 1.82;
}

.founder-content > p:first-child {
  padding: 22px 24px;
  border-left: 3px solid var(--noro-cyan);
  background: rgba(24, 169, 230, .08);
  color: #effaff;
  font-size: 1.1rem;
}

.founder-content h2 {
  margin: 48px 0 16px;
  color: #f4fbff;
  font-size: 1.75rem;
  line-height: 1.22;
}

.founder-content ul {
  padding-left: 24px;
}

.founder-content li {
  margin-bottom: 8px;
}

@media (max-width: 920px) {
  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: 0;
  }

  .founder-hero-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .case-showcase-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .founder-timeline,
  .founder-path-grid {
    grid-template-columns: 1fr;
  }

  .founder-path-grid > div,
  .founder-path-grid > div:first-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(94, 176, 232, .12);
  }

  .founder-hero {
    padding: 64px 0 54px;
  }

  .founder-hero h1 {
    font-size: 2.45rem;
  }
}

/* Objective home */
.home-hero {
  min-height: 680px;
}

.home-signal {
  border-top: 1px solid rgba(94, 176, 232, .12);
  border-bottom: 1px solid rgba(94, 176, 232, .12);
  background: #0a223b;
}

.client-logos {
  padding: 34px 0;
  border-top: 1px solid rgba(7, 27, 49, .08);
  border-bottom: 1px solid rgba(7, 27, 49, .08);
  background: #ffffff;
}

.client-logos .eyebrow {
  margin-bottom: 18px;
  text-align: center;
  color: #005ca8;
}

.client-logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.client-logo-item {
  display: grid;
  width: 190px;
  height: 102px;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(7, 27, 49, .1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 27, 49, .06);
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.client-logo-strip img {
  display: block;
  width: 170px;
  height: 90px;
  max-width: 170px;
  max-height: 90px;
  object-fit: contain;
  filter: none;
  opacity: .9;
}

.client-logo-item:hover,
.client-logo-item:focus-visible {
  border-color: rgba(0, 92, 168, .28);
  box-shadow: 0 14px 34px rgba(7, 27, 49, .1);
  transform: translateY(-2px);
}

.client-logo-item:hover img,
.client-logo-item:focus-visible img {
  filter: none;
  opacity: 1;
}

.home-signal-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.home-signal span {
  color: #8eb8d2;
  font-size: .78rem;
  font-weight: 700;
}

.home-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.home-benefit-grid > div {
  min-width: 0;
  padding: 17px;
  border: 1px solid rgba(94, 176, 232, .16);
  border-radius: 6px;
  background: rgba(7, 90, 166, .06);
}

.home-benefit-grid strong,
.home-benefit-grid span {
  display: block;
}

.home-benefit-grid strong {
  color: #f4fbff;
  font-size: .92rem;
}

.home-benefit-grid span {
  margin-top: 5px;
  color: #8fb2c9;
  font-size: .8rem;
  line-height: 1.45;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.home-service-card {
  display: flex;
  min-width: 0;
  min-height: 260px;
  grid-column: span 2;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(94, 176, 232, .16);
  border-radius: 8px;
  background: rgba(7, 26, 51, .72);
}

.home-service-card:nth-child(4),
.home-service-card:nth-child(5) {
  grid-column: span 3;
}

.home-service-featured {
  border-color: rgba(19, 153, 211, .42);
  background:
    linear-gradient(145deg, rgba(7, 90, 166, .2), transparent 55%),
    rgba(7, 26, 51, .88);
}

.home-service-card h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 1.35rem;
}

.home-service-card p {
  flex: 1;
  margin: 12px 0 20px;
  color: #9bb9cc;
}

.home-service-card .content-link {
  color: #72d1f6;
}

.differentiators {
  background:
    linear-gradient(135deg, rgba(19, 153, 211, .09), transparent 42%),
    #061a30;
}

.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.differentiator-grid article {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(94, 176, 232, .17);
  border-radius: 8px;
  background: rgba(7, 26, 51, .76);
}

.differentiator-grid strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.differentiator-grid p {
  margin: 10px 0 0;
  color: #93b3c8;
  font-size: .91rem;
}

.differentiator-cta {
  margin-top: 28px;
  text-align: center;
}

.founder-summary {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.founder-home {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: center;
}

.founder-photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(94, 176, 232, .18);
  border-radius: 8px;
  background: rgba(7, 26, 51, .8);
  box-shadow: 0 24px 72px rgba(0, 0, 0, .24);
}

.founder-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.founder-photo-placeholder {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 5;
  place-items: center;
  background:
    radial-gradient(circle at 72% 16%, rgba(19, 153, 211, .34), transparent 32%),
    linear-gradient(145deg, rgba(7, 90, 166, .48), rgba(6, 26, 48, .98));
}

.founder-photo-placeholder span {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 1px solid rgba(126, 219, 255, .28);
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.founder-home-copy > p {
  max-width: 760px;
  color: #bad1e2;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 8px;
}

.founder-credentials span {
  padding: 7px 10px;
  border: 1px solid rgba(126, 219, 255, .16);
  border-radius: 4px;
  color: #8edfff;
  background: rgba(19, 153, 211, .07);
  font-size: .78rem;
  font-weight: 800;
}

.home-final-cta {
  margin-top: 0;
}

/* Service page decision support */
.service-page-nav {
  position: sticky;
  top: 84px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin: -38px 0 48px;
  padding: 14px 18px;
  border: 1px solid rgba(94, 176, 232, .18);
  border-radius: 6px;
  background: rgba(6, 26, 48, .94);
  backdrop-filter: blur(14px);
}

.service-page-nav strong {
  color: #fff;
  font-size: .82rem;
}

.service-page-nav a {
  color: #86cce9;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.anchor-target {
  display: block;
  scroll-margin-top: 150px;
}

#conteudo-servico,
.related-services {
  scroll-margin-top: 150px;
}

.related-services {
  margin-top: 72px;
  padding-top: 42px;
  border-top: 1px solid rgba(94, 176, 232, .14);
}

.related-services h2 {
  margin-top: 8px;
}

.related-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.related-service-links a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(94, 176, 232, .16);
  border-radius: 6px;
  background: rgba(7, 90, 166, .06);
  text-decoration: none;
}

.related-service-links strong {
  color: #fff;
  font-size: .9rem;
}

.related-service-links span {
  color: #77ccea;
  font-size: .78rem;
}

@media (max-width: 920px) {
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-service-card,
  .home-service-card:nth-child(4),
  .home-service-card:nth-child(5) {
    grid-column: span 1;
  }

  .founder-summary {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .home-hero {
    min-height: 0;
  }

  .home-benefit-grid,
  .home-services-grid,
  .differentiator-grid,
  .related-service-links {
    grid-template-columns: 1fr;
  }

  .home-signal-inner {
    justify-content: flex-start;
  }

  .service-page-nav {
    position: static;
    margin-top: -24px;
  }
}

/* Services hub */
.services-hub-hero .btn {
  margin-top: 28px;
}

.services-hub-section {
  background: #081d34;
}

.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.services-hub-card {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(160px, .72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid rgba(94, 176, 232, .17);
  border-radius: 8px;
  background: rgba(7, 26, 51, .78);
}

.services-hub-card.is-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  border-color: rgba(19, 153, 211, .42);
}

.services-hub-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.services-hub-card-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.services-hub-card h2 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 1.55rem;
}

.services-hub-card p {
  margin: 12px 0 0;
  color: #9bb9cc;
}

.services-hub-card .content-link {
  margin-top: 22px;
}

.services-hub-cta {
  margin: 0;
}

@media (max-width: 920px) {
  .editorial-hero h1,
  .service-hero h1,
  .article-header h1 {
    font-size: 3.2rem !important;
  }

  .services-hub-grid {
    grid-template-columns: 1fr;
  }

  .services-hub-card.is-featured {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav > .btn-small {
    display: none;
  }

  .nav-links,
  .nav-links.is-open {
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0 4px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 4px;
    border-top: 1px solid rgba(126, 219, 255, .12);
  }

  .services-hub-card,
  .services-hub-card.is-featured {
    grid-template-columns: 1fr;
  }

  .services-hub-card img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}
