@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

    :root {
      --blue-950: #071637;
      --blue-900: #0b1f4d;
      --blue-800: #12306d;
      --blue-700: #1b3fa3;
      --blue-600: #2558e5;
      --blue-500: #2f7bff;
      --cyan-400: #4ad4ff;
      --slate-100: #f5f7ff;
      --slate-200: #e5ecff;
      --slate-300: #cdd8f3;
      --slate-400: #b0bfdc;
      --ink: #0a1630;
      --shadow: 0 24px 50px rgba(7, 22, 55, 0.18);
      --radius: 20px;
      --radius-sm: 14px;
    }

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

    body {
      font-family: "IBM Plex Sans", sans-serif;
      color: var(--ink);
      background: radial-gradient(circle at top, #ffffff 0%, #f5f7ff 35%, #edf1ff 100%);
      line-height: 1.6;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background: radial-gradient(circle at 15% 20%, rgba(47, 123, 255, 0.12), transparent 50%),
        radial-gradient(circle at 80% 10%, rgba(74, 212, 255, 0.2), transparent 42%),
        radial-gradient(circle at 85% 80%, rgba(37, 88, 229, 0.15), transparent 55%);
      z-index: -1;
    }

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

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

    ul {
      list-style: none;
    }

    button {
      border: none;
      background: none;
      font-family: inherit;
      cursor: pointer;
    }

    .container {
      width: min(1200px, 92vw);
      margin: 0 auto;
    }

    .skip-link {
      position: absolute;
      left: -999px;
      top: 10px;
      background: var(--blue-600);
      color: white;
      padding: 10px 16px;
      border-radius: 999px;
    }

    .skip-link:focus {
      left: 16px;
      z-index: 999;
    }

    .topbar {
      background: var(--blue-950);
      color: white;
      font-size: 0.85rem;
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      gap: 16px;
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .lang-switcher {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding-right: 12px;
      margin-right: 4px;
      border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .lang-btn {
      width: 28px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: rgba(255, 255, 255, 0.08);
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .lang-btn img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      border-radius: 4px;
    }

    .lang-btn.is-active {
      border-color: rgba(255, 255, 255, 0.95);
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
      transform: translateY(-1px);
    }

    .lang-btn:focus-visible {
      outline: 2px solid white;
      outline-offset: 2px;
    }

    .pill {
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.25);
      padding: 4px 10px;
      border-radius: 999px;
      font-weight: 600;
    }

    .nav-wrap {
      background: white;
      position: sticky;
      top: 0;
      z-index: 200;
      box-shadow: 0 10px 30px rgba(7, 22, 55, 0.08);
    }

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

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      font-family: "Space Grotesk", sans-serif;
    }

    .logo-icon {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
      color: white;
      display: grid;
      place-items: center;
      border-radius: 14px;
      font-weight: 700;
    }

    .logo-text span {
      display: block;
      font-size: 0.78rem;
      color: var(--blue-700);
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .nav-toggle {
      display: none;
      background: var(--blue-600);
      color: white;
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 600;
    }

    .nav-panel {
      display: flex;
      align-items: center;
      gap: 16px;
      flex: 1;
      justify-content: flex-end;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 500;
      flex-wrap: nowrap;
      white-space: nowrap;
    }

    .nav-links li {
      position: static;
      flex-shrink: 0;
    }

    .nav-links a,
    .nav-links button {
      color: var(--blue-900);
      font-weight: 600;
      font-size: 0.92rem;
      padding: 10px 0;
      white-space: nowrap;
    }

    .mega-toggle::after {
      content: "";
      display: inline-block;
      width: 7px;
      height: 7px;
      margin-left: 10px;
      border-right: 2px solid var(--blue-700);
      border-bottom: 2px solid var(--blue-700);
      transform: rotate(45deg);
      transition: transform 0.2s ease;
      position: relative;
      top: -1px;
    }

    /* NOVO MEGA MENU - Design Moderno e Limpo */
    .mega-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      width: 100%;
      background: white;
      border-top: 1px solid #e8ecf5;
      box-shadow: 0 20px 60px rgba(7, 22, 55, 0.1), 0 4px 12px rgba(7, 22, 55, 0.05);
      padding: 0;
      opacity: 0;
      transform: translateY(-8px);
      pointer-events: none;
      transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                  transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 240;
    }

    .mega-menu .container {
      width: min(1200px, 92vw);
      margin: 0 auto;
    }

    .has-mega.mega-open .mega-menu {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .has-mega.mega-open .mega-toggle::after {
      transform: rotate(-135deg);
    }

    .mega-content {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 0;
      padding: 48px 0;
    }

    .mega-content--compact {
      grid-template-columns: 1fr 300px;
    }

    .mega-content--simple {
      grid-template-columns: 1fr 280px;
    }

    .mega-main {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
      padding-right: 48px;
      border-right: 1px solid #f0f3f8;
    }

    .mega-section {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .mega-section-header {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
    }

    .mega-section-header h4 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #0a1630;
      margin: 0 0 4px;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }

    .mega-section-header p {
      font-size: 0.85rem;
      color: #64748b;
      margin: 0;
      line-height: 1.4;
    }

    .mega-links {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .mega-links a {
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding: 10px 12px;
      border-radius: 8px;
      background: transparent;
      border: 1px solid transparent;
      text-decoration: none;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .link-icon {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #94a3b8;
      opacity: 0;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mega-links a:hover .link-icon {
      opacity: 1;
      left: 16px;
    }

    .mega-links a:hover .link-title,
    .mega-links a:hover .link-desc {
      padding-left: 28px;
    }

    .mega-links a::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 3px;
      height: 0;
      background: var(--blue-600);
      border-radius: 0 2px 2px 0;
      transition: height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mega-links a:hover {
      background: #f8fafc;
      border-color: #e8ecf5;
      padding-left: 18px;
    }

    .mega-links a:hover::before {
      height: 60%;
    }

    .link-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: #0a1630;
      line-height: 1.4;
      transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .link-desc {
      font-size: 0.8rem;
      color: #64748b;
      line-height: 1.4;
      transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mega-featured {
      padding-left: 48px;
      display: flex;
      align-items: flex-start;
    }

    .featured-card {
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      border: 1px solid #e8ecf5;
      border-radius: 16px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      height: fit-content;
      position: sticky;
      top: 48px;
    }

    .featured-card--dark {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      border-color: #334155;
    }

    .featured-badge {
      display: inline-block;
      width: fit-content;
      padding: 6px 12px;
      background: var(--blue-100, #dbeafe);
      color: var(--blue-700);
      border-radius: 6px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .featured-card--dark .featured-badge {
      background: rgba(59, 130, 246, 0.15);
      color: #93c5fd;
    }

    .featured-card h3 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: #0a1630;
      margin: 0;
      line-height: 1.3;
    }

    .featured-card--dark h3 {
      color: white;
    }

    .featured-card p {
      font-size: 0.9rem;
      color: #64748b;
      line-height: 1.6;
      margin: 0;
    }

    .featured-card--dark p {
      color: #cbd5e1;
    }

    .featured-cta {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 22px;
      background: var(--blue-600);
      color: white;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 14px rgba(37, 88, 229, 0.25), 0 1px 3px rgba(0, 0, 0, 0.1);
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .featured-cta::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .featured-cta:hover::before {
      opacity: 1;
    }

    .featured-cta > svg:first-child {
      flex-shrink: 0;
      filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    }

    .featured-cta > span {
      flex: 1;
      text-align: left;
    }

    .featured-cta .cta-arrow {
      flex-shrink: 0;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .featured-cta:hover {
      background: var(--blue-700);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(37, 88, 229, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .featured-cta:hover .cta-arrow {
      transform: translateX(4px);
    }

    .featured-cta:active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(37, 88, 229, 0.3);
    }

    /* Estrutura antiga do mega menu (compatibilidade) */
    .mega-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px 32px;
      padding: 48px 32px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .mega-column {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .mega-column > div {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      border-radius: 12px;
      transition: all 0.2s ease;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
    }

    .mega-column > div:hover {
      background: #f8fafc;
    }

    .mega-column h4 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: #0a1630;
      margin: 0 0 4px;
      line-height: 1.4;
    }

    .mega-column p {
      font-size: 0.875rem;
      color: #64748b;
      margin: 0;
      line-height: 1.5;
    }

    .mega-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .mega-column ul li {
      margin: 0;
    }

    .mega-column ul li a {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 16px;
      color: #0a1630;
      text-decoration: none;
      border-radius: 10px;
      transition: all 0.2s ease;
      border: 1px solid transparent;
    }

    .mega-column ul li a::before {
      content: "";
      display: block;
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      background-color: transparent;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 32px 32px;
      transition: all 0.2s ease;
    }

    .mega-column ul li a:hover {
      background: #f8fafc;
      border-color: #e8ecf5;
    }

    .mega-column ul li a:hover::before {
      transform: scale(1.05);
    }

    .mega-column ul li a > div {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .mega-column ul li a .link-title {
      font-size: 0.94rem;
      font-weight: 600;
      color: #1e293b;
      line-height: 1.3;
    }

    .mega-column ul li a .link-desc {
      font-size: 0.82rem;
      color: #64748b;
      line-height: 1.4;
    }

    /* Ícones específicos para cada item do menu */
    /* Soluções */
    a[href*="visao-geral"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E") !important;
    }
    a[href*="visao-geral"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E") !important;
    }

    a[href*="integracao"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E") !important;
    }
    a[href*="integracao"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E") !important;
    }

    a[href*="plataforma"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cline x1='3' y1='9' x2='21' y2='9'/%3E%3Cline x1='9' y1='21' x2='9' y2='9'/%3E%3C/svg%3E") !important;
    }
    a[href*="plataforma"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cline x1='3' y1='9' x2='21' y2='9'/%3E%3Cline x1='9' y1='21' x2='9' y2='9'/%3E%3C/svg%3E") !important;
    }

    a[href*="consultoria"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E") !important;
    }
    a[href*="consultoria"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E") !important;
    }

    a[href*="importacao"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cpolyline points='19 12 12 19 5 12'/%3E%3C/svg%3E") !important;
    }
    a[href*="importacao"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cpolyline points='19 12 12 19 5 12'/%3E%3C/svg%3E") !important;
    }

    a[href*="exportacao"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cline x1='12' y1='19' x2='12' y2='5'/%3E%3Cpolyline points='5 12 12 5 19 12'/%3E%3C/svg%3E") !important;
    }
    a[href*="exportacao"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cline x1='12' y1='19' x2='12' y2='5'/%3E%3Cpolyline points='5 12 12 5 19 12'/%3E%3C/svg%3E") !important;
    }

    a[href*="compliance"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpolyline points='9 12 11 14 15 10'/%3E%3C/svg%3E") !important;
    }
    a[href*="compliance"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpolyline points='9 12 11 14 15 10'/%3E%3C/svg%3E") !important;
    }

    /* Tecnologia */
    a[href*="zero-trust"]::before, a[href*="virtuais"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Crect x='5' y='11' width='14' height='10' rx='2' ry='2'/%3E%3Ccircle cx='12' cy='16' r='1'/%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4'/%3E%3C/svg%3E") !important;
    }
    a[href*="zero-trust"]:hover::before, a[href*="virtuais"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Crect x='5' y='11' width='14' height='10' rx='2' ry='2'/%3E%3Ccircle cx='12' cy='16' r='1'/%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4'/%3E%3C/svg%3E") !important;
    }

    a[href*="servidores-arquivos"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Crect x='2' y='2' width='20' height='8' rx='2' ry='2'/%3E%3Crect x='2' y='14' width='20' height='8' rx='2' ry='2'/%3E%3Cline x1='6' y1='6' x2='6.01' y2='6'/%3E%3Cline x1='6' y1='18' x2='6.01' y2='18'/%3E%3C/svg%3E") !important;
    }
    a[href*="servidores-arquivos"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='8' rx='2' ry='2'/%3E%3Crect x='2' y='14' width='20' height='8' rx='2' ry='2'/%3E%3Cline x1='6' y1='6' x2='6.01' y2='6'/%3E%3Cline x1='6' y1='18' x2='6.01' y2='18'/%3E%3C/svg%3E") !important;
    }

    a[href*="acesso-seguro"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E") !important;
    }
    a[href*="acesso-seguro"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E") !important;
    }

    a[href*="gestao-documentos"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cpath d='M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z'/%3E%3Cpolyline points='13 2 13 9 20 9'/%3E%3C/svg%3E") !important;
    }
    a[href*="gestao-documentos"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cpath d='M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z'/%3E%3Cpolyline points='13 2 13 9 20 9'/%3E%3C/svg%3E") !important;
    }

    a[href*="emails"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E") !important;
    }
    a[href*="emails"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E") !important;
    }

    a[href*="microsoft-365"]::before, a[href*="google-workspace"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cpath d='M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z'/%3E%3Cpath d='M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z'/%3E%3C/svg%3E") !important;
    }
    a[href*="microsoft-365"]:hover::before, a[href*="google-workspace"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cpath d='M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z'/%3E%3Cpath d='M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z'/%3E%3C/svg%3E") !important;
    }

    /* Segmentos */
    a[href*="importadores"]::before, a[href*="exportadores"]::before, a[href*="trading"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cline x1='16.5' y1='9.4' x2='7.5' y2='4.21'/%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E") !important;
    }
    a[href*="importadores"]:hover::before, a[href*="exportadores"]:hover::before, a[href*="trading"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cline x1='16.5' y1='9.4' x2='7.5' y2='4.21'/%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E") !important;
    }

    a[href*="logistica"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E") !important;
    }
    a[href*="logistica"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E") !important;
    }

    a[href*="escritorios"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") !important;
    }
    a[href*="escritorios"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") !important;
    }

    a[href*="industrias"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cpath d='M2 20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8l-7 5V8l-7 5V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z'/%3E%3C/svg%3E") !important;
    }
    a[href*="industrias"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cpath d='M2 20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8l-7 5V8l-7 5V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z'/%3E%3C/svg%3E") !important;
    }

    a[href*="operacoes-internacionais"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cpath d='M12 2v20M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E") !important;
    }
    a[href*="operacoes-internacionais"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cpath d='M12 2v20M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E") !important;
    }

    /* Sobre e Contato */
    a[href*="quem-somos"]::before, a[href*="nossa-abordagem"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4M12 8h.01'/%3E%3C/svg%3E") !important;
    }
    a[href*="quem-somos"]:hover::before, a[href*="nossa-abordagem"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4M12 8h.01'/%3E%3C/svg%3E") !important;
    }

    a[href*="tecnologia-comercio"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cpolyline points='16 18 22 12 16 6'/%3E%3Cpolyline points='8 6 2 12 8 18'/%3E%3C/svg%3E") !important;
    }
    a[href*="tecnologia-comercio"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cpolyline points='16 18 22 12 16 6'/%3E%3Cpolyline points='8 6 2 12 8 18'/%3E%3C/svg%3E") !important;
    }

    a[href*="seguranca"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E") !important;
    }
    a[href*="seguranca"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E") !important;
    }

    a[href*="fale-conosco"]::before, a[href*="atendimento-comercial"]::before, a[href*="solicitar-demonstracao"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") !important;
    }
    a[href*="fale-conosco"]:hover::before, a[href*="atendimento-comercial"]:hover::before, a[href*="solicitar-demonstracao"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") !important;
    }

    a[href*="suporte-tecnico"]::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.8'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E") !important;
    }
    a[href*="suporte-tecnico"]:hover::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%232558e5' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E") !important;
    }

    .nav-actions {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 600;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: var(--blue-600);
      color: white;
      box-shadow: 0 10px 20px rgba(37, 88, 229, 0.25);
    }

    .btn-ghost {
      border-color: var(--blue-600);
      color: var(--blue-600);
      background: transparent;
    }

    .banner {
      padding: 40px 0 70px;
      position: relative;
    }

    .banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 10% 0%, rgba(37, 88, 229, 0.18), transparent 45%),
        radial-gradient(circle at 90% 20%, rgba(74, 212, 255, 0.2), transparent 40%);
      z-index: 0;
    }

    .banner .container {
      position: relative;
      z-index: 1;
    }

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

    .banner-card {
      background: white;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 36px rgba(7, 22, 55, 0.12);
      display: grid;
      min-height: 100%;
    }

    .banner-media img {
      height: 200px;
      width: 100%;
      object-fit: cover;
    }

    .banner-content {
      padding: 20px 22px 24px;
      display: grid;
      gap: 12px;
    }

    .banner-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(37, 88, 229, 0.12);
      color: var(--blue-700);
      border-radius: 999px;
      padding: 6px 12px;
      font-weight: 600;
      font-size: 0.82rem;
      justify-self: flex-start;
    }

    .banner-content h2 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.35rem;
      color: var(--blue-950);
    }

    .banner-content p {
      color: #3f4f72;
      font-size: 0.98rem;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37, 88, 229, 0.1);
      color: var(--blue-700);
      border-radius: 999px;
      padding: 8px 14px;
      font-weight: 600;
      font-size: 0.85rem;
    }

    .section {
      padding: 70px 0;
    }

    .section-title {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 34px;
    }

    .section-title h2 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 2rem;
      color: var(--blue-950);
    }

    .section-title p {
      color: #425173;
      max-width: 640px;
    }

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

    .card {
      background: white;
      padding: 24px;
      border-radius: var(--radius-sm);
      box-shadow: 0 14px 28px rgba(7, 22, 55, 0.08);
      display: grid;
      gap: 12px;
    }

    .card h3 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.15rem;
      color: var(--blue-900);
    }

    .card p {
      color: #4a5a78;
      font-size: 0.95rem;
    }

    .card span {
      color: var(--blue-700);
      font-weight: 600;
    }

    .split {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 40px;
      align-items: center;
    }

    .split img {
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      height: 320px;
      object-fit: cover;
    }

    .highlight-strip {
      background: linear-gradient(120deg, var(--blue-950), var(--blue-700));
      color: white;
      border-radius: var(--radius);
      padding: 26px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .highlight-strip h3 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.4rem;
    }

    .tag-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .tag {
      padding: 10px 16px;
      background: white;
      border-radius: 999px;
      border: 1px solid var(--slate-300);
      font-weight: 600;
      color: var(--blue-700);
      font-size: 0.9rem;
    }

    .insights-section {
      position: relative;
      padding: 80px 0;
    }

    .insights-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(37, 88, 229, 0.14), rgba(255, 255, 255, 0));
      border-radius: 28px;
    }

    .insights-section .container {
      position: relative;
    }

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

    .insight {
      background: white;
      border-radius: 18px;
      padding: 16px;
      box-shadow: 0 18px 36px rgba(7, 22, 55, 0.12);
      display: grid;
      gap: 14px;
    }

    .insight img {
      height: 170px;
      width: 100%;
      object-fit: cover;
      border-radius: 16px;
    }

    .insight-content {
      padding: 0 6px 6px;
      display: grid;
      gap: 12px;
    }

    .insight-content h4 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.1rem;
    }

    .insight-tag {
      width: 100%;
      justify-content: flex-start;
      background: #eef2ff;
      color: var(--blue-700);
      font-size: 0.82rem;
      box-shadow: inset 0 0 0 1px #d8e3ff;
    }

    .cta {
      padding: 60px 0 90px;
    }

    .cta-box {
      background: linear-gradient(140deg, var(--blue-700), var(--blue-500));
      border-radius: var(--radius);
      padding: 40px;
      color: white;
      display: grid;
      gap: 18px;
      box-shadow: var(--shadow);
    }

    .cta-box h3 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 2rem;
    }

    .office-map {
      position: relative;
      background: #e8ecf3;
      overflow: hidden;
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      margin-top: 40px;
    }

    .office-map-label {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 3;
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(10, 31, 77, 0.8);
      background: rgba(255, 255, 255, 0.85);
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(12, 33, 84, 0.1);
    }

    .office-map-frame {
      width: 100%;
      height: 320px;
    }

    .office-map .leaflet-container {
      background: #e8ecf3;
      font-family: "IBM Plex Sans", sans-serif;
    }

    .office-map .leaflet-control-attribution {
      background: rgba(255, 255, 255, 0.88);
      color: rgba(20, 34, 66, 0.7);
    }

    .office-map .leaflet-control-attribution a {
      color: rgba(20, 34, 66, 0.9);
    }

    .office-map .leaflet-tooltip {
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(12, 33, 84, 0.15);
      color: #0c2154;
      font-size: 12px;
      padding: 4px 8px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .office-map .leaflet-tooltip::before {
      border-right-color: rgba(255, 255, 255, 0.95);
    }

    footer {
      background: var(--blue-950);
      color: white;
      padding: 50px 0 40px;
    }

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

    .footer-grid h4 {
      font-family: "Space Grotesk", sans-serif;
      margin-bottom: 12px;
      font-size: 1rem;
    }

    .footer-grid ul {
      display: grid;
      gap: 8px;
      color: #c7d3f0;
      font-size: 0.9rem;
    }

    .footer-bottom {
      margin-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      padding-top: 18px;
      font-size: 0.85rem;
      color: #b1c2e6;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .nav-overlay {
      display: none;
    }

    .nav-header-mobile {
      display: none;
    }

    @media (max-width: 1080px) {
      /* Tablet: Mega menu em 2 colunas no main + featured */
      .mega-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }

      .mega-content {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .mega-featured {
        padding-left: 0;
        padding-top: 32px;
        border-top: 1px solid #f0f3f8;
      }

      .featured-card {
        position: static;
        max-width: 500px;
        margin: 0 auto;
      }
    }

    @media (max-width: 991px) {
      .nav-toggle {
        display: inline-flex;
      }

      .nav-panel {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(86vw, 360px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow);
        z-index: 250;
        overflow-y: auto;
        pointer-events: none;
      }

      body.nav-open .nav-panel {
        transform: translateX(0);
        pointer-events: auto;
      }

      .nav-header-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 18px;
      }

      .nav-close {
        background: var(--slate-200);
        padding: 8px 12px;
        border-radius: 999px;
        font-weight: 600;
      }

      .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 16px;
      }

      .nav-links a,
      .nav-links button {
        width: 100%;
        text-align: left;
        padding: 12px 14px;
        border-radius: 12px;
        background: #f5f7fd;
        border: 1px solid #e3e8f5;
        box-shadow: 0 6px 14px rgba(7, 22, 55, 0.06);
      }

      .has-mega > .mega-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
      }

      .has-mega .mega-toggle::after {
        margin-left: auto;
      }

      .nav-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
      }

      .mega-menu {
        position: static;
        width: 100%;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        padding: 12px 0 0;
        background: transparent;
        border-radius: 0;
        border-top: none;
        display: none;
      }

      .has-mega.mega-open .mega-menu {
        display: block;
      }

      .mega-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px 0;
      }

      .mega-main {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-right: 0;
        border-right: none;
      }

      .mega-section {
        gap: 12px;
        background: #f8fafc;
        padding: 16px;
        border-radius: 12px;
        border: 1px solid #e8ecf5;
      }

      .mega-section-header {
        gap: 10px;
      }

      .mega-icon {
        font-size: 1.25rem;
      }

      .mega-section-header h4 {
        font-size: 0.95rem;
      }

      .mega-section-header p {
        font-size: 0.8rem;
      }

      .mega-links {
        gap: 6px;
      }

      .mega-links a {
        padding: 12px;
        background: white;
        border: 1px solid #e8ecf5;
        border-radius: 8px;
      }

      .mega-links a:hover {
        padding-left: 12px;
      }

      .mega-links a::before {
        display: none;
      }

      .link-title {
        font-size: 0.9rem;
      }

      .link-desc {
        font-size: 0.8rem;
      }

      .mega-featured {
        padding-left: 0;
        padding-top: 0;
        border-top: none;
      }

      .featured-card {
        position: static;
        padding: 24px 20px;
        margin: 0;
      }

      .featured-card h3 {
        font-size: 1.1rem;
      }

      .featured-card p {
        font-size: 0.85rem;
      }

      .featured-cta {
        padding: 12px 18px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
      }

      .banner-track,
      .split {
        grid-template-columns: 1fr;
      }

      .card-grid,
      .insights-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .highlight-strip {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(7, 22, 55, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 210;
      }

      body.nav-open .nav-overlay {
        opacity: 1;
        pointer-events: auto;
      }

      body.nav-open {
        overflow: hidden;
      }
    }

    @media (max-width: 620px) {
      .topbar-inner {
        justify-content: center;
        text-align: center;
      }

      .lang-switcher {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
      }

      .office-map-label {
        position: static;
        display: inline-block;
        margin: 10px 0;
      }

      .office-map-frame {
        height: 220px;
      }
    }
    .hero {
      position: relative;
      padding: 0 0 70px;
    }

    .hero-slider {
      position: relative;
    }

    .hero-slides {
      position: relative;
      min-height: 420px;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      background: var(--hero-bg, linear-gradient(120deg, #0b2a6c, #1f63ff));
      color: white;
      overflow: hidden;
    }

    .hero-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 20%, rgba(74, 212, 255, 0.35), transparent 55%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.18), transparent 50%);
      opacity: 0.8;
    }

    .hero-slide.is-active {
      opacity: 1;
      pointer-events: auto;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 32px;
      align-items: center;
      min-height: 420px;
      padding: 50px 0 70px;
      position: relative;
      z-index: 1;
    }

    .hero-copy h1 {
      font-family: "Space Grotesk", sans-serif;
      font-size: clamp(2rem, 3.4vw, 3.2rem);
      line-height: 1.05;
      margin-bottom: 16px;
    }

    .hero-copy p {
      font-size: 1.02rem;
      color: rgba(255, 255, 255, 0.88);
      margin-bottom: 22px;
      max-width: 480px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.28);
      padding: 6px 14px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.82rem;
      margin-bottom: 16px;
    }

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

    .hero .btn-primary {
      background: white;
      color: var(--blue-700);
    }

    .hero .btn-ghost {
      border-color: rgba(255, 255, 255, 0.75);
      color: white;
    }

    .hero-visual {
      display: grid;
      justify-items: end;
      gap: 18px;
    }

    .hero-visual-text {
      font-family: "Space Grotesk", sans-serif;
      font-size: clamp(2.6rem, 6.5vw, 5rem);
      line-height: 0.9;
      text-align: right;
      letter-spacing: -0.02em;
    }

    .hero-visual-card {
      width: clamp(180px, 26vw, 260px);
      aspect-ratio: 1 / 1;
      background: linear-gradient(140deg, #7bd1ff, #1e57ff);
      border-radius: 26px;
      display: grid;
      place-items: center;
      box-shadow: 0 28px 44px rgba(3, 15, 38, 0.35);
      transform: rotate(6deg);
    }

    .hero-visual-card span {
      font-family: "Space Grotesk", sans-serif;
      font-size: 2.3rem;
      font-weight: 700;
      color: white;
    }

    .hero-controls {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 22px;
      display: flex;
      align-items: center;
      gap: 20px;
      z-index: 2;
      pointer-events: none;
    }

    .hero-arrow {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      color: white;
      display: grid;
      place-items: center;
      font-size: 1.25rem;
      background: rgba(255, 255, 255, 0.1);
      pointer-events: auto;
      transition: background 0.2s ease, border-color 0.2s ease;
      cursor: pointer;
    }

    .hero-arrow:hover {
      background: rgba(255, 255, 255, 0.18);
      border-color: rgba(255, 255, 255, 0.8);
    }

    .hero-arrow-left {
      order: -1;
    }

    .hero-arrow-right {
      order: 1;
    }

    .hero-progress {
      width: 200px;
      height: 4px;
      background: rgba(255, 255, 255, 0.35);
      border-radius: 999px;
      overflow: hidden;
      order: 0;
    }

    .hero-progress-bar {
      display: block;
      width: 0;
      height: 100%;
      background: white;
    }

    @keyframes heroProgress {
      from {
        width: 0;
      }
      to {
        width: 100%;
      }
    }

    @media (max-width: 991px) {
      .hero-grid {
        grid-template-columns: 1fr;
        min-height: 540px;
        padding: 44px 0 90px;
      }

      .hero-visual {
        justify-items: start;
      }

      .hero-visual-text {
        text-align: left;
      }

      .hero-controls {
        gap: 16px;
      }

      .hero-progress {
        width: 140px;
      }

      .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
      }
    }

    @media (max-width: 620px) {
      .hero-visual-card {
        width: 160px;
      }
    }

    .sub-hero {
      position: relative;
      background: linear-gradient(120deg, #0b2a6c, #1f63ff);
      color: white;
      overflow: hidden;
    }

    .sub-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 18% 30%, rgba(74, 212, 255, 0.35), transparent 55%),
        radial-gradient(circle at 85% 35%, rgba(255, 255, 255, 0.22), transparent 50%);
      opacity: 0.85;
    }

    .sub-hero-inner {
      position: relative;
      z-index: 1;
      min-height: 280px;
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
      align-items: center;
      gap: 24px;
      padding: 50px 0 46px;
    }

    .sub-hero h1 {
      font-family: "Space Grotesk", sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      margin-bottom: 12px;
    }

    .sub-hero p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1rem;
      max-width: 520px;
      margin-bottom: 18px;
    }

    .sub-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 6px 14px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.82rem;
      margin-bottom: 12px;
    }

    .sub-hero-mark {
      justify-self: end;
      display: grid;
      gap: 12px;
      text-align: right;
    }

    .sub-hero-title {
      font-family: "Space Grotesk", sans-serif;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 0.95;
    }

    .sub-hero-card {
      width: clamp(140px, 20vw, 200px);
      aspect-ratio: 1 / 1;
      background: linear-gradient(140deg, #7bd1ff, #1e57ff);
      border-radius: 22px;
      display: grid;
      place-items: center;
      box-shadow: 0 24px 40px rgba(3, 15, 38, 0.3);
      transform: rotate(5deg);
      justify-self: end;
    }

    .sub-hero-card span {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: white;
    }

    .page-hero + .section {
      padding-top: 50px;
    }

.page-hero {
  background: linear-gradient(120deg, #f2f6ff, #e2ebff);
  border-bottom: 1px solid #e0e7f6;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 60px 0 54px;
}

.page-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--blue-950);
  margin-bottom: 14px;
}

.page-hero p {
  color: #3d4f76;
  font-size: 1.02rem;
  max-width: 560px;
}

.page-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.page-card {
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 28px rgba(7, 22, 55, 0.08);
  padding: 22px;
}

.page-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--blue-900);
}

.page-card ul {
  display: grid;
  gap: 8px;
  color: #4a5a78;
  font-size: 0.95rem;
}

.page-card li::before {
  content: "- ";
  color: var(--blue-700);
  font-weight: 600;
}

/* Forms */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 10px 40px rgba(0,0,0,0.03);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-900);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(37, 88, 229, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form {
    padding: 24px;
  }
}

    @media (max-width: 991px) {
      .sub-hero-inner {
        grid-template-columns: 1fr;
        min-height: 260px;
      }

      .sub-hero-mark {
        justify-self: start;
        text-align: left;
      }

      .sub-hero-card {
        justify-self: start;
      }

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