
    /* ====================================================== */
    /* SISTEMA DE VARIAVEIS: CLARO (PADRAO) vs. ESCURO (DARK) */
    /* ====================================================== */
    :root {
      /* TEMA CLARO (PADRÃO) */
      --bg: #f4f7fc;
      --coal: #e2e8f4;
      --card-bg: rgba(255, 255, 255, 0.96);
      --card-hover-bg: rgba(255, 255, 255, 1);
      --text-main: #07132b;
      --text-sub: #445677;
      --text-muted: #64748b;
      --border-color: rgba(0, 45, 154, 0.16);
      
      --royal-blue: #002d9a;          /* Azul Royal Principal */
      --royal-blue-light: #003cc7;    /* Destaques Claro */
      --royal-blue-dark: #001e6b;     /* Tom Abaixo */
      --royal-blue-hover: #00195a;    /* Hover */
      --royal-glow: rgba(0, 45, 154, 0.22);
      
      --nav-bg: rgba(255, 255, 255, 0.88);
      --scrim-bg: radial-gradient(circle at center, rgba(244,247,252,0.20) 0%, rgba(244,247,252,0.44) 60%, rgba(244,247,252,0.68) 100%);
      --grid-opacity: 0.35;
      --shadow-card: 0 10px 30px rgba(0, 45, 154, 0.08);

      --footer-bg: #07132b;
      --footer-text: #ffffff;
      --footer-sub: #a0b2d6;

      --serif: 'Cormorant Garamond', Georgia, serif;
      --ease: cubic-bezier(.2,.8,.2,1);
    }

    html.dark {
      /* TEMA ESCURO (DARK LUXO) */
      --bg: #040814;
      --coal: #081022;
      --card-bg: rgba(8, 16, 34, 0.94);
      --card-hover-bg: rgba(0, 45, 154, 0.2);
      --text-main: #ffffff;
      --text-sub: #b8ccf0;
      --text-muted: #8ca2c0;
      --border-color: rgba(0, 45, 154, 0.4);
      
      --royal-blue: #002d9a;
      --royal-blue-light: #0544d3;
      --royal-blue-dark: #001a5e;
      --royal-blue-hover: #001f6d;
      --royal-glow: rgba(0, 45, 154, 0.45);
      
      --nav-bg: rgba(4, 8, 20, 0.82);
      --scrim-bg: radial-gradient(circle at center, rgba(4,8,20,0.75) 0%, rgba(4,8,20,0.94) 75%, rgba(4,8,20,0.98) 100%);
      --grid-opacity: 0.5;
      --shadow-card: 0 16px 40px rgba(0, 45, 154, 0.45);

      --footer-bg: #02050e;
      --footer-text: #ffffff;
      --footer-sub: #94a8cc;
    }

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

    html, body {
      width: 100%; height: 100%;
      background: var(--bg);
      font-family: 'Inter', -apple-system, system-ui, sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow: hidden; transition: background .35s ease, color .35s ease;
    }

    .frame {
      position: fixed; inset: 10px; border-radius: 22px; overflow: hidden;
      background: var(--bg); border: 1px solid var(--border-color);
      transition: background .35s ease, border-color .35s ease;
    }
    @media (max-width: 640px) {
      .frame { inset: 0; border-radius: 0; border: none; }
    }

    /* BARRA DE PROGRESSO DE ROLAGEM DE 2PX NA COR DO TEMA NO TOPO */
    .scroll-progress-bar {
      position: fixed; top: 0; left: 0; height: 2px; width: 0%; z-index: 999;
      background: linear-gradient(90deg, var(--royal-blue), var(--royal-blue-light));
      box-shadow: 0 0 10px var(--royal-blue);
      transition: width .1s ease-out; pointer-events: none;
    }
    html.dark .scroll-progress-bar {
      background: linear-gradient(90deg, #5b8cff, #002d9a);
      box-shadow: 0 0 10px #5b8cff;
    }

    /* ===== FUNDO FIXO & SCRIM ===== */
    .bg-fixed { position: absolute; inset: 0; z-index: 0; will-change: transform; }
    .bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; background: var(--bg); }
    .bg-scrim { 
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background: var(--scrim-bg); transition: background .35s ease;
    }

    .grid-overlay {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background-image: linear-gradient(rgba(0, 45, 154, 0.08) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(0, 45, 154, 0.08) 1px, transparent 1px);
      background-size: 80px 80px; opacity: var(--grid-opacity); transition: opacity .35s ease;
    }

    .scroll {
      position: absolute; inset: 0; z-index: 2;
      overflow-y: auto; overflow-x: hidden;
      scroll-snap-type: y mandatory; scroll-behavior: smooth; scrollbar-width: none;
    }
    .scroll::-webkit-scrollbar { display: none; }
    .panel { position: relative; min-height: 100vh; width: 100%; scroll-snap-align: start; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }

    /* ===== REVEAL ANIMATIONS ===== */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
    .panel.in .reveal { opacity: 1; transform: none; }
    .d1 { transition-delay: .05s; } .d2 { transition-delay: .14s; } .d3 { transition-delay: .23s; } .d4 { transition-delay: .32s; } .d5 { transition-delay: .41s; }

    /* ====================================================== */
    /* NAVBAR CENTRADA GLASSMORPHIC                             */
    /* ====================================================== */
    .navbar {
      position: absolute; left: 50%; top: 22px; transform: translateX(-50%); z-index: 50;
      display: inline-flex; align-items: center; gap: 8px; flex-wrap: nowrap; white-space: nowrap;
      padding: 8px 24px; border-radius: 999px;
      background: var(--nav-bg);
      border: 1px solid var(--border-color);
      box-shadow: 0 10px 34px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(20px) saturate(1.4);
      user-select: none; transition: all .35s var(--ease);
      animation: navIn .8s ease .25s both;
    }
    @keyframes navIn { from { opacity: 0; transform: translate(-50%, -20px); } to { opacity: 1; transform: translate(-50%, 0); } }

    .nav-brand-logo {
      display: flex; align-items: center; padding-right: 18px; margin-right: 6px;
      border-right: 1px solid var(--border-color); text-decoration: none;
    }
    .nav-brand-logo img { height: 34px; width: auto; display: block; transition: filter .35s ease; }

    /* ITENS DO MENU DESKTOP: ÍCONES LUCIDE + UNDERLINE DE HOVER DE 2PX NA COR DO TEMA */
    .nav-link {
      position: relative; z-index: 1;
      display: inline-flex; align-items: center; gap: 7px;
      color: var(--text-main); text-decoration: none;
      font-size: 13.5px; font-weight: 600; padding: 9px 15px; border-radius: 8px;
      transition: color .25s ease; background: transparent !important;
    }

    .desktop-nav-icon {
      width: 16px; height: 16px; stroke: var(--royal-blue); fill: none;
      stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
      transition: stroke .25s ease, transform .25s ease; flex-shrink: 0;
    }
    html.dark .desktop-nav-icon { stroke: #5b8cff; }

    /* UNDERLINE ELEGANTE DE 2PX NA COR DO TEMA (AZUL ROYAL) */
    .nav-link::after {
      content: ""; position: absolute; bottom: 2px; left: 12px; right: 12px;
      height: 2px; background: var(--royal-blue); border-radius: 2px;
      opacity: 0; transform: scaleX(0); transform-origin: center;
      transition: opacity .25s ease, transform .25s ease;
    }
    html.dark .nav-link::after { background: #5b8cff; }

    .nav-link:hover, .nav-link.is-active {
      color: var(--royal-blue); background: transparent;
    }
    html.dark .nav-link:hover, html.dark .nav-link.is-active {
      color: #5b8cff;
    }

    .nav-link:hover::after, .nav-link.is-active::after {
      opacity: 1; transform: scaleX(1);
    }

    .nav-link:hover .desktop-nav-icon, .nav-link.is-active .desktop-nav-icon {
      transform: translateY(-1px);
    }

    .nav-cta {
      position: relative; z-index: 1; margin-left: 10px;
      color: #fff; text-decoration: none;
      background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
      border: 1px solid rgba(255, 255, 255, 0.25); font-size: 13px; font-weight: 700;
      padding: 9px 22px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em;
      transition: all .25s ease; box-shadow: 0 4px 15px rgba(0, 45, 154, 0.3); cursor: pointer;
    }
    .nav-cta:hover {
      background: linear-gradient(135deg, var(--royal-blue-hover), #001242);
      border-color: var(--royal-blue-light); transform: translateY(-1px);
      box-shadow: 0 8px 25px rgba(0, 45, 154, 0.6);
    }

    .theme-toggle-btn {
      position: relative; z-index: 1; margin-left: 4px; width: 34px; height: 34px;
      border-radius: 50%; border: 1px solid var(--border-color);
      background: rgba(0, 45, 154, 0.08); color: var(--royal-blue);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all .25s ease; outline: none;
    }
    html.dark .theme-toggle-btn {
      background: rgba(255, 255, 255, 0.1); color: #fff;
    }
    .theme-toggle-btn:hover {
      transform: scale(1.08); background: var(--royal-blue); color: #fff;
      border-color: var(--royal-blue-light); box-shadow: 0 4px 15px rgba(0, 45, 154, 0.4);
    }
    .theme-toggle-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* BOTÃO HAMBÚRGUER MOBILE */
    .mobile-hamburger-btn {
      display: none; width: 38px; height: 38px; border-radius: 50%;
      border: 1px solid var(--border-color); background: rgba(0, 45, 154, 0.08);
      color: var(--royal-blue); align-items: center; justify-content: center;
      cursor: pointer; outline: none; transition: all .25s ease;
    }
    html.dark .mobile-hamburger-btn { background: rgba(255, 255, 255, 0.1); color: #fff; }
    .mobile-hamburger-btn:hover { background: var(--royal-blue); color: #fff; }

    /* ====================================================== */
    /* MENU SANDUÍCHE MOBILE TELA CHEIA (FULL-SCREEN MENU)     */
    /* ====================================================== */
    .mobile-menu-overlay {
      position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 300;
      background: var(--bg); backdrop-filter: blur(25px) saturate(1.5);
      display: flex; flex-direction: column; opacity: 0; pointer-events: none;
      transform: translateY(-100%); transition: all .4s cubic-bezier(.2,.8,.2,1);
      overflow-y: auto; padding: 20px;
    }
    .mobile-menu-overlay.active {
      opacity: 1; pointer-events: auto; transform: translateY(0);
    }

    .mobile-menu-header {
      display: flex; justify-content: space-between; align-items: center;
      padding-bottom: 16px; border-bottom: 1px solid var(--border-color);
      margin-bottom: 24px;
    }
    .mobile-brand-logo img { height: 34px; width: auto; display: block; }
    .mobile-header-actions { display: flex; align-items: center; gap: 10px; }

    .mobile-menu-close {
      width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-color);
      background: rgba(0, 45, 154, 0.08); color: var(--text-main); font-size: 18px; font-weight: 700;
      display: flex; align-items: center; justify-content: center; cursor: pointer; outline: none;
      transition: all .25s ease;
    }
    html.dark .mobile-menu-close { background: rgba(255, 255, 255, 0.1); color: #fff; }
    .mobile-menu-close:hover { background: var(--royal-blue); color: #fff; }

    .mobile-menu-content {
      display: flex; flex-direction: column; flex: 1; justify-content: space-between;
      width: 100%; max-width: 500px; margin: 0 auto;
    }
    .mobile-menu-list {
      display: flex; flex-direction: column; gap: 10px; width: 100%;
      padding-left: 10px; /* MARGEM DE EXATAMENTE 10PX DA BORDA ESQUERDA */
    }

    .mobile-nav-item {
      display: flex; align-items: center; gap: 14px;
      text-decoration: none; font-size: 15.5px; font-weight: 700; color: var(--text-main);
      padding: 13px 18px; border-radius: 14px;
      background: var(--card-bg); border: 1px solid var(--border-color);
      box-shadow: var(--shadow-card);
      transition: all .25s ease; width: 100%; text-align: left;
    }
    html.dark .mobile-nav-item { background: rgba(255, 255, 255, 0.05); }

    .mobile-nav-item:hover, .mobile-nav-item:active {
      background: var(--royal-blue); color: #fff; border-color: var(--royal-blue-light);
      transform: translateX(4px); box-shadow: 0 8px 24px rgba(0, 45, 154, 0.3);
    }

    .mobile-nav-icon {
      width: 22px; height: 22px; stroke: var(--royal-blue); fill: none;
      stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0; transition: stroke .25s ease;
    }
    html.dark .mobile-nav-icon { stroke: #5b8cff; }
    .mobile-nav-item:hover .mobile-nav-icon, .mobile-nav-item:active .mobile-nav-icon {
      stroke: #ffffff;
    }

    .mobile-menu-cta {
      margin-top: 26px; margin-left: 10px; width: calc(100% - 10px);
      padding: 15px 24px; border-radius: 999px; border: none; outline: none;
      background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
      font-size: 15px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
      box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4); cursor: pointer; transition: all .3s ease;
    }
    .mobile-menu-cta:hover {
      background: linear-gradient(135deg, #28e16f, #159a8b); transform: translateY(-2px);
      box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
    }

    /* ====================================================== */
    /* BOTÃO FLUTUANTE DO WHATSAPP COM PULSO E BADGE         */
    /* ====================================================== */
    .wsp-float-btn {
      position: fixed; bottom: 28px; right: 28px; z-index: 99;
      width: 62px; height: 62px; border-radius: 50%;
      background: linear-gradient(135deg, #25d366, #128c7e);
      color: #fff; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
      text-decoration: none; transition: all .35s var(--ease);
      animation: wspPulse 2.5s infinite; cursor: pointer; border: none; outline: none;
    }
    .wsp-float-btn:hover {
      transform: scale(1.12) translateY(-3px);
      box-shadow: 0 16px 40px rgba(37, 211, 102, 0.65);
      background: linear-gradient(135deg, #28e16f, #159a8b);
    }
    @keyframes wspPulse {
      0% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
      70% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    .wsp-float-icon { width: 32px; height: 32px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    .wsp-float-badge {
      position: absolute; top: -2px; right: -2px; width: 22px; height: 22px;
      border-radius: 50%; background: #ff3b30; color: #fff; font-size: 11px; font-weight: 800;
      display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
      box-shadow: 0 3px 8px rgba(0,0,0,0.3); animation: badgeBounce 1.5s infinite alternate;
    }
    @keyframes badgeBounce { from { transform: scale(1); } to { transform: scale(1.15); } }

    .wsp-float-tooltip {
      position: absolute; right: 74px; top: 50%; transform: translateY(-50%) scale(0.9);
      transform-origin: right center; opacity: 0; pointer-events: none;
      background: var(--card-bg); color: var(--text-main); font-size: 13px; font-weight: 700;
      padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border-color);
      box-shadow: var(--shadow-card); backdrop-filter: blur(12px); white-space: nowrap;
      transition: all .25s ease;
    }
    .wsp-float-btn:hover .wsp-float-tooltip { opacity: 1; transform: translateY(-50%) scale(1); pointer-events: auto; }

    /* ====================================================== */
    /* JANELINHA DO WHATSAPP (AO LADO NO PC, TELA TODA NO CELULAR) */
    /* ====================================================== */
    .wsp-modal-overlay {
      position: fixed; inset: 0; z-index: 120; display: none;
      background: rgba(4, 8, 20, 0.45); backdrop-filter: blur(8px);
      opacity: 0; transition: opacity .35s ease;
    }
    .wsp-modal-overlay.active { display: block; opacity: 1; }

    .wsp-modal-card {
      position: fixed; bottom: 100px; right: 28px; z-index: 121;
      width: 410px; max-width: calc(100vw - 32px);
      background: var(--card-bg); border: 1px solid var(--border-color);
      border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px rgba(0, 45, 154, 0.35);
      transform: scale(0.85) translateY(20px); transform-origin: bottom right;
      transition: transform .35s var(--ease), opacity .35s ease;
      display: flex; flex-direction: column; text-align: left;
    }
    .wsp-modal-overlay.active .wsp-modal-card {
      transform: scale(1) translateY(0);
    }

    .wsp-modal-close {
      position: absolute; top: 16px; right: 16px; z-index: 10;
      width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-color);
      background: rgba(0, 45, 154, 0.08); color: var(--text-main); display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all .25s ease; outline: none; font-size: 16px; font-weight: 700;
    }
    html.dark .wsp-modal-close { background: rgba(255, 255, 255, 0.1); color: #fff; }
    .wsp-modal-close:hover { background: var(--royal-blue); color: #fff; transform: scale(1.08); }

    .wsp-modal-header {
      padding: 24px 24px 18px; border-bottom: 1px solid var(--border-color);
      background: linear-gradient(135deg, rgba(0, 45, 154, 0.08), transparent);
    }
    .wsp-modal-avatar-group { display: flex; align-items: center; gap: 14px; }
    .wsp-modal-avatar {
      width: 46px; height: 46px; border-radius: 50%;
      background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    .wsp-modal-title { font-size: 18px; font-weight: 800; color: var(--text-main); line-height: 1.25; }
    .wsp-modal-status {
      display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600;
      color: #25d366; margin-top: 4px;
    }
    .wsp-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #25d366; box-shadow: 0 0 8px #25d366; }

    .wsp-modal-body { padding: 22px 24px 26px; }
    
    .btn-wsp-submit {
      width: 100%; padding: 14px 24px; border-radius: 999px; border: none; outline: none;
      background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
      font-size: 15px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4); cursor: pointer; transition: all .3s ease;
      margin-top: 10px;
    }
    .btn-wsp-submit:hover {
      background: linear-gradient(135deg, #28e16f, #159a8b); transform: translateY(-2px);
      box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
    }

    .wsp-direct-link {
      display: block; text-align: center; margin-top: 14px; font-size: 12.5px; font-weight: 600;
      color: var(--text-muted); text-decoration: underline; transition: color .2s ease;
    }
    .wsp-direct-link:hover { color: var(--royal-blue); }

    /* CELULAR: OCUPA A TELA TODA NO CELULAR */
    @media (max-width: 640px) {
      .wsp-modal-overlay {
        background: rgba(4, 8, 20, 0.88); backdrop-filter: blur(16px);
      }
      .wsp-modal-card {
        position: fixed; inset: 0; width: 100%; height: 100%; max-width: 100%; max-height: 100%;
        border-radius: 0; border: none; bottom: 0; right: 0;
        transform: translateY(100%); transform-origin: bottom center;
      }
      .wsp-modal-overlay.active .wsp-modal-card {
        transform: translateY(0);
      }
      .wsp-modal-body {
        overflow-y: auto; flex: 1; padding: 20px 24px 30px;
      }
    }

    /* ====================================================== */
    /* PAINEL 1 — HERO DISPLAY                                */
    /* ====================================================== */
    .hero-content {
      max-width: 1000px; width: 100%; padding: 100px 24px 40px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; margin: 0 auto; z-index: 10;
    }

    .eyebrow-center {
      display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.14em; color: var(--royal-blue); margin-bottom: 18px;
    }
    .eyebrow-center::before, .eyebrow-center::after { content: ""; width: 24px; height: 2px; background: var(--royal-blue); }

    .headline-center {
      font-weight: 800; font-size: clamp(34px, 5.2vw, 72px); line-height: 1.05;
      letter-spacing: -0.03em; color: var(--text-main); max-width: 900px; margin: 0 auto 20px;
      transition: color .35s ease;
    }
    .headline-center .amp {
      font-family: var(--serif); font-style: italic; font-weight: 500; letter-spacing: 0; padding: 0 0.06em;
      background: linear-gradient(100deg, var(--text-main), var(--royal-blue));
      -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    }

    .subtitle-center {
      font-size: 17px; font-weight: 400; color: var(--text-sub); max-width: 720px;
      line-height: 1.6; margin: 0 auto 30px; text-align: center; transition: color .35s ease;
    }

    .cta-center {
      position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 16px;
      background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
      color: #fff; text-decoration: none; padding: 12px 12px 12px 32px; border-radius: 999px;
      font-size: 15px; font-weight: 700; border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 12px 36px var(--royal-glow); transition: all .3s ease; margin: 0 auto; cursor: pointer;
    }
    .cta-center:hover {
      background: linear-gradient(135deg, var(--royal-blue-hover), #001038);
      border-color: var(--royal-blue-light); transform: translateY(-2px);
      box-shadow: 0 18px 48px rgba(0, 45, 154, 0.6);
    }
    .cta-center .arrow {
      width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, 0.18);
      display: inline-flex; align-items: center; justify-content: center; transition: transform .3s var(--ease);
    }
    .cta-center:hover .arrow { transform: translateX(4px); background: var(--royal-blue-light); }
    .cta-center .arrow svg { width: 16px; height: 16px; stroke: #fff; fill: none; }

    .features-center {
      display: flex; justify-content: center; gap: 24px; margin-top: 40px; width: 100%; max-width: 900px;
    }
    .feature-card {
      flex: 1; padding: 20px 24px; border-radius: 16px; text-align: center;
      background: var(--card-bg); border: 1px solid var(--border-color);
      box-shadow: var(--shadow-card); backdrop-filter: blur(16px); transition: all .3s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px); border-color: var(--royal-blue);
      background: var(--card-hover-bg); box-shadow: 0 12px 30px rgba(0, 45, 154, 0.2);
    }
    .feature-card h3 { font-size: 16px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
    .feature-card p { font-size: 13px; line-height: 1.5; color: var(--text-sub); }

    /* ====================================================== */
    /* PAINEL 2 — PADRÃO OURO PEP+                            */
    /* ====================================================== */
    .sec-center { max-width: 900px; margin: 0 auto; padding: 100px 24px 40px; text-align: center; }
    .s2-just { display: block; font-size: clamp(32px, 4vw, 54px); font-weight: 600; font-family: var(--serif); font-style: italic; color: var(--royal-blue); }
    .s2-doit { font-size: clamp(44px, 6.5vw, 92px); font-weight: 800; line-height: 0.95; letter-spacing: -0.03em; margin-top: 4px; color: var(--text-main); }
    .s2-sub { margin: 20px auto 30px; max-width: 600px; font-size: 15px; line-height: 1.65; color: var(--text-sub); text-align: center; }

    .stats-center {
      display: flex; justify-content: center; gap: 20px; margin-top: 30px;
      background: var(--card-bg); border: 1px solid var(--border-color);
      border-radius: 18px; padding: 16px 32px; backdrop-filter: blur(12px); box-shadow: var(--shadow-card);
    }
    .stat-item { padding: 10px 20px; text-align: center; position: relative; }
    .stat-item + .stat-item::before { content: ""; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: var(--border-color); }
    .stat-item .val { font-size: 26px; font-weight: 800; color: var(--royal-blue); }
    .stat-item .lab { margin-top: 4px; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

    /* ====================================================== */
    /* PAINEL 3 — SEÇÃO PROJETOS 100% INFINITA & SEM BURACOS */
    /* ====================================================== */
    .showcase-tilt-container {
      position: absolute; inset: 0; overflow: hidden; background: var(--bg);
      display: flex; flex-direction: column; justify-content: center; align-items: center;
      padding: 80px 20px 20px;
    }
    .show-eyebrow-top {
      position: absolute; top: 85px; left: 50%; transform: translateX(-50%); z-index: 10;
      display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800;
      letter-spacing: 0.18em; text-transform: uppercase; color: var(--royal-blue); text-align: center;
    }
    
    .show-tilt-wrapper {
      position: absolute; left: 50%; top: 54%; transform: translate(-50%, -50%) rotate(-5deg);
      width: 260%; display: flex; flex-direction: column; gap: 36px; z-index: 2; align-items: center;
    }

    .show-track-row {
      display: flex; width: max-content; animation: marqueeRow 50s linear infinite;
    }
    .show-track-row.reverse { animation-direction: reverse; animation-duration: 60s; }

    @keyframes marqueeRow {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .show-card-tilt {
      width: 620px; height: 400px; margin-right: 36px; border-radius: 24px; overflow: hidden;
      border: 1px solid var(--border-color); background: var(--card-bg);
      box-shadow: var(--shadow-card); position: relative; flex-shrink: 0;
      transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; cursor: pointer;
    }
    .show-card-tilt:hover { transform: scale(1.05); z-index: 5; border-color: var(--royal-blue); box-shadow: 0 28px 70px rgba(0, 45, 154, 0.5); }
    .show-card-tilt img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .show-card-tilt:hover img { transform: scale(1.08); }
    
    .show-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(4, 8, 20, 0.94) 0%, rgba(4, 8, 20, 0.4) 55%, transparent 100%);
      padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; text-align: left;
    }
    .show-card-tag {
      align-self: flex-start; background: var(--royal-blue); color: #fff;
      font-size: 11.5px; font-weight: 800; padding: 5px 14px; border-radius: 999px;
      text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px;
    }
    .show-card-title { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.25; }
    .show-card-sub { font-size: 14px; color: #b8ccf0; margin-top: 6px; }

    /* ====================================================== */
    /* SEÇÃO BLOG / ARTICLES DUPLICADOS DOS CARDS DE PROJETOS */
    /* ====================================================== */
    .sec-blog {
      max-width: 1180px; margin: 0 auto; padding: 100px 24px 40px; text-align: center; width: 100%;
    }
    .blog-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; text-align: left;
    }
    .blog-card {
      background: var(--card-bg); border: 1px solid var(--border-color);
      border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card);
      transition: all .35s ease; cursor: pointer; display: flex; flex-direction: column;
    }
    .blog-card:hover { transform: translateY(-6px); border-color: var(--royal-blue); box-shadow: 0 18px 45px rgba(0, 45, 154, 0.25); }
    .blog-img-wrap { position: relative; width: 100%; height: 210px; overflow: hidden; }
    .blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .blog-card:hover .blog-img-wrap img { transform: scale(1.07); }
    
    .blog-badge {
      position: absolute; top: 12px; left: 12px;
      background: var(--royal-blue); color: #fff; font-size: 10.5px; font-weight: 800;
      padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em;
    }
    .blog-content { padding: 22px; display: flex; flex-direction: column; flex: 1; justify-content: space-between; }
    .blog-title { font-size: 17px; font-weight: 800; color: var(--text-main); margin-bottom: 8px; line-height: 1.35; }
    .blog-desc { font-size: 13px; color: var(--text-sub); line-height: 1.55; margin-bottom: 16px; }
    .blog-read-link {
      display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700;
      color: var(--royal-blue); text-transform: uppercase; letter-spacing: 0.05em; margin-top: auto;
    }
    .blog-card:hover .blog-read-link { color: var(--royal-blue-light); }

    /* ====================================================== */
    /* DEPOIMENTOS DE CLIENTES ("O QUE NOSSOS CLIENTES DIZEM") */
    /* ====================================================== */
    .sec-depoimentos {
      max-width: 1180px; margin: 0 auto; padding: 90px 24px 40px; text-align: center; width: 100%;
    }
    .depoimentos-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; text-align: left;
    }
    .depoimento-card {
      background: var(--card-bg); border: 1px solid var(--border-color);
      border-radius: 20px; padding: 28px; box-shadow: var(--shadow-card);
      backdrop-filter: blur(16px); transition: all .35s ease; display: flex; flex-direction: column; justify-content: space-between;
    }
    .depoimento-card:hover { transform: translateY(-5px); border-color: var(--royal-blue); box-shadow: 0 16px 40px rgba(0, 45, 154, 0.2); }
    .depoimento-stars { color: #f59e0b; font-size: 14px; font-weight: 800; display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
    .depoimento-text { font-size: 14px; color: var(--text-sub); line-height: 1.65; font-style: italic; margin-bottom: 20px; }
    .depoimento-user { display: flex; align-items: center; gap: 12px; }
    .depoimento-avatar {
      width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
      color: #fff; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 12px var(--royal-glow);
    }
    .depoimento-name { font-size: 14.5px; font-weight: 800; color: var(--text-main); }
    .depoimento-loc { font-size: 12px; color: var(--text-muted); }

    /* ====================================================== */
    /* MODAL POPUP INTERATIVO DE PROJETOS                    */
    /* ====================================================== */
    .proj-modal-overlay {
      position: fixed; inset: 0; z-index: 100; display: none;
      align-items: center; justify-content: center; padding: 20px;
      background: rgba(4, 8, 20, 0.82); backdrop-filter: blur(20px);
      opacity: 0; transition: opacity .35s ease;
    }
    .proj-modal-overlay.active { display: flex; opacity: 1; }

    .proj-modal-card {
      position: relative; max-width: 860px; width: 100%;
      background: var(--card-bg); border: 1px solid var(--border-color);
      border-radius: 22px; overflow: hidden; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
      transform: scale(0.92); transition: transform .35s var(--ease);
      display: flex; flex-direction: column; text-align: left;
    }
    .proj-modal-overlay.active .proj-modal-card { transform: scale(1); }

    .proj-modal-img-wrap { position: relative; width: 100%; height: 350px; overflow: hidden; }
    .proj-modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    
    .proj-modal-badge {
      position: absolute; top: 16px; left: 16px;
      background: var(--royal-blue); color: #fff; font-size: 11px; font-weight: 800;
      padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em;
    }

    .proj-modal-close {
      position: absolute; top: 16px; right: 16px; z-index: 10;
      width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.3);
      background: rgba(4, 8, 20, 0.7); color: #fff; display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all .25s ease; outline: none; font-size: 18px; font-weight: 700;
    }
    .proj-modal-close:hover { background: var(--royal-blue); border-color: var(--royal-blue-light); transform: scale(1.08); }

    .proj-modal-nav {
      position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
      width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.3);
      background: rgba(4, 8, 20, 0.75); color: #fff; display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all .25s ease; outline: none;
    }
    .proj-modal-nav:hover { background: var(--royal-blue); transform: translateY(-50%) scale(1.08); }
    .proj-modal-nav.prev { left: 16px; }
    .proj-modal-nav.next { right: 16px; }
    .proj-modal-nav svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2.5; }

    .proj-modal-body { padding: 28px 32px 32px; }
    .proj-modal-title { font-size: 24px; font-weight: 800; color: var(--text-main); margin-bottom: 6px; }
    .proj-modal-loc { font-size: 13px; font-weight: 700; color: var(--royal-blue); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
    .proj-modal-desc { font-size: 14.5px; line-height: 1.65; color: var(--text-sub); margin-bottom: 20px; }
    
    .proj-modal-highlights {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
      padding-top: 16px; border-top: 1px solid var(--border-color);
    }
    .proj-highlight-item {
      background: rgba(0, 45, 154, 0.06); padding: 10px 14px; border-radius: 8px; border: 1px solid var(--border-color);
    }
    .proj-highlight-label { font-size: 11px; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
    .proj-highlight-val { font-size: 13px; font-weight: 700; color: var(--text-main); margin-top: 2px; }

    /* ====================================================== */
    /* PAINEL 4 — RETROFIT TCO                                 */
    /* ====================================================== */
    .sec-tco-wrap {
      max-width: 1180px; margin: 0 auto; padding: 70px 24px 20px; text-align: center; width: 100%;
      display: flex; flex-direction: column; justify-content: center; height: 100%;
    }
    
    .sec-tco-header { max-width: 820px; margin: 0 auto; text-align: center; }
    
    .calc-main-2col {
      display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 20px; align-items: stretch;
      max-width: 1160px; margin: 12px auto 0; width: 100%; text-align: left;
    }
    
    .calc-left-box {
      background: var(--card-bg); border: 1px solid var(--border-color);
      border-radius: 20px; padding: 18px 22px; box-shadow: var(--shadow-card);
      backdrop-filter: blur(18px);
    }
    
    .calc-controls-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 10px;
    }
    .calc-slider-group { display: flex; flex-direction: column; gap: 4px; }
    .calc-slider-label { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 700; color: var(--text-main); }
    .calc-slider-val { font-size: 14.5px; font-weight: 800; color: var(--royal-blue); }
    .calc-range { margin: 2px 0 0; }

    /* CONTÊINER DOS 17 PILARES INTEGRADOS */
    .pilares-17-wrap {
      margin-top: 8px; padding: 10px 12px; border-radius: 12px;
      background: rgba(0, 45, 154, 0.03); border: 1px solid var(--border-color);
    }
    .pilares-17-title {
      font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--royal-blue); margin-bottom: 6px; display: flex; align-items: center; gap: 6px;
    }
    .pilares-17-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5px 8px;
    }

    .pilar-checkbox-item {
      display: flex; align-items: center; gap: 6px; padding: 4px 8px; border-radius: 6px;
      background: var(--card-bg); border: 1px solid var(--border-color);
      cursor: pointer; transition: all .2s ease; font-size: 11px; font-weight: 600; color: var(--text-main);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    html.dark .pilar-checkbox-item { background: rgba(255, 255, 255, 0.05); }
    .pilar-checkbox-item:hover { border-color: var(--royal-blue); background: rgba(0, 45, 154, 0.08); }
    .pilar-checkbox-item input { accent-color: var(--royal-blue); width: 13px; height: 13px; cursor: pointer; flex-shrink: 0; }

    .calc-cta-wrap { margin-top: 12px; text-align: center; }
    .calc-cta-wrap .form-submit-cta {
      width: 100%; padding: 9px 16px 9px 24px; font-size: 13px;
    }

    /* COLUNA DA DIREIRA: CARDS DE ECONOMIA */
    .calc-right-stack-single {
      display: flex; flex-direction: column; justify-content: space-between; gap: 8px; text-align: left; height: 100%;
    }
    .calc-res-card {
      background: var(--card-bg); border: 1px solid var(--border-color);
      border-radius: 12px; padding: 12px 16px; box-shadow: var(--shadow-card);
      backdrop-filter: blur(16px); transition: all .25s ease;
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      flex: 1; min-height: 48px;
    }
    .calc-res-card:hover {
      transform: translateX(4px); border-color: var(--royal-blue);
      box-shadow: 0 6px 16px rgba(0, 45, 154, 0.18);
    }
    .calc-res-left {
      display: flex; align-items: center; gap: 10px; flex: 1; overflow: hidden;
    }
    .card-icon-blue {
      width: 20px; height: 20px; stroke: var(--royal-blue); fill: none;
      stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0; display: inline-block;
    }
    html.dark .card-icon-blue { stroke: #5b8cff; }

    .calc-res-card .lbl { font-size: 12.5px; text-transform: uppercase; color: var(--text-muted); font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .calc-res-card .num { font-size: 18px; font-weight: 900; color: var(--royal-blue); white-space: nowrap; }
    html.dark .calc-res-card .num { color: #fff; }

    /* CARD DE PARECER / OPINIÃO DO CENÁRIO ECONÔMICO */
    .calc-opinion-card {
      background: linear-gradient(135deg, rgba(0, 45, 154, 0.12), rgba(0, 45, 154, 0.04));
      border: 1px solid var(--royal-blue); border-radius: 12px; padding: 14px 16px;
      box-shadow: 0 6px 20px rgba(0, 45, 154, 0.15); margin-top: 2px;
      flex: 1.2; display: flex; flex-direction: column; justify-content: center;
    }
    .opinion-header {
      display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.06em; color: var(--royal-blue); margin-bottom: 5px;
    }
    .opinion-header svg { width: 17px; height: 17px; flex-shrink: 0; }
    html.dark .opinion-header { color: #5b8cff; }
    .opinion-text { font-size: 12.5px; line-height: 1.45; color: var(--text-main); font-weight: 500; }

    /* ====================================================== */
    /* SEÇÃO CIDADES ATENDIDAS / PRESENÇA NACIONAL (MAPA 3D TRANSPARENTE FLUTUANTE SEM MOLDURA) */
    /* ====================================================== */
    .sec-capitais-wrap {
      max-width: 1180px; margin: 0 auto; padding: 75px 24px 30px; width: 100%; text-align: center;
      display: flex; flex-direction: column; justify-content: center; height: 100%;
    }
    .capitais-2col-layout {
      display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px; align-items: center;
      max-width: 1200px; margin: 18px auto 0; width: 100%; text-align: left;
    }
    .capitais-map-col {
      display: flex; justify-content: center; align-items: center; position: relative;
    }
    
    .brasil-map-3d-floating {
      position: relative; width: 100%; max-width: 588px; height: auto; display: block;
      filter: drop-shadow(0 20px 42px rgba(0, 45, 154, 0.32));
      transition: transform .4s cubic-bezier(.2,.8,.2,1), filter .4s ease;
      will-change: transform;
    }
    .brasil-map-3d-floating:hover {
      transform: translateY(-8px) scale(1.03);
      filter: drop-shadow(0 30px 60px rgba(0, 45, 154, 0.5));
    }

    .capitais-list-col {
      display: flex; flex-direction: column; gap: 12px;
    }
    .region-block { text-align: left; }
    .region-title { font-size: 11.5px; font-weight: 800; color: var(--royal-blue); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
    .region-chips { display: flex; flex-wrap: wrap; gap: 6px; }
    
    .city-chip {
      font-size: 11.5px; font-weight: 600; color: var(--text-main); background: rgba(0, 45, 154, 0.06);
      padding: 5px 12px; border-radius: 999px; border: 1px solid var(--border-color);
      transition: all .25s ease; text-decoration: none; display: inline-flex; align-items: center; cursor: pointer;
    }
    html.dark .city-chip { background: rgba(255, 255, 255, 0.06); }
    .city-chip:hover { border-color: var(--royal-blue); background: var(--royal-blue); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px var(--royal-glow); }

    /* ====================================================== */
    /* PAINEL 5 — CONTATO COM FORMULÁRIO FLUTUANTE           */
    /* ====================================================== */
    .contact-container-2col {
      max-width: 1180px; width: 100%; margin: 0 auto; padding: 90px 24px 30px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; text-align: left;
    }
    .contact-info-col { display: flex; flex-direction: column; justify-content: center; }
    .contact-title { font-size: clamp(32px, 4.5vw, 56px); font-weight: 800; line-height: 1.05; color: var(--text-main); margin: 10px 0 18px; }
    .contact-desc { font-size: 15.5px; line-height: 1.65; color: var(--text-sub); margin-bottom: 32px; }

    .contact-badge-list { display: flex; flex-direction: column; gap: 16px; }
    .contact-badge-item { display: flex; align-items: center; gap: 14px; }
    .contact-badge-icon {
      width: 38px; height: 38px; border-radius: 50%; background: rgba(0, 45, 154, 0.12);
      color: var(--royal-blue); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px;
      flex-shrink: 0;
    }
    .contact-badge-text { font-size: 14px; font-weight: 600; color: var(--text-main); }

    .contact-form-col.floating-form {
      background: transparent; border: none; box-shadow: none; backdrop-filter: none;
      padding: 0; position: relative; overflow: visible;
    }
    .form-group { margin-bottom: 18px; text-align: left; }
    .form-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-main); margin-bottom: 8px; }
    
    .form-input, .form-select, .form-textarea {
      width: 100%; padding: 14px 18px; border-radius: 14px; font-size: 14.5px;
      background: rgba(0, 45, 154, 0.05); border: 1px solid var(--border-color);
      color: var(--text-main); outline: none; transition: all .25s ease;
      font-family: inherit;
    }
    html.dark .form-input, html.dark .form-select, html.dark .form-textarea {
      background: rgba(255, 255, 255, 0.06);
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--royal-blue); background: rgba(0, 45, 154, 0.09);
      box-shadow: 0 4px 20px rgba(0, 45, 154, 0.15); transform: translateY(-1px);
    }
    .form-select option { background: var(--bg); color: var(--text-main); }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .form-submit-cta {
      position: relative; overflow: hidden; width: 100%;
      display: inline-flex; align-items: center; justify-content: center; gap: 16px;
      background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
      color: #fff; text-decoration: none; padding: 12px 16px 12px 32px; border-radius: 999px;
      font-size: 15px; font-weight: 700; border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 12px 36px var(--royal-glow); transition: all .3s ease; margin-top: 10px; cursor: pointer;
    }
    .form-submit-cta:hover {
      background: linear-gradient(135deg, var(--royal-blue-hover), #001038);
      border-color: var(--royal-blue-light); transform: translateY(-2px);
      box-shadow: 0 18px 48px rgba(0, 45, 154, 0.6);
    }
    .form-submit-cta .arrow {
      width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, 0.18);
      display: inline-flex; align-items: center; justify-content: center; transition: transform .3s var(--ease);
      flex-shrink: 0;
    }
    .form-submit-cta:hover .arrow { transform: translateX(4px); background: var(--royal-blue-light); }
    .form-submit-cta .arrow svg { width: 16px; height: 16px; stroke: #fff; fill: none; }

    /* ====================================================== */
    /* SEÇÃO MAPA GOOGLE LARGURA TOTAL (FULL-WIDTH MAP)       */
    /* ====================================================== */
    .sec-maps-fullwidth { width: 100%; text-align: center; padding: 40px 0 0; }
    .maps-card-fullwidth {
      width: 100%; height: 440px; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
    }
    .maps-card-fullwidth iframe { width: 100%; height: 100%; border: none; }

    /* ====================================================== */
    /* CARD / FAIXA DO WHATSAPP LARGURA TOTAL (FULL-WIDTH BANNER) */
    /* ====================================================== */
    .banner-whatsapp-fullwidth {
      width: 100%; background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue), #001242);
      color: #fff; padding: 50px 24px; text-align: center; position: relative; overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 45, 154, 0.35);
    }
    .banner-whatsapp-fullwidth::before {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(circle at center, rgba(255,255,255,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .banner-whatsapp-content { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
    .banner-whatsapp-title { font-size: clamp(24px, 3.8vw, 44px); font-weight: 800; margin-bottom: 10px; line-height: 1.15; }
    .banner-whatsapp-sub { font-size: 15px; color: #b8ccf0; max-width: 720px; margin: 0 auto 28px; line-height: 1.6; }
    .banner-whatsapp-buttons { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
    
    .btn-wsp-green {
      background: #25d366; color: #fff; font-size: 14.5px; font-weight: 800; text-decoration: none;
      padding: 14px 28px; border-radius: 999px; display: inline-flex; align-items: center; gap: 10px;
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); transition: all .3s ease; border: none; cursor: pointer;
    }
    .btn-wsp-green:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6); }

    .btn-wsp-phone {
      background: #fff; color: var(--royal-blue); font-size: 14.5px; font-weight: 800; text-decoration: none;
      padding: 14px 28px; border-radius: 999px; display: inline-flex; align-items: center; gap: 10px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); transition: all .3s ease; border: none;
    }
    .btn-wsp-phone:hover { background: var(--bg); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3); }

    /* BARRA DE DIFERENCIAIS DE LARGURA TOTAL */
    .bar-fullwidth-highlights {
      width: 100%; background: var(--royal-blue-dark); color: #fff; padding: 18px 24px;
      display: flex; justify-space-around; align-items: center; flex-wrap: wrap; gap: 20px;
      font-size: 13px; font-weight: 600; border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
    .bar-highlight-item { display: flex; align-items: center; gap: 10px; }
    .bar-highlight-item svg { width: 20px; height: 20px; stroke: #fff; fill: none; flex-shrink: 0; }

    /* ====================================================== */
    /* RODAPÉ MODERNO & COMPLETO                              */
    /* ====================================================== */
    .site-footer {
      background: var(--footer-bg); color: var(--footer-text);
      padding: 70px 24px 30px; border-top: 1px solid var(--border-color);
      position: relative; overflow: hidden; width: 100%; text-align: left;
    }

    .footer-top-highlight {
      max-width: 1000px; margin: 0 auto 60px; display: flex; justify-space-around;
      align-items: flex-start; text-align: center; gap: 40px; padding-bottom: 50px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .ft-h-item { display: flex; flex-direction: column; align-items: center; max-width: 380px; }
    .ft-h-icon-circle {
      width: 76px; height: 76px; border-radius: 50%; background: var(--royal-blue);
      color: #fff; display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px; box-shadow: 0 10px 28px rgba(0, 45, 154, 0.4);
      transition: transform .3s ease; cursor: pointer;
    }
    .ft-h-item:hover .ft-h-icon-circle { transform: scale(1.08); background: var(--royal-blue-light); }
    .ft-h-icon-circle svg { width: 34px; height: 34px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    
    .ft-h-label { font-size: 16px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--footer-text); margin-bottom: 8px; }
    .ft-h-desc { font-size: 13.5px; line-height: 1.6; color: var(--footer-sub); }

    .footer-4col-grid {
      max-width: 1180px; margin: 0 auto 50px; display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
    }
    .footer-col-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 20px; }
    .footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer-links-list a {
      color: var(--footer-sub); text-decoration: none; font-size: 13.5px;
      transition: color .2s ease;
    }
    .footer-links-list a:hover { color: var(--royal-blue-light); }

    .social-icons-row { display: flex; gap: 12px; margin-top: 16px; }
    .social-icon-btn {
      width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.08);
      color: #fff; display: flex; align-items: center; justify-content: center;
      transition: all .25s ease; border: 1px solid rgba(255, 255, 255, 0.15); text-decoration: none;
    }
    .social-icon-btn:hover { background: var(--royal-blue); transform: translateY(-3px); border-color: var(--royal-blue-light); }
    .social-icon-btn svg { width: 18px; height: 18px; fill: currentColor; }

    .footer-bottom-bar {
      max-width: 1180px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--footer-sub);
    }

    /* RESPONSIVIDADE PARA TELAS MENORES QUE 960PX */
    @media (max-width: 960px) {
      .nav-link, .nav-cta { display: none !important; }
      .mobile-hamburger-btn { display: flex !important; }
      .navbar { width: 92%; max-width: 460px; padding: 6px 14px; justify-content: space-between; top: 14px; }
      .nav-brand-logo { border-right: none; margin-right: 0; padding-right: 0; }

      .hero-content { padding: 90px 16px 30px; }
      .headline-center { font-size: clamp(28px, 6.8vw, 42px); }
      .subtitle-center { font-size: 15px; }
      .features-center { flex-direction: column; gap: 14px; }

      .sec-center { padding: 80px 16px 30px; }
      .s2-doit { font-size: clamp(34px, 8vw, 56px); }
      .stats-center { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 16px; }
      .stat-item + .stat-item::before { display: none; }

      .show-tilt-wrapper { width: 340%; gap: 20px; }
      .show-card-tilt { width: 310px; height: 210px; margin-right: 18px; border-radius: 16px; }
      .show-card-overlay { padding: 18px; }
      .show-card-title { font-size: 16px; }

      .blog-grid, .depoimentos-grid, .footer-4col-grid, .calc-main-2col, .calc-controls-grid, .capitais-2col-layout, .contact-container-2col {
        grid-template-columns: 1fr !important; gap: 20px !important;
      }
      .pilares-17-grid { grid-template-columns: 1fr !important; gap: 6px !important; }
      .pilar-checkbox-item { grid-column: span 1 !important; white-space: normal; }

      .footer-top-highlight { flex-direction: column; align-items: center; gap: 30px; }
      .form-row-2 { grid-template-columns: 1fr; }
      .bar-fullwidth-highlights { flex-direction: column; text-align: center; }

      .wsp-float-btn { bottom: 20px; right: 20px; width: 54px; height: 54px; }
      .wsp-float-icon { width: 28px; height: 28px; }

      .sec-tco-wrap, .sec-capitais-wrap { padding: 75px 16px 20px; height: auto; }
      .calc-left-box { padding: 14px; }
      .brasil-map-3d-floating { max-width: 320px; margin: 0 auto; }
      
      .proj-modal-card { max-height: 90vh; overflow-y: auto; }
      .proj-modal-img-wrap { height: 220px; }
      .proj-modal-highlights { grid-template-columns: 1fr; }
      .proj-modal-body { padding: 20px; }
      .footer-bottom-bar { flex-direction: column; gap: 10px; text-align: center; }
    }

    @media (max-width: 480px) {
      .headline-center { font-size: 26px; }
      .cta-center, .form-submit-cta { width: 100%; justify-content: center; padding: 12px 18px; font-size: 13.5px; }
      .stats-center { grid-template-columns: 1fr; }
      .banner-whatsapp-buttons { flex-direction: column; width: 100%; }
      .btn-wsp-green, .btn-wsp-phone { width: 100%; justify-content: center; }
    }
  

/* ====================================================== */
/* PAGINAS INTERNAS DE BLOG (LISTAGEM + POST)             */
/* Escopadas em html.doc para nao afetar paginas em modo  */
/* painel (scroll-snap) como a home e servicos.           */
/* ====================================================== */
html.doc, html.doc body { overflow: auto; height: auto; }
html.doc body { background: var(--bg); }
html.doc .navbar { position: fixed; }
.bg-fixed-blog {
  position: fixed; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(0,45,154,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,45,154,0.06) 1px, transparent 1px);
  background-size: 80px 80px; opacity: var(--grid-opacity); pointer-events: none;
}
.blog-page-wrap { position: relative; z-index: 2; min-height: 100vh; display: flex; flex-direction: column; }
.blog-page-main { flex: 1; }

/* Cabecalho da area de blog */
.blog-head { max-width: 900px; margin: 0 auto; padding: 140px 24px 20px; text-align: center; }
.blog-head .eyebrow-center { justify-content: center; }
.blog-head h1 { font-weight: 800; font-size: clamp(30px, 4.5vw, 52px); line-height: 1.1; color: var(--text-main); letter-spacing: -0.02em; }
.blog-head p { margin: 14px auto 0; max-width: 660px; font-size: 15.5px; line-height: 1.65; color: var(--text-sub); }

/* Grid de listagem */
.blog-listing-grid { max-width: 1180px; margin: 30px auto 0; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Artigo (post) */
.post-container { max-width: 820px; margin: 0 auto; padding: 120px 24px 40px; }
.post-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--royal-blue); text-decoration: none; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.04em; }
.post-back:hover { color: var(--royal-blue-light); }
.post-badge { display: inline-block; background: var(--royal-blue); color: #fff; font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.post-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--text-main); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 12px; }
.post-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 26px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.post-cover { width: 100%; max-height: 440px; object-fit: cover; border-radius: 16px; margin-bottom: 30px; border: 1px solid var(--border-color); box-shadow: var(--shadow-card); }
.post-body { color: var(--text-sub); font-size: 16.5px; line-height: 1.85; }
.post-body p { margin-bottom: 18px; }
.post-body h2 { font-size: 24px; color: var(--text-main); font-weight: 800; margin: 34px 0 12px; }
.post-body h3 { font-size: 19px; color: var(--text-main); font-weight: 700; margin: 26px 0 10px; }
.post-body ul, .post-body ol { margin: 0 0 20px 24px; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--royal-blue); text-decoration: underline; }
.post-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; display: block; border: 1px solid var(--border-color); }
.post-body strong, .post-body b { color: var(--text-main); }
.post-body blockquote { border-left: 3px solid var(--royal-blue); padding: 6px 18px; margin: 20px 0; color: var(--text-main); font-style: italic; background: rgba(0,45,154,0.04); border-radius: 0 10px 10px 0; }
.post-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.post-body td, .post-body th { border: 1px solid var(--border-color); padding: 9px 12px; text-align: left; }
.post-body th { background: rgba(0,45,154,0.06); color: var(--text-main); font-weight: 700; }
.post-cta { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border-color); text-align: center; }

/* Navegacao entre posts */
.post-nav { max-width: 820px; margin: 0 auto; padding: 0 24px 20px; display: flex; justify-content: space-between; gap: 16px; }
.post-nav a { flex: 1; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 14px; padding: 14px 18px; text-decoration: none; box-shadow: var(--shadow-card); transition: all .25s ease; }
.post-nav a:hover { border-color: var(--royal-blue); transform: translateY(-3px); }
.post-nav .pn-label { font-size: 11px; text-transform: uppercase; color: var(--text-muted); font-weight: 700; letter-spacing: 0.05em; }
.post-nav .pn-title { font-size: 14px; color: var(--text-main); font-weight: 700; margin-top: 4px; line-height: 1.3; }
.post-nav .next { text-align: right; }

@media (max-width: 960px) {
  .blog-listing-grid { grid-template-columns: 1fr; }
  .post-container { padding-top: 100px; }
  .post-nav { flex-direction: column; }
}

/* ====================================================== */
/* PAGINAS DE CONTEUDO (SERVICOS / PRODUTOS / SOBRE)      */
/* ====================================================== */
.page-section { max-width: 1040px; margin: 0 auto; padding: 10px 24px 30px; }
.page-section.wide { max-width: 1180px; }
.servico-block {
  background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 20px;
  padding: 32px; box-shadow: var(--shadow-card); margin-bottom: 22px; backdrop-filter: blur(14px);
}
.servico-block .svc-eyebrow { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--royal-blue); margin-bottom: 8px; }
.servico-block h2 { font-size: clamp(22px,2.6vw,30px); color: var(--text-main); font-weight: 800; margin-bottom: 10px; letter-spacing: -0.01em; }
.servico-block .lead { color: var(--text-sub); font-size: 15.5px; line-height: 1.7; margin-bottom: 18px; }
.servico-block h3 { font-size: 15px; color: var(--text-main); font-weight: 700; margin: 18px 0 10px; }
.servico-block p { color: var(--text-sub); font-size: 14.5px; line-height: 1.7; margin-bottom: 12px; }

.steps-list { list-style: none; counter-reset: step; display: grid; gap: 10px; }
.steps-list li {
  position: relative; padding: 12px 16px 12px 54px; background: rgba(0,45,154,0.04);
  border: 1px solid var(--border-color); border-radius: 12px; color: var(--text-main); font-size: 14.5px; line-height: 1.5;
}
html.dark .steps-list li { background: rgba(255,255,255,0.04); }
.steps-list li::before {
  counter-increment: step; content: counter(step); position: absolute; left: 12px; top: 12px;
  width: 30px; height: 30px; border-radius: 50%; background: var(--royal-blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px;
}

.check-list { list-style: none; display: grid; gap: 8px; }
.check-list li { position: relative; padding-left: 28px; color: var(--text-sub); font-size: 14.5px; line-height: 1.6; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--royal-blue); font-weight: 800; }

/* Grid de solucoes / produtos */
.solucoes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solucao-card {
  background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 18px;
  padding: 24px; box-shadow: var(--shadow-card); transition: all .3s ease; display: flex; flex-direction: column;
}
.solucao-card:hover { transform: translateY(-5px); border-color: var(--royal-blue); box-shadow: 0 16px 40px rgba(0,45,154,0.18); }
.solucao-card .sc-tag { align-self: flex-start; background: rgba(0,45,154,0.1); color: var(--royal-blue); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.solucao-card h3 { font-size: 18px; color: var(--text-main); font-weight: 800; margin-bottom: 10px; }
.solucao-card p { font-size: 13.5px; color: var(--text-sub); line-height: 1.6; margin-bottom: 12px; }
.solucao-card ul { list-style: none; display: grid; gap: 6px; margin-top: auto; }
.solucao-card li { position: relative; padding-left: 18px; font-size: 13px; color: var(--text-sub); line-height: 1.5; }
.solucao-card li::before { content: "•"; position: absolute; left: 4px; color: var(--royal-blue); font-weight: 800; }

/* Grid de produtos exclusivos com imagem */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prod-card {
  background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-card); transition: all .3s ease; cursor: pointer; display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-5px); border-color: var(--royal-blue); box-shadow: 0 16px 40px rgba(0,45,154,0.2); }
.prod-card .pc-img { width: 100%; height: 190px; overflow: hidden; background: #eef2fb; }
.prod-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prod-card:hover .pc-img img { transform: scale(1.06); }
.prod-card .pc-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.prod-card h3 { font-size: 17px; color: var(--text-main); font-weight: 800; margin-bottom: 8px; }
.prod-card p { font-size: 13.5px; color: var(--text-sub); line-height: 1.6; }

@media (max-width: 960px) {
  .solucoes-grid, .prod-grid { grid-template-columns: 1fr; }
  .servico-block { padding: 22px; }
}

/* Variantes usadas nos paineis de Servicos (modo scroll-snap) */
.steps-list.cols2 { grid-template-columns: 1fr 1fr; }
.steps-list.compact li { padding: 9px 14px 9px 46px; font-size: 13.5px; }
.steps-list.compact li::before { width: 26px; height: 26px; top: 9px; left: 10px; font-size: 12px; }
.svc-panel-box { max-width: 860px; margin: 20px auto 0; text-align: left; }
.svc-panel-box .lead { color: var(--text-sub); font-size: 15px; line-height: 1.7; text-align: center; margin-bottom: 20px; }
@media (max-width: 960px) { .steps-list.cols2 { grid-template-columns: 1fr; } }

/* ====================================================== */
/* GRID DO BLOG MAIS ORGANIZADA — CARDS UNIFORMES         */
/* ====================================================== */
.blog-listing-grid { grid-auto-rows: 1fr; align-items: stretch; }
.blog-listing-grid .blog-card { height: 100%; }
.blog-listing-grid .blog-img-wrap { height: 190px; flex-shrink: 0; }
.blog-listing-grid .blog-title {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 2.6em;
}
.blog-listing-grid .blog-desc {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 3.9em;
}
@media (min-width: 601px) and (max-width: 960px) {
  .blog-listing-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
