    :root {
      --navy: #0F0F61;
      --navy-2: #161B7A;
      --ink: #0B0C1F;
      --blue: #0D9CD8;
      --blue-mid: #1C5FA8;
      --blue-deep: #0A5C82;
      --blue-light: #57C7F0;
      --blue-pale: #8FE0FF;
      --paper: #FFFFFF;
      --mist: #F7FAFC;
      --line: #E6E8F0;
      --muted: #6B7080;
      --muted-lt: #9DA2B3;
      --display: 'Titillium Web', sans-serif;
      --body: 'Titillium Web', sans-serif;
      --mono: 'Titillium Web', sans-serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--body);
      color: var(--ink);
      background-color: var(--paper);
      background-image: url('/img/login-bg.svg');
      background-repeat: repeat-y;
      background-position: top center;
      background-size: 100% auto;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    .page-texture-bg {
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .06;
    }

    .page-texture-bg svg {
      width: 100%;
      height: 100%;
      display: block;
    }

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

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

    ul {
      list-style: none;
    }

    .wrap {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 32px;
    }

    @media(max-width:640px) {
      .wrap {
        padding: 0 20px;
      }
    }

    .eyebrow {
      font-family: var(--body);
      font-size: 14px;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 700;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--display);
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .lead {
      color: var(--muted);
      font-size: 20px;
    }

    /* ---------- reveal on scroll ---------- */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1) .25s, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) .25s;
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    /* Cascata: aplicado no container da grade — os FILHOS diretos entram um
     a um em vez do bloco inteiro surgir de uma vez só. Delay base de .25s
     antes de começar (tempo de "assentar" depois que a seção entra na tela). */
    .stagger>* {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .85s cubic-bezier(0.16, 1, 0.3, 1), transform .85s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .stagger.in>* {
      opacity: 1;
      transform: translateY(0);
    }

    .stagger.in>*:nth-child(1) {
      transition-delay: .29s;
    }

    .stagger.in>*:nth-child(2) {
      transition-delay: .38s;
    }

    .stagger.in>*:nth-child(3) {
      transition-delay: .47s;
    }

    .stagger.in>*:nth-child(4) {
      transition-delay: .56s;
    }

    .stagger.in>*:nth-child(5) {
      transition-delay: .65s;
    }

    .stagger.in>*:nth-child(6) {
      transition-delay: .74s;
    }

    .stagger.in>*:nth-child(7) {
      transition-delay: .83s;
    }

    .stagger.in>*:nth-child(8) {
      transition-delay: .92s;
    }

    .stagger.in>*:nth-child(9) {
      transition-delay: 1.01s;
    }

    .stagger.in>*:nth-child(10) {
      transition-delay: 1.10s;
    }

    .stagger.in>*:nth-child(11) {
      transition-delay: 1.19s;
    }

    .stagger.in>*:nth-child(12) {
      transition-delay: 1.28s;
    }

    .stagger.in>*:nth-child(n+13) {
      transition-delay: 1.37s;
    }

    /* ================= HEADER ================= */
    @keyframes headerDrop {
      from {
        opacity: 0;
        transform: translateY(-18px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes navItemIn {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(11, 12, 31, 0.72);
      backdrop-filter: blur(10px) saturate(140%);
      -webkit-backdrop-filter: blur(10px) saturate(140%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 0 0 rgba(3, 10, 30, 0);
      transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
      opacity: 0;
      animation: headerDrop .8s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    header.scrolled {
      background: rgba(11, 12, 31, 0.92);
      box-shadow: 0 12px 30px rgba(3, 10, 30, 0.28);
      border-bottom-color: rgba(255, 255, 255, 0.12);
    }

    header.header-solid {
      background: rgba(11, 12, 31, 0.92);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0;
      animation: navItemIn .7s cubic-bezier(0.22, 1, 0.36, 1) .15s both;
    }

    .brand .logo-mark {
      width: auto;
      height: 30px;
      object-fit: contain;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .brand-text b {
      font-family: var(--display);
      font-weight: 700;
      color: #fff;
      font-size: 18.5px;
      letter-spacing: .01em;
    }

    .brand-text span {
      font-family: var(--body);
      font-weight: 600;
      font-size: 11px;
      color: var(--blue-light);
      letter-spacing: .09em;
    }

    nav.links {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    nav.links a {
      font-size: 15.5px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.78);
      transition: color .2s ease;
      opacity: 0;
      animation: navItemIn .6s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    nav.links a:nth-child(1) {
      animation-delay: .3s;
    }

    nav.links a:nth-child(2) {
      animation-delay: .37s;
    }

    nav.links a:nth-child(3) {
      animation-delay: .44s;
    }

    nav.links a:nth-child(4) {
      animation-delay: .51s;
    }

    nav.links a:nth-child(5) {
      animation-delay: .58s;
    }

    nav.links a:nth-child(6) {
      animation-delay: .65s;
    }

    nav.links a:nth-child(7) {
      animation-delay: .72s;
    }

    nav.links a:nth-child(8) {
      animation-delay: .79s;
    }

    nav.links a:hover {
      color: #fff;
    }

    .nav-dropdown {
      position: relative;
      opacity: 0;
      animation: navItemIn .6s cubic-bezier(0.22, 1, 0.36, 1) .86s both;
    }

    .nav-dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 5px;
      background: none;
      border: none;
      padding: 0;
      font-family: var(--body);
      font-size: 15.5px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.78);
      cursor: pointer;
      transition: color .2s ease;
    }

    .nav-dropdown-toggle svg {
      transition: transform .25s ease;
    }

    .nav-dropdown-toggle:hover {
      color: #fff;
    }

    .nav-dropdown.open .nav-dropdown-toggle {
      color: #fff;
    }

    .nav-dropdown.open .nav-dropdown-toggle svg {
      transform: rotate(180deg);
    }

    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 14px);
      left: 50%;
      transform: translate(-50%, 8px);
      min-width: 180px;
      background: #fff;
      border-radius: 14px;
      padding: 8px;
      box-shadow: 0 20px 40px rgba(3, 10, 30, .35);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .nav-dropdown-menu a {
      display: block;
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 15.5px;
      font-weight: 500;
      color: var(--ink) !important;
      white-space: nowrap;
      opacity: 1 !important;
      animation: none !important;
      transition: background .18s ease, color .18s ease;
    }

    .nav-dropdown-menu a:hover {
      background: var(--mist);
      color: var(--blue-deep) !important;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .nav-cta .btn {
      opacity: 0;
      animation: navItemIn .7s cubic-bezier(0.22, 1, 0.36, 1) .95s both;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--body);
      font-weight: 600;
      font-size: 15.5px;
      padding: 12px 22px;
      border-radius: 100px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .3s cubic-bezier(0.22, 1, 0.36, 1), background .25s ease, border-color .25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--blue);
      color: #fff;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(13, 156, 216, .35);
    }

    .btn-ghost {
      border-color: rgba(255, 255, 255, 0.35);
      color: #fff;
    }

    .btn-ghost:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    .btn-dark {
      background: var(--navy);
      color: #fff;
    }

    .btn-dark:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(15, 15, 97, .28);
    }

    .btn:active {
      transform: translateY(0) scale(.97);
      transition-duration: .1s;
    }

    .burger {
      display: none;
      width: 26px;
      height: 20px;
      position: relative;
      cursor: pointer;
      background: none;
      border: none;
    }

    .burger span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: .25s;
    }

    .burger span:nth-child(1) {
      top: 0;
    }

    .burger span:nth-child(2) {
      top: 9px;
    }

    .burger span:nth-child(3) {
      top: 18px;
    }

    .burger.open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .burger.open span:nth-child(2) {
      opacity: 0;
    }

    .burger.open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    @media(max-width:1180px) and (min-width:901px) {
      nav.links {
        gap: 12px;
      }

      nav.links a {
        font-size: 14.5px;
      }

      .nav-cta {
        gap: 10px;
      }

      .btn {
        padding: 9px 14px;
        font-size: 14.5px;
      }
    }

    @media(max-width:900px) {

      header {
        background: #0B0C1F !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
      }

      nav.links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        height: calc(100dvh - 76px);
        background: #0B0C1F;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 32px 40px;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), opacity .3s ease, visibility .3s ease;
        overflow-y: auto;
        z-index: -1;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
      }

      nav.links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      nav.links a {
        display: block;
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        font-size: 19px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.88);
        text-align: left;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
      }

      nav.links a:last-child {
        border-bottom: none;
      }

      nav.links a:hover,
      nav.links a:active {
        color: var(--blue-light);
      }

      .nav-dropdown {
        opacity: 1 !important;
        animation: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
      }

      .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 16px 0;
        font-size: 19px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.88);
      }

      .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        background: none;
        box-shadow: none;
        padding: 0;
        transition: max-height .25s ease, padding .25s ease;
      }

      .nav-dropdown.open .nav-dropdown-menu {
        pointer-events: auto;
        max-height: 200px;
        padding-bottom: 10px;
      }

      .nav-dropdown-menu a {
        padding: 10px 0 10px 14px !important;
        color: rgba(255, 255, 255, 0.78) !important;
        border-bottom: none !important;
      }

      .nav-dropdown-menu a:hover {
        background: none;
        color: var(--blue-light) !important;
      }

      .nav-cta .btn-ghost {
        display: none;
      }

      .burger {
        display: block;
      }
    }

    @media(max-width:480px) {
      .btn-primary {
        padding: 8px 14px;
        font-size: 14px;
      }

      .brand-text span {
        display: none;
      }
    }

    /* ================= HERO ================= */
    .hero {
      position: relative;
      background: radial-gradient(120% 140% at 78% -10%, #1a2094 0%, var(--navy) 46%, var(--ink) 100%);
      padding: 172px 0 128px;
      overflow: hidden;
      color: #fff;
    }

    .hero-bg-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 55%;
      mix-blend-mode: luminosity;
      opacity: .55;
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, var(--ink) 5%, rgba(15, 15, 97, .65) 42%, transparent 78%);
      pointer-events: none;
    }

    .hero-canopy {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      animation: heroFade 2s cubic-bezier(0.22, 1, 0.36, 1) .15s both;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.85fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 3;
    }

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

    @keyframes heroUp {
      from {
        opacity: 0;
        transform: translateY(26px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes heroFade {
      from {
        opacity: 0;
      }

      to {
        opacity: .5;
      }
    }

    @keyframes heroPopRight {
      from {
        opacity: 0;
        transform: scale(.85) rotate(-45deg);
      }

      to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }

    @keyframes heroPopLeft {
      from {
        opacity: 0;
        transform: scale(.85) rotate(45deg);
      }

      to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }

    @keyframes heroPopUp {
      from {
        opacity: 0;
        transform: scale(.85) translateY(28px) rotate(-20deg);
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0deg);
      }
    }

    .hero .eyebrow {
      color: var(--blue-pale);
      margin-bottom: 22px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      padding: 8px 16px 8px 12px;
      border-radius: 100px;
      opacity: 0;
      animation: heroUp 1s cubic-bezier(0.22, 1, 0.36, 1) .25s both;
    }

    .hero .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue-light);
      display: inline-block;
    }

    .hero h1 {
      font-size: clamp(38px, 5vw, 65px);
      line-height: 1.06;
      color: #fff;
      margin-bottom: 24px;
      opacity: 0;
      animation: heroUp 1.05s cubic-bezier(0.22, 1, 0.36, 1) .42s both;
    }

    .hero h1 em {
      font-style: normal;
      background: linear-gradient(92deg, var(--blue-pale), var(--blue) 55%, #42bca0);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p.lead {
      color: rgba(255, 255, 255, 0.72);
      max-width: 520px;
      font-size: 20px;
      margin-bottom: 38px;
      opacity: 0;
      animation: heroUp 1.05s cubic-bezier(0.22, 1, 0.36, 1) .62s both;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: heroUp 1.05s cubic-bezier(0.22, 1, 0.36, 1) .82s both;
    }

    .hero-panel {
      position: relative;
      z-index: 3;
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 22px;
      padding: 32px;
      backdrop-filter: blur(6px);
      opacity: 0;
      animation: heroUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) .68s both;
    }

    .helix-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 320/200;
      margin-bottom: 22px;
    }

    .glass-glow {
      position: absolute;
      left: 10%;
      top: 0%;
      width: 80%;
      height: 100%;
      /* background: radial-gradient(closest-side, rgba(87, 199, 240, 0.45), rgba(87, 199, 240, 0) 70%); */
      filter: blur(18px);
      pointer-events: none;
    }

    .glass-circle {
      position: absolute;
      border-radius: 50%;
      width: 41.25%;
      height: 66%;
      border: 1px solid rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(22px) saturate(200%);
      /* -webkit-backdrop-filter: blur(22px) saturate(200%); */
      box-shadow: inset 0 1.5px 1px rgba(255, 255, 255, 0.7), inset 0 -18px 26px rgba(4, 30, 44, 0.32), inset 10px 10px 30px rgba(255, 255, 255, 0.10), 0 16px 30px rgb(33 60 136 / 34%);
      mix-blend-mode: screen;
      overflow: hidden;
    }

    .glass-circle span {
      position: absolute;
      left: 50%;
      top: 20%;
      transform: translateX(-50%);
      z-index: 2;
      font-family: var(--body);
      font-weight: 600;
      font-size: 25px;
      white-space: nowrap;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
      mix-blend-mode: normal;
    }

    .glass-circle::before {
      /* content: ""; */
      position: absolute;
      left: 12%;
      top: 8%;
      width: 38%;
      height: 24%;
      background: radial-gradient(closest-side, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
      border-radius: 50%;
      filter: blur(3px);
      pointer-events: none;
    }

    .glass-circle::after {
      /* content: ""; */
      position: absolute;
      left: -10%;
      top: -32%;
      width: 120%;
      height: 60%;
      background: linear-gradient(200deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.12) 38%, rgba(255, 255, 255, 0) 60%);
      border-radius: 50%;
      transform: rotate(-8deg);
      pointer-events: none;
    }

    .gc-1 {
      left: 16.875%;
      top: 7%;
      background: linear-gradient(150deg, rgba(255, 255, 255, 0.19), rgba(13, 155, 216, 0.233));
      opacity: 0;
      animation: heroPopRight .85s cubic-bezier(0.22, 1, 0.36, 1) 1.05s both;
    }

    .gc-1 span {
      color: #fff;
    }

    .gc-2 {
      left: 41.875%;
      top: 7%;
      background: linear-gradient(150deg, rgba(255, 255, 255, 0.19), rgba(10, 92, 130, 0.221));
      opacity: 0;
      animation: heroPopLeft .85s cubic-bezier(0.22, 1, 0.36, 1) 1.25s both;
    }

    .gc-2 span {
      color: #fff;
    }

    .gc-3 {
      left: 29.375%;
      top: 37%;
      background: linear-gradient(150deg, rgba(255, 255, 255, 0.19), rgba(143, 223, 255, 0.189));
      opacity: 0;
      animation: heroPopUp .85s cubic-bezier(0.22, 1, 0.36, 1) 1.45s both;
    }

    .gc-3 span {
      top: auto;
      bottom: 12%;
      color: #0B0C1F;
      text-shadow: 0 1px 4px rgba(255, 255, 255, 0.35);
    }

    .helix-logo {
      position: absolute;
      left: calc(50% - 35px);
      top: calc(50% - 31px);
      transform: translate(-50%, -50%);
      width: 76px;
      height: 44px;
      z-index: 10;
      opacity: 0;
      animation: heroPopUp .85s cubic-bezier(0.22, 1, 0.36, 1) 1.65s both;
      filter: drop-shadow(0 4px 8px rgba(2, 38, 58, 0.7));
    }

    .hero-panel-title {
      font-family: var(--body);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--blue-light);
      margin-bottom: 10px;
    }

    .hero-panel p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 16px;
    }

    /* ================= SECTION SHELL ================= */
    section {
      position: relative;
    }

    .section-pad {
      padding: 108px 0;
    }

    @media(max-width:640px) {
      .section-pad {
        padding: 76px 0;
      }
    }

    .section-head {
      max-width: 640px;
      margin-bottom: 56px;
    }

    .section-head .eyebrow {
      color: var(--blue);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-head .eyebrow::before {
      content: "";
      width: 26px;
      height: 2px;
      background: var(--blue);
      display: inline-block;
    }

    .section-head h1,
    .section-head h2 {
      font-size: clamp(29px, 3.5vw, 42.5px);
      color: var(--navy);
      line-height: 1.15;
    }

    .section-head p {
      margin-top: 16px;
    }

    .section-alt {
      background: var(--mist);
    }

    .section-dark {
      background: var(--navy);
      color: #fff;
    }

    .section-dark .section-head .eyebrow {
      color: var(--blue-light);
    }

    .section-dark .section-head .eyebrow::before {
      background: var(--blue-light);
    }

    .section-dark .section-head h1,
    .section-dark .section-head h2 {
      color: #fff;
    }

    .section-dark .section-head p {
      color: rgba(255, 255, 255, .68);
    }

    /* ================= BLOCO 1 — PILARES ================= */
    .pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

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

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

    .pillar-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 28px 24px;
      transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s cubic-bezier(0.22, 1, 0.36, 1), border-color .4s ease;
    }

    .pillar-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 44px rgba(15, 15, 97, .10);
      border-color: transparent;
    }

    .pillar-card:hover .pillar-icon {
      transform: scale(1.08) rotate(-3deg);
    }

    .pillar-num {
      font-family: var(--body);
      font-weight: 700;
      font-size: 13.5px;
      color: var(--muted-lt);
      margin-bottom: 18px;
    }

    .pillar-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .pillar-card h3 {
      font-size: 19px;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .pillar-card p {
      color: var(--muted);
      font-size: 16px;
    }

    /* ================= BLOCO 2 — VERTICAIS ================= */
    .verticals {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--line);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--line);
    }

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

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

    .vertical-card {
      background: #fff;
      padding: 34px 26px;
      position: relative;
      transition: background .3s ease;
      min-height: 210px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .vertical-card:hover {
      background: var(--mist);
    }

    .vertical-card:hover .vertical-tag {
      transform: translateY(-2px);
    }

    .vertical-tag {
      font-family: var(--body);
      font-weight: 700;
      font-size: 12.5px;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: #fff;
      display: inline-flex;
      padding: 5px 10px;
      border-radius: 6px;
      width: max-content;
      margin-bottom: 22px;
      transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .vertical-card h3 {
      font-size: 20px;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .vertical-card p {
      font-size: 15.5px;
      color: var(--muted);
    }

    /* ================= BLOCO 3 — CASES ================= */
    .cases {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

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

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

    .case-card {
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--line);
      transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s cubic-bezier(0.22, 1, 0.36, 1);
      display: flex;
      flex-direction: column;
    }

    .case-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 46px rgba(15, 15, 97, .12);
    }

    .case-card:hover .case-art i {
      transform: scale(1.12);
    }

    .case-art {
      height: 132px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .case-art i {
      transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .case-art svg {
      width: 56px;
      height: 56px;
    }

    .case-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .case-card:hover .case-art img {
      transform: scale(1.06);
    }

    .case-body {
      padding: 24px 22px 26px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .case-partner {
      font-family: var(--body);
      font-weight: 700;
      font-size: 12.5px;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--muted-lt);
      margin-bottom: 8px;
    }

    .case-card h3 {
      font-size: 19px;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .case-card p {
      font-size: 15.5px;
      color: var(--muted);
      flex: 1;
    }

    /* ================= BLOCO 3.5 — PORTFÓLIO COMPLETO ================= */
    .portfolio-list {
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
    }

    .portfolio-row {
      display: grid;
      grid-template-columns: 220px 1fr 130px;
      gap: 20px;
      align-items: center;
      padding: 20px 24px;
      background: #fff;
      border-bottom: 1px solid var(--line);
    }

    .portfolio-row:last-child {
      border-bottom: none;
    }

    .portfolio-row:nth-child(even) {
      background: var(--mist);
    }

    .portfolio-company {
      font-weight: 700;
      color: var(--navy);
      font-size: 16px;
      line-height: 1.3;
    }

    .portfolio-city {
      font-size: 13.5px;
      color: var(--muted-lt);
      margin-top: 3px;
    }

    .portfolio-desc {
      font-size: 15.5px;
      color: var(--muted);
      line-height: 1.5;
    }

    .portfolio-status {
      text-align: right;
    }

    .status-pill {
      display: inline-block;
      font-size: 12.5px;
      font-weight: 700;
      padding: 6px 13px;
      border-radius: 100px;
      white-space: nowrap;
    }

    .status-done {
      background: var(--blue);
      color: #fff;
    }

    .status-progress {
      background: transparent;
      border: 1px solid var(--line);
      color: var(--muted);
    }

    .portfolio-link {
      display: inline-block;
      margin-top: 8px;
      font-size: 13.5px;
      font-weight: 700;
      color: var(--blue);
    }

    .portfolio-note {
      margin-top: 22px;
      font-size: 15px;
      color: var(--muted-lt);
      font-style: italic;
    }

    @media(max-width:760px) {
      .portfolio-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .portfolio-status {
        text-align: left;
      }
    }

    .portfolio-carousel-wrap {
      position: relative;
    }

    .portfolio-carousel {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 4px 4px 10px;
      margin: 0 -4px;
      scrollbar-width: none;
    }

    .portfolio-carousel::-webkit-scrollbar {
      display: none;
    }

    .portfolio-card {
      scroll-snap-align: start;
      flex: 0 0 320px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 26px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .portfolio-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 46px rgba(15, 15, 97, .12);
    }

    .portfolio-card-head {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 28px;
    }

    .portfolio-card-head-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .portfolio-card-head-img {
      margin: -26px -26px 0;
      padding: 20px 22px;
      border-radius: 20px 20px 0 0;
      background-size: cover;
      background-position: center;
      position: relative;
      min-height: 190px;
    }

    .portfolio-card-head-img::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(180deg, rgba(15, 15, 97, .2) 0%, rgba(15, 15, 97, .35) 45%, rgba(15, 15, 97, .8) 100%);
    }

    .portfolio-card-head-img .portfolio-card-head-top,
    .portfolio-card-head-img .portfolio-card-head-info {
      position: relative;
      z-index: 1;
    }

    .portfolio-card-head-img .portfolio-card-company {
      color: #fff;
      text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
    }

    .portfolio-card-head-img .portfolio-card-city {
      color: rgba(255, 255, 255, .88);
      text-shadow: 0 1px 3px rgba(0, 0, 0, .35);
    }

    .portfolio-card-head-img .status-pill {
      background: rgba(255, 255, 255, .95);
      border-color: transparent;
      color: var(--navy);
    }

    .portfolio-card-head-img .status-done {
      background: var(--blue);
      color: #fff;
    }

    .portfolio-card-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 15.5px;
      flex-shrink: 0;
    }

    .portfolio-card-company {
      font-weight: 700;
      color: var(--navy);
      font-size: 17px;
      line-height: 1.3;
    }

    .portfolio-card-city {
      font-size: 13.5px;
      color: var(--muted-lt);
      margin-top: 2px;
    }

    .portfolio-card-desc {
      font-size: 15.5px;
      color: var(--muted);
      line-height: 1.55;
      flex: 1;
    }

    .portfolio-carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid var(--line);
      background: #fff;
      color: var(--navy);
      font-size: 22.5px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s, color .2s, border-color .2s;
      z-index: 2;
    }

    .portfolio-carousel-btn:hover {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
    }

    .portfolio-carousel-btn.prev {
      left: -22px;
    }

    .portfolio-carousel-btn.next {
      right: -22px;
    }

    @media(max-width:900px) {
      .portfolio-carousel-btn {
        display: none;
      }
    }

    @media(max-width:560px) {
      .portfolio-card {
        flex-basis: 84vw;
      }
    }

    /* ================= BLOCO 4 — NUMEROS ================= */
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, .12);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .12);
    }

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

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

    .stat-cell {
      background: var(--navy);
      padding: 34px 26px;
    }

    .stat-cell .stat-val {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(33.5px, 3.5vw, 45px);
      margin-bottom: 10px;
    }

    .stat-cell .stat-lbl {
      font-size: 15px;
      color: rgba(255, 255, 255, .68);
      line-height: 1.4;
    }

    /* ================= BLOCO 5 — JORNADA ================= */
    .journey {
      position: relative;
    }

    .journey-list {
      position: relative;
    }

    /* Mobile-first: vertical timeline */
    .journey-item {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 24px;
      padding: 0 0 32px;
      position: relative;
    }

    .journey-item:last-child {
      padding-bottom: 0;
    }

    .journey-list::before {
      content: '';
      position: absolute;
      top: 28px;
      bottom: 28px;
      left: 28px;
      width: 1px;
      background: var(--line);
    }

    .journey-num {
      font-family: var(--display);
      font-weight: 800;
      font-size: 22.5px;
      color: var(--navy);
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid var(--line);
      background: var(--paper);
      position: relative;
      z-index: 1;
    }

    .journey-body h3 {
      font-size: 19.5px;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .journey-body p {
      color: var(--muted);
      font-size: 16px;
      max-width: 640px;
    }

    /* Wide screens: horizontal timeline */
    @media (min-width: 861px) {
      .journey-list {
        display: flex;
        align-items: flex-start;
      }

      .journey-list::before {
        top: 28px;
        bottom: auto;
        left: calc(100% / 12);
        right: calc(100% / 12);
        width: auto;
        height: 1px;
      }

      .journey-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1 1 0;
        gap: 18px;
        padding: 0 12px;
      }

      .journey-body p {
        max-width: none;
      }
    }

    /* ================= BLOCO 6 — PARA QUEM ================= */
    .personas {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 8px;
    }

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

    .persona-card {
      border-radius: 20px;
      padding: 34px 28px;
      color: #fff;
      position: relative;
      overflow: hidden;
      min-height: 230px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-align: left;
      border: 2px solid transparent;
      cursor: pointer;
      font-family: var(--body);
      width: 100%;
      transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s cubic-bezier(0.22, 1, 0.36, 1), border-color .3s ease;
    }

    .persona-card:hover {
      transform: translateY(-4px);
    }

    .persona-card.is-active {
      border-color: rgba(255, 255, 255, 0.55);
      box-shadow: 0 18px 34px rgba(3, 10, 30, 0.28);
    }

    .persona-card .persona-icon {
      position: absolute;
      top: 26px;
      right: 26px;
      width: 34px;
      height: 34px;
      opacity: .85;
      color: #fff;
      transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .persona-card:hover .persona-icon {
      transform: scale(1.1) rotate(6deg);
    }

    .persona-card h3 {
      font-size: 22.5px;
      margin-bottom: 10px;
    }

    .persona-card p {
      font-size: 15.5px;
      color: rgba(255, 255, 255, .85);
    }

    .persona-more {
      display: inline-block;
      margin-top: 16px;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      opacity: .85;
    }

    .persona-panel {
      display: none;
      margin-top: 44px;
      padding-top: 40px;
      border-top: 1px solid var(--line);
    }

    .persona-panel.is-active {
      display: block;
      animation: panelFadeIn .5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes panelFadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .panel-title {
      font-size: 24.5px;
      color: var(--navy);
      margin-bottom: 14px;
    }

    .panel-intro {
      color: var(--muted);
      font-size: 18px;
      max-width: 760px;
      margin-bottom: 28px;
    }

    .access-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 40px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      font-size: 15px;
      font-weight: 600;
      padding: 10px 18px;
      border-radius: 100px;
      border: 1px solid var(--line);
      color: var(--navy);
      background: #fff;
      transition: border-color .3s ease, background .3s ease, transform .3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .chip:hover {
      border-color: var(--blue);
      background: var(--mist);
      transform: translateY(-1px);
    }

    .chip-solid {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
    }

    .chip-solid:hover {
      background: var(--blue);
      border-color: var(--blue);
    }

    .persona-docs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 32px;
    }

    .persona-doc-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 600;
      padding: 10px 16px;
      border-radius: 12px;
      border: 1px solid var(--line);
      color: var(--blue-deep);
      background: var(--mist);
      transition: border-color .2s ease, background .2s ease;
    }

    .persona-doc-link:hover {
      border-color: var(--blue);
      background: #F4FAFD;
    }

    .persona-doc-icon {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      color: var(--blue);
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 820px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
      transition: border-color .3s ease, box-shadow .3s ease;
    }

    .faq-item.is-open {
      border-color: var(--blue-pale);
      box-shadow: 0 12px 28px rgba(15, 15, 97, .08);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 14px;
      text-align: left;
      padding: 18px 20px;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--body);
      font-size: 17px;
      font-weight: 600;
      color: var(--navy);
    }

    .faq-q span {
      font-family: var(--body);
      font-weight: 700;
      font-size: 13.5px;
      color: var(--blue);
      flex-shrink: 0;
    }

    .faq-chev {
      width: 18px;
      height: 18px;
      margin-left: auto;
      flex-shrink: 0;
      color: var(--muted-lt);
      transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .faq-item.is-open .faq-chev {
      transform: rotate(180deg);
      color: var(--blue);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height .4s cubic-bezier(0.22, 1, 0.36, 1), opacity .3s ease .05s;
    }

    .faq-item.is-open .faq-a {
      max-height: 400px;
      opacity: 1;
    }

    .faq-a p {
      padding: 0 20px 20px 52px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.6;
    }

    /* ================= BLOCO 7 — INFRAESTRUTURA ================= */
    .infra-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

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

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

    .infra-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 22px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid var(--line);
    }

    .infra-item .infra-ico {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .infra-item p {
      font-size: 16px;
      color: var(--ink);
      font-weight: 500;
      line-height: 1.4;
    }

    /* ================= BLOCO 8 — HUB CONTEUDO ================= */
    .hub-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

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

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

    .hub-card {
      padding: 24px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      transition: border-color .3s ease, background .3s ease, transform .3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hub-card:hover {
      border-color: var(--blue);
      background: #F4FAFD;
      transform: translateX(3px);
    }

    .hub-card span.txt {
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.35;
    }

    .hub-card .arrow {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: var(--blue);
      transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hub-card:hover .arrow {
      transform: translateX(4px);
    }

    /* ================= BLOG ================= */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

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

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

    .blog-card {
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 46px rgba(15, 15, 97, .12);
    }

    .blog-card-img {
      display: block;
      aspect-ratio: 16/10;
      overflow: hidden;
      position: relative;
    }

    .blog-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .blog-card:hover .blog-card-img img {
      transform: scale(1.08);
    }

    .blog-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      color: #fff;
      font-family: var(--body);
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: 100px;
    }

    .blog-card-body {
      padding: 26px 24px 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--muted-lt);
      margin-bottom: 14px;
    }

    .blog-card h3 {
      font-size: 21.5px;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.32;
    }

    .blog-card p {
      font-size: 15.5px;
      color: var(--muted);
      flex: 1;
      margin-bottom: 18px;
    }

    .blog-read-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 15px;
      font-weight: 700;
      color: var(--blue-deep);
      transition: gap .3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .blog-read-more:hover {
      gap: 10px;
    }

    .blog-empty {
      color: var(--muted-lt);
      font-size: 17px;
    }

    .blog-more-link {
      margin-top: 40px;
    }

    /* ================= PARCEIROS ================= */
    .partners-grid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 48px;
    }

    .partner-logo {
      max-height: 40px;
      max-width: 140px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: .55;
      transition: opacity .35s ease, filter .35s ease, transform .35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .partner-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.06);
    }

    /* ================= DEPOIMENTOS ================= */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

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

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

    .testimonial-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 22px;
      height: 100%;
      transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 40px rgba(15, 15, 97, .10);
    }

    .testimonial-quote {
      color: var(--ink);
      font-size: 17px;
      line-height: 1.65;
      flex: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testimonial-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 15.5px;
      flex-shrink: 0;
    }

    .testimonial-author-name {
      font-weight: 700;
      color: var(--navy);
      font-size: 15.5px;
    }

    .testimonial-author-role {
      font-size: 14px;
      color: var(--muted-lt);
    }

    /* ================= BLOCO 9 — CONTATO ================= */
    .contact-section {
      position: relative;
      background: linear-gradient(160deg, #0B0C1F 0%, var(--navy) 55%, #1a2094 100%);
      color: #fff;
      padding: 120px 0;
      overflow: hidden;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    @media(max-width:900px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    .contact-info h2 {
      font-size: clamp(31.5px, 4vw, 47px);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .contact-info p.lead {
      color: rgba(255, 255, 255, .72);
      font-size: 19px;
      margin-bottom: 32px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-top: 8px;
    }

    .contact-detail-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .contact-detail-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .16);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-detail-icon i {
      width: 20px;
      height: 20px;
      color: var(--blue-light);
    }

    .contact-details a,
    .contact-details span {
      color: rgba(255, 255, 255, .88);
      font-weight: 600;
      font-size: 17px;
    }

    .contact-details a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .contact-form-card {
      background: #fff;
      border-radius: 24px;
      padding: 40px;
      color: var(--ink);
      box-shadow: 0 30px 60px rgba(3, 10, 30, .4);
    }

    .contact-form-card h4 {
      font-size: 22.5px;
      color: var(--navy);
      margin-bottom: 24px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .contact-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    @media(max-width:520px) {
      .contact-form-row {
        grid-template-columns: 1fr;
      }
    }

    .contact-form label {
      display: block;
      font-size: 14.5px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      background: var(--mist);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 12px 16px;
      font-family: var(--body);
      font-size: 16px;
      color: var(--ink);
      outline: none;
      transition: border-color .2s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--blue);
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 110px;
    }

    .contact-form .btn {
      width: 100%;
      margin-top: 4px;
    }

    /* ================= FOOTER ================= */
    footer {
      background: var(--ink);
      color: rgba(255, 255, 255, .6);
      padding: 64px 0 32px;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 44px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

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

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

    .foot-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .foot-brand b {
      color: #fff;
      font-family: var(--display);
      font-size: 18px;
    }

    footer p.small {
      font-size: 15px;
      line-height: 1.6;
      max-width: 280px;
    }

    footer h4 {
      font-family: var(--body);
      font-size: 14px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 16px;
    }

    footer ul li {
      margin-bottom: 10px;
    }

    footer ul li a {
      font-size: 15.5px;
      color: rgba(255, 255, 255, .72);
      transition: color .2s ease;
    }

    footer ul li a:hover {
      color: #fff;
    }

    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 26px;
      font-size: 14px;
      flex-wrap: wrap;
      gap: 12px;
    }

    ::selection {
      background: var(--blue-pale);
      color: var(--navy);
    }

    :focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 3px;
    }

    @media (prefers-reduced-motion: reduce) {

      .reveal,
      .stagger>* {
        transition: none;
        opacity: 1;
        transform: none;
      }

      .persona-panel.is-active {
        animation: none;
      }

      * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
      }

      html {
        scroll-behavior: auto;
      }
    }


    /* ===== extra rules merged from blog.html (not present in index.html) ===== */

    .stagger.in>*:nth-child(n+7) {
      transition-delay: .83s;
    }

    /* ===== extra rules merged from post-template.html (not present in index.html) ===== */

    .post-hero {
      max-width: 820px;
      margin: 0 auto;
    }

    .post-back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 700;
      color: var(--blue-deep);
      margin-bottom: 30px;
    }

    .post-hero .eyebrow {
      color: var(--blue);
      margin-bottom: 16px;
    }

    .post-hero h1 {
      font-size: clamp(31.5px, 4.5vw, 49.5px);
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 26px;
    }

    .post-meta-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: var(--muted-lt);
      padding-top: 22px;
      border-top: 1px solid var(--line);
    }

    .post-cover {
      width: 100%;
      max-height: 460px;
      object-fit: cover;
      border-radius: 24px;
      margin: 46px 0 8px;
    }

    .post-article-wrap {
      max-width: 820px;
      margin: 0 auto;
    }

    .post-prose {
      font-size: 18.5px;
      color: var(--ink);
      line-height: 1.75;
      padding-top: 40px;
    }

    .post-prose h2 {
      font-size: 29px;
      color: var(--navy);
      margin: 44px 0 18px;
      line-height: 1.25;
    }

    .post-prose h3 {
      font-size: 22.5px;
      color: var(--navy);
      margin: 34px 0 14px;
    }

    .post-prose p {
      margin-bottom: 22px;
    }

    .post-prose ul,
    .post-prose ol {
      margin: 0 0 26px 22px;
    }

    .post-prose ul {
      list-style: disc;
    }

    .post-prose ol {
      list-style: decimal;
    }

    .post-prose li {
      margin-bottom: 10px;
    }

    .post-prose strong {
      color: var(--navy);
      font-weight: 700;
    }

    .post-prose a {
      color: var(--blue-deep);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .post-prose blockquote {
      border-left: 4px solid var(--blue);
      padding: 4px 0 4px 24px;
      font-style: italic;
      font-size: 21.5px;
      color: var(--blue-deep);
      margin: 34px 0;
    }

    .post-prose img {
      width: 100%;
      border-radius: 20px;
      margin: 30px 0;
    }

    .post-footer-nav {
      max-width: 820px;
      margin: 60px auto 0;
      padding-top: 32px;
      border-top: 1px solid var(--line);
    }

    .case-info-grid {
      max-width: 820px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      padding-top: 40px;
    }

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

    .case-info-card {
      padding: 26px 24px;
      border-radius: 20px;
      background: #fff;
      border: 1px solid var(--line);
    }

    .case-info-card h4 {
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--blue-deep);
      margin-bottom: 14px;
    }

    .case-info-card p {
      font-size: 16px;
      color: var(--ink);
      line-height: 1.5;
    }

    .case-info-card p+p {
      margin-top: 6px;
    }

    .case-info-card .muted {
      color: var(--muted-lt);
    }

    .case-team-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .case-team-member {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 10px;
      font-size: 16px;
    }

    .case-team-member .role {
      font-size: 13.5px;
      color: var(--muted-lt);
      white-space: nowrap;
    }

    .case-map-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 10px;
      font-size: 14.5px;
      font-weight: 700;
      color: var(--blue-deep);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* ================= MAPA — EMPRESAS PARCEIRAS ================= */
    .map-card {
      margin-top: 36px;
      height: 480px;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: 0 22px 46px rgba(15, 15, 97, .08);
    }

    @media(max-width:640px) {
      .map-card {
        height: 380px;
        border-radius: 18px;
      }
    }

    .map-card-empty {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      color: var(--muted-lt);
      font-size: 16px;
    }

    .bioforest-map {
      width: 100%;
      height: 100%;
      background: var(--mist);
    }

    /* Tinge as tiles OSM (claras/coloridas por padrão) para o azul-marinho
       da marca, sem depender de um provedor de tiles pago/com API key. */
    .bioforest-map .leaflet-tile-pane {
      filter: grayscale(45%) brightness(1.06) contrast(0.94) sepia(94%) hue-rotate(178deg) saturate(1.55);
    }

    .bioforest-pin-dot {
      display: block;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--navy);
      border: 3px solid #fff;
      box-shadow: 0 0 0 4px rgba(13, 156, 216, .35), 0 4px 10px rgba(15, 15, 97, .35);
    }

    .leaflet-popup-content-wrapper {
      border-radius: 16px;
      box-shadow: 0 14px 32px rgba(15, 15, 97, .22);
    }

    .leaflet-popup-content {
      margin: 14px 16px;
    }

    .bioforest-popup {
      display: flex;
      flex-direction: column;
      gap: 3px;
      font-family: var(--body);
    }

    .bioforest-popup strong {
      font-size: 15.5px;
      color: var(--navy);
    }

    .bioforest-popup span {
      font-size: 14px;
      color: var(--muted);
    }

    .bioforest-popup a {
      margin-top: 4px;
      font-size: 14px;
      font-weight: 700;
      color: var(--blue-deep);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .leaflet-control-zoom a {
      color: var(--navy) !important;
    }

    .leaflet-control-attribution {
      font-size: 12px !important;
    }