/* Inteligencia page styles extracted from inteligencia.html */


    :root {
      --primary: #0A1B4D;
      --primary-deep: #071433;
      --accent: #C99A3A;
      --accent-deep: #A97A2C;
      --offwhite: #F4F1EA;
      --bg: #ffffff;
      --surface: #ffffff;
      --surface-soft: #f7f8fb;
      --surface-deep: #eef2f8;
      --text: #1f2a36;
      --muted: #6E7480;
      --border: rgba(10, 27, 77, 0.10);
      --border-strong: rgba(10, 27, 77, 0.18);
      --shadow-soft: 0 20px 46px rgba(10, 27, 77, 0.08);
      --shadow-strong: 0 30px 80px rgba(10, 27, 77, 0.16);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 18px;
      --radius-sm: 14px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(201,154,58,0.07), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
      color: var(--text);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

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

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

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

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

    .section-block {
      padding: 96px 0;
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    .section-soft {
      background: linear-gradient(180deg, #fbfcfe 0%, #f6f8fc 100%);
    }

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

    .eyebrow::before {
      content: "";
      width: 28px;
      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.8rem, 4.6vw, 5rem);
      line-height: 0.98;
      letter-spacing: -0.055em;
      font-weight: 400;
      text-wrap: balance;
    }

    h2 {
      font-size: clamp(2rem, 3vw, 3.15rem);
      line-height: 1.04;
      letter-spacing: -0.04em;
      font-weight: 400;
      text-wrap: balance;
    }

    h3 {
      font-size: 1.08rem;
      line-height: 1.32;
      letter-spacing: -0.02em;
      font-weight: 600;
    }

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

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

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

    .btn-primary,
    .btn-secondary,
    .btn-link {
      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;
      position: relative;
      overflow: hidden;
    }

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

    .btn-primary:hover::before,
    .btn-secondary:hover::before {
      transform: translateX(120%);
    }

    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-link:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--primary);
      color: var(--offwhite);
      border: 1px solid var(--primary);
      box-shadow: 0 10px 22px rgba(10, 27, 77, 0.14);
    }

    .btn-primary:hover {
      background: var(--primary-deep);
      border-color: var(--primary-deep);
      box-shadow: 0 18px 34px rgba(10, 27, 77, 0.22);
    }

    .btn-secondary {
      background: rgba(244, 241, 234, 0.92);
      color: var(--primary);
      border: 1px solid rgba(10, 27, 77, 0.16);
      box-shadow: 0 8px 16px rgba(10, 27, 77, 0.06);
    }

    .btn-secondary:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--primary);
    }

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

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

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

    .topbar {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 60;
      background: rgba(247, 248, 250, 0.98);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(10, 27, 77, 0.08);
      box-shadow: 0 8px 24px rgba(10, 27, 77, 0.06);
    }

    .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;
    }

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

    .brand img {
      width: auto;
      height: auto;
      max-height: 88px;
      max-width: 320px;
      object-fit: contain;
    }

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

    .main-nav a {
      color: var(--primary);
      font-size: 0.92rem;
      line-height: 1;
      position: relative;
      padding-bottom: 4px;
    }

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

    .main-nav a:hover::after,
    .main-nav a.is-active::after {
      width: 100%;
    }

    .main-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.50);
    }

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

    .main-nav .nav-cta:hover {
      background: rgba(255,255,255,0.82);
    }

    .hero-intelligence {
      position: relative;
      padding: 146px 0 56px;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
      background:
        radial-gradient(circle at top left, rgba(201,154,58,0.14), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    }

    .hero-intelligence::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(10,27,77,0.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(10,27,77,0.025) 1px, transparent 1px);
      background-size: 52px 52px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), rgba(0,0,0,0.08));
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(380px, 0.96fr);
      gap: 52px;
      align-items: center;
    }

    .hero-copy {
      max-width: 760px;
      padding-bottom: 18px;
      position: relative;
      z-index: 2;
    }

    .hero-copy h1 {
      max-width: 11ch;
    }

    .hero-copy .lead {
      margin-top: 24px;
      max-width: 57ch;
      font-size: 1.03rem;
      line-height: 1.92;
    }

    .hero-copy .support {
      margin-top: 16px;
      max-width: 54ch;
      font-size: 0.96rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-tags {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(10,27,77,0.12);
      background: rgba(255,255,255,0.86);
      color: var(--primary);
      font-size: 0.88rem;
      line-height: 1;
      box-shadow: 0 8px 20px rgba(10, 27, 77, 0.05);
    }

    .anim-label,
    .anim-title,
    .anim-text,
    .anim-actions,
    .anim-panel {
      opacity: 0;
      will-change: transform, opacity, filter;
    }

    .anim-label {
      animation: revealSoft 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: 0.08s;
    }

    .anim-title {
      animation: revealTitle 1.12s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: 0.24s;
    }

    .anim-text {
      animation: revealSoft 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: 0.46s;
    }

    .anim-text-delay {
      animation-delay: 0.62s;
    }

    .anim-actions {
      animation: revealSoft 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: 0.78s;
    }

    .anim-panel {
      animation: revealPanel 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: 0.22s;
    }

    @keyframes revealSoft {
      0% {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(8px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    @keyframes revealTitle {
      0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(12px);
        letter-spacing: -0.08em;
      }
      100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
        letter-spacing: -0.055em;
      }
    }

    @keyframes revealPanel {
      0% {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
        filter: blur(10px);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
      }
    }

    .hero-visual {
      position: relative;
      min-height: 680px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-strong);
      isolation: isolate;
      background: #d9e3ec;
    }

    .hero-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.04);
      filter: saturate(0.98) contrast(1.03);
      animation: zoomHero 14s ease-in-out infinite alternate;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(7,20,51,0.10), rgba(7,20,51,0.02) 48%, rgba(10,27,77,0.18)),
        radial-gradient(circle at 78% 20%, rgba(255,255,255,0.18), transparent 22%);
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      top: -25%;
      left: -90%;
      width: 130%;
      height: 170%;
      z-index: 3;
      pointer-events: none;
      transform: skewX(-18deg);
      background: linear-gradient(
        100deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.00) 22%,
        rgba(255,255,255,0.08) 40%,
        rgba(255,255,255,0.26) 50%,
        rgba(255,255,255,0.08) 60%,
        rgba(255,255,255,0.00) 74%,
        rgba(255,255,255,0) 100%
      );
      mix-blend-mode: screen;
      animation: lightPass 8.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }

    @keyframes zoomHero {
      0% { transform: scale(1.04); }
      100% { transform: scale(1.085); }
    }

    @keyframes lightPass {
      0% {
        transform: translateX(-120%) skewX(-18deg);
        opacity: 0;
      }
      22% { opacity: 0.58; }
      48% { opacity: 0.82; }
      72% { opacity: 0.18; }
      100% {
        transform: translateX(235%) skewX(-18deg);
        opacity: 0;
      }
    }

    .visual-orbit {
      position: absolute;
      inset: 0;
      z-index: 4;
      pointer-events: none;
    }

    .orb {
      position: absolute;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(201,154,58,0.55), rgba(201,154,58,0.08) 58%, rgba(201,154,58,0) 72%);
      filter: blur(0.4px);
      opacity: 0.85;
      animation: floatOrb 6.6s ease-in-out infinite;
    }

    .orb.orb-1 { width: 16px; height: 16px; top: 18%; left: 14%; animation-delay: 0s; }
    .orb.orb-2 { width: 12px; height: 12px; top: 26%; right: 18%; animation-delay: 1.2s; }
    .orb.orb-3 { width: 20px; height: 20px; bottom: 22%; left: 20%; animation-delay: 2s; }
    .orb.orb-4 { width: 14px; height: 14px; bottom: 30%; right: 24%; animation-delay: 0.8s; }

    @keyframes floatOrb {
      0%, 100% { transform: translateY(0px) scale(1); opacity: 0.8; }
      50% { transform: translateY(-10px) scale(1.08); opacity: 1; }
    }

    .overlay-card,
    .overlay-metric,
    .overlay-line {
      position: absolute;
      z-index: 5;
      backdrop-filter: blur(12px);
      background: rgba(255,255,255,0.90);
      border: 1px solid rgba(10, 27, 77, 0.10);
      box-shadow: 0 16px 34px rgba(10, 27, 77, 0.12);
    }

    .overlay-card {
      left: 24px;
      bottom: 24px;
      width: min(360px, calc(100% - 336px));
      min-height: 164px;
      padding: 18px 20px;
      border-radius: 18px;
    }

    .overlay-card strong,
    .overlay-metric strong {
      display: block;
      margin-bottom: 8px;
      color: var(--primary);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .overlay-card p,
    .overlay-metric p,
    .overlay-line p {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    .overlay-card,
    .overlay-metric {
      background: rgba(255,255,255,0.94);
      border-color: rgba(10, 27, 77, 0.09);
      box-shadow: 0 18px 36px rgba(10, 27, 77, 0.10);
    }

    .overlay-metric {
      right: 24px;
      bottom: 24px;
      width: min(260px, calc(100% - 48px));
      padding: 18px 20px;
      border-radius: 18px;
      animation: driftCard 7.5s ease-in-out infinite;
    }

    .overlay-metric .metric-value {
      display: block;
      color: var(--accent-deep);
      font-size: 1.85rem;
      line-height: 1;
      letter-spacing: -0.05em;
      margin-bottom: 8px;
    }

    .overlay-line {
      left: 24px;
      top: 28px;
      padding: 10px 14px;
      border-radius: 999px;
      animation: driftCard 8.4s ease-in-out infinite reverse;
    }

    @keyframes driftCard {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
    }

    .hero-bottom-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .hero-mini-card {
      padding: 18px 20px 0;
      border-top: 1px solid var(--border-strong);
    }

    .hero-mini-card strong {
      display: block;
      margin-bottom: 8px;
      color: var(--primary);
      font-size: 0.98rem;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .hero-mini-card p {
      font-size: 0.95rem;
      line-height: 1.8;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
      gap: 52px;
      align-items: start;
      margin-bottom: 38px;
    }

    .section-side {
      padding-top: 14px;
      border-top: 1px solid var(--border-strong);
    }

    .section-side p {
      font-size: 0.98rem;
      line-height: 1.84;
    }

    .duo-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
      gap: 56px;
      align-items: start;
    }

    .reading-stack {
      display: grid;
      gap: 18px;
    }

    .reading-card {
      position: relative;
      padding: 24px 24px 22px;
      border-radius: var(--radius-md);
      background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,253,0.96));
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

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

    .reading-card .card-mark {
      display: inline-block;
      margin-bottom: 12px;
      color: var(--accent-deep);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .reading-card h3 {
      margin-bottom: 10px;
      font-size: 1.16rem;
    }

    .reading-card p {
      max-width: 52ch;
      font-size: 0.96rem;
      line-height: 1.8;
    }

    .signal-panel {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(10, 27, 77, 0.08);
      background:
        radial-gradient(circle at top right, rgba(201,154,58,0.16), transparent 24%),
        linear-gradient(135deg, #f9fbfe 0%, #eef3f8 100%);
      box-shadow: var(--shadow-soft);
    }

    .signal-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(10,27,77,0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(10,27,77,0.04) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.62), rgba(0,0,0,0.10));
    }

    .signal-panel-header,
    .signal-list,
    .signal-foot {
      position: relative;
      z-index: 1;
    }

    .signal-panel-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: end;
      margin-bottom: 24px;
    }

    .signal-panel-header span {
      display: inline-block;
      margin-bottom: 10px;
      color: var(--accent-deep);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .signal-panel-header h3 {
      font-size: clamp(1.55rem, 2vw, 2rem);
      line-height: 1.12;
      letter-spacing: -0.03em;
      font-weight: 400;
      max-width: 15ch;
    }

    .signal-number {
      color: var(--primary);
      font-size: clamp(2.8rem, 5vw, 4.8rem);
      line-height: 0.9;
      letter-spacing: -0.07em;
      font-weight: 400;
      opacity: 0.20;
    }

    .signal-list {
      display: grid;
      gap: 14px;
    }

    .signal-item {
      padding: 16px 18px;
      border-radius: 16px;
      background: rgba(255,255,255,0.74);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(10, 27, 77, 0.08);
      box-shadow: 0 10px 22px rgba(10, 27, 77, 0.05);
    }

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

    .signal-item p {
      font-size: 0.92rem;
      line-height: 1.72;
    }

    .signal-foot {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(10, 27, 77, 0.10);
    }

    .featured-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
      gap: 56px;
      align-items: start;
    }

    .featured-main {
      position: relative;
      overflow: hidden;
      padding: 30px 30px 28px;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(10, 27, 77, 0.08);
      background:
        linear-gradient(180deg, rgba(7,20,51,0.97), rgba(10,27,77,0.94));
      box-shadow: var(--shadow-strong);
    }

    .featured-main::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at top right, rgba(201,154,58,0.22), transparent 26%),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: auto, 44px 44px, 44px 44px;
      opacity: 0.9;
    }

    .featured-main > * {
      position: relative;
      z-index: 1;
    }

    .featured-label {
      display: inline-block;
      margin-bottom: 18px;
      color: #d8b568;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .featured-main h3 {
      color: #ffffff;
      font-size: clamp(2rem, 2.8vw, 2.8rem);
      line-height: 1.06;
      letter-spacing: -0.04em;
      max-width: 14ch;
      font-weight: 400;
    }

    .featured-main p {
      color: rgba(255,255,255,0.82);
      max-width: 52ch;
    }

    .featured-main .featured-lead {
      margin-top: 22px;
      font-size: 1.04rem;
      line-height: 1.9;
    }

    .featured-main .featured-body {
      margin-top: 16px;
      font-size: 0.96rem;
      line-height: 1.82;
    }

    .featured-main .btn-link {
      margin-top: 20px;
      color: #f5e3b4;
    }

    .featured-side {
      display: grid;
      gap: 18px;
    }

    .featured-side article {
      padding: 24px 22px 22px;
      border-radius: var(--radius-md);
      background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,253,0.96));
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
    }

    .featured-side h4 {
      margin-bottom: 10px;
      color: var(--primary);
      font-size: 1.04rem;
      line-height: 1.34;
      letter-spacing: -0.02em;
    }

    .featured-side p {
      font-size: 0.94rem;
      line-height: 1.74;
    }

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

    .path-card {
      position: relative;
      padding: 24px 22px 22px;
      border-radius: var(--radius-lg);
      background: transparent;
      border: 1px solid var(--border);
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .path-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-soft);
      border-color: rgba(201,154,58,0.32);
    }

    .path-step {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      margin-bottom: 16px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid rgba(201,154,58,0.42);
      color: var(--accent-deep);
      font-size: 0.9rem;
      font-weight: 700;
      box-shadow: 0 6px 14px rgba(10, 27, 77, 0.06);
    }

    .path-card h3 {
      margin-bottom: 10px;
      font-size: 1.1rem;
    }

    .path-card p {
      font-size: 0.95rem;
      line-height: 1.78;
      max-width: 30ch;
    }

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

    .matrix-card {
      padding: 22px 20px 20px;
      border-top: 1px solid var(--border-strong);
    }

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

    .matrix-card p {
      font-size: 0.94rem;
      line-height: 1.76;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      padding: 38px 40px;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at top right, rgba(201,154,58,0.18), transparent 24%),
        linear-gradient(135deg, rgba(10,27,77,0.98), rgba(7,20,51,0.98));
      box-shadow: var(--shadow-strong);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      opacity: 0.65;
    }

    .cta-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: center;
    }

    .cta-copy h2,
    .cta-copy p,
    .cta-panel .eyebrow {
      color: #ffffff;
    }

    .cta-panel .eyebrow::before {
      background: #d8b568;
    }

    .cta-copy h2 {
      max-width: 13ch;
    }

    .cta-copy p {
      margin-top: 14px;
      max-width: 58ch;
      color: rgba(255,255,255,0.78);
    }

    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 (max-width: 1180px) {
      .hero-grid,
      .duo-grid,
      .featured-grid,
      .section-head,
      .cta-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 620px;
      }

      .overlay-card {
        width: min(340px, calc(100% - 340px));
      }

      .overlay-metric {
        width: 240px;
      }

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

    @media (max-width: 980px) {
      .hero-bottom-grid,
      .path-grid {
        grid-template-columns: 1fr;
      }

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

      .brand {
        padding-left: 4px;
      }

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

      .main-nav {
        gap: 14px;
      }

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

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

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

      .hero-intelligence {
        padding-top: 128px;
      }

      h1 {
        max-width: 100%;
        font-size: clamp(2.25rem, 10vw, 3.5rem);
      }

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

      .hero-visual {
        min-height: 520px;
      }

      .overlay-line {
        position: static;
        width: 100%;
        margin-top: 14px;
      }

      .overlay-metric {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
      }

      .overlay-card {
        left: 16px;
        right: 16px;
        bottom: 160px;
        width: auto;
        min-height: 0;
      }

      .signal-panel,
      .featured-main,
      .cta-panel {
        padding: 26px 22px;
      }

      .intelligence-matrix {
        grid-template-columns: 1fr;
      }

      .hero-actions .btn-primary,
      .hero-actions .btn-secondary,
      .cta-grid .btn-primary {
        width: 100%;
      }
    }
  

