:root {
      --primary: #0A1B4D;
      --primary-deep: #071433;
      --accent: #C99A3A;
      --accent-deep: #A97A2C;
      --bg: #ffffff;
      --surface: #ffffff;
      --surface-soft: #f6f8fa;
      --surface-lead: linear-gradient(135deg, #f7f9fb 0%, #eef3f7 100%);
      --surface-compare: #f8fbfe;
      --surface-topbar: rgba(247, 248, 250, 0.97);
      --text: #1f2a36;
      --muted: #6E7480;
      --muted-2: #7a8590;
      --offwhite: #F4F1EA;
      --border: rgba(10, 27, 77, 0.10);
      --border-strong: rgba(10, 27, 77, 0.18);
      --shadow-soft: 0 20px 48px rgba(10, 27, 77, 0.08);
      --shadow-strong: 0 26px 60px rgba(10, 27, 77, 0.14);
    }

    
.page-index main.landing-gtw {
  padding: 0 0 0;
}

.page-index .header-wrap {
  position: sticky;
}

html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      line-height: 1.7;
    }

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

    .landing-gtw a {
      color: inherit;
      text-decoration: none;
    }

    .wide-shell {
      width: min(1360px, calc(100% - 64px));
      margin: 0 auto;
    }

    .mid-shell {
      width: min(1180px, calc(100% - 56px));
      margin: 0 auto;
    }

    .narrow-shell {
      width: min(980px, calc(100% - 48px));
      margin: 0 auto;
    }

    .section-block {
      padding: 110px 0;
    }

    .section-block.section-sm {
      padding: 82px 0;
    }

    .section-divider {
      border-top: 1px solid var(--border);
    }

    .soft-band {
      background: var(--surface-soft);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--accent-deep);
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 1px;
      background: var(--accent);
    }

    h1, h2, h3, h4 {
      margin: 0;
      color: var(--primary);
      font-family: "Inter", system-ui, -apple-system, sans-serif;
    }

    h1 {
      font-size: clamp(2.45rem, 3.75vw, 4.2rem);
      font-weight: 400;
      line-height: 1.04;
      letter-spacing: -0.04em;
      text-wrap: balance;
    }

    h2 {
      font-size: clamp(2rem, 2.9vw, 2.9rem);
      font-weight: 400;
      line-height: 1.06;
      letter-spacing: -0.032em;
      text-wrap: balance;
    }

    h3 {
      font-size: 1.04rem;
      font-weight: 600;
      line-height: 1.35;
      letter-spacing: -0.015em;
    }

    p, li, span, small {
      font-family: "Inter", system-ui, -apple-system, sans-serif;
    }

    p, li {
      margin: 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.84;
      letter-spacing: -0.002em;
    }

    p + p {
      margin-top: 18px;
    }

    .text-center {
      text-align: center;
    }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 10px;
    }

   .btn-primary,
.btn-outline,
.btn-secondary,
.btn-link,
.btn-cta-strong,
.btn-diagnostic-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    opacity 220ms ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-outline::before,
.btn-secondary::before,
.btn-cta-strong::before,
.btn-diagnostic-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.10) 35%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0.10) 65%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-120%);
  transition: transform 420ms ease;
  pointer-events: none;
}

.btn-primary:hover::before,
.btn-outline:hover::before,
.btn-secondary:hover::before,
.btn-cta-strong:hover::before,
.btn-diagnostic-highlight:hover::before {
  transform: translateX(120%);
}

.btn-primary:hover,
.btn-outline:hover,
.btn-secondary:hover,
.btn-link:hover,
.btn-cta-strong:hover,
.btn-diagnostic-highlight:hover {
  transform: translateY(-2px);
}

/* Primário azul */
.btn-primary {
  background: #0A1B4D;
  color: #F4F1EA;
  border: 1px solid #0A1B4D;
  box-shadow: 0 8px 18px rgba(10, 27, 77, 0.12);
}

.btn-primary:hover {
  background: #071433;
  border-color: #071433;
  color: #F4F1EA;
  box-shadow: 0 16px 30px rgba(10, 27, 77, 0.22);
}