/* Diagnostic visual standardization */
.intelligence-page main.container {
  padding-top: 22px;
}
.intelligence-page .hero-intelligence {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 46px 36px 40px;
  margin: 8px 0 30px;
  min-height: 680px;
  border: 1px solid rgba(13, 44, 99, 0.08);
  background: linear-gradient(135deg, rgba(255,255,255,0.90) 0%, rgba(244,248,253,0.96) 52%, rgba(235,243,251,0.98) 100%);
  box-shadow: 0 30px 80px rgba(7, 26, 61, 0.14);
}
.intelligence-page .hero-intelligence::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at top left, rgba(201,154,58,0.12), transparent 24%), linear-gradient(90deg, rgba(10,27,77,0.025) 1px, transparent 1px), linear-gradient(180deg, rgba(10,27,77,0.025) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), rgba(0,0,0,0.08));
}
.intelligence-page .section-block {
  padding: 72px 0;
}
.intelligence-page .featured-main,
.intelligence-page .signal-panel,
.intelligence-page .reading-card,
.intelligence-page .featured-side article,
.intelligence-page .path-card,
.intelligence-page .cta-panel {
  border-radius: 24px;
}


/* Padrao visual alinhado ao diagnostico */
.intelligence-page main.container { padding-top: 22px; }
.intelligence-page .shell-wide { width: 100%; }
.intelligence-page .shell-mid { width: min(1180px, calc(100% - 56px)); }
.intelligence-page .shell-narrow { width: min(980px, calc(100% - 44px)); }