/* Secundário claro */
.btn-secondary {
  border: 1px solid #0A1B4D;
  color: #0A1B4D;
  background: #F4F1EA;
  box-shadow: 0 6px 14px rgba(10, 27, 77, 0.06);
}

.btn-secondary:hover {
  background: #0A1B4D;
  color: #F4F1EA;
  border-color: #0A1B4D;
  box-shadow: 0 16px 28px rgba(10, 27, 77, 0.18);
}

/* Outline no hero */
.btn-outline {
  border: 1px solid rgba(244, 241, 234, 0.72);
  color: #F4F1EA;
  background: transparent;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.btn-outline:hover {
  background: #C99A3A;
  color: #0A1B4D;
  border-color: #C99A3A;
  box-shadow: 0 16px 30px rgba(201, 154, 58, 0.24);
}

/* CTA intermediário */
.btn-diagnostic-highlight {
  background: #C99A3A !important;
  color: #0A1B4D !important;
  border: 1px solid #C99A3A !important;
  min-height: 58px;
  padding: 0 30px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(201, 154, 58, 0.22);
}

.btn-diagnostic-highlight:hover {
  background: #A97A2C !important;
  color: #F4F1EA !important;
  border-color: #A97A2C !important;
  box-shadow: 0 20px 36px rgba(169, 122, 44, 0.30);
}

/* CTA final mais forte */
.btn-cta-strong {
  min-height: 62px;
  padding: 0 34px;
  background: linear-gradient(180deg, #D7AA4C 0%, #C99A3A 100%);
  color: #0A1B4D;
  border: 1px solid #C99A3A;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(201, 154, 58, 0.28);
}

.btn-cta-strong:hover {
  background: linear-gradient(180deg, #C99A3A 0%, #A97A2C 100%);
  color: #F4F1EA;
  border-color: #A97A2C;
  box-shadow: 0 24px 40px rgba(169, 122, 44, 0.36);
}

.btn-link {
  color: var(--primary);
  border: 0;
  padding: 0;
  min-height: 0;
  font-weight: 600;
}

.btn-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.btn-link:hover::after {
  transform: translateX(3px);
}

    /* Topbar */
    .index-topbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 40;
      backdrop-filter: blur(10px);
      background: rgba(247, 248, 250, 0.98);
      border-bottom: 1px solid rgba(10, 27, 77, 0.08);
      box-shadow: 0 8px 24px rgba(10, 27, 77, 0.06);
    }

    .index-topbar-inner {
      width: min(1320px, calc(100% - 96px));
      margin: 0 auto;
      min-height: 94px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .index-brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
      padding: 4px 0 10px 62px;
    }

    .index-brand img {
      display: block;
      width: auto;
      height: auto;
      max-height: 88px;
      max-width: 320px;
      object-fit: contain;
      image-rendering: auto;
    }

    .index-nav {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .index-nav a {
      color: var(--primary);
      font-size: 0.92rem;
      line-height: 1;
      transition: color 160ms ease, opacity 160ms ease;
      position: relative;
      padding-bottom: 4px;
    }

    .index-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 1px;
      background: var(--primary);
      transition: width 180ms ease;
    }

    .index-nav a:hover::after {
      width: 100%;
    }

    .index-nav .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 16px;
      border: 1px solid rgba(10, 27, 77, 0.22);
      color: var(--primary);
      background: rgba(255,255,255,0.48);
    }

    .index-nav .nav-cta::after {
      display: none;
    }

    .index-nav .nav-cta:hover {
      background: rgba(255,255,255,0.78);
    }

    /* Hero */
    .hero-premium {
      position: relative;
      min-height: 100vh;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      overflow: hidden;
      background: #0b2237;
      isolation: isolate;
    }

    .hero-premium::before {
      content: "";
      position: absolute;
      inset: -2%;
      background-image: url('../img/index-hero.jpeg');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      transform: scale(1.0);
      z-index: 0;
      animation: none;
      will-change: transform, filter;
    }

    .hero-premium::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(circle at 74% 32%, rgba(201,154,58,0.08), transparent 18%),
        linear-gradient(
          90deg,
          rgba(10, 27, 77, 0.76) 0%,
          rgba(10, 27, 77, 0.64) 18%,
          rgba(10, 27, 77, 0.36) 42%,
          rgba(10, 27, 77, 0.14) 70%,
          rgba(10, 27, 77, 0.05) 100%
        );
    }

    .hero-neuro-layer {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    .hero-neuro-layer::before {
      content: "";
      position: absolute;
      right: 18%;
      top: 18%;
      width: min(30vw, 420px);
      height: min(30vw, 420px);
      border-radius: 999px;
      background: radial-gradient(circle, rgba(201,154,58,0.18) 0%, rgba(201,154,58,0.08) 36%, rgba(201,154,58,0.00) 72%);
      filter: blur(8px);
      animation: pulseFocus 6.2s ease-in-out infinite;
      mix-blend-mode: screen;
    }

    .hero-neuro-layer::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 22% 78%, rgba(255,255,255,0.06), transparent 14%),
        radial-gradient(circle at 26% 74%, rgba(201,154,58,0.16), transparent 7%),
        radial-gradient(circle at 30% 71%, rgba(255,255,255,0.08), transparent 10%);
      opacity: 0.85;
      animation: ctaBeacon 5.8s ease-in-out infinite;
    }

    .hero-guiding-line {
      position: absolute;
      left: 31%;
      right: 14%;
      bottom: 23%;
      height: 2px;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(
        90deg,
        rgba(201,154,58,0) 0%,
        rgba(201,154,58,0.18) 18%,
        rgba(201,154,58,0.78) 52%,
        rgba(255,255,255,0.22) 72%,
        rgba(255,255,255,0) 100%
      );
      transform-origin: left center;
      transform: rotate(-7deg);
      opacity: 0.72;
      filter: blur(0.2px);
      animation: attentionSweep 7.2s ease-in-out infinite;
    }

    .hero-guiding-line span {
      position: absolute;
      top: 50%;
      left: 18%;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(255,255,255,0.96) 0%, rgba(201,154,58,0.88) 34%, rgba(201,154,58,0.08) 72%, rgba(201,154,58,0) 100%);
      box-shadow: 0 0 18px rgba(201,154,58,0.42);
      animation: movingPulse 7.2s ease-in-out infinite;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      padding: 150px 0 56px;
    }

    .hero-grid {
      width: min(1380px, calc(100% - 64px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
      gap: 40px;
      align-items: end;
    }

    .hero-copy {
      max-width: 860px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: relative;
    }

    .hero-copy::after {
      content: "";
      position: absolute;
      left: -16px;
      bottom: -18px;
      width: min(360px, 58%);
      height: 120px;
      background: radial-gradient(circle at left center, rgba(201,154,58,0.14), rgba(201,154,58,0.05) 42%, rgba(201,154,58,0) 78%);
      pointer-events: none;
      animation: copyGlow 5.6s ease-in-out infinite;
    }

    .hero-premium .eyebrow {
      color: #d8b568;
      margin-bottom: 6px;
      position: relative;
      z-index: 1;
    }

    .hero-premium h1 {
      color: #ffffff;
      max-width: 17ch;
      text-wrap: balance;
      position: relative;
      z-index: 1;
    }

    .hero-subtitle {
      max-width: 58ch;
      color: rgba(255,255,255,0.84);
      font-size: 1rem;
      line-height: 1.9;
      position: relative;
      z-index: 1;
    }

    .hero-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 8px;
      max-width: 52ch;
      position: relative;
      z-index: 1;
    }

    .hero-list li {
      color: rgba(255,255,255,0.78);
      position: relative;
      padding-left: 18px;
      font-size: 0.97rem;
      line-height: 1.72;
    }

    .hero-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      top: 0;
      color: #d8b568;
    }

    .hero-premium .btn-primary {
      background: #ffffff;
      color: var(--primary);
      border-color: #ffffff;
      box-shadow: 0 18px 34px rgba(8, 20, 54, 0.24);
    }

    .hero-premium .btn-primary:hover {
      background: #f2f4f6;
      border-color: #f2f4f6;
    }

    .hero-premium .btn-outline {
      backdrop-filter: blur(2px);
    }

    .hero-aside {
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
    }

    .hero-panel {
      width: min(420px, 100%);
      padding: 28px 0 0 28px;
      border-top: 1px solid rgba(255,255,255,0.24);
      border-left: 1px solid rgba(255,255,255,0.16);
      position: relative;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 72px;
      height: 1px;
      background: linear-gradient(90deg, rgba(201,154,58,0.92), rgba(201,154,58,0));
      animation: panelLine 4.8s ease-in-out infinite;
    }

    .hero-panel-label {
      display: block;
      margin-bottom: 14px;
      color: rgba(255,255,255,0.62);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 700;
    }

    .hero-panel p {
      color: rgba(255,255,255,0.84);
      font-size: 0.96rem;
      line-height: 1.82;
    }

    .hero-panel p + p {
      margin-top: 14px;
    }

    @keyframes heroKenBurns {
      0% { transform: scale(1.03) translate3d(0, 0, 0); filter: saturate(0.98) contrast(1); }
      100% { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); filter: saturate(1.03) contrast(1.03); }
    }

    @keyframes pulseFocus {
      0%, 100% { opacity: 0.52; transform: scale(0.96); }
      50% { opacity: 0.92; transform: scale(1.05); }
    }

    @keyframes ctaBeacon {
      0%, 100% { opacity: 0.32; }
      50% { opacity: 0.92; }
    }

    @keyframes attentionSweep {
      0%, 100% { opacity: 0.34; filter: blur(0.6px); }
      50% { opacity: 0.88; filter: blur(0px); }
    }

    @keyframes movingPulse {
      0% { left: 12%; transform: translate(-50%, -50%) scale(0.72); opacity: 0.35; }
      20% { opacity: 1; }
      55% { left: 58%; transform: translate(-50%, -50%) scale(1); opacity: 0.96; }
      100% { left: 88%; transform: translate(-50%, -50%) scale(0.78); opacity: 0.22; }
    }

    @keyframes copyGlow {
      0%, 100% { opacity: 0.34; transform: translateY(0px); }
      50% { opacity: 0.9; transform: translateY(-4px); }
    }

    @keyframes panelLine {
      0%, 100% { width: 64px; opacity: 0.35; }
      50% { width: 128px; opacity: 0.95; }
    }

    .editorial-grid,
    .grid-4,
    .grid-3,
    .grid-2,
    .process-line,
    .feature-grid,
    .story-grid,
    .compare-grid {
      display: grid;
      gap: 30px;
    }

    .editorial-grid {
      grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
      gap: 80px;
      align-items: start;
    }

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

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

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

    .process-line {
      position: relative;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
      margin-top: 46px;
    }

    .process-line::before {
      content: "";
      position: absolute;
      top: 24px;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(
        90deg,
        rgba(201,154,58,0.28) 0%,
        rgba(201,154,58,0.58) 50%,
        rgba(201,154,58,0.28) 100%
      );
    }

    .feature-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 34px;
    }

    .story-grid {
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 60px;
      align-items: start;
    }

    .compare-grid {
      grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
      gap: 28px;
      align-items: stretch;
    }

    .section-intro p {
      max-width: 64ch;
      margin: 16px auto 0;
    }

    .open-list {
      display: grid;
      gap: 0;
      border-top: 1px solid var(--border);
    }

    .open-item {
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
    }

    .open-item strong {
      display: block;
      margin-bottom: 8px;
      color: var(--primary);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .feature-card {
      display: grid;
      gap: 18px;
      padding-top: 18px;
      border-top: 1px solid var(--border-strong);
    }

    .feature-card .meta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent-deep);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 700;
    }

    .feature-card .meta::before {
      content: "";
      width: 18px;
      height: 1px;
      background: var(--accent);
    }

    .feature-card p {
      max-width: 34ch;
    }

    .story-panel {
      border-top: 1px solid var(--border);
      padding-top: 18px;
    }

    .story-panel h3 {
      margin-bottom: 10px;
    }

    .story-panel + .story-panel {
      margin-top: 22px;
    }

    .problem-card {
      padding-top: 24px;
      border-top: 1px solid var(--border);
      background: transparent;
    }

    .problem-card.highlight {
      border-top-color: rgba(201,154,58,0.55);
    }

    .problem-card h3 {
      margin-bottom: 12px;
    }

    .process-step {
      position: relative;
      padding-top: 54px;
      border-top: 0;
    }

    .process-step::before {
      content: "";
      position: absolute;
      top: 16px;
      left: 0;
      width: 52px;
      height: 16px;
      background: var(--surface);
      z-index: 1;
    }

    .process-step .step-num {
      position: relative;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      margin-bottom: 16px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid rgba(201,154,58,0.42);
      color: var(--accent-deep);
      font-size: 0.88rem;
      line-height: 1;
      letter-spacing: 0;
      text-transform: none;
      font-weight: 700;
      box-shadow: 0 6px 14px rgba(10, 27, 77, 0.06);
    }

    .process-step h3 {
      margin-bottom: 10px;
    }

    .process-step p {
      max-width: 28ch;
    }

    .method-outcomes {
      margin-top: 54px;
      padding-top: 6px;
    }

    .result-stat {
      padding-top: 18px;
      border-top: 1px solid var(--border);
    }

    .result-stat h3 {
      margin-bottom: 8px;
    }

    .compare-box {
      padding: 28px 28px 30px;
      background: transparent;
      border: 1px solid var(--border);
    }

    .compare-box h3 {
      margin-bottom: 16px;
      font-size: 1.08rem;
    }

    .compare-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
    }

    .compare-box li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.96rem;
      line-height: 1.8;
    }

    .compare-box li::before {
      content: "•";
      color: rgba(10, 27, 77, 0.45);
      flex-shrink: 0;
    }

    .compare-box.standard-line {
      background: #fbfcfd;
      border-color: var(--border);
    }

    .compare-box.featured {
      position: relative;
      background: linear-gradient(180deg, #ffffff 0%, var(--surface-compare) 100%);
      border-color: rgba(201,154,58,0.35);
      box-shadow: var(--shadow-soft);
    }

    .compare-box.featured::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 4px;
      background: linear-gradient(180deg, var(--accent), rgba(201,154,58,0.4));
    }

    .compare-box.featured li::before {
      color: var(--accent);
    }

    .diagnostic-shell {
      position: relative;
      overflow: hidden;
      padding: 54px 56px;
      border: 1px solid rgba(201,154,58,0.26);
      background: var(--surface-lead);
      box-shadow: var(--shadow-strong);
    }

    .diagnostic-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top right, rgba(201,154,58,0.12), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,0.42), rgba(255,255,255,0));
      pointer-events: none;
    }

    .diagnostic-shell > * {
      position: relative;
      z-index: 1;
    }

    .diagnostic-shell p {
      max-width: 56ch;
    }

    .diagnostic-list {
      list-style: none;
      padding: 0;
      display: grid;
      gap: 12px;
      margin: 26px 0 0;
      max-width: 50ch;
    }

    .diagnostic-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--muted);
      font-size: 0.97rem;
      line-height: 1.78;
    }

    .diagnostic-list li::before {
      content: "•";
      color: var(--accent);
      font-size: 0.7rem;
      flex-shrink: 0;
      margin-top: 7px;
    }

    .cta-shell {
      border-top: 1px solid var(--border);
      padding: 46px 0 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 28px;
      flex-wrap: wrap;
    }

    .cta-shell p {
      margin-top: 12px;
      max-width: 50ch;
    }

    footer {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 24px 0 36px;
      color: #6d7781;
      font-size: 0.88rem;
      line-height: 1.6;
      text-align: center;
    }

   
    
    @media (prefers-reduced-motion: reduce) {
      .hero-premium::before,
      .hero-neuro-layer::before,
      .hero-neuro-layer::after,
      .hero-guiding-line,
      .hero-guiding-line span,
      .hero-copy::after,
      .hero-panel::before {
        animation: none !important;
      }
    }

@media (max-width: 1120px) {
      .hero-grid,
      .editorial-grid,
      .story-grid,
      .compare-grid {
        grid-template-columns: 1fr;
      }

      .hero-aside {
        justify-content: flex-start;
      }

      .hero-panel {
        width: min(520px, 100%);
      }

      .grid-4,
      .grid-3,
      .process-line,
      .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 840px) {
      .index-topbar-inner {
        width: calc(100% - 40px);
        min-height: auto;
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
      }

      .index-brand {
        padding-left: 4px;
      }

      .index-brand img {
        max-height: 74px;
        max-width: 270px;
      }

      .index-nav {
        gap: 14px;
      }

      .index-nav a {
        font-size: 0.88rem;
      }

      .hero-content {
        padding: 166px 0 56px;
        min-height: auto;
      }

      .hero-premium {
        min-height: auto;
      }

      .hero-grid {
        width: min(100%, calc(100% - 28px));
      }

      .hero-premium::before {
        background-position: 70% center;
      }
    }

    @media (max-width: 720px) {
      .wide-shell,
      .mid-shell,
      .narrow-shell {
        width: calc(100% - 28px);
      }

      .section-block {
        padding: 82px 0;
      }

      .section-block.section-sm {
        padding: 60px 0;
      }

      .grid-2,
      .grid-3,
      .grid-4,
      .process-line,
      .feature-grid,
      .compare-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        gap: 20px;
      }

      .hero-premium h1 {
        font-size: clamp(2.05rem, 7vw, 3.15rem);
        max-width: 16ch;
        line-height: 1.05;
      }

      .hero-subtitle {
        max-width: 100%;
        font-size: 0.96rem;
        line-height: 1.74;
      }

      .hero-list {
        max-width: 100%;
      }

      .hero-list li {
        font-size: 0.94rem;
        line-height: 1.68;
        padding-left: 16px;
      }

      .btn-row {
        width: 100%;
      }

      .btn-primary,
      .btn-outline,
      .btn-secondary,
      .btn-cta-strong {
        width: 100%;
      }

      .problem-card p,
      .process-step p,
      .feature-card p {
        max-width: 100%;
      }

      .diagnostic-shell {
        padding: 34px 24px;
      }

      .cta-shell {
        padding-top: 30px;
      }

      .cta-shell .btn-cta-strong {
        width: 100%;
      }

      .index-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
      }

      .index-brand img {
        max-height: 68px;
        max-width: 240px;
      }

      .compare-box {
        padding: 22px 20px 24px;
      }
    }

/* Padrao visual alinhado ao diagnostico */
.page-index .hero-premium {
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 8px auto 30px;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
}
.page-index .hero-content {
  min-height: 680px;
  padding: 46px 36px 40px;
}
.page-index .hero-grid {
  width: 100%;
  gap: 54px;
}
.page-index .wide-shell,
.page-index .mid-shell { width: min(1180px, calc(100% - 56px)); }
.page-index .narrow-shell { width: min(980px, calc(100% - 44px)); }
@media (max-width: 840px) {
  .page-index .hero-premium {
    width: calc(100% - 24px);
    min-height: auto;
  }
  .page-index .hero-content {
    min-height: auto;
    padding: 138px 20px 32px;
  }
}


/* Hero da home ajustado para a nova imagem, sem quebrar o layout original */
.hero-neuro-layer,
.hero-guiding-line {
  display: none;
}

.hero-copy::after {
  display: none;
}

.hero-premium::before {
  filter: saturate(1.02) contrast(1.02);
}

@media (max-width: 980px) {
  .hero-premium::before {
    background-position: 62% center;
  }
}

@media (max-width: 640px) {
  .hero-premium::before {
    background-position: 66% center;
  }
}