/* Correção do texto do hero - página Inteligência */
.intelligence-page .hero-copy {
  color: var(--text);
}

.intelligence-page .hero-copy p,
.intelligence-page .hero-copy .lead,
.intelligence-page .hero-copy .support {
  color: var(--muted) !important;
  -webkit-text-fill-color: var(--muted) !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
  mix-blend-mode: normal;
}

.intelligence-page .hero-intelligence .anim-label,
.intelligence-page .hero-intelligence .anim-title,
.intelligence-page .hero-intelligence .anim-text,
.intelligence-page .hero-intelligence .anim-actions,
.intelligence-page .hero-intelligence .anim-panel {
  opacity: 1;
}

.intelligence-page .hero-intelligence .anim-label {
  animation: revealSoft 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.08s;
}

.intelligence-page .hero-intelligence .anim-title {
  animation: revealTitle 1.12s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.24s;
}

.intelligence-page .hero-intelligence .anim-text {
  animation: revealSoft 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.46s;
}

.intelligence-page .hero-intelligence .anim-text-delay {
  animation-delay: 0.62s;
}

.intelligence-page .hero-intelligence .anim-actions {
  animation: revealSoft 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.78s;
}

.intelligence-page .hero-intelligence .anim-panel {
  animation: revealPanel 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.22s;
}

@media (prefers-reduced-motion: reduce) {
  .intelligence-page .hero-intelligence .anim-label,
  .intelligence-page .hero-intelligence .anim-title,
  .intelligence-page .hero-intelligence .anim-text,
  .intelligence-page .hero-intelligence .anim-actions,
  .intelligence-page .hero-intelligence .anim-panel {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}