@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

  :root{
    --bg:#f2f7fc;
    --bg-2:#e8f0f8;
    --card:#ffffff;
    --card-soft:rgba(255,255,255,.78);
    --ink:#0f2438;
    --muted:#566b80;
    --line:#d5e1ec;
    --line-soft:#e5edf5;
    --primary:#0b2f53;
    --primary-2:#0b4d79;
    --primary-3:#1e9bd7;
    --ok:#046b54;
    --warn:#925d0a;
    --shadow-1:0 22px 44px rgba(10,33,58,.12);
    --shadow-2:0 10px 24px rgba(11,34,58,.08);
  }
  *{box-sizing:border-box}
  html,body{height:100%}
  body{
    margin:0;
    font-family:'Manrope','Avenir Next','Segoe UI',Arial,sans-serif;
    color:var(--ink);
    background:
      radial-gradient(1000px 520px at -8% -10%, rgba(32,125,191,.13) 0%, rgba(32,125,191,0) 64%),
      radial-gradient(720px 320px at 110% -8%, rgba(12,74,120,.08) 0%, rgba(12,74,120,0) 68%),
      linear-gradient(180deg, #f9fcff 0%, #edf3f9 100%);
    letter-spacing:.01em;
  }
  .wrap{min-height:100vh;display:grid;place-items:center;padding:24px}
  .card{
    width:min(1240px,96vw);
    border:1px solid #cfdeeb;
    border-radius:24px;
    background:#ffffff;
    box-shadow:var(--shadow-1);
    padding:24px;
    backdrop-filter:blur(6px);
    animation:fadeUp .35s ease-out;
  }
  .head{
    display:flex;align-items:center;justify-content:space-between;gap:16px;
    position:relative;overflow:hidden;
    margin-bottom:16px;padding:22px 24px;border-radius:20px;
    background:linear-gradient(128deg,#062743 0%,#0a4572 52%,#0f7db1 100%);
    color:#f4fbff;
    border:1px solid #0b4c78;
    box-shadow:0 18px 34px rgba(9,35,62,.24);
  }
  .head::before{
    content:"";
    position:absolute;right:-70px;top:-80px;
    width:260px;height:260px;border-radius:50%;
    background:radial-gradient(circle at 40% 40%, rgba(255,255,255,.18), rgba(255,255,255,0) 70%);
    pointer-events:none;
  }
  .head::after{
    content:"";
    position:absolute;left:40%;bottom:-68px;
    width:460px;height:160px;border-radius:999px;
    background:linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,0));
    transform:rotate(-6deg);
    pointer-events:none;
  }
  .head > *{position:relative;z-index:1}
  .quick-nav{
    display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;margin:10px 0 16px;
  }
  .about-menu{
    position:relative;
  }
  .about-menu > summary{
    list-style:none;
  }
  .about-menu > summary::-webkit-details-marker{
    display:none;
  }
  .about-panel{
    position:absolute;
    top:42px;
    left:0;
    width:min(420px,88vw);
    border:1px solid #bdd2e6;
    border-radius:16px;
    background:
      radial-gradient(300px 140px at 100% -20%, rgba(116,120,255,.14), rgba(116,120,255,0) 72%),
      linear-gradient(158deg,#ffffff 0%,#f6faff 100%);
    box-shadow:0 16px 30px rgba(13,43,70,.16);
    padding:12px;
    z-index:40;
  }
  .about-k{
    margin:0 0 4px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    color:#5a7490;
    text-transform:uppercase;
  }
  .about-text{
    margin:0;
    color:#183a59;
    font-size:13px;
    line-height:1.5;
    font-weight:700;
  }
  .about-divider{
    margin:8px 0;
    border-top:1px solid #d5e3f1;
  }
  .auth-mini{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
  }
  .account-pill{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:34px;
    border:1px solid #c8d8e8;
    border-radius:999px;
    background:#f7fbff;
    color:#27425c;
    padding:0 10px;
    font-size:12px;
    font-weight:800;
    max-width:340px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
  .meta-hidden{
    display:none!important;
  }
  .admin-mini{
    display:none;
  }
  .admin-mini.on{
    display:inline-flex;
  }
  .auth-mini .mini-btn{
    margin-top:0;
    min-height:34px;
  }
  .auth-mini .state-mini{
    font-size:12px;
    color:#4c637a;
    font-weight:700;
    margin-left:4px;
  }
  .lang-select{
    min-height:36px;border-radius:999px;border:1px solid #b4cbe0;background:#fff;color:#15324d;
    padding:0 14px;font-size:12px;font-weight:800;letter-spacing:.03em;
    box-shadow:0 5px 12px rgba(16,41,66,.10);
  }
  .governor-rank{
    border:1px solid #bfd5ea;
    border-radius:24px;
    background:
      radial-gradient(880px 280px at 100% -18%, rgba(120,163,255,.18), rgba(120,163,255,0) 72%),
      linear-gradient(160deg,#ffffff 0%,#f5faff 52%,#edf6ff 100%);
    padding:18px;
    margin:0 0 14px;
    box-shadow:0 18px 32px rgba(17,47,76,.10);
  }
  .governor-rank-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:16px;
    margin-bottom:14px;
  }
  .governor-rank-actions{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
  }
  .governor-rank-info-trigger{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:36px;
    min-width:36px;
    height:36px;
    border-radius:999px;
    border:1px solid #b7cae0;
    background:rgba(255,255,255,.78);
    color:#153550;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 8px 18px rgba(15,43,70,.08);
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  }
  .governor-rank-info-trigger:hover,
  .governor-rank-info-trigger:focus-visible{
    transform:translateY(-1px);
    background:#ffffff;
    box-shadow:0 12px 22px rgba(15,43,70,.12);
    outline:none;
  }
  .ranking-popup{
    position:fixed;
    inset:0;
    z-index:120;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:rgba(10,28,47,.28);
    backdrop-filter:blur(4px);
  }
  .ranking-popup.is-open{
    display:flex;
    animation:rankingPopupFade .2s ease;
  }
  .ranking-popup-card{
    width:min(760px, 100%);
    max-height:min(88vh, 820px);
    overflow:auto;
    border-radius:22px;
    border:1px solid #d6e3ef;
    background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    box-shadow:0 28px 64px rgba(10,33,58,.22);
    padding:22px;
    animation:rankingPopupSlide .24s ease;
  }
  .ranking-popup-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:16px;
  }
  .ranking-popup-title{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:24px;
    color:#102f4b;
  }
  .ranking-popup-sub{
    margin:6px 0 0;
    max-width:560px;
    color:#60768f;
    font-size:13px;
    line-height:1.5;
    font-weight:700;
  }
  .ranking-popup-close{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:36px;
    min-width:36px;
    height:36px;
    border-radius:999px;
    border:1px solid #d3dfeb;
    background:#ffffff;
    color:#173652;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
  }
  .ranking-popup-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    margin-bottom:16px;
  }
  .ranking-popup-section{
    position:relative;
    padding:16px;
    border-radius:18px;
    border:1px solid #d9e6f2;
    background:#ffffff;
    box-shadow:0 10px 20px rgba(12,40,66,.06);
  }
  .ranking-popup-section h4{
    margin:0 0 8px;
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    font-weight:800;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:#123551;
  }
  .ranking-popup-section p{
    margin:0 0 10px;
    color:#5f748d;
    font-size:13px;
    line-height:1.55;
    font-weight:600;
  }
  .ranking-popup-ranges{
    display:grid;
    gap:6px;
  }
  .ranking-popup-ranges span{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    font-size:12px;
    color:#173652;
    font-weight:700;
  }
  .ranking-popup-ranges b{
    font-weight:800;
  }
  .ranking-popup-term{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:4px;
    border:0;
    padding:0;
    background:transparent;
    color:inherit;
    font:inherit;
    cursor:help;
  }
  .ranking-popup-term::after{
    content:attr(data-tip);
    position:absolute;
    left:0;
    bottom:calc(100% + 8px);
    width:max-content;
    max-width:220px;
    padding:8px 10px;
    border-radius:10px;
    background:#0f172a;
    color:#f8fbff;
    font-size:11px;
    line-height:1.35;
    font-weight:700;
    box-shadow:0 12px 26px rgba(15,23,42,.22);
    opacity:0;
    pointer-events:none;
    transform:translateY(4px);
    transition:opacity .16s ease, transform .16s ease;
    white-space:normal;
    z-index:2;
  }
  .ranking-popup-term:hover::after,
  .ranking-popup-term:focus-visible::after{
    opacity:1;
    transform:translateY(0);
  }
  .ranking-popup-term:focus-visible{
    outline:2px solid rgba(15,125,177,.24);
    outline-offset:3px;
    border-radius:8px;
  }
  .ranking-popup-example{
    padding:18px;
    border-radius:20px;
    border:1px solid #d8e5f1;
    background:
      radial-gradient(380px 140px at 100% -20%, rgba(72,174,255,.14), rgba(72,174,255,0) 72%),
      linear-gradient(180deg,#fdfefe 0%,#f5faff 100%);
  }
  .ranking-popup-example-label{
    margin:0 0 10px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#61758e;
  }
  .ranking-popup-example-card{
    width:min(320px,100%);
    padding:14px;
    border-radius:16px;
    background:#ffffff;
    border:1px solid #d9e6f1;
    box-shadow:0 10px 20px rgba(12,40,66,.06);
  }
  .ranking-popup-example-head{
    display:grid;
    gap:2px;
    margin-bottom:12px;
  }
  .ranking-popup-example-head strong{
    font-size:15px;
    color:#123551;
  }
  .ranking-popup-example-head span{
    font-size:12px;
    color:#69819a;
    font-weight:700;
  }
  .ranking-popup-example-metrics{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px;
  }
  .ranking-popup-example-metric{
    padding:10px 8px;
    border-radius:12px;
    background:#f7fbff;
    text-align:center;
  }
  .ranking-popup-example-metric b{
    display:block;
    font-size:16px;
    color:#123551;
  }
  .ranking-popup-example-metric span{
    display:block;
    margin-top:3px;
    font-size:10px;
    text-transform:uppercase;
    color:#89a0b8;
    font-weight:800;
  }
  .ranking-popup-example-copy{
    margin:12px 0 0;
    max-width:560px;
    color:#526981;
    font-size:13px;
    line-height:1.55;
    font-weight:700;
  }
  .ranking-popup-positive{color:#0a8f61}
  .ranking-popup-negative{color:#cf3b3b}
  .ranking-popup-neutral{color:#6b7280}
  @keyframes rankingPopupFade{
    from{opacity:0}
    to{opacity:1}
  }
  @keyframes rankingPopupSlide{
    from{opacity:0;transform:translateY(12px)}
    to{opacity:1;transform:translateY(0)}
  }
  .governor-rank-title{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:20px;
    color:#122c44;
  }
  .governor-rank-sub{
    margin:4px 0 0;
    font-size:13px;
    line-height:1.45;
    color:#5b738c;
    font-weight:700;
    max-width:760px;
  }
  .governor-rank-strip{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
    max-width:980px;
    margin:0 auto;
  }
  .governor-card{
    padding:16px;
    border:1px solid #e2e8f0;
    border-radius:14px;
    background:#ffffff;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
    display:flex;
    flex-direction:column;
    gap:14px;
    transition:all .2s ease;
  }
  .governor-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(15,43,70,.10);
  }
  .gov-header,
  .governor-header,
  .governor-card-head{
    display:flex;
    align-items:center;
    gap:10px;
  }
  .gov-avatar,
  .governor-avatar{
    width:44px;
    height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e2e8f0;
    color:#153550;
    font-size:12px;
    font-weight:600;
    flex:0 0 auto;
    overflow:hidden;
    position:relative;
  }
  .gov-avatar img,
  .governor-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .gov-avatar-fallback,
  .governor-avatar-fallback{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    border-radius:50%;
    background:#e2e8f0;
    color:#153550;
    font-size:12px;
    font-weight:700;
  }
  .gov-header-copy,
  .governor-card-top{
    display:grid;
    gap:2px;
    min-width:0;
  }
  .gov-province,
  .governor-card-province{
    font-size:11px;
    color:#64748b;
  }
  .gov-name,
  .governor-card-name{
    font-size:14px;
    font-weight:600;
    color:#122c44;
    line-height:1.2;
  }
  .gov-handle{
    display:inline-flex;
    align-items:center;
    width:fit-content;
    font-size:11px;
    line-height:1.2;
    color:#5d7892;
    text-decoration:none;
    font-weight:700;
  }
  .gov-handle:hover{color:#0f7db1}
  .gov-handle.is-disabled{
    pointer-events:none;
    color:#94a3b8;
  }
  .gov-metrics,
  .governor-card-metrics{
    display:flex;
    justify-content:space-between;
    gap:10px;
  }
  .metric-box,
  .metric,
  .governor-metric{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2px;
    flex:1 1 0;
    min-width:0;
    padding:8px 6px;
    border-radius:10px;
    background:#f8fbff;
  }
  .metric-label,
  .governor-metric-label{
    display:block;
    font-size:10px;
    color:#94a3b8;
    text-transform:uppercase;
  }
  .metric-value,
  .governor-metric-value{
    display:block;
    font-size:16px;
    font-weight:600;
    color:#123551;
  }
  .governor-metric-value.image-score{
    font-size:16px;
    font-weight:600;
  }
  .governor-metric-value.trend{
    font-size:14px;
  }
  .metric-box.positive .metric-value,
  .metric-box.positive .governor-metric-value,
  .trend-up{color:#0a8f61}
  .metric-box.negative .metric-value,
  .metric-box.negative .governor-metric-value,
  .trend-down{color:#cf3b3b}
  .trend-flat{color:#8a6a10}
  .gov-actions,
  .governor-card-actions{
    display:flex;
    gap:10px;
  }
  .gov-actions button,
  .governor-open{
    flex:1;
    min-height:36px;
    font-size:12px;
    padding:6px;
    border-radius:8px;
    border:1px solid #afc9e2;
    background:#f7fbff;
    color:#173652;
    font-weight:800;
    cursor:pointer;
  }
  .gov-actions button:hover,
  .governor-open:hover{
    background:#eef6ff;
  }
  .governor-open.war{
    border-color:#d7b8b8;
    background:#fff6f6;
    color:#8e2222;
  }
  .map-explorer{
    border:1px solid #bfd5ea;
    border-radius:26px;
    background:
      radial-gradient(960px 360px at 102% -10%, rgba(120,163,255,.22), rgba(120,163,255,0) 72%),
      radial-gradient(760px 320px at -6% 120%, rgba(55,214,255,.18), rgba(55,214,255,0) 74%),
      linear-gradient(165deg,#fcfeff 0%,#f4f9ff 45%,#eef6ff 100%);
    padding:18px;
    margin:0 0 14px;
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:14px;
    align-items:stretch;
    box-shadow:0 20px 34px rgba(17,47,76,.11);
  }
  .map-visual{
    position:relative;
    min-height:304px;
    border:1px solid #c3d8ea;
    border-radius:20px;
    background:
      radial-gradient(380px 210px at -4% 8%, rgba(81,187,245,.20), transparent 72%),
      radial-gradient(320px 170px at 104% 108%, rgba(141,132,255,.18), transparent 74%),
      linear-gradient(180deg,#fbfdff,#eff6fd);
    overflow:hidden;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.8), 0 12px 24px rgba(21,62,101,.09);
  }
  .argentina-interactive-map{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:1;
  }
  #matrix-map{
    width:100%;
    height:500px;
    min-height:400px;
  }
  .matrix-map-overlay{
    position:absolute;
    inset:0;
    z-index:650;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    text-align:center;
    background:rgba(241,245,249,.88);
    color:#102f4b;
    font-size:14px;
    font-weight:700;
    border:1px solid rgba(148,163,184,.3);
  }
  .argentina-interactive-map.is-satellite .leaflet-control-attribution{
    background:rgba(8,20,36,.74);
    color:#d7e9ff;
    border:1px solid rgba(120,165,212,.45);
    border-radius:10px;
    margin:0 6px 6px 0;
    font-size:10px;
    backdrop-filter:blur(4px);
  }
  .argentina-interactive-map.is-satellite .leaflet-control-attribution a{
    color:#9ed2ff;
  }
  .argentina-interactive-map.is-satellite .leaflet-control-zoom a{
    background:rgba(245,251,255,.92);
    color:#143754;
    border-color:#abc8e0;
  }
  .map-toggle-row{
    position:absolute;
    left:12px;
    bottom:10px;
    z-index:450;
    display:flex;
    gap:8px;
    flex-wrap:wrap;
  }
  .argentina-map{
    width:100%;
    height:100%;
    display:block;
  }
  .arg-region{
    fill:#d7e6f4;
    stroke:#b8ccdf;
    stroke-width:1.2;
    transition:all .16s ease;
    cursor:pointer;
  }
  .arg-region:hover{
    fill:#c8ddf1;
    stroke:#97b6d3;
  }
  .arg-region.is-active{
    fill:#b7d3ee;
    stroke:#6f97be;
  }
  .map-pin{
    position:absolute;
    border:1px solid #c2d6e8;
    border-radius:999px;
    background:#ffffff;
    color:#18354e;
    font-size:12px;
    font-weight:800;
    padding:7px 11px;
    cursor:pointer;
    transition:all .15s ease;
  }
  .map-pin:hover,.map-pin.is-active{
    border-color:#8db0d0;
    background:#edf5fd;
  }
  .pin-district,.pin-municipio{position:relative;left:auto;top:auto}
  .map-panel{
    border:1px solid #b9d1e7;
    border-radius:22px;
    background:
      radial-gradient(560px 280px at 102% -18%, rgba(100,126,255,.29), rgba(100,126,255,0) 72%),
      radial-gradient(420px 180px at -6% 118%, rgba(44,211,255,.26), rgba(44,211,255,0) 70%),
      linear-gradient(164deg,#ffffff 0%,#f5faff 54%,#ebf5ff 100%);
    padding:16px;
    display:flex;
    flex-direction:column;
    gap:11px;
    min-height:304px;
    box-shadow:0 20px 38px rgba(16,46,79,.16), inset 0 1px 0 rgba(255,255,255,.78);
  }
  .map-title{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:18px;
    color:#122c44;
  }
  .map-meta{
    margin:0;
    font-size:12px;
    color:#5f758b;
    font-weight:700;
  }
  .map-copy{
    margin:0;
    font-size:13px;
    color:#597189;
    line-height:1.45;
  }
  .map-controls{
    margin-top:2px;
    margin-bottom:4px;
    display:grid;
    grid-template-columns:minmax(160px,190px) minmax(0,1fr);
    gap:9px;
    align-items:center;
  }
  .map-controls .input{
    min-height:54px;
    border-radius:16px;
    border:1px solid #afc9e2;
    background:#ffffff;
    font-size:18px;
    font-weight:800;
    color:#163550;
    box-shadow:0 10px 18px rgba(20,61,96,.08);
  }
  .map-controls .map-layer-select:first-child{
    background:
      radial-gradient(120px 80px at 100% -20%, rgba(109,133,255,.20), rgba(109,133,255,0) 72%),
      linear-gradient(180deg,#f8fcff,#eef6ff);
    border-color:#a9c7df;
    font-size:16px;
  }
  .intel-panel{
    border:1px solid #bcd3e7;
    border-radius:19px;
    background:
      radial-gradient(310px 180px at 100% -10%, rgba(129,151,255,.24), rgba(129,151,255,0) 72%),
      linear-gradient(164deg,#ffffff 0%,#f4f9ff 52%,#edf6ff 100%);
    padding:14px;
    box-shadow:0 14px 24px rgba(13,44,74,.11);
    display:flex;
    flex-direction:column;
    gap:9px;
  }
  .intel-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
  }
  .intel-title{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:17px;
    font-weight:800;
    color:#102f4b;
  }
  .intel-badge{
    border:1px solid #b4d1e8;
    border-radius:999px;
    background:#edf5fe;
    color:#1b4c74;
    font-size:11px;
    font-weight:800;
    padding:3px 8px;
    letter-spacing:.02em;
    text-transform:uppercase;
  }
  .intel-badge.tone-low{
    border-color:#bdd5ea;
    background:#edf5ff;
    color:#1f4f77;
  }
  .intel-badge.tone-medium{
    border-color:#f3cd8b;
    background:#fff2df;
    color:#9f620e;
  }
  .intel-badge.tone-high{
    border-color:#f1b0b0;
    background:#fff0f0;
    color:#a64343;
  }
  .intel-target{
    margin:0;
    font-size:12px;
    color:#203f5c;
    font-weight:800;
  }
  .intel-kpis{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
  }
  .intel-chip{
    border:1px solid #c7dbed;
    border-radius:11px;
    background:#f4f9ff;
    color:#1f3f5d;
    font-size:12px;
    font-weight:700;
    padding:8px 10px;
    line-height:1.35;
  }
  .intel-chip b{
    color:#335f87;
    font-weight:800;
  }
  .intel-copy{
    margin:0;
    font-size:13px;
    color:#1a3c59;
    line-height:1.35;
    font-weight:800;
  }
  .intel-gauge-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:7px;
  }
  .intel-gauge{
    border:1px solid #c7daec;
    border-radius:11px;
    padding:8px;
    background:#f7fbff;
  }
  .intel-gauge-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    margin:0 0 6px;
  }
  .intel-gauge-top span{
    font-size:11px;
    color:#5b7590;
    font-weight:800;
    letter-spacing:.03em;
    text-transform:uppercase;
  }
  .intel-gauge-top strong{
    font-size:12px;
    color:#113651;
    font-weight:900;
  }
  .intel-gauge-track{
    position:relative;
    width:100%;
    height:7px;
    border-radius:999px;
    background:#dbe7f2;
    overflow:hidden;
  }
  .intel-gauge-bar{
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    border-radius:999px;
    width:0;
    transition:width .25s ease;
  }
  .intel-gauge-bar.tone-risk{
    background:linear-gradient(90deg,#ff6b7d,#ff9f68);
  }
  .intel-gauge-bar.tone-opportunity{
    background:linear-gradient(90deg,#53e0d2,#5fc0ff);
  }
  .intel-gauge-bar.tone-momentum{
    background:linear-gradient(90deg,#9c8bff,#e272ff);
  }
  .intel-actions{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
  }
  .intel-actions .mini-btn.report{
    background:#f7fbff;
    color:#1a3550;
    border-color:#b6cae0;
  }
  .intel-actions .mini-btn.report:hover{
    background:#edf5fd;
    border-color:#9cb7d4;
  }
  .intel-actions .mini-btn.report:disabled{
    cursor:not-allowed;
    opacity:1;
    background:#f2f7fc;
    color:#6b8097;
    border-style:dashed;
  }
  .intel-note{
    margin:0;
    font-size:11px;
    color:#5e7690;
    font-weight:700;
  }
  .neo-main-toolbar{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
    margin:40px 0 16px;
  }
  .neo-main-copy{
    display:grid;
    gap:6px;
  }
  .neo-main-kicker{
    margin:0;
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#55708a;
  }
  .neo-main-title{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:clamp(24px,2.8vw,34px);
    line-height:1.05;
    color:#102f4b;
  }
  .neo-main-sub{
    margin:0;
    max-width:760px;
    font-size:14px;
    line-height:1.55;
    color:#58718b;
    font-weight:700;
  }
  .neo-main{
    width:100%;
    height:650px;
    border-radius:16px;
    overflow:hidden;
    background:#091426;
    box-shadow:0 20px 60px rgba(0,0,0,.2);
  }
  .neo-full{
    width:100%;
    height:100%;
    border:none;
    display:block;
    background:#091426;
  }
  .modules-wrap{
    margin-top:40px;
  }
  .modules{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
  }
  .module{
    display:grid;
    gap:10px;
    justify-items:center;
    text-align:center;
    padding:20px;
    border-radius:12px;
    background:rgba(255,255,255,.03);
    border:1px solid #d7e3ee;
    color:#102f4b;
    text-decoration:none;
    cursor:pointer;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    box-shadow:0 12px 24px rgba(16,46,79,.08);
  }
  .module:hover{
    transform:translateY(-3px);
    border-color:#aac4db;
    box-shadow:0 18px 30px rgba(16,46,79,.12);
  }
  .module-icon{
    width:56px;
    height:56px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:linear-gradient(180deg,#eff7ff 0%,#e4f0fb 100%);
    color:#0d4b74;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
    font-size:24px;
  }
  .module-title{
    font-family:'Sora','Manrope',sans-serif;
    font-size:16px;
    font-weight:700;
    line-height:1.15;
  }
  .module-sub{
    font-size:13px;
    line-height:1.45;
    color:#617a93;
    font-weight:700;
  }
  #productos,
  #informes,
  .social-wrap,
  .health-box,
  .admin-box,
  .user-box,
  .audit-box{
    margin-top:40px;
  }
  .province-demand-panel{
    border:1px solid #c9dceb;
    border-radius:12px;
    background:#f7fbff;
    padding:10px;
    display:grid;
    gap:8px;
  }
  .province-demand-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
  }
  .province-demand-actions{
    display:flex;
    align-items:center;
    justify-content:flex-start;
  }
  .province-demand-actions .mini-btn{
    margin-top:0;
    font-size:11px;
    font-weight:800;
    padding:8px 12px;
  }
  .province-demand-actions .mini-btn:disabled{
    opacity:.95;
    cursor:not-allowed;
    background:#e9f1f8;
    color:#4f6883;
    border-style:dashed;
  }
  .province-demand-title{
    margin:0;
    font-size:13px;
    color:#183a57;
    font-weight:900;
    letter-spacing:.02em;
    text-transform:uppercase;
  }
  .province-demand-updated{
    margin:0;
    font-size:11px;
    color:#5a7691;
    font-weight:800;
    text-align:right;
  }
  .province-demand-summary{
    margin:0;
    font-size:12px;
    color:#1f415f;
    line-height:1.4;
    font-weight:700;
  }
  .province-demand-metrics{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:6px;
  }
  .province-demand-metric{
    border:1px solid #d4e3f1;
    border-radius:9px;
    background:#fff;
    padding:6px 7px;
    display:grid;
    gap:2px;
  }
  .province-demand-metric b{
    font-size:15px;
    color:#123652;
    line-height:1;
  }
  .province-demand-metric span{
    font-size:10px;
    color:#557290;
    font-weight:800;
    letter-spacing:.02em;
    text-transform:uppercase;
  }
  .province-demand-ranking-box{
    border:1px solid #d7e5f2;
    border-radius:10px;
    background:#fff;
    padding:8px;
    display:grid;
    gap:6px;
  }
  .province-demand-ranking{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:5px;
  }
  .province-demand-ranking li{
    margin:0;
    padding:6px 8px;
    border:1px solid #d8e6f3;
    border-radius:8px;
    background:#f8fbff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    font-size:11px;
    color:#1f415f;
    font-weight:700;
  }
  .province-demand-rank-topic{
    display:flex;
    align-items:center;
    gap:6px;
    min-width:0;
  }
  .province-demand-rank-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:18px;
    height:18px;
    border-radius:999px;
    background:#e8f2ff;
    color:#123b63;
    font-size:10px;
    font-weight:900;
    flex:0 0 auto;
  }
  .province-demand-rank-label{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .province-demand-rank-weight{
    font-size:10px;
    color:#4f6e8a;
    font-weight:900;
    letter-spacing:.02em;
    text-transform:uppercase;
    flex:0 0 auto;
  }
  .province-demand-history-box{
    border:1px solid #d7e5f2;
    border-radius:10px;
    background:#fff;
    padding:8px;
    display:grid;
    gap:6px;
  }
  .province-demand-expanded{
    border:1px solid #d7e5f2;
    border-radius:10px;
    background:#fff;
    padding:10px;
    display:grid;
    gap:10px;
  }
  .report-expanded h4{
    margin:0;
    font-size:14px;
    font-weight:900;
    color:#123652;
  }
  .report-expanded p{
    margin:0;
    font-size:12px;
    line-height:1.5;
    color:#274763;
  }
  .report-expanded-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px;
  }
  .report-expanded-grid div{
    padding:8px 9px;
    border-radius:9px;
    background:#f8fbff;
    border:1px solid #d8e6f3;
    font-size:11px;
    color:#46657f;
    font-weight:800;
  }
  .report-expanded-grid b{
    display:block;
    margin-top:3px;
    color:#123652;
    font-size:15px;
  }
  .report-expanded-list{
    display:grid;
    gap:6px;
  }
  .report-expanded-list div{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:7px 8px;
    border-radius:8px;
    background:#f8fbff;
    border:1px solid #d8e6f3;
    font-size:11px;
    color:#1f415f;
    font-weight:700;
  }
  .report-expanded-history{
    padding:8px 9px;
    border-radius:9px;
    background:#f8fbff;
    border:1px solid #d8e6f3;
    font-size:11px;
    line-height:1.5;
    color:#355673;
  }
  .province-demand-history-title{
    margin:0;
    font-size:11px;
    color:#4f6e8a;
    font-weight:900;
    letter-spacing:.03em;
    text-transform:uppercase;
  }
  .province-demand-history{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:5px;
    max-height:150px;
    overflow:auto;
  }
  .province-demand-history li{
    margin:0;
    padding:6px 7px;
    border:1px solid #d8e6f3;
    border-radius:8px;
    background:#f8fbff;
    font-size:11px;
    color:#274663;
    line-height:1.35;
    font-weight:700;
  }
  .province-demand-history b{
    color:#133553;
  }
  @media (max-width: 1100px){
    .province-demand-metrics{
      grid-template-columns:1fr;
    }
  }
  .intel-actions .mini-btn.buy{
    background:linear-gradient(128deg,#0f4d92,#1b6fa8);
    border-color:#1c5e94;
    box-shadow:0 8px 14px rgba(17,69,120,.18);
    font-size:12px;
    font-weight:900;
  }
  .intel-actions .mini-btn.buy:hover{
    filter:brightness(.98);
  }
  #btnIntelOpenMap{
    background:linear-gradient(118deg,#ff7a18 0%,#ff4f7b 42%,#4e8dff 100%) !important;
    border-color:#ff7a18 !important;
    color:#ffffff !important;
    box-shadow:0 12px 26px rgba(62,114,205,.26), 0 6px 14px rgba(255,122,24,.22) !important;
    transform:translateY(0);
    transition:transform .18s ease, box-shadow .22s ease, filter .18s ease;
    position:relative;
    overflow:hidden;
    animation:openTerritoryPulse 2.4s ease-in-out infinite;
  }
  #btnIntelOpenMap:hover{
    transform:translateY(-2px);
    filter:saturate(1.08);
    box-shadow:0 16px 28px rgba(62,114,205,.3), 0 8px 20px rgba(255,122,24,.28) !important;
  }
  #btnIntelOpenMap:active{
    transform:translateY(0);
  }
  @keyframes openTerritoryPulse{
    0%{box-shadow:0 12px 26px rgba(62,114,205,.24), 0 6px 14px rgba(255,122,24,.18)}
    50%{box-shadow:0 14px 28px rgba(62,114,205,.3), 0 8px 18px rgba(255,122,24,.28)}
    100%{box-shadow:0 12px 26px rgba(62,114,205,.24), 0 6px 14px rgba(255,122,24,.18)}
  }
  @media (prefers-reduced-motion: reduce){
    #btnIntelOpenMap{
      animation:none;
    }
  }
  .intel-actions .mini-btn{
    margin-top:0;
  }
  .map-layer-select{
    min-width:220px;
    width:100%;
  }
  .map-region-select{
    min-width:190px;
    width:100%;
  }
  .province-label{
    background:rgba(15,35,56,.82);
    border:1px solid rgba(255,255,255,.15);
    color:#f4fbff;
    font-size:10px;
    font-weight:700;
    padding:2px 6px;
    border-radius:999px;
    text-transform:uppercase;
    letter-spacing:.02em;
    box-shadow:0 2px 8px rgba(0,0,0,.18);
  }
  .hero-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
  .hero-cta{font-weight:900!important;}
  .title{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:clamp(38px,4vw,58px);
    line-height:1.01;
    letter-spacing:.012em;
    color:#b8e4ff;
    text-shadow:none;
  }
  @supports ((-webkit-background-clip:text) or (background-clip:text)){
    .title{
      background:linear-gradient(92deg,#72d8ff 0%,#5fbfff 34%,#6f9eff 66%,#8f98ff 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      -webkit-text-fill-color:transparent;
    }
  }
  .sub{margin:12px 0 0;color:#d9ecfb;font-size:18px;font-weight:600;max-width:760px}
  .social-bar{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
  .social-bar.footer{margin-top:0;justify-content:flex-end;flex-wrap:nowrap}
  .social-bar.footer .social-btn{
    color:#23384c;
    background:#f3f7fb;
    border-color:#d0ddea;
    min-width:34px;
    height:32px;
    padding:0 8px;
    border-radius:999px;
    gap:0;
  }
  .social-bar.footer .social-btn:hover{
    background:#eaf1f8;
    border-color:#b8cbe0;
  }
  .social-bar.footer .social-btn svg{width:15px;height:15px}
  .social-bar.footer .social-label{display:none}
  .social-wrap{
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid #e2ecf5;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
  }
  .social-title{
    margin:0;
    font-size:11px;
    color:#6a7e92;
    font-weight:800;
    letter-spacing:.03em;
    text-transform:uppercase;
  }
  .social-btn{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    min-width:38px;height:34px;padding:0 10px;
    border-radius:999px;border:1px solid rgba(255,255,255,.4);
    text-decoration:none;color:#fff;background:rgba(255,255,255,.14);
    font-size:12px;font-weight:800;letter-spacing:.02em;
    transition:transform .16s ease, background .18s ease, border-color .18s ease;
  }
  .social-btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.22);border-color:rgba(255,255,255,.6)}
  .social-btn svg{width:14px;height:14px;display:block;fill:currentColor;opacity:.95}
  .social-label{line-height:1}
  .site-copy{
    margin-top:12px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
    color:#5f7288;
    font-size:12px;
    font-weight:700;
  }
  .site-copy-mark{
    width:24px;
    height:24px;
    border-radius:7px;
    background:linear-gradient(180deg,#25c3f0,#0f7faa);
    box-shadow:0 5px 12px rgba(15,115,155,.22);
    position:relative;
    display:inline-block;
    flex:0 0 auto;
  }
  .site-copy-mark::before,
  .site-copy-mark::after{
    content:"";
    position:absolute;
    left:5px;
    right:5px;
    height:3px;
    border-radius:999px;
    background:rgba(255,255,255,.95);
  }
  .site-copy-mark::before{top:7px}
  .site-copy-mark::after{top:14px}
  .logo{height:42px;width:auto;max-width:190px;display:block;object-fit:contain}
  .logo-wrap{
    background:#ffffff;
    border:1px solid #b8cee1;
    border-radius:16px;padding:12px 18px;display:inline-flex;align-items:center;justify-content:center;
    min-width:214px;min-height:76px;box-shadow:0 12px 26px rgba(8,33,57,.20)
  }
  .auth{
    display:grid;grid-template-columns:1.2fr 1fr;gap:14px;
    background:var(--card-soft);
    border:1px solid #d9e5ef;
    border-radius:16px;padding:14px
  }
  .advisor-box{
    margin-top:14px;border:1px solid var(--line);border-radius:16px;padding:14px;background:#fff;
    box-shadow:0 4px 12px rgba(15,43,70,.05)
  }
  .fold{
    margin-top:12px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fff;
    overflow:hidden;
  }
  .fold > summary{
    list-style:none;
    cursor:pointer;
    padding:12px 14px;
    font-family:'Sora','Manrope',sans-serif;
    font-size:14px;
    font-weight:700;
    color:#1a344d;
    border-bottom:1px solid transparent;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
  }
  .fold > summary::-webkit-details-marker{display:none}
  .fold > summary::after{
    content:"+";
    width:22px;height:22px;border-radius:999px;
    border:1px solid #c8d8e8;
    display:inline-flex;align-items:center;justify-content:center;
    font-size:14px;font-weight:800;color:#37526d;
    flex:0 0 auto;
  }
  .fold[open] > summary{border-bottom-color:#e2ecf5}
  .fold[open] > summary::after{content:"−"}
  .fold-body{padding:0 12px 12px}
  .advisor-head{margin:0 0 8px;font-family:'Sora','Manrope',sans-serif;font-size:15px}
  .advisor-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:8px}
  .advisor-result{
    margin-top:10px;border:1px solid #d7e6f3;border-radius:10px;background:#f5fbff;padding:10px;font-size:13px;color:#1b3b55
  }
  .auth h2{
    margin:0 0 8px;
    font-family:'Sora','Manrope',sans-serif;
    font-size:15px;
    letter-spacing:.02em;
  }
  .row{display:flex;gap:8px;flex-wrap:wrap;align-items:center}
  .btn{
    border:1px solid #0a4b77;
    background:linear-gradient(180deg,#11659f,#0b4975);
    color:#fff;border-radius:11px;padding:9px 13px;font-weight:800;cursor:pointer;
    transition:transform .16s ease, box-shadow .2s ease, filter .2s ease;
  }
  .btn:hover{transform:translateY(-1px);box-shadow:0 10px 20px rgba(9,43,78,.20)}
  .btn:active{transform:translateY(0)}
  .btn.alt{background:#fff;color:#15314b;border-color:#b8cbe0}
  .btn.warn{background:#fff7ec;color:#8a5304;border-color:#f1c57f}
  .btn.plan{background:#eef7ff;color:#0f2a5f;border-color:#b7d2f0}
  .input{
    border:1px solid #c4d3e2;border-radius:10px;padding:9px 10px;min-width:220px;background:#fff;
    font-family:inherit;color:var(--ink)
  }
  .input:focus{outline:none;border-color:#75a8d7;box-shadow:0 0 0 3px rgba(58,120,189,.12)}
  .state{font-size:13px;color:#183046}
  .plan{font-size:13px;color:var(--ok);font-weight:800}

  .plan-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px;margin-top:14px}
  .plan-grid.compact .plan-card[data-tier="premium"],
  .plan-grid.compact .plan-card[data-tier="vip"]{display:none}
  .plans-toolbar{margin-top:10px;display:flex;justify-content:flex-start}
  .plans-head{
    margin-top:14px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:8px;
    flex-wrap:wrap;
  }
  .plans-title{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:18px;
    color:#122d46;
  }
  .plans-sub{
    margin:4px 0 0;
    font-size:12px;
    color:#60758c;
  }
  .plan-card{
    border:1px solid #cfdeeb;border-radius:16px;padding:16px;background:linear-gradient(180deg,#fff,#f8fbff);
    box-shadow:0 8px 18px rgba(15,43,70,.08);
    transition:transform .18s ease, box-shadow .2s ease;
  }
  .plan-card:hover{transform:translateY(-3px);box-shadow:0 16px 28px rgba(15,43,70,.14);border-color:#a4c1d8}
  .plan-name{font-size:14px;font-weight:800;letter-spacing:.01em}
  .plan-price{
    font-size:29px;font-family:'Sora','Manrope',sans-serif;font-weight:800;margin-top:3px;line-height:1.05;
    letter-spacing:-.02em
  }
  .plan-price small{font-size:12px;color:#6d7f94;font-family:'Manrope',sans-serif}
  .plan-note{font-size:12px;color:#5f7288;margin-top:6px;min-height:30px}
  .mini-btn{
    margin-top:8px;border:1px solid #c9d8e6;border-radius:9px;background:#fff;padding:7px 9px;
    font-size:12px;font-weight:700;cursor:pointer;transition:all .16s ease
  }
  .mini-btn:hover{border-color:#9fb9d2;background:#f7fbff}
  .mini-btn.buy{background:#0f2a5f;color:#fff;border-color:#0f2a5f}
  .mini-btn.buy:hover{background:#113a77}
  .mini-row{display:flex;gap:8px;flex-wrap:wrap}
  .packs-dropdown{
    width:100%;
    margin-top:4px;
    border:1px solid #d4e1ec;
    border-radius:10px;
    background:#f9fcff;
  }
  .packs-dropdown > summary{
    list-style:none;
    cursor:pointer;
    padding:8px 10px;
    font-size:12px;
    font-weight:800;
    color:#1f3b55;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .packs-dropdown > summary::-webkit-details-marker{display:none}
  .packs-dropdown > summary::after{
    content:"+";
    width:18px;height:18px;border-radius:999px;
    border:1px solid #c7d7e7;
    display:inline-flex;align-items:center;justify-content:center;
    font-size:12px;
    color:#3c5873;
    background:#fff;
  }
  .packs-dropdown[open] > summary::after{content:"−"}
  .packs-list{
    border-top:1px solid #e3edf6;
    padding:8px;
    display:flex;
    gap:8px;
    flex-wrap:wrap;
  }
  .sync-chip{
    border:1px solid #c9d8e6;border-radius:999px;background:#fff;padding:6px 10px;
    font-size:12px;font-weight:800;cursor:pointer;transition:all .16s ease;color:#16324b
  }
  .sync-chip:hover{border-color:#9fb9d2;background:#f7fbff}
  .sync-chip.is-active{background:#0f2a5f;color:#fff;border-color:#0f2a5f}

  .grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:14px;margin-top:16px}
  .grid.media-shortcuts{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    margin-top:10px;
  }
  a.project{
    display:block;text-decoration:none;color:#163149;border-radius:16px;padding:18px;position:relative;
    border:1px solid #cadbea;
    background:linear-gradient(180deg,#ffffff,#f7fbff);
    box-shadow:0 10px 22px rgba(12,36,60,.10);
    transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
  }
  a.project:hover{transform:translateY(-4px);box-shadow:0 20px 30px rgba(12,36,60,.16);border-color:#96b9d5}
  a.project.is-disabled{filter:grayscale(.24) brightness(.88)}
  .project-head{display:flex;align-items:center;justify-content:space-between;gap:10px}
  .project-icon{
    width:40px;height:40px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;
    border:1px solid #c3d7e8;background:linear-gradient(180deg,#f8fcff,#edf5fd);color:#17344e;flex:0 0 auto;
  }
  .project-icon svg{width:22px;height:22px;display:block}
  a.project.project-shortcut{
    padding:15px 16px;
    min-height:182px;
    border-radius:26px;
    background:
      radial-gradient(280px 160px at 102% -20%, rgba(93,145,255,.20), rgba(93,145,255,0) 70%),
      linear-gradient(180deg,#ffffff,#f4f9ff);
    overflow:hidden;
    box-shadow:0 16px 28px rgba(18,56,90,.14);
  }
  a.project.project-shortcut::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:22px;
    border:1px solid transparent;
    pointer-events:none;
    transition:border-color .2s ease;
  }
  a.project.project-shortcut::after{
    content:"";
    position:absolute;
    right:-80px;
    top:-80px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:radial-gradient(circle at 40% 40%, rgba(35,126,207,.26), rgba(35,126,207,0) 70%);
    pointer-events:none;
  }
  a.project.project-shortcut[data-theme="media"]{
    background:
      radial-gradient(320px 160px at 100% -12%, rgba(78,189,255,.28), rgba(78,189,255,0) 70%),
      linear-gradient(180deg,#fcfdff,#f0f8ff);
  }
  a.project.project-shortcut[data-theme="media"]::before{
    border-color:#b9d3ec;
  }
  a.project.project-shortcut[data-theme="padron"]{
    background:
      radial-gradient(320px 160px at 100% -12%, rgba(127,148,255,.30), rgba(127,148,255,0) 70%),
      linear-gradient(180deg,#fcfdff,#f3f8ff);
  }
  a.project.project-shortcut[data-theme="padron"]::before{
    border-color:#c4d8ef;
  }
  a.project.project-shortcut[data-theme="padron"]::after{
    background:radial-gradient(circle at 40% 40%, rgba(76,120,255,.16), rgba(76,120,255,0) 68%);
  }
  a.project.project-shortcut[data-theme="geonexus"]{
    color:#ebf6ff;
    border-color:#355275;
    background:
      radial-gradient(320px 180px at 100% -14%, rgba(137,118,255,.34), rgba(137,118,255,0) 72%),
      radial-gradient(260px 160px at -8% 112%, rgba(69,205,255,.22), rgba(69,205,255,0) 74%),
      linear-gradient(145deg,#07131f 0%,#0b2137 48%,#132f54 100%);
    box-shadow:0 20px 34px rgba(5,15,32,.34);
  }
  a.project.project-shortcut[data-theme="geonexus"]::before{
    border-color:rgba(121,154,196,.42);
  }
  a.project.project-shortcut[data-theme="geonexus"]::after{
    background:radial-gradient(circle at 40% 40%, rgba(134,117,255,.28), rgba(134,117,255,0) 70%);
  }
  a.project.project-shortcut[data-theme="electoral"]{
    color:#ebf6ff;
    border-color:#355275;
    background:
      radial-gradient(320px 180px at 100% -14%, rgba(137,118,255,.34), rgba(137,118,255,0) 72%),
      radial-gradient(260px 160px at -8% 112%, rgba(69,205,255,.22), rgba(69,205,255,0) 74%),
      linear-gradient(145deg,#07131f 0%,#0b2137 48%,#132f54 100%);
    box-shadow:0 20px 34px rgba(5,15,32,.34);
  }
  a.project.project-shortcut[data-theme="electoral"]::before{
    border-color:rgba(121,154,196,.42);
  }
  a.project.project-shortcut[data-theme="electoral"]::after{
    background:radial-gradient(circle at 40% 40%, rgba(134,117,255,.28), rgba(134,117,255,0) 70%);
  }
  a.project.project-shortcut[data-theme="warroom"]{
    color:#f4f8ff;
    border-color:#483b82;
    background:
      radial-gradient(320px 180px at 100% -14%, rgba(255,206,84,.22), rgba(255,206,84,0) 72%),
      radial-gradient(280px 180px at -8% 112%, rgba(82,238,195,.16), rgba(82,238,195,0) 74%),
      linear-gradient(145deg,#120f26 0%,#1b1d44 46%,#203d74 100%);
    box-shadow:0 20px 34px rgba(12,12,32,.34);
  }
  a.project.project-shortcut[data-theme="warroom"]::before{
    border-color:rgba(169,153,228,.34);
  }
  a.project.project-shortcut[data-theme="warroom"]::after{
    background:radial-gradient(circle at 40% 40%, rgba(255,205,95,.22), rgba(255,205,95,0) 70%);
  }
  a.project.project-shortcut .project-head{
    margin-bottom:6px;
  }
  a.project.project-shortcut .project-icon{
    width:48px;
    height:48px;
    border-radius:16px;
    background:linear-gradient(180deg,#edf7ff,#dbedff);
    border-color:#b7d5ec;
    box-shadow:0 12px 20px rgba(19,72,114,.18);
    animation:shortcutPulse 2.8s ease-in-out infinite;
  }
  a.project.project-shortcut .project-icon svg{
    width:23px;
    height:23px;
    color:#154d7d;
  }
  a.project.project-shortcut[data-theme="geonexus"] .project-icon{
    background:linear-gradient(180deg,rgba(18,44,77,.94),rgba(10,28,50,.98));
    border-color:rgba(126,161,206,.46);
    box-shadow:0 14px 24px rgba(2,10,26,.34);
  }
  a.project.project-shortcut[data-theme="geonexus"] .project-icon svg{
    color:#c9e8ff;
  }
  a.project.project-shortcut[data-theme="electoral"] .project-icon{
    background:linear-gradient(180deg,rgba(18,44,77,.94),rgba(10,28,50,.98));
    border-color:rgba(126,161,206,.46);
    box-shadow:0 14px 24px rgba(2,10,26,.34);
  }
  a.project.project-shortcut[data-theme="electoral"] .project-icon svg{
    color:#c9e8ff;
  }
  a.project.project-shortcut[data-theme="warroom"] .project-icon{
    background:linear-gradient(180deg,rgba(38,26,78,.95),rgba(14,21,45,.98));
    border-color:rgba(171,160,232,.38);
    box-shadow:0 14px 24px rgba(8,10,28,.34);
  }
  a.project.project-shortcut[data-theme="warroom"] .project-icon svg{
    color:#fff0b0;
  }
  a.project.project-shortcut .project-icon svg path{
    fill:currentColor;
  }
  a.project.project-shortcut .k{
    font-size:10px;
    letter-spacing:.13em;
    font-weight:900;
  }
  a.project.project-shortcut[data-theme="geonexus"] .k{
    color:#9bc2ea;
  }
  a.project.project-shortcut[data-theme="electoral"] .k{
    color:#9bc2ea;
  }
  a.project.project-shortcut[data-theme="warroom"] .k{
    color:#d8cdfd;
  }
  a.project.project-shortcut .t{
    font-size:clamp(23px,2vw,31px);
    line-height:1.1;
    margin-top:2px;
  }
  a.project.project-shortcut[data-theme="media"] .t,
  a.project.project-shortcut[data-theme="padron"] .t{
    color:#2161cf;
  }
  a.project.project-shortcut[data-theme="geonexus"] .t{
    color:#eff7ff;
  }
  a.project.project-shortcut[data-theme="electoral"] .t{
    color:#eff7ff;
  }
  a.project.project-shortcut[data-theme="warroom"] .t{
    color:#fff8e2;
  }
  @supports ((-webkit-background-clip:text) or (background-clip:text)){
    a.project.project-shortcut[data-theme="media"] .t,
    a.project.project-shortcut[data-theme="padron"] .t{
      background:linear-gradient(90deg,#4ec2ff 0%,#4e95ff 42%,#6d88ff 76%,#8f7eff 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      -webkit-text-fill-color:transparent;
    }
    a.project.project-shortcut[data-theme="geonexus"] .t{
      background:linear-gradient(92deg,#dff4ff 0%,#89d9ff 32%,#7b97ff 64%,#b987ff 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      -webkit-text-fill-color:transparent;
    }
    a.project.project-shortcut[data-theme="electoral"] .t{
      background:linear-gradient(92deg,#dff4ff 0%,#89d9ff 32%,#7b97ff 64%,#b987ff 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      -webkit-text-fill-color:transparent;
    }
    a.project.project-shortcut[data-theme="warroom"] .t{
      background:linear-gradient(92deg,#fff4bf 0%,#ffd96b 28%,#9ea6ff 70%,#c991ff 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      -webkit-text-fill-color:transparent;
    }
  }
  a.project.project-shortcut .d{
    font-size:12px;
    color:#57718a;
    margin-top:3px;
    font-weight:700;
  }
  a.project.project-shortcut[data-theme="geonexus"] .d{
    color:#a8c2de;
  }
  a.project.project-shortcut[data-theme="electoral"] .d{
    color:#a8c2de;
  }
  a.project.project-shortcut[data-theme="warroom"] .d{
    color:#d9d3f8;
  }
  .shortcut-copy{
    margin-top:7px;
    display:grid;
    gap:4px;
  }
  .shortcut-highlight{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-weight:900;
    font-size:clamp(20px,1.9vw,28px);
    line-height:1.07;
    letter-spacing:-.01em;
    color:#121a26;
  }
  .shortcut-subline{
    margin:0;
    font-size:12px;
    color:#536e89;
    font-weight:700;
    letter-spacing:.01em;
  }
  .shortcut-highlight .tone-media{
    color:#2d92ff;
  }
  .shortcut-highlight .tone-padron{
    color:#6a68ff;
  }
  .shortcut-highlight .tone-geonexus{
    color:#8dd9ff;
  }
  .shortcut-highlight .tone-electoral{
    color:#8dd9ff;
  }
  .shortcut-highlight .tone-warroom{
    color:#ffd66b;
  }
  @supports ((-webkit-background-clip:text) or (background-clip:text)){
    .shortcut-highlight .tone-media{
      background:linear-gradient(92deg,#2fc3ff 0%,#4f9aff 44%,#6b87ff 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      -webkit-text-fill-color:transparent;
    }
    .shortcut-highlight .tone-padron{
      background:linear-gradient(92deg,#5774ff 0%,#7a6bff 42%,#9a6eff 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      -webkit-text-fill-color:transparent;
    }
    .shortcut-highlight .tone-geonexus{
      background:linear-gradient(92deg,#86e2ff 0%,#6ec4ff 38%,#8590ff 72%,#c07cff 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      -webkit-text-fill-color:transparent;
    }
    .shortcut-highlight .tone-electoral{
      background:linear-gradient(92deg,#86e2ff 0%,#6ec4ff 38%,#8590ff 72%,#c07cff 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      -webkit-text-fill-color:transparent;
    }
    .shortcut-highlight .tone-warroom{
      background:linear-gradient(92deg,#ffd86f 0%,#ffc659 34%,#a0a5ff 72%,#d18fff 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      -webkit-text-fill-color:transparent;
    }
  }
  .shortcut-meta{
    display:flex;
    gap:6px;
    flex-wrap:wrap;
    margin-top:7px;
  }
  .shortcut-pill{
    display:inline-flex;
    align-items:center;
    border:1px solid #b9d3e9;
    border-radius:999px;
    background:rgba(238,247,255,.92);
    color:#1d5078;
    padding:3px 8px;
    font-size:11px;
    font-weight:800;
    letter-spacing:.01em;
  }
  a.project.project-shortcut[data-theme="geonexus"] .shortcut-pill{
    border-color:rgba(129,162,204,.34);
    background:rgba(14,31,53,.54);
    color:#d8eeff;
  }
  a.project.project-shortcut[data-theme="electoral"] .shortcut-pill{
    border-color:rgba(129,162,204,.34);
    background:rgba(14,31,53,.54);
    color:#d8eeff;
  }
  a.project.project-shortcut[data-theme="warroom"] .shortcut-pill{
    border-color:rgba(174,163,232,.34);
    background:rgba(35,29,68,.58);
    color:#f3ebff;
  }
  .shortcut-plus{
    position:absolute;
    right:14px;
    bottom:14px;
    width:34px;
    height:34px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    line-height:1;
    color:#fff;
    background:#111827;
    box-shadow:0 8px 16px rgba(17,24,39,.26);
    pointer-events:none;
  }
  a.project.project-shortcut[data-theme="media"] .shortcut-plus{
    background:linear-gradient(180deg,#0f3056,#0b2746);
  }
  a.project.project-shortcut[data-theme="padron"] .shortcut-plus{
    background:linear-gradient(180deg,#162f72,#11255a);
  }
  a.project.project-shortcut[data-theme="geonexus"] .shortcut-plus{
    background:linear-gradient(180deg,#091930,#11285a);
  }
  a.project.project-shortcut[data-theme="electoral"] .shortcut-plus{
    background:linear-gradient(180deg,#091930,#11285a);
  }
  a.project.project-shortcut[data-theme="warroom"] .shortcut-plus{
    background:linear-gradient(180deg,#2a1c57,#17325d);
  }
  .shortcut-select-row{
    margin-top:8px;
    max-width:360px;
  }
  .shortcut-select-row .input{
    min-width:0;
    width:100%;
  }
  .shortcut-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:10px;
    border:1px solid #9ec3e1;
    border-radius:999px;
    padding:7px 11px;
    font-size:11px;
    font-weight:800;
    color:#0f3657;
    background:#eaf4ff;
    min-width:124px;
    box-shadow:0 8px 16px rgba(12,53,92,.12);
  }
  a.project.project-shortcut[data-theme="geonexus"] .shortcut-cta{
    border-color:rgba(127,166,207,.40);
    background:rgba(14,38,66,.70);
    color:#e3f4ff;
    box-shadow:0 12px 22px rgba(4,17,38,.22);
  }
  a.project.project-shortcut[data-theme="electoral"] .shortcut-cta{
    border-color:rgba(127,166,207,.40);
    background:rgba(14,38,66,.70);
    color:#e3f4ff;
    box-shadow:0 12px 22px rgba(4,17,38,.22);
  }
  a.project.project-shortcut[data-theme="warroom"] .shortcut-cta{
    border-color:rgba(173,160,230,.42);
    background:rgba(36,31,72,.72);
    color:#fff4d2;
    box-shadow:0 12px 22px rgba(10,10,32,.22);
  }
  a.project.project-shortcut:hover .shortcut-cta{
    background:#e7f3ff;
    border-color:#95bddb;
  }
  a.project.project-shortcut[data-theme="geonexus"]:hover .shortcut-cta{
    background:rgba(17,46,79,.82);
    border-color:rgba(143,185,228,.54);
  }
  a.project.project-shortcut[data-theme="electoral"]:hover .shortcut-cta{
    background:rgba(17,46,79,.82);
    border-color:rgba(143,185,228,.54);
  }
  a.project.project-shortcut[data-theme="warroom"]:hover .shortcut-cta{
    background:rgba(46,39,88,.82);
    border-color:rgba(198,187,250,.54);
  }
  a.project.project-shortcut:hover .shortcut-plus{
    transform:scale(1.06);
  }
  @keyframes shortcutPulse{
    0%,100%{transform:translateY(0) scale(1)}
    50%{transform:translateY(-1px) scale(1.06)}
  }
  .k{display:block;font-size:11px;letter-spacing:.11em;text-transform:uppercase;opacity:.75;font-weight:800}
  .t{display:block;font-size:clamp(28px,2.2vw,38px);font-family:'Sora','Manrope',sans-serif;font-weight:800;line-height:1.06;margin-top:5px;color:#0f2b45}
  .d{display:block;font-size:14px;opacity:.95;margin-top:6px;color:#4f677f}
  .caps{margin-top:10px;display:flex;flex-wrap:wrap;gap:6px}
  .cap{
    display:inline-flex;padding:3px 8px;border-radius:999px;border:1px solid #d4e1ec;
    font-size:11px;font-weight:700;background:#f3f8fd;color:#223f58
  }
  .cap-action{
    cursor:pointer;
    transition:all .16s ease;
  }
  .cap-action:hover{
    background:#e7f1fb;
    border-color:#afc8de;
  }
  .lock{
    position:absolute;top:12px;right:12px;background:#eef5fc;color:#294661;border:1px solid #c3d6e8;
    border-radius:999px;padding:2px 8px;font-size:11px;font-weight:800
  }

  .notice{display:none;margin-top:10px;padding:11px;border-radius:10px;border:1px solid #f4d39f;background:#fff8ed;color:var(--warn);font-size:13px}
  .notice.ok{border-color:#c5edd8;background:#f1fcf6;color:#0d6548}
  .foot{margin-top:14px;font-size:12px;color:#607186}
  .foot a{color:#244e73}
  .foot a:hover{color:#15314c}
  .admin-toggle{
    margin-top:14px;padding:10px;border:1px dashed #bfd2e6;border-radius:12px;background:#f7fbff;
    display:none
  }
  .admin-toggle.on{display:block}
  .admin-panel{display:none}
  .admin-panel.on{display:block}

  .admin-box,.audit-box,.health-box,.user-box{
    margin-top:14px;border:1px solid var(--line);border-radius:14px;background:var(--card);padding:12px;
    box-shadow:0 3px 10px rgba(15,43,70,.04)
  }
  .admin-box,.health-box{background:linear-gradient(180deg,#fcfeff,#f8fbff)}
  .admin-title,.audit-title{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:14px;font-weight:700;letter-spacing:.01em
  }
  .audit-head{display:flex;justify-content:space-between;align-items:center;gap:8px}
  .admin-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:8px}
  .admin-note,.metric-note{font-size:12px;color:#64758a;margin-top:6px}
  .admin-status{font-size:12px;color:#1c344b;margin-top:8px}
  .audit-wrap{margin-top:8px;overflow:auto;border:1px solid var(--line-soft);border-radius:10px}
  .audit-table{width:100%;border-collapse:collapse;min-width:860px}
  .audit-table th,.audit-table td{font-size:12px;padding:8px;border-bottom:1px solid #edf2f8;text-align:left;vertical-align:top}
  .audit-table th{background:#f7fbff;color:#30455d}
  .health-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:8px;margin-top:8px}
  .health-item{border:1px solid var(--line-soft);border-radius:10px;background:#fff;padding:8px}
  .health-k{font-size:11px;color:#64758a;text-transform:uppercase;letter-spacing:.04em;font-weight:800}
  .health-v{font-size:16px;font-weight:800;color:#122b40;margin-top:4px}
  .alert-level{display:inline-flex;padding:2px 8px;border-radius:999px;font-size:11px;font-weight:900;border:1px solid}
  .alert-level.critical{background:#fff3f2;color:#971f1b;border-color:#fec8c5}
  .alert-level.warning{background:#fff8ee;color:#925d0a;border-color:#f5d1a1}
  .alert-level.info{background:#eef7ff;color:#1a5da1;border-color:#c7dff7}
  .trend-wrap{margin-top:10px;border:1px solid var(--line-soft);border-radius:10px;background:#fff;padding:10px}
  .trend-legend{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:6px}
  .trend-chip{font-size:11px;padding:2px 8px;border-radius:999px;border:1px solid #dbe6f1;font-weight:800}
  .trend-chip.a{background:#eff6ff;color:#1d4ed8}
  .trend-chip.b{background:#ecfdf5;color:#047857}
  .trend-chip.c{background:#fff7ed;color:#c2410c}
  .trend-canvas{width:100%;height:220px;border:1px solid #eff3f8;border-radius:8px}
  .funnel-mini{margin-top:10px;border:1px solid var(--line-soft);border-radius:10px;background:#fff;padding:10px}
  .funnel-row{display:grid;grid-template-columns:160px 1fr 110px 110px;gap:8px;align-items:center;margin:7px 0}
  .funnel-k{font-size:12px;font-weight:800;color:#243a4f}
  .funnel-track{position:relative;height:10px;border-radius:999px;background:#edf3f8;overflow:hidden}
  .funnel-bar-cur{position:absolute;left:0;top:0;bottom:0;background:linear-gradient(90deg,#1d4ed8,#0ea5e9);border-radius:999px}
  .funnel-bar-prev{position:absolute;left:0;top:0;bottom:0;background:rgba(15,42,95,.28);border-radius:999px}
  .funnel-v{font-size:12px;color:#30485f;text-align:right}
  .funnel-goals{margin-top:8px;display:flex;gap:8px;flex-wrap:wrap}
  .goal-chip{display:inline-flex;align-items:center;gap:6px;padding:4px 9px;border-radius:999px;border:1px solid #d6e3ee;font-size:11px;font-weight:800}
  .goal-chip.ok{background:#ecfdf5;color:#047857;border-color:#9fe5c4}
  .goal-chip.bad{background:#fff1f2;color:#b42318;border-color:#fecdd3}
  .priority-chip{display:inline-flex;padding:2px 8px;border-radius:999px;border:1px solid;font-size:11px;font-weight:900}
  .priority-chip.alta{background:#fff1f2;color:#b42318;border-color:#fecdd3}
  .priority-chip.media{background:#fff7ed;color:#9a3412;border-color:#fdba74}
  .priority-chip.baja{background:#ecfdf5;color:#047857;border-color:#a7f3d0}
  .user-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:8px}
  .user-result{margin-top:8px;padding:10px;border:1px solid var(--line-soft);background:#f8fbff;border-radius:10px;font-size:12px}
  .user-kv{display:grid;grid-template-columns:180px 1fr;gap:4px 8px}
  .quick-actions{margin-top:10px;display:flex;gap:8px;flex-wrap:wrap}

  .modal{position:fixed;inset:0;display:none;z-index:1000}
  .modal.on{display:block}
  .modal-bg{position:absolute;inset:0;background:rgba(10,26,45,.56);backdrop-filter:blur(2px)}
  .modal-card{
    position:relative;max-width:900px;width:min(94vw,900px);margin:2.5vh auto;background:#fff;border:1px solid var(--line);
    border-radius:18px;box-shadow:0 24px 60px rgba(13,35,58,.30);padding:16px 16px 14px;animation:fadeUp .22s ease-out;
    max-height:94vh;overflow:auto
  }
  .modal-head{display:flex;justify-content:space-between;align-items:center;gap:10px}
  .modal-title{margin:0;font-family:'Sora','Manrope',sans-serif;font-size:24px;line-height:1.12}
  .modal-close{border:1px solid #cbdae8;background:#fff;border-radius:9px;padding:6px 9px;cursor:pointer}
  .modal-price{font-size:20px;font-weight:900;margin:6px 0 8px;color:#0f2f53}
  .modal-desc{margin:0 0 8px;color:#4e6076;font-size:15px}
  .modal-hero{
    margin:2px 0 10px;
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
  }
  .modal-pill{
    display:inline-flex;
    align-items:center;
    border:1px solid #bbd4ea;
    border-radius:999px;
    background:linear-gradient(90deg,#edf7ff,#ebeeff);
    color:#18486d;
    padding:5px 10px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.04em;
    text-transform:uppercase;
  }
  .modal-pill.p-basic{
    background:linear-gradient(90deg,#edf7ff,#ebeeff);
    border-color:#bbd4ea;
    color:#18486d;
  }
  .modal-pill.p-pro{
    background:linear-gradient(90deg,#ecfff5,#ebfff9);
    border-color:#9fd9c0;
    color:#0f5d43;
  }
  .modal-pill.p-premium{
    background:linear-gradient(90deg,#fff6e9,#fff1db);
    border-color:#efc48f;
    color:#8e4f00;
  }
  .modal-pill.p-vip{
    background:linear-gradient(90deg,#f3ecff,#ede6ff);
    border-color:#c9b1ff;
    color:#4a2b9b;
  }
  .modal-use{
    margin:0;
    font-size:12px;
    color:#4c6680;
    font-weight:700;
  }
  .modal-list{
    margin:0;
    padding-left:18px;
    color:#0f2438;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:4px 10px;
  }
  .modal-list li{margin:3px 0;font-size:14px}
  .modal-tip{margin-top:8px;padding:8px;border:1px solid #dbeafe;background:#f5fbff;border-radius:10px;font-size:12px;color:#334b63}
  .modal-actions{margin-top:8px;display:flex;gap:8px;flex-wrap:wrap}
  .auth-modal-grid{display:grid;grid-template-columns:1fr;gap:10px;margin-top:10px}
  .auth-modal-row{display:flex;gap:8px;flex-wrap:wrap}
  .auth-modal-row .input{min-width:240px;flex:1}
  .checkout-form{
    margin-top:8px;
    padding:12px;
    border:1px solid #c9dff3;
    border-radius:14px;
    background:
      radial-gradient(260px 120px at 100% -15%, rgba(134,165,255,.18), rgba(134,165,255,0) 70%),
      linear-gradient(180deg,#fbfdff,#f5faff);
  }
  .checkout-kicker{margin:0 0 8px;font-size:13px;color:#2f4a64;font-weight:800}
  .checkout-grid{display:grid;grid-template-columns:repeat(2,minmax(180px,1fr));gap:7px}
  .checkout-grid .input{min-width:0}
  .checkout-grid .full{grid-column:1 / -1}
  .checkout-optional{margin-top:8px}
  .checkout-optional > summary{font-size:13px}
  .checkout-summary{
    margin-top:10px;
    font-size:14px;
    color:#1b3e60;
    background:#eaf4ff;
    border:1px solid #bbd6ee;
    border-radius:10px;
    padding:8px 10px;
    font-weight:700;
  }
  .checkout-summary strong{color:#102337}

  @keyframes fadeUp{
    from{opacity:0;transform:translateY(10px)}
    to{opacity:1;transform:translateY(0)}
  }

  @media(max-width:1050px){
    .t{font-size:30px}
    .title{font-size:36px}
    .grid.media-shortcuts{grid-template-columns:repeat(2,minmax(0,1fr))}
    .modules{grid-template-columns:repeat(2,minmax(0,1fr))}
    .governor-rank-strip{grid-template-columns:repeat(3,minmax(0,1fr))}
  }
  @media(max-width:900px){
    .governor-rank-strip{grid-template-columns:repeat(2,minmax(0,1fr))}
    .ranking-popup-grid{grid-template-columns:1fr}
    .map-explorer{grid-template-columns:1fr}
    .map-controls{grid-template-columns:1fr}
    .map-models{grid-template-columns:1fr}
    .intel-gauge-grid{grid-template-columns:1fr}
    .intel-kpis{grid-template-columns:1fr}
    .modal-list{grid-template-columns:1fr}
    .grid.media-shortcuts{grid-template-columns:1fr}
    .social-wrap{justify-content:flex-start}
    .social-bar.footer{justify-content:flex-start}
    .site-copy{justify-content:flex-start}
    .auth{grid-template-columns:1fr}
    .head{padding:12px}
    .logo-wrap{min-width:154px;min-height:56px}
    .title{font-size:31px}
    .sub{font-size:14px}
  }
  @media(max-width:640px){
    .wrap{padding:12px}
    .card{padding:14px;border-radius:18px}
    .head{flex-direction:column;align-items:flex-start}
    .title{font-size:28px}
    .t{font-size:28px}
    .row .input{min-width:100%}
    .checkout-grid{grid-template-columns:1fr}
    .audit-table{min-width:760px}
    .modules{grid-template-columns:1fr}
    .governor-rank-strip{grid-template-columns:1fr}
    .governor-rank-head{align-items:flex-start;flex-direction:column}
    .governor-rank-actions{width:100%;justify-content:flex-end}
    .ranking-popup{padding:12px}
    .ranking-popup-card{padding:18px;border-radius:18px}
    .ranking-popup-title{font-size:20px}
    .ranking-popup-example-metrics{grid-template-columns:1fr}
  }

  @media(max-width:768px){
    .map-explorer{
      display:flex;
      flex-direction:column;
      align-items:stretch;
      gap:12px;
      padding:12px;
    }
    .map-visual{
      min-height:70vh;
      border-radius:20px;
    }
    .map-panel{
      min-height:25vh;
      border-radius:20px;
      padding:14px;
    }
    .map-controls{
      flex-wrap:wrap;
      gap:8px;
    }
    .map-panel .map-title,
    .map-panel .map-copy{
      font-size:13px;
    }
    .map-controls .input{
      min-height:40px;
      font-size:14px;
    }
    .card{
      padding-bottom:18px;
    }
    .map-visual .argentina-interactive-map{
      min-height:calc(70vh - 56px);
    }
    .intel-panel,
    .map-panel{
      box-shadow:0 12px 24px rgba(15,43,70,.15);
    }
    .map-visual{
      box-shadow:0 18px 34px rgba(8,25,46,.25);
    }
    .map-panel .map-controls{
      grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
    }
  }
  .wrap{
    display:block;
    padding:0;
  }
  .card{
    width:min(1040px,100%);
    min-height:100vh;
    margin:0 auto;
    border:none;
    border-radius:0;
    box-shadow:none;
    background:transparent;
    padding:16px 16px 40px;
  }
  .head{
    align-items:flex-end;
    margin-bottom:24px;
    padding:20px 0 0;
    border:none;
    border-radius:0;
    background:none;
    box-shadow:none;
    color:var(--ink);
  }
  .head::before,
  .head::after,
  .logo-wrap{
    display:none;
  }
  .title{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:clamp(32px,8vw,56px);
    line-height:1;
    color:#0f2438;
  }
  .sub{
    margin:10px 0 0;
    max-width:36rem;
    font-size:15px;
    line-height:1.45;
    color:#60758d;
    font-weight:700;
  }
  .hero-primary{
    width:100%;
    margin-top:18px;
    display:grid;
    gap:10px;
  }
  .hero-select-label{
    margin:0;
    font-size:11px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#6a8097;
    font-weight:900;
  }
  .hero-province-select{
    width:100%;
    min-height:52px;
    border-radius:18px;
    border:1px solid #cfdeeb;
    background:#ffffff;
    color:#102f4b;
    padding:0 16px;
    font-size:16px;
    font-weight:800;
    box-shadow:0 8px 18px rgba(12,40,66,.06);
  }
  .quick-nav{
    margin:0 0 28px;
    padding:10px 0 0;
    justify-content:space-between;
    align-items:center;
  }
  .auth-mini{
    gap:6px;
  }
  .account-pill,
  .auth-mini .mini-btn,
  .lang-select{
    min-height:34px;
    box-shadow:none;
  }
  .governor-rank,
  .map-explorer,
  .modules-wrap{
    margin:0;
  }
  .governor-rank{
    padding:0;
    border:none;
    border-radius:0;
    background:transparent;
    box-shadow:none;
  }
  .governor-rank-head{
    align-items:flex-end;
    margin-bottom:14px;
  }
  .governor-rank-sub{
    max-width:30rem;
  }
  .governor-rank-strip{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:minmax(220px,76%);
    gap:14px;
    max-width:none;
    margin:0;
    overflow-x:auto;
    padding:2px 0 6px;
    scroll-snap-type:x proximity;
    -webkit-overflow-scrolling:touch;
  }
  .governor-card{
    min-height:160px;
    padding:14px 0;
    border:none;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    border-bottom:1px solid #e1eaf2;
    scroll-snap-align:start;
    cursor:pointer;
  }
  .governor-card:hover{
    transform:none;
    box-shadow:none;
  }
  .gov-metrics,
  .governor-card-metrics{
    justify-content:flex-start;
    gap:14px;
  }
  .metric-box,
  .metric,
  .governor-metric{
    padding:0;
    background:transparent;
    border-radius:0;
    align-items:flex-start;
    flex:0 0 auto;
  }
  .gov-actions,
  .governor-card-actions{
    display:none;
  }
  .governor-rank-actions{
    flex-wrap:nowrap;
  }
  .map-explorer{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    padding:0;
    border:none;
    border-radius:0;
    background:transparent;
    box-shadow:none;
  }
  .map-visual,
  .map-panel,
  .intel-panel,
  .province-demand-panel,
  .province-demand-ranking-box,
  .province-demand-history-box,
  .province-demand-expanded{
    border:none;
    box-shadow:none;
    background:transparent;
  }
  .map-visual{
    min-height:360px;
    border-radius:24px;
    background:#ffffff;
    overflow:hidden;
    position:relative;
  }
  .argentina-interactive-map{
    position:relative;
    inset:auto;
    width:100%;
    height:420px;
    min-height:320px;
    background:#eef3f8;
    overflow:hidden;
  }
  #matrix-map{
    width:100%;
    height:420px;
    min-height:320px;
    display:block !important;
    opacity:0;
    pointer-events:none;
    transition:opacity .22s ease;
  }
  #matrix-map.is-ready{
    opacity:1;
    pointer-events:auto;
  }
  .matrix-map-placeholder{
    position:absolute;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    padding:28px;
    text-align:center;
    background:linear-gradient(180deg,#fbfdff 0%,#f2f6fb 100%);
    z-index:2;
  }
  .matrix-map-placeholder.active{
    display:flex;
  }
  .matrix-map-placeholder-copy{
    display:grid;
    gap:8px;
    max-width:360px;
  }
  .matrix-map-placeholder-copy strong{
    font-family:'Sora','Manrope',sans-serif;
    font-size:22px;
    line-height:1.15;
    color:#102f4b;
  }
  .matrix-map-placeholder-copy span{
    font-size:14px;
    line-height:1.5;
    color:#64798f;
    font-weight:700;
  }
  .map-panel{
    padding:0;
    min-height:0;
    gap:18px;
  }
  .map-controls{
    grid-template-columns:1fr;
    gap:10px;
    margin:0;
  }
  .map-controls .input{
    min-height:48px;
    border-radius:16px;
    box-shadow:none;
    font-size:15px;
    font-weight:800;
  }
  .intel-panel{
    padding:0;
    gap:14px;
  }
  .intel-head{
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }
  .intel-kpis,
  .intel-gauge-grid{
    grid-template-columns:1fr;
  }
  .intel-copy{
    font-size:15px;
    line-height:1.5;
  }
  .intel-actions{
    gap:0;
  }
  .intel-actions .mini-btn.buy{
    min-width:100%;
    min-height:46px;
  }
  .intel-actions .mini-btn:not(.buy){
    display:none;
  }
  .intel-actions #btnBackToProvinces{
    display:inline-flex;
    min-width:auto;
    margin-top:10px;
  }
  .province-demand-head{
    align-items:flex-start;
    flex-direction:column;
  }
  .province-demand-summary{
    font-size:14px;
    line-height:1.55;
  }
  .province-demand-metrics{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }
  .province-demand-metric{
    padding:0;
    border:none;
    background:transparent;
    min-width:92px;
  }
  .province-demand-metric b{
    font-size:18px;
  }
  .province-demand-ranking-box.is-empty,
  .province-demand-history-box.is-empty,
  .province-demand-expanded.is-empty{
    display:none;
  }
  .province-demand-ranking-box,
  .province-demand-history-box,
  .province-demand-expanded{
    padding:0;
  }
  .province-demand-ranking li,
  .report-expanded-list div,
  .report-expanded-grid div,
  .report-expanded-history{
    border:none;
    background:#f7f9fc;
  }
  .neo-main-toolbar{
    margin:44px 0 0;
    padding:20px 0 0;
    align-items:flex-start;
  }
  .neo-main{
    display:none;
  }
  .neo-main-sub{
    max-width:34rem;
    font-size:13px;
  }
  .modules-wrap{
    margin-top:44px;
  }
  .modules{
    display:flex;
    gap:10px;
    margin-top:16px;
    overflow-x:auto;
    padding-bottom:4px;
  }
  .module{
    min-width:120px;
    padding:12px 10px;
    gap:8px;
    border:none;
    background:#ffffff;
    box-shadow:none;
  }
  .module-sub{
    display:none;
  }
  .module-icon{
    width:44px;
    height:44px;
    border-radius:14px;
    box-shadow:none;
  }
  .module-title{
    font-size:13px;
  }
  #productos,
  .social-wrap,
  .health-box,
  .admin-box,
  .user-box,
  .audit-box{
    margin-top:44px;
  }
  @media (min-width: 900px){
    .card{
      padding:22px 24px 52px;
    }
    .head{
      display:grid;
      grid-template-columns:minmax(0,1fr) 320px;
      gap:24px;
      align-items:end;
    }
    .hero-primary{
      margin-top:0;
      justify-self:end;
      width:320px;
    }
    .map-explorer{
      grid-template-columns:minmax(0,1.45fr) minmax(300px,.82fr);
      align-items:start;
    }
    .map-visual{
      min-height:520px;
    }
    #matrix-map{
      height:520px;
      min-height:520px;
    }
    .modules{
      justify-content:flex-start;
    }
    .module{
      min-width:136px;
    }
  }
  .top-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:28px;
    padding-top:4px;
  }
  .top-bar-brand{
    display:flex;
    align-items:center;
    gap:10px;
  }
  .top-bar-mark{
    font-size:14px;
    font-weight:800;
    color:#0f2438;
    letter-spacing:-.01em;
  }
  .top-bar-tools{
    display:flex;
    align-items:center;
    gap:8px;
  }
  .account-menu{
    position:relative;
  }
  .account-menu > summary{
    list-style:none;
  }
  .account-menu > summary::-webkit-details-marker{
    display:none;
  }
  .account-menu-trigger{
    min-height:36px;
    padding:0 12px;
    border:1px solid #d7e2ed;
    border-radius:999px;
    background:#ffffff;
    display:inline-flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    color:#153550;
    font-size:12px;
    font-weight:800;
  }
  .account-menu-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#0f7db1;
  }
  .account-menu-panel{
    position:absolute;
    right:0;
    top:calc(100% + 8px);
    width:min(300px,calc(100vw - 32px));
    padding:14px;
    border:1px solid #dce6ef;
    border-radius:18px;
    background:rgba(255,255,255,.98);
    box-shadow:0 20px 40px rgba(15,43,70,.10);
    backdrop-filter:blur(10px);
    z-index:40;
  }
  .hero-section{
    margin-bottom:32px;
  }
  .hero-copy{
    display:grid;
    gap:8px;
  }
  .hero-eyebrow,
  .section-eyebrow{
    margin:0;
    font-size:11px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#71859a;
    font-weight:900;
  }
  .hero-quiet-actions{
    display:flex;
    align-items:center;
  }
  .hero-link{
    color:#5c738b;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
  }
  .hero-link:hover{
    color:#0f7db1;
  }
  .dcv-entry{
    display:inline-block;
    margin-top:20px;
    padding:14px 22px;
    border-radius:14px;
    background:linear-gradient(135deg,#5b8cff,#9b5cff);
    color:white;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
  }
  .dcv-entry:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
  }
  .primary-action-section,
  .territory-section,
  .governor-rank,
  .neo-main-toolbar,
  .modules-wrap{
    margin-top:40px;
  }
  .section-header{
    display:grid;
    gap:6px;
    margin-bottom:14px;
  }
  .section-title{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:clamp(24px,5vw,34px);
    line-height:1.08;
    color:#102f4b;
  }
  .section-subtitle{
    margin:0;
    font-size:14px;
    line-height:1.5;
    color:#60758d;
    font-weight:700;
    max-width:34rem;
  }
  .primary-action-card{
    padding:18px;
    border-radius:24px;
    background:linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
    border:1px solid #dfe9f2;
  }
  .territory-section{
    padding-top:6px;
  }
  .territory-section-shell{
    display:grid;
    gap:18px;
    min-width:0;
    min-height:0;
    align-items:stretch;
    grid-template-columns:1fr;
  }
  .territory-section.is-idle .map-panel{
    display:none;
  }
  .territory-section.is-active .map-visual,
  .territory-section.is-active .map-panel{
    animation:none;
  }
  .map-column{
    width:100%;
    min-width:0;
    min-height:420px;
    height:auto;
    position:relative;
  }
  .panel-column{
    width:100%;
    min-width:0;
    min-height:420px;
    height:auto;
    position:relative;
  }
  .map-visual{
    width:100%;
    border:1px solid #e4ebf2;
    min-width:0;
    min-height:420px;
    height:auto;
    position:relative;
    z-index:1;
    overflow:visible;
  }
  .map-panel{
    background:#ffffff;
    border-radius:24px;
    min-width:0;
    min-height:420px;
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
  }
  .province-demand-panel{
    padding-top:8px;
  }
  .province-demand-summary:empty,
  .province-demand-reportHint:empty{
    display:none;
  }
  .governor-rank{
    overflow:hidden;
  }
  .governor-rank-strip{
    scrollbar-width:none;
  }
  .governor-rank-strip::-webkit-scrollbar{
    display:none;
  }
  .governor-card{
    min-width:240px;
  }
  .gov-name{
    font-size:15px;
    font-weight:700;
  }
  .gov-province{
    font-size:12px;
  }
  .metric-value,
  .governor-metric-value{
    font-size:22px;
    font-weight:800;
  }
  .metric-label{
    font-size:9px;
    letter-spacing:.08em;
  }
  .neo-main-toolbar{
    border-top:1px solid #e6edf4;
  }
  .modules-wrap{
    border-top:1px solid #e6edf4;
    padding-top:24px;
  }
  .social-wrap{
    border-top:1px solid #e6edf4;
    padding-top:24px;
  }
  .foot,
  .social-title,
  .site-copy{
    color:#6d8196;
  }
  @keyframes sectionLift{
    from{opacity:0;transform:translateY(10px)}
    to{opacity:1;transform:translateY(0)}
  }
  @media (max-width: 899px){
    .auth-mini{
      gap:10px;
    }
    .auth-mini .row{
      display:grid;
      gap:8px;
    }
    .account-pill{
      max-width:none;
      width:100%;
    }
    .territory-section-shell{
      grid-template-columns:1fr;
    }
  }
  @media (min-width: 900px){
    .hero-section{
      grid-template-columns:minmax(0,1fr) auto;
      align-items:end;
    }
    .territory-section-shell{
      grid-template-columns:1fr;
      align-items:start;
      min-width:0;
    }
    .map-visual{
      width:100%;
      min-height:420px;
    }
    #matrix-map,
    .argentina-interactive-map{
      width:100%!important;
      height:420px!important;
      min-height:420px;
    }
  }
  @media (min-width: 1024px){
    .territory-section.is-active .territory-section-shell{
      display:grid;
      grid-template-columns:minmax(0,1fr) 380px;
      gap:24px;
      align-items:start;
      min-width:0;
      min-height:420px;
    }
    .territory-section.is-active .map-column{
      grid-column:1;
    }
    .territory-section.is-active .panel-column{
      grid-column:2;
      width:380px;
    }
    .map-visual{
      width:100%;
      min-height:420px;
      max-width:none;
    }
    .territory-section.is-active .map-panel{
      width:100%;
      min-width:0;
      min-height:420px;
      align-self:stretch;
    }
  }
  @media (max-width: 1023px){
    .territory-section-shell{
      display:block;
    }
    .territory-section.is-active .map-panel{
      margin-top:18px;
    }
  }
  .map-explorer,
  .territory-section,
  .territory-section-shell,
  .map-visual,
  .map-panel{
    min-width:0;
    min-height:0;
    overflow:visible;
  }
  .territory-section.is-active,
  .territory-section.is-active .territory-section-shell,
  .territory-section.is-active .map-visual{
    min-height:420px;
    height:auto;
  }
  #matrix-map,
  .argentina-interactive-map{
    width:100%;
    height:420px;
    min-height:320px;
    position:relative !important;
    inset:auto !important;
  }
  .argentina-interactive-map,
  .territory-section-shell,
  .map-visual{
    overflow:visible !important;
  }
  #matrix-map{
    z-index:1;
    display:block !important;
    position:relative;
    height:420px !important;
  }
  @media (min-width: 1024px){
    .territory-section.is-active{
      min-height:420px;
      height:auto;
    }
    .territory-section.is-active .territory-section-shell,
    .territory-section.is-active .map-visual,
    .territory-section.is-active .map-panel{
      min-height:420px;
      height:auto;
    }
  }
  .container-main{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    align-items:start;
    min-width:0;
  }
  .container-main .map-column{
    width:100%;
    min-width:0;
    max-width:none;
    flex:1 1 auto;
    position:relative;
    z-index:1;
  }
  .container-main .map-visual{
    width:100%;
    min-width:0;
    max-width:none;
  }
  .container-main #matrix-map{
    width:100% !important;
    max-width:none;
    height:420px !important;
    display:block;
  }
  .container-main .panel-column{
    width:100%;
    min-width:0;
    max-width:none;
    flex:0 0 auto;
    position:relative;
    z-index:2;
  }
  @media (min-width: 1024px){
    .container-main{
      display:grid;
      grid-template-columns:minmax(0,1fr) 380px;
      gap:24px;
      align-items:start;
    }
    .container-main .map-column{
      grid-column:1;
      width:100%;
      min-width:0;
      max-width:none;
    }
    .container-main .panel-column{
      grid-column:2;
      width:380px;
      min-width:380px;
      max-width:380px;
      justify-self:end;
      position:relative;
      right:auto;
    }
    .container-main .map-panel{
      width:100%;
      min-width:0;
      max-width:none;
      position:relative;
    }
  }
  @media (max-width: 768px){
    .container-main{
      grid-template-columns:1fr;
    }
    .container-main .panel-column{
      width:100%;
      min-width:0;
      max-width:none;
    }
  }
  .territorial-layout{
    padding-top:6px;
  }
  .territorial-main{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    align-items:start;
    min-width:0;
    min-height:0;
  }
  .territorial-map{
    width:100%;
    min-width:0;
    min-height:420px;
    position:relative;
  }
  .territorial-map .map-visual{
    width:100%;
    min-width:0;
    min-height:420px;
    height:auto;
    max-width:none;
    position:relative;
    overflow:visible;
  }
  .territorial-map #matrix-map{
    width:100% !important;
    height:480px !important;
    min-height:480px;
    display:block !important;
    position:relative !important;
    inset:auto !important;
  }
  .territorial-panel{
    width:100%;
    min-width:0;
    max-width:none;
    position:relative;
  }
  .territorial-panel .map-panel{
    width:100%;
    min-width:0;
    max-width:none;
    min-height:420px;
    position:relative;
  }
  @media (min-width: 1024px){
    .territorial-main{
      display:grid;
      grid-template-columns:minmax(0,1fr) 380px;
      gap:32px;
      align-items:start;
    }
    .territorial-map{
      grid-column:1;
      width:100%;
      min-width:0;
      max-width:none;
    }
    .territorial-panel{
      grid-column:2;
      width:380px;
      min-width:380px;
      max-width:380px;
      justify-self:end;
    }
  }
  @media (max-width: 768px){
    .territorial-main{
      grid-template-columns:1fr;
      gap:18px;
    }
    .territorial-panel{
      width:100%;
      min-width:0;
      max-width:none;
    }
    .territorial-map #matrix-map{
      height:420px !important;
      min-height:420px;
    }
  }
  .territorial-layout{
    padding-top:6px;
  }
  .territorial-layout .territory-section-shell,
  .territorial-flow{
    display:block !important;
    width:100%;
    min-width:0;
    min-height:0;
  }
  .territorial-flow > * + *{
    margin-top:20px;
  }
  .selector-block{
    width:100%;
    max-width:1100px;
    margin:0 auto;
  }
  .selector-block .map-controls{
    margin:0;
    display:grid;
    grid-template-columns:minmax(180px,220px) minmax(0,1fr);
    gap:10px;
    align-items:center;
  }
  .territorial-map-block{
    width:100%;
    max-width:1100px;
    margin:24px auto 0;
    min-width:0;
  }
  .territorial-map-block .map-visual{
    width:100%;
    min-width:0;
    min-height:480px;
    border-radius:24px;
    overflow:hidden;
    background:#f5f7fb;
    position:relative;
    max-width:none;
  }
  .territorial-panel-block{
    width:100%;
    max-width:1100px;
    margin:20px auto 0;
    padding:0;
    min-width:0;
  }
  .territorial-panel-block .map-panel{
    width:100%;
    min-width:0;
    min-height:0;
    padding:0;
    border:none;
    background:transparent;
    box-shadow:none;
  }
  .territorial-panel-block .intel-panel,
  .territorial-panel-block .province-demand-panel{
    border-radius:24px;
    border:1px solid #e3ebf3;
    background:#ffffff;
    box-shadow:none;
  }
  .territorial-panel-block .province-demand-panel{
    margin-top:18px;
    padding:20px;
  }
  .territory-section.is-idle .territorial-panel-block{
    display:none;
  }
  .territory-section.is-idle .territorial-map-block{
    margin-top:12px;
  }
  .territorial-map-block #matrix-map{
    width:100% !important;
    height:480px !important;
    min-height:480px;
    display:block !important;
    position:relative !important;
    top:auto !important;
    left:auto !important;
    right:auto !important;
    bottom:auto !important;
    z-index:1 !important;
  }
  @media (max-width: 768px){
    .selector-block .map-controls{
      grid-template-columns:1fr;
    }
    .territorial-map-block .map-visual{
      min-height:360px;
    }
    .territorial-map-block #matrix-map{
      height:360px !important;
      min-height:360px;
    }
  }
  #matrix-map,
  .territorial-map-block #matrix-map,
  .territorial-map-block .argentina-interactive-map{
    position:relative !important;
    inset:auto !important;
    width:100% !important;
    max-width:none !important;
    height:420px;
    display:block !important;
  }
  .territorial-layout{
    margin-top:44px;
  }
  .territorial-layout .territory-section-shell,
  .territorial-layout .territorial-flow{
    display:block !important;
    width:100%;
    min-width:0;
    min-height:0;
  }
  .territorial-flow > section,
  .territorial-flow > div{
    width:100%;
  }
  .selector-block,
  .territory-active-state-section,
  .territorial-map-section,
  .territorial-summary-section,
  .territorial-metrics-section,
  .territorial-report-section{
    max-width:1040px;
    margin:0 auto;
  }
  .selector-block{
    margin-top:8px;
  }
  .selector-block .map-controls{
    display:grid;
    grid-template-columns:minmax(180px,220px) minmax(0,1fr);
    gap:10px;
    align-items:center;
  }
  .territory-active-state-section{
    margin-top:18px;
  }
  .territory-active-card{
    border:1px solid #e3ebf3;
    border-radius:24px;
    background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    padding:22px;
    display:grid;
    gap:10px;
  }
  .territory-active-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
  }
  .territory-active-title{
    margin:4px 0 0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:26px;
    line-height:1.1;
    color:#102f4b;
  }
  .territory-active-line{
    margin:0;
    font-size:16px;
    line-height:1.45;
    color:#193a58;
    font-weight:800;
  }
  .territory-active-note{
    margin:0;
    font-size:13px;
    line-height:1.5;
    color:#637992;
    font-weight:700;
  }
  .territorial-map-section{
    width:100%;
    margin-top:24px;
  }
  .territorial-map-shell{
    width:100%;
    max-width:1040px;
    margin:0 auto;
    border-radius:24px;
    overflow:hidden;
    background:#f5f7fb;
    position:relative;
    border:1px solid #e4ebf2;
  }
  .territorial-map-shell #matrix-map,
  .territorial-map-shell .argentina-interactive-map{
    width:100% !important;
    height:500px !important;
    min-height:500px;
    display:block !important;
    position:relative !important;
    inset:auto !important;
    background:#edf3f8;
  }
  .territorial-summary-section{
    margin-top:22px;
  }
  .territorial-summary-card{
    border:1px solid #e3ebf3;
    border-radius:24px;
    background:#ffffff;
    padding:24px;
    display:grid;
    gap:16px;
  }
  .territorial-summary-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
  }
  .territorial-summary-copy{
    margin:0;
    font-size:16px;
    line-height:1.6;
    color:#173652;
    font-weight:700;
    max-width:54rem;
  }
  .territorial-signals{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }
  .territorial-summary-card .intel-chip{
    margin:0;
    min-height:72px;
    display:flex;
    align-items:flex-start;
    justify-content:flex-start;
    padding:14px 16px;
    border-radius:18px;
    border:1px solid #e6edf4;
    background:#f8fbff;
    color:#1d3f5d;
  }
  .territorial-summary-card .intel-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
  }
  .territorial-summary-card .intel-actions .mini-btn{
    min-height:46px;
  }
  .territorial-metrics-section{
    margin-top:18px;
  }
  .territorial-metrics-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:12px;
  }
  .territorial-metrics-grid .province-demand-metric{
    min-width:0;
    padding:18px 16px;
    border-radius:20px;
    border:1px solid #e3ebf3;
    background:#ffffff;
  }
  .territorial-metrics-grid .province-demand-metric b{
    display:block;
    font-size:28px;
    line-height:1;
    color:#0f2438;
  }
  .territorial-metrics-grid .province-demand-metric span{
    display:block;
    margin-top:8px;
    font-size:11px;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:#6d8196;
    font-weight:800;
  }
  .territorial-report-section{
    margin-top:18px;
  }
  .territorial-report-card{
    border:1px solid #e3ebf3;
    border-radius:24px;
    background:#ffffff;
    padding:24px;
    box-shadow:none;
  }
  .territorial-report-card .province-demand-summary{
    max-width:62rem;
  }
  .territory-section.is-idle .territorial-summary-section,
  .territory-section.is-idle .territorial-metrics-section,
  .territory-section.is-idle .territorial-report-section{
    display:none;
  }
  .territory-section.is-idle .territorial-map-shell #matrix-map{
    opacity:0;
    pointer-events:none;
  }
  .territory-section.is-active .territorial-map-shell #matrix-map{
    opacity:1;
    pointer-events:auto;
  }
  .governor-rank{
    margin-top:56px;
  }
  .governor-rank-title{
    font-size:26px;
    color:#102f4b;
  }
  .governor-rank-sub{
    color:#6b8197;
  }
  .neo-main-toolbar{
    margin-top:56px;
    padding-top:28px;
  }
  .modules-wrap{
    margin-top:52px;
    padding-top:24px;
  }
  @media (max-width: 768px){
    .selector-block,
    .territory-active-state-section,
    .territorial-map-section,
    .territorial-summary-section,
    .territorial-metrics-section,
    .territorial-report-section{
      max-width:none;
    }
    .selector-block .map-controls{
      grid-template-columns:1fr;
    }
    .territory-active-card,
    .territorial-summary-card,
    .territorial-report-card{
      padding:18px;
      border-radius:22px;
    }
    .territory-active-title{
      font-size:22px;
    }
    .territorial-map-shell #matrix-map,
    .territorial-map-shell .argentina-interactive-map{
      height:340px !important;
      min-height:340px;
    }
    .territorial-signals{
      grid-template-columns:1fr;
    }
    .territorial-metrics-grid{
      grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .territorial-summary-card .intel-actions .mini-btn{
      width:100%;
      justify-content:center;
    }
  }
  .card{
    width:min(1280px,94vw);
    border-radius:32px;
    border:1px solid rgba(209,223,236,.94);
    background:rgba(255,255,255,.88);
    box-shadow:0 30px 70px rgba(10,33,58,.14);
    padding:28px 30px 44px;
    backdrop-filter:blur(18px);
  }
  .head.hero-section{
    margin-bottom:0;
    padding:34px 36px;
    border-radius:30px;
    background:
      radial-gradient(520px 240px at 100% 0%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 72%),
      linear-gradient(135deg,#09243c 0%,#0d416b 48%,#1679a7 100%);
    box-shadow:0 24px 52px rgba(10,36,61,.24);
  }
  .hero-copy{
    max-width:44rem;
    gap:12px;
  }
  .hero-eyebrow,
  .section-eyebrow{
    letter-spacing:.14em;
  }
  .title{
    font-size:clamp(42px,6vw,66px);
    line-height:.94;
    letter-spacing:-.05em;
  }
  .sub{
    margin-top:0;
    max-width:40rem;
    font-size:17px;
    line-height:1.6;
    color:rgba(232,244,255,.9);
  }
  .hero-link{
    display:inline-flex;
    align-items:center;
    min-height:42px;
    padding:0 16px;
    border-radius:999px;
    border:1px solid rgba(223,239,252,.26);
    background:rgba(255,255,255,.08);
    color:#f3f9ff;
    backdrop-filter:blur(10px);
  }
  .hero-link:hover{
    color:#ffffff;
    background:rgba(255,255,255,.14);
  }
  .primary-action-section,
  .territory-section,
  .governor-rank,
  .neo-main-toolbar,
  .modules-wrap{
    margin-top:52px;
  }
  .section-title{
    letter-spacing:-.04em;
  }
  .section-subtitle{
    max-width:38rem;
  }
  .primary-action-card{
    max-width:460px;
    padding:24px 26px;
    border-radius:28px;
    border:1px solid #dce7f1;
    background:
      radial-gradient(260px 120px at 100% 0%, rgba(31,155,215,.08), rgba(31,155,215,0) 72%),
      linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
    box-shadow:0 18px 34px rgba(13,43,70,.08);
  }
  .hero-province-select{
    min-height:56px;
    border-radius:18px;
    font-size:15px;
    font-weight:800;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
  }
  .territory-active-card,
  .territorial-summary-card,
  .territorial-report-card{
    border-radius:28px;
    border:1px solid #dfe8f1;
    background:
      radial-gradient(220px 120px at 100% 0%, rgba(31,155,215,.06), rgba(31,155,215,0) 72%),
      linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    box-shadow:0 20px 40px rgba(13,43,70,.06);
  }
  .territorial-map-shell{
    border-radius:28px;
    border:1px solid #dfe8f1;
    box-shadow:0 24px 46px rgba(13,43,70,.08);
    background:linear-gradient(180deg,#f8fbff 0%,#eef4fa 100%);
  }
  .governor-rank{
    border-radius:30px;
    padding:24px;
    border:1px solid #dce7f1;
    background:
      radial-gradient(780px 260px at 100% -10%, rgba(120,163,255,.14), rgba(120,163,255,0) 72%),
      linear-gradient(180deg,#ffffff 0%,#f6fbff 100%);
    box-shadow:0 24px 48px rgba(13,43,70,.08);
  }
  .governor-rank-strip{
    gap:16px;
    max-width:none;
  }
  .governor-card{
    min-width:0;
    padding:20px;
    border-radius:24px;
    border:1px solid #e0e8f1;
    background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    box-shadow:0 16px 34px rgba(13,43,70,.06);
  }
  .governor-card:hover{
    box-shadow:0 24px 42px rgba(13,43,70,.10);
  }
  #productos.modules-wrap{
    margin-top:56px;
    padding-top:0;
    border-top:none;
  }
  .modules-head{
    display:grid;
    gap:6px;
    margin-bottom:18px;
  }
  .modules{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:16px;
    margin-top:0;
    overflow:visible;
    padding-bottom:0;
  }
  .module-lock{
    display:inline-block;
    margin-left:6px;
    font-size:0.78em;
    opacity:.55;
    vertical-align:middle;
    transition:opacity .25s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .module:hover .module-lock{ opacity:.85; }
  .module[data-internal="true"]{
    position:relative;
  }
  .module{
    min-width:0;
    align-items:flex-start;
    justify-items:start;
    gap:14px;
    padding:22px;
    border:1px solid #dfe8f1;
    border-radius:28px;
    background:
      radial-gradient(220px 120px at 100% 0%, rgba(31,155,215,.06), rgba(31,155,215,0) 72%),
      linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
    box-shadow:0 18px 38px rgba(13,43,70,.07);
    text-align:left;
  }
  .module:hover{
    transform:translateY(-4px);
    border-color:#c8dae9;
    box-shadow:0 24px 44px rgba(13,43,70,.11);
  }
  .module-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
  }
  .module-copy{
    display:grid;
    gap:6px;
  }
  .module-title{
    font-size:17px;
  }
  .module-sub{
    display:block;
    font-size:13px;
    line-height:1.55;
    color:#647c93;
    font-weight:700;
  }
  .foot{
    margin-top:18px;
    line-height:1.7;
  }
  .social-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    padding-top:26px;
  }
  .site-copy{
    padding-top:8px;
  }
  @media (max-width: 899px){
    .card{
      width:min(100%,96vw);
      padding:20px 18px 34px;
      border-radius:28px;
    }
    .head.hero-section{
      padding:26px 22px;
      border-radius:26px;
    }
    .title{
      font-size:clamp(34px,10vw,48px);
    }
    .sub{
      font-size:15px;
    }
    .primary-action-card{
      max-width:none;
      padding:20px;
    }
    .modules{
      grid-template-columns:1fr;
    }
    .governor-rank-strip{
      grid-template-columns:1fr;
    }
    .social-wrap{
      justify-content:flex-start;
    }
    .executive-crossread,
    .territorial-crossread,
    .strategic-tracking-grid{
      grid-template-columns:1fr;
    }
    .strategic-timeline-row{
      grid-template-columns:1fr;
    }
  }
  #territorial-analysis,
  #governor-ranking,
  #modules{
    display:block;
    margin-top:68px;
  }
  #territorial-analysis .territory-section,
  #governor-ranking .governor-rank,
  #modules .modules-wrap{
    margin-top:0;
  }
  .ai-summary{
    margin:18px 0 0;
    max-width:980px;
    padding:14px 16px;
    border-radius:18px;
    border:1px solid rgba(220,231,241,.92);
    background:rgba(255,255,255,.68);
    color:#72869b;
    font-size:12px;
    line-height:1.65;
    font-weight:700;
    letter-spacing:.01em;
  }
  .executive-crossread,
  .territorial-crossread{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    margin-top:16px;
  }
  .executive-crossread-item,
  .territorial-crossread-item{
    display:grid;
    gap:6px;
    padding:14px 16px;
    border-radius:18px;
    border:1px solid rgba(220,231,241,.92);
    background:rgba(255,255,255,.74);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.72);
  }
  .executive-crossread-item span:first-child,
  .territorial-crossread-item span{
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#72869b;
  }
  .executive-crossread-item strong,
  .territorial-crossread-item strong{
    display:block;
    font-size:14px;
    line-height:1.5;
    color:#173652;
    white-space:normal;
    overflow-wrap:break-word;
  }
  .strategic-tracking-panel{
    display:grid;
    gap:14px;
    margin-top:18px;
    padding:18px;
    border-radius:24px;
    border:1px solid rgba(220,231,241,.92);
    background:
      radial-gradient(220px 120px at 100% 0%, rgba(31,155,215,.05), rgba(31,155,215,0) 72%),
      linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    box-shadow:0 18px 36px rgba(13,43,70,.06);
  }
  .strategic-tracking-head{
    display:flex;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
    align-items:flex-start;
  }
  .strategic-tracking-head p,
  .strategic-tracking-head strong{
    margin:0;
  }
  .strategic-tracking-head p{
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#72869b;
  }
  .strategic-tracking-head strong{
    font-size:18px;
    line-height:1.35;
    letter-spacing:-.03em;
    color:#173652;
  }
  .strategic-tracking-status{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 12px;
    border-radius:999px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    background:#edf2f7;
    color:#5a6d80;
  }
  .strategic-tracking-status[data-risk="alto"]{
    background:#ffe3e3;
    color:#a61e1e;
  }
  .strategic-tracking-status[data-risk="medio"]{
    background:#fff1d9;
    color:#9a6700;
  }
  .strategic-tracking-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
  }
  .strategic-tracking-card{
    display:grid;
    gap:8px;
    min-height:128px;
    padding:16px;
    border-radius:20px;
    border:1px solid rgba(220,231,241,.92);
    background:rgba(255,255,255,.78);
  }
  .strategic-tracking-card span{
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#72869b;
  }
  .strategic-tracking-card strong{
    font-size:16px;
    line-height:1.45;
    color:#173652;
  }
  .strategic-tracking-card small{
    color:#72869b;
    font-size:12px;
    line-height:1.5;
  }
  .strategic-timeline{
    display:grid;
    gap:10px;
  }
  .strategic-timeline-row{
    display:grid;
    grid-template-columns:180px minmax(0,1fr) 72px;
    gap:12px;
    align-items:center;
  }
  .strategic-timeline-label{
    font-size:12px;
    font-weight:800;
    color:#173652;
  }
  .strategic-timeline-track{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:6px;
  }
  .strategic-timeline-bar{
    height:14px;
    border-radius:999px;
    background:#dbe5ef;
    overflow:hidden;
    position:relative;
  }
  .strategic-timeline-bar i{
    display:block;
    height:100%;
    border-radius:inherit;
    transition:height .2s ease, opacity .2s ease, transform .2s ease;
    opacity:.92;
  }
  .strategic-timeline-bar i[data-risk="alto"]{
    background:linear-gradient(180deg,#ef4444,#dc2626);
  }
  .strategic-timeline-bar i[data-risk="medio"]{
    background:linear-gradient(180deg,#f59e0b,#d97706);
  }
  .strategic-timeline-bar i[data-risk="bajo"]{
    background:linear-gradient(180deg,#4ade80,#16a34a);
  }
  .strategic-timeline-meta{
    font-size:11px;
    font-weight:800;
    color:#72869b;
    text-align:right;
  }
  body.motion-ready .fade-in{
    opacity:0;
    transform:translateY(12px);
    transition:opacity .45s ease, transform .45s ease;
  }
  body.motion-ready .fade-in.visible{
    opacity:1;
    transform:translateY(0);
  }
  .primary-action-section,
  .neo-main-toolbar{
    margin-top:64px;
  }
  .executive-intelligence-block{
    margin-top:40px;
  }
  .executive-intelligence-shell{
    display:grid;
    gap:14px;
    max-width:1040px;
  }
  .header-intelligence{
    height:auto;
    padding:16px;
    display:grid;
    gap:14px;
    border-radius:24px;
    border:1px solid rgba(223,232,241,.88);
    background:rgba(255,255,255,.82);
    box-shadow:0 18px 34px rgba(13,43,70,.05);
    backdrop-filter:blur(16px);
  }
  .header-intelligence-top{
    display:flex;
    justify-content:space-between;
    gap:14px;
    align-items:flex-start;
    flex-wrap:wrap;
  }
  .header-intelligence .section-subtitle{
    max-width:34rem;
  }
  .executive-status{
    margin:0;
    color:#72869b;
    font-size:12px;
    font-weight:700;
    letter-spacing:.01em;
  }
  .executive-summary-strip{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
  }
  .executive-top-ranking{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:4px;
  }
  .executive-rank-chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 12px;
    border-radius:999px;
    border:1px solid rgba(223,232,241,.92);
    background:rgba(255,255,255,.82);
    color:#16324a;
    font-size:12px;
    font-weight:700;
    box-shadow:0 10px 22px rgba(13,43,70,.05);
  }
  .executive-rank-chip b{
    color:#0f172a;
    font-size:13px;
  }
  .executive-card{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    gap:8px;
    min-height:0;
    height:auto;
    padding:16px 18px;
    border-radius:20px;
    border:1px solid rgba(223,232,241,.92);
    background:
      radial-gradient(180px 110px at 100% 0%, rgba(31,155,215,.04), rgba(31,155,215,0) 72%),
      linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.72),
      0 14px 28px rgba(13,43,70,.05);
    overflow:visible;
    isolation:isolate;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .executive-card::before{
    content:"";
    position:absolute;
    inset:10px auto 10px 10px;
    width:4px;
    border-radius:999px;
    background:#cbd5e1;
    opacity:.95;
    z-index:0;
  }
  .executive-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:
      radial-gradient(180px 100px at 100% 0%, rgba(255,255,255,.48), rgba(255,255,255,0) 72%),
      linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,0));
    pointer-events:none;
    z-index:0;
  }
  .executive-card > *{
    position:relative;
    z-index:1;
  }
  .executive-card:hover{
    transform:translateY(-2px) scale(1.01);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.78),
      0 18px 32px rgba(13,43,70,.08);
  }
  .executive-card.executive-card--low{
    border-color:rgba(203,213,225,.92);
    background:
      radial-gradient(220px 120px at 100% 0%, rgba(255,255,255,.56), rgba(255,255,255,0) 72%),
      linear-gradient(180deg, #f5f7fa, #eef1f5);
  }
  .executive-card.executive-card--low::before{
    background:#cbd5e1;
  }
  .executive-card.executive-card--medium{
    border-color:rgba(245,158,11,.20);
    background:
      radial-gradient(220px 120px at 100% 0%, rgba(255,255,255,.52), rgba(255,255,255,0) 72%),
      linear-gradient(180deg, #fff6e6, #ffe9cc);
  }
  .executive-card.executive-card--medium::before{
    background:#f59e0b;
  }
  .executive-card.executive-card--high{
    border-color:rgba(239,68,68,.20);
    background:
      radial-gradient(220px 120px at 100% 0%, rgba(255,255,255,.44), rgba(255,255,255,0) 72%),
      linear-gradient(180deg, #ffeaea, #ffd6d6);
  }
  .executive-card.executive-card--high::before{
    background:#ef4444;
  }
  .executive-card.executive-card--critical{
    border-color:rgba(220,38,38,.24);
    background:
      radial-gradient(220px 120px at 100% 0%, rgba(255,255,255,.36), rgba(255,255,255,0) 72%),
      linear-gradient(180deg, #ffe0e0, #ffb3b3);
  }
  .executive-card.executive-card--critical::before{
    background:#dc2626;
  }
  .executive-label,
  .intel-chip-label{
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#72869b;
  }
  .executive-value,
  .intel-chip strong{
    display:block;
    margin:0;
    font-size:16px;
    line-height:1.4;
    letter-spacing:-.02em;
    color:#173652;
    white-space:normal;
    word-wrap:break-word;
    overflow-wrap:break-word;
  }
  .executive-card.executive-card--high .executive-value,
  .executive-card.executive-card--critical .executive-value{
    color:#6f1d1b;
  }
  .executive-chip{
    min-height:104px;
  }
  .primary-card{
    gap:12px;
    padding:20px;
    border-radius:20px;
  }
  .primary-card .executive-label{
    color:#5f7388;
  }
  .executive-primary-text{
    margin:0;
    font-size:18px;
    line-height:1.5;
    letter-spacing:-.02em;
    color:#173652;
  }
  .primary-card-divider{
    height:1px;
    background:linear-gradient(90deg, rgba(196,210,224,.72), rgba(196,210,224,0));
  }
  .primary-impact{
    display:grid;
    gap:8px;
  }
  .details-toggle-row{
    display:flex;
    justify-content:flex-start;
  }
  .executive-toggle-btn{
    appearance:none;
    border:none;
    cursor:pointer;
    min-height:44px;
    padding:0 18px;
    border-radius:999px;
    background:#edf4fa;
    color:#173652;
    font:700 13px/1 'Manrope',sans-serif;
    letter-spacing:.01em;
    transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
  }
  .executive-toggle-btn:hover{
    transform:translateY(-1px);
    background:#e5eef7;
    box-shadow:0 10px 18px rgba(13,43,70,.08);
  }
  .details-panel{
    display:grid;
    grid-template-rows:0fr;
    opacity:0;
    margin-top:0;
    transition:grid-template-rows .3s ease, opacity .3s ease, margin-top .3s ease;
  }
  .details-panel.open{
    grid-template-rows:1fr;
    opacity:1;
    margin-top:4px;
  }
  .details-panel-inner{
    min-height:0;
    overflow:hidden;
    display:grid;
    gap:14px;
  }
  .executive-details-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }
  .executive-detail-card{
    min-height:112px;
  }
  .territory-section-header .section-subtitle,
  .modules-head .section-subtitle{
    max-width:42rem;
  }
  .territory-section-header .section-title{
    font-size:28px;
    line-height:1.05;
  }
  .territorial-flow > * + *{
    margin-top:28px;
  }
  .selector-block{
    margin-top:14px;
  }
  .selector-block .map-controls{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    max-width:280px;
  }
  .territory-selector-label{
    display:block;
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#72869b;
  }
  .territorial-map-section{
    margin-top:40px;
    margin-bottom:40px;
    transition:margin .3s ease;
  }
  .territorial-map-shell{
    max-width:1040px;
    position:relative;
    overflow:hidden;
    border-radius:32px;
    box-shadow:0 24px 46px rgba(13,43,70,.08);
    transition:max-width .3s ease, min-height .3s ease, padding .3s ease, box-shadow .3s ease, background .3s ease, border-radius .3s ease;
  }
  .territorial-map-shell #matrix-map,
  .territorial-map-shell .argentina-interactive-map{
    height:520px !important;
    min-height:420px;
    transition:opacity .3s ease, transform .3s ease, visibility .3s ease;
  }
  .territorial-map-shell.report-view{
    width:100%;
    min-height:100vh;
  }
  .territory-section .selector-block{
    transition:opacity .24s ease, transform .24s ease, margin .24s ease;
  }
  .territory-section.is-active .selector-block{
    opacity:0;
    pointer-events:none;
    transform:translateY(-10px);
    height:0;
    margin:0;
    overflow:hidden;
  }
  .territory-section.is-active .territorial-map-section{
    margin-top:20px;
    margin-bottom:20px;
  }
  .territory-section.is-active .territorial-map-shell{
    max-width:none;
    min-height:100vh;
    padding:24px;
    overflow:visible;
    border-radius:36px;
    background:
      radial-gradient(920px 340px at 100% -12%, rgba(31,155,215,.12), rgba(31,155,215,0) 72%),
      linear-gradient(180deg,#fdfefe 0%,#f4f8fc 100%);
    box-shadow:0 28px 54px rgba(13,43,70,.10);
  }
  .territory-section.is-active .territorial-map-shell #matrix-map,
  .territory-section.is-active .territorial-map-shell .argentina-interactive-map{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:scale(1.02);
    position:absolute;
    inset:0;
  }
  .province-floating-panel{
    position:absolute;
    top:20px;
    right:20px;
    width:min(430px, calc(100% - 40px));
    max-height:calc(100% - 40px);
    opacity:0;
    pointer-events:none;
    transform:translateY(18px) scale(.98);
    transition:opacity .32s ease, transform .32s ease;
    z-index:8;
  }
  .territory-section.is-active .province-floating-panel{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0) scale(1);
    position:relative;
    top:auto;
    right:auto;
    width:100%;
    max-height:none;
  }
  .province-floating-panel-inner{
    display:grid;
    gap:14px;
    max-height:calc(100vh - 180px);
    padding:18px;
    overflow:auto;
    border-radius:28px;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(18px);
    box-shadow:0 26px 46px rgba(13,43,70,.16);
    border:1px solid rgba(223,232,241,.94);
    -webkit-overflow-scrolling:touch;
  }
  .territory-section.is-active .province-floating-panel-inner{
    max-height:none;
    min-height:calc(100vh - 220px);
    padding:0;
    overflow:visible;
    border:none;
    border-radius:0;
    background:transparent;
    backdrop-filter:none;
    box-shadow:none;
  }
  .province-panel-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
  }
  .province-section{
    display:grid;
    gap:14px;
  }
  .province-section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:12px;
  }
  .province-section-kicker{
    margin:0 0 6px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#72869b;
  }
  .province-section-title{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:18px;
    line-height:1.15;
    color:#173652;
    letter-spacing:-.03em;
  }
  .province-current-section{
    gap:16px;
    padding:18px;
    border-radius:26px;
    background:
      radial-gradient(280px 160px at 100% 0%, rgba(31,155,215,.08), rgba(31,155,215,0) 72%),
      linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    box-shadow:0 22px 36px rgba(13,43,70,.08);
  }
  .province-current-section .province-section-title{
    font-size:22px;
    color:#102f4b;
  }
  .province-demand-section,
  .province-electoral-section{
    gap:14px;
  }
  .province-electoral-section{
    padding-top:6px;
  }
  .province-electoral-section .province-section-title{
    font-size:16px;
    color:#4d647a;
  }
  .province-electoral-section .province-section-kicker{
    color:#8ba0b4;
  }
  .province-panel-kicker{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 12px;
    border-radius:999px;
    background:rgba(17,54,84,.08);
    color:#173652;
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
  }
  .province-panel-header{
    display:flex;
    justify-content:space-between;
    gap:16px;
    align-items:flex-start;
  }
  .province-panel-name{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:28px;
    line-height:1.02;
    color:#102f4b;
    letter-spacing:-.04em;
  }
  .province-panel-meta-strip{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
  }
  .province-panel-meta-card{
    display:grid;
    gap:6px;
    padding:14px 16px;
    border-radius:18px;
    background:rgba(248,251,255,.94);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
  }
  .province-panel-meta-card span,
  .province-panel-section-label,
  .province-scenario-select-wrap span,
  .province-slider-head span,
  .province-force-meta,
  .province-force-bar-copy span,
  .province-governor-meta span{
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#72869b;
  }
  .province-panel-meta-card strong{
    font-size:18px;
    line-height:1.2;
    color:#173652;
    letter-spacing:-.03em;
  }
  .province-panel-scenario,
  .province-control-shell,
  .province-governor-card,
  .province-report-inline{
    display:grid;
    gap:12px;
    padding:16px;
    border-radius:22px;
    background:rgba(255,255,255,.92);
    box-shadow:0 16px 28px rgba(13,43,70,.06);
  }
  .province-panel-scenario{
    grid-template-columns:minmax(0,1fr) auto;
    align-items:start;
  }
  .province-current-section .province-report-inline{
    padding:0;
    background:transparent;
    box-shadow:none;
  }
  .province-panel-scenario strong,
  .province-slider-head strong{
    display:block;
    font-size:18px;
    line-height:1.35;
    color:#173652;
    letter-spacing:-.03em;
  }
  .province-panel-scenario p,
  .province-slider-meta{
    margin:0;
    font-size:13px;
    line-height:1.55;
    color:#5e7388;
    font-weight:700;
  }
  .province-scenario-select-wrap{
    display:grid;
    gap:8px;
    min-width:124px;
  }
  .province-force-grid{
    display:grid;
    gap:12px;
  }
  .province-electoral-section .province-panel-meta-card,
  .province-electoral-section .province-panel-scenario,
  .province-electoral-section .province-force-card,
  .province-electoral-section .province-control-shell,
  .province-electoral-section .province-governor-card{
    background:rgba(248,251,255,.88);
    box-shadow:0 10px 18px rgba(13,43,70,.04);
  }
  .province-force-card{
    display:grid;
    gap:12px;
    padding:16px;
    border-radius:22px;
    background:rgba(255,255,255,.92);
    box-shadow:0 14px 28px rgba(13,43,70,.06);
    border:1px solid rgba(223,232,241,.82);
    transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    cursor:pointer;
  }
  .province-force-card:hover{
    transform:translateY(-2px);
    box-shadow:0 20px 34px rgba(13,43,70,.10);
  }
  .province-force-card.is-active{
    border-color:rgba(15,125,177,.28);
    box-shadow:0 22px 36px rgba(15,125,177,.14);
  }
  .province-force-head,
  .province-force-meta,
  .province-force-bar-copy,
  .province-secondary-grid,
  .province-governor-head,
  .province-governor-metrics,
  .province-governor-footer{
    display:grid;
    gap:10px;
  }
  .province-force-head{
    grid-template-columns:minmax(0,1fr) auto;
    align-items:start;
  }
  .province-force-title strong{
    display:block;
    font-size:18px;
    line-height:1.25;
    letter-spacing:-.03em;
    color:#173652;
  }
  .province-force-title span{
    display:block;
    margin-top:4px;
    font-size:13px;
    line-height:1.45;
    color:#5e7388;
    font-weight:700;
  }
  .province-force-score{
    display:grid;
    justify-items:end;
    gap:4px;
  }
  .province-force-score strong{
    font-size:28px;
    line-height:1;
    letter-spacing:-.05em;
    color:#102f4b;
  }
  .province-force-score span{
    font-size:12px;
    font-weight:800;
    color:#5e7388;
  }
  .province-force-bar{
    position:relative;
    height:10px;
    border-radius:999px;
    background:#e5edf5;
    overflow:hidden;
  }
  .province-force-bar i{
    display:block;
    height:100%;
    border-radius:inherit;
    transition:width .28s ease;
  }
  .province-force-meta{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .province-force-meta strong,
  .province-force-bar-copy strong{
    display:block;
    margin-top:4px;
    font-size:14px;
    line-height:1.35;
    color:#173652;
    letter-spacing:-.02em;
  }
  .province-force-bar-copy{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .province-sliders{
    display:grid;
    gap:12px;
  }
  .province-slider{
    display:grid;
    gap:8px;
  }
  .province-slider label{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    font-size:13px;
    line-height:1.4;
    color:#173652;
    font-weight:700;
  }
  .province-slider input[type="range"]{
    width:100%;
  }
  .province-governor-card{
    gap:14px;
  }
  .province-governor-head{
    grid-template-columns:84px minmax(0,1fr);
    align-items:center;
  }
  .province-governor-avatar{
    width:84px;
    height:84px;
    border-radius:26px;
    overflow:hidden;
    background:linear-gradient(135deg,#dfeaf5,#f5f9fd);
    box-shadow:0 12px 26px rgba(13,43,70,.10);
  }
  .province-governor-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .province-governor-avatar .gov-avatar-fallback{
    width:100%;
    height:100%;
    font-size:22px;
  }
  .province-governor-name{
    margin:0;
    font-size:22px;
    line-height:1.08;
    letter-spacing:-.04em;
    color:#102f4b;
  }
  .province-governor-sub{
    margin:6px 0 0;
    font-size:13px;
    line-height:1.5;
    color:#5e7388;
    font-weight:700;
  }
  .province-governor-metrics{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
  .province-governor-metric{
    display:grid;
    gap:6px;
    padding:12px 14px;
    border-radius:16px;
    background:#f8fbff;
  }
  .province-governor-metric strong{
    font-size:16px;
    color:#173652;
    letter-spacing:-.02em;
  }
  .province-governor-footer p{
    margin:0;
    font-size:13px;
    line-height:1.6;
    color:#274763;
    font-weight:700;
  }
  .province-secondary-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .province-demand-section .province-secondary-grid{
    margin-top:2px;
  }
  .province-force-empty{
    padding:18px;
    border-radius:20px;
    background:rgba(255,255,255,.86);
    color:#5e7388;
    font-size:13px;
    line-height:1.55;
    font-weight:700;
  }
  .territory-section.is-active .province-panel-topbar,
  .territory-section.is-active .province-panel-header,
  .territory-section.is-active .province-panel-meta-strip,
  .territory-section.is-active .province-panel-scenario,
  .territory-section.is-active .province-force-grid,
  .territory-section.is-active .province-control-shell,
  .territory-section.is-active .province-governor-card,
  .territory-section.is-active .province-report-inline,
  .territory-section.is-active .province-secondary-grid,
  .territory-section.is-active .province-demand-expanded{
    animation:provinceReportIn .3s ease both;
  }
  @keyframes provinceReportIn{
    from{
      opacity:0;
      transform:translateY(10px) scale(.992);
    }
    to{
      opacity:1;
      transform:translateY(0) scale(1);
    }
  }
  .territorial-summary-card,
  .territorial-report-card{
    padding:30px;
  }
  .territorial-summary-card{
    border-radius:32px;
    background:
      radial-gradient(220px 120px at 100% 0%, rgba(31,155,215,.06), rgba(31,155,215,0) 72%),
      linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    box-shadow:0 20px 40px rgba(13,43,70,.06);
    gap:18px;
  }
  .territorial-report-title{
    margin:0;
    font-family:'Sora','Manrope',sans-serif;
    font-size:18px;
    line-height:1.25;
    color:#102f4b;
  }
  .territorial-summary-copy,
  .province-demand-summary{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
    font-size:14px;
    line-height:1.65;
  }
  .territorial-crossread{
    margin-top:0;
  }
  .territorial-summary-card .intel-note,
  .territorial-summary-card .province-demand-updated,
  .territorial-summary-card .province-demand-history li,
  .territorial-summary-card .province-demand-ranking li{
    font-size:14px;
    line-height:1.65;
  }
  .province-demand-panel{
    gap:18px;
  }
  .province-demand-panel{
    align-items:stretch;
  }
  .province-demand-title{
    font-size:12px;
    letter-spacing:.12em;
  }
  .province-demand-summary{
    font-size:14px;
    line-height:1.6;
    color:#274763;
  }
  .province-demand-actions .mini-btn,
  .territorial-summary-card .intel-actions .mini-btn{
    min-height:44px;
    padding:0 16px;
    border-radius:999px;
  }
  .territorial-intelligence-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }
  .territorial-summary-card .intel-chip{
    display:grid;
    gap:8px;
    min-height:118px;
    padding:18px;
    border-radius:22px;
    border:1px solid #e3ebf3;
    background:#f8fbff;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .territorial-summary-card .intel-chip:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 28px rgba(13,43,70,.06);
  }
  .territory-section.is-idle .territorial-summary-section{
    display:block;
  }
  .territory-section.is-idle .territorial-map-shell #matrix-map{
    opacity:1;
    pointer-events:auto;
  }
  .intel-actions .mini-btn.buy,
  #btnIntelOpenMap{
    background:linear-gradient(135deg,#0f3558,#174a74) !important;
    border-color:#123d61 !important;
    color:#ffffff !important;
    box-shadow:0 14px 28px rgba(11,47,83,.18) !important;
    animation:none !important;
  }
  #btnIntelOpenMap:hover{
    transform:translateY(-2px);
    filter:none;
    box-shadow:0 18px 34px rgba(11,47,83,.24) !important;
  }
  .province-demand-expanded{
    max-height:0;
    opacity:0;
    overflow:hidden;
    padding:0;
    border:none;
    margin:0;
    pointer-events:none;
  }
  .gov-avatar,
  .governor-avatar{
    width:58px;
    height:58px;
  }
  .gov-name,
  .governor-card-name{
    font-size:16px;
    font-weight:700;
  }
  .metric-value,
  .governor-metric-value{
    font-size:20px;
    font-weight:700;
  }
  .governor-metric-value.image-score,
  .score{
    font-size:26px;
    font-weight:800;
    letter-spacing:-.03em;
  }
  .governor-card{
    min-height:196px;
    gap:18px;
  }
  .governor-card .metric-box{
    min-width:88px;
    padding:12px 10px;
    border-radius:16px;
    background:#f8fbff;
  }
  .modules{
    gap:18px;
  }
  .module{
    min-height:188px;
    gap:16px;
  }
  .module-title{
    font-size:18px;
    letter-spacing:-.02em;
  }
  .module-sub{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
    overflow:hidden;
    white-space:normal;
  }
  @media (max-width: 768px){
    #territorial-analysis,
    #governor-ranking,
    #modules{
      margin-top:52px;
    }
    .executive-intelligence-block{
      margin-top:32px;
    }
    .header-intelligence{
      padding:14px;
    }
    .executive-summary-strip,
    .executive-details-grid,
    .executive-crossread,
    .strategic-tracking-grid{
      grid-template-columns:1fr;
    }
    .primary-card{
      padding:18px;
    }
    .territorial-map-section{
      margin-top:32px;
      margin-bottom:32px;
    }
    .territorial-map-shell #matrix-map,
    .territorial-map-shell .argentina-interactive-map{
      height:360px !important;
      min-height:360px;
    }
    .territory-section.is-active .territorial-map-shell{
      min-height:100vh;
      padding:18px 16px;
      border-radius:28px;
    }
    .province-floating-panel{
      top:auto;
      right:12px;
      left:12px;
      bottom:12px;
      width:auto;
      max-height:none;
    }
    .province-floating-panel-inner{
      max-height:calc(100% - 4px);
      padding:16px;
    }
    .territory-section.is-active .province-floating-panel{
      position:relative;
      inset:auto;
      width:100%;
      max-height:none;
    }
    .territory-section.is-active .province-floating-panel-inner{
      min-height:calc(100vh - 180px);
      padding:0;
      overflow:visible;
    }
    .province-panel-header,
    .province-panel-scenario{
      grid-template-columns:1fr;
    }
    .province-panel-name{
      font-size:24px;
    }
    .province-panel-meta-strip,
    .province-force-meta,
    .province-force-bar-copy,
    .province-governor-metrics,
    .province-secondary-grid{
      grid-template-columns:1fr;
    }
    .province-governor-head{
      grid-template-columns:72px minmax(0,1fr);
    }
    .province-governor-avatar{
      width:72px;
      height:72px;
      border-radius:22px;
    }
    .selector-block .map-controls{
      max-width:none;
    }
    .territorial-summary-card,
    .territorial-report-card{
      padding:22px;
    }
    .territorial-intelligence-grid{
      grid-template-columns:1fr;
    }
    .governor-card{
      min-height:0;
    }
    .module{
      min-height:0;
    }
  }
  @media (prefers-reduced-motion: reduce){
    body.motion-ready .fade-in{
      opacity:1;
      transform:none;
      transition:none;
    }
  }
/* ============================================
   INTERNAL STRIP — productos privados al pie
   Apple-style: chips compactos con candado, sin texto largo
   Datacivis · 2026.05
   ============================================ */
.internal-strip {
  margin: 56px 0 28px;
  padding: 32px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f5f5f7 0%, #ebebef 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.internal-strip-head {
  text-align: center;
  margin-bottom: 22px;
}
.internal-strip-eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  color: #0071e3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.internal-strip-title {
  margin: 0 0 6px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1d1d1f;
}
.internal-strip-sub {
  margin: 0 auto;
  max-width: 480px;
  font-size: 13px;
  color: #6e6e73;
  line-height: 1.45;
}
.internal-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.internal-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none !important;
  color: #1d1d1f;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s,
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.internal-tile:hover {
  transform: translateY(-3px);
  border-color: #0071e3;
  box-shadow: 0 14px 28px rgba(0, 113, 227, 0.10);
}
.internal-tile-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
  filter: grayscale(20%);
}
.internal-tile:hover .internal-tile-icon {
  filter: none;
}
.internal-tile-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-align: center;
  line-height: 1.2;
  color: #1d1d1f;
}
.internal-tile-lock {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 11px;
  opacity: 0.45;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.internal-tile:hover .internal-tile-lock {
  opacity: 0.85;
}
@media (max-width: 520px) {
  .internal-strip {
    padding: 22px 16px;
  }
  .internal-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   CONDENSED BANNERS + SHARED MODAL
   Inteligencia Ejecutiva + Humor Social → 2 líneas + click expand
   Datacivis · 2026.05
   ============================================ */
.exec-condensed, .humor-condensed {
  margin: 36px 0;
}
/* Banners (compartidos en estilo) */
.exec-banner, .humor-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d2d2d7;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.exec-banner:hover, .humor-banner:hover {
  transform: translateY(-2px);
  border-color: #0071e3;
  box-shadow: 0 14px 32px rgba(0, 113, 227, 0.10);
}
.exec-banner-pulse, .humor-banner-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #34c759;
  box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.6);
  animation: dcvPulse 2.4s infinite;
}
.humor-banner-pulse { background: #ffb800; box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.5); }
@keyframes dcvPulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(52, 199, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
}
.exec-banner-content, .humor-banner-content {
  flex: 1;
  min-width: 0;
}
.exec-banner-eyebrow, .humor-banner-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #0071e3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.humor-banner-eyebrow { color: #a07000; }
.exec-banner-text, .humor-banner-text {
  font-size: 14.5px;
  color: #1d1d1f;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.exec-banner-text strong, .humor-banner-text strong {
  font-weight: 700;
  color: #1d1d1f;
}
.exec-banner-cta, .humor-banner-cta {
  font-size: 13px;
  color: #0071e3;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.exec-banner-cta::after, .humor-banner-cta::after {
  content: '›';
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 720px) {
  .exec-banner, .humor-banner {
    flex-wrap: wrap;
    padding: 18px 20px;
    gap: 12px;
  }
  .exec-banner-cta, .humor-banner-cta {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Hide original executive block when not in modal */
.exec-condensed > .executive-intelligence-block,
.exec-condensed .dcv-modal:not(.open) .executive-intelligence-block { display: none; }

/* Modal compartido */
.dcv-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.dcv-modal.open { display: flex; }
.dcv-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  animation: dcvFade .35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes dcvFade { from {opacity: 0} to {opacity: 1} }
.dcv-modal-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 22px;
  width: 100%;
  max-width: 920px;
  margin: 24px auto;
  padding: 40px 36px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.40);
  animation: dcvScaleIn .45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes dcvScaleIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.dcv-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #f5f5f7;
  border: none;
  font-size: 20px;
  color: #1d1d1f;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.dcv-modal-close:hover { background: #e8e8ed; }
.dcv-modal-card .executive-intelligence-block { display: block !important; margin: 0; }
.dcv-modal-card .executive-intelligence-shell { padding: 0; box-shadow: none; }

/* Humor modal head */
.humor-modal-head {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d2d2d7;
}
.humor-modal-eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  color: #a07000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.humor-modal-title {
  margin: 0 0 6px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1d1d1f;
}
.humor-modal-sub {
  margin: 0;
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .dcv-modal { padding: 12px; }
  .dcv-modal-card { padding: 28px 22px; }
  .humor-modal-title { font-size: 22px; }
}

/* ============================================
   PULSO TERRITORIAL — esquema Apple
   Hero rico + frame con borde sutil para la sección del mapa
   Datacivis · 2026.05
   ============================================ */
.pulso-territorial-frame {
  position: relative;
  margin: 56px 0;
  padding: 36px 32px 32px;
  border-radius: 28px;
  background:
    radial-gradient(640px 320px at 0% 0%, rgba(0,113,227,0.05), transparent 65%),
    radial-gradient(540px 320px at 100% 0%, rgba(255,184,0,0.04), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 24px 60px rgba(13, 43, 70, 0.06);
  overflow: visible;
}
.pulso-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pulso-hero-copy { min-width: 0; }
.pulso-hero-eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  color: #0071e3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pulso-hero-title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', Helvetica, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1d1d1f;
  margin: 0 0 10px;
  line-height: 1.1;
}
.pulso-hero-sub {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #6e6e73;
  line-height: 1.5;
  max-width: 640px;
}
.pulso-hero-chips {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.pulso-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(0, 113, 227, 0.06);
  border: 1px solid rgba(0, 113, 227, 0.10);
  min-width: 92px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}
.pulso-chip:hover {
  background: rgba(0, 113, 227, 0.10);
  transform: translateY(-2px);
}
.pulso-chip-num {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0071e3;
  line-height: 1;
}
.pulso-chip:nth-child(3) .pulso-chip-num {
  color: #34c759;
  animation: dcvPulse 2.4s infinite;
  font-size: 22px;
}
.pulso-chip-label {
  font-size: 10px;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}
/* Override existing territory-section header styles — el hero nuevo lo reemplaza */
.pulso-territorial-frame .territory-section-header { display: none !important; }
@media (max-width: 820px) {
  .pulso-territorial-frame { padding: 24px 18px; }
  .pulso-hero { grid-template-columns: 1fr; gap: 18px; }
  .pulso-hero-chips { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
  .pulso-chip { min-width: 80px; padding: 12px 14px; }
}

/* ============================================
   F4 · APPLE-STYLE FULL REDESIGN
   Hero monumental + cifras + Nosotros + footer minimalista
   Datacivis · 2026.05
   ============================================ */

/* === HERO MONUMENTAL === */
.dcv-hero-monumental {
  position: relative;
  min-height: 92vh;
  margin: -28px -32px 0;
  padding: 80px 32px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(0,113,227,0.08), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(255,184,0,0.06), transparent 60%),
    linear-gradient(180deg, #fbfbfd 0%, #f0f0f3 100%);
  overflow: hidden;
  border-radius: 24px;
}
.dcv-hero-orb-blue {
  position: absolute;
  width: 480px; height: 480px;
  top: -180px; left: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,113,227,0.18), transparent 70%);
  filter: blur(40px);
  animation: dcvFloat 18s ease-in-out infinite alternate;
}
.dcv-hero-orb-gold {
  position: absolute;
  width: 380px; height: 380px;
  bottom: -140px; right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,0,0.20), transparent 70%);
  filter: blur(40px);
  animation: dcvFloat 18s ease-in-out infinite alternate-reverse;
}
@keyframes dcvFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-30px); }
}
.dcv-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  width: 100%;
}
.dcv-hero-eyebrow {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 600;
  color: #0071e3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: dcvFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.dcv-hero-title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Helvetica Neue', Helvetica, sans-serif !important;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em !important;
  margin: 0 0 22px;
  background: linear-gradient(180deg, #1d1d1f 0%, #424245 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: dcvFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.dcv-hero-sub {
  margin: 0 auto 44px;
  font-size: clamp(17px, 1.8vw, 22px);
  color: #424245;
  max-width: 720px;
  line-height: 1.5;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: dcvFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}
.dcv-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  animation: dcvFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}
.dcv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 26px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  background: #0071e3;
  color: white !important;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.dcv-btn-primary:hover {
  background: #0077ed;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 113, 227, 0.30);
}
.dcv-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 500;
  color: #0071e3 !important;
  background: transparent;
  border: none;
  text-decoration: none !important;
  transition: opacity 0.2s;
}
.dcv-btn-ghost:hover { opacity: 0.7; }

@keyframes dcvFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dcv-hero-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  opacity: 0;
  animation: dcvFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}
.dcv-kpi {
  padding: 26px 12px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.10);
}
.dcv-kpi:last-child { border-right: none; }
.dcv-kpi-num {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif !important;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em !important;
  color: #1d1d1f !important;
  line-height: 1;
  margin-bottom: 6px;
}
.dcv-kpi-num-text { font-size: clamp(24px, 3vw, 36px); }
.dcv-kpi-label {
  font-size: 12px;
  color: #6e6e73;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  .dcv-hero-monumental { margin: -16px -16px 0; padding: 60px 16px 40px; min-height: 88vh; }
  .dcv-hero-kpis { grid-template-columns: repeat(2, 1fr); }
  .dcv-kpi { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.10); }
  .dcv-kpi:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.10); }
  .dcv-kpi:nth-last-child(-n+2) { border-bottom: none; }
  .dcv-hero-actions { margin-bottom: 48px; }
}

/* === CIFRAS GIGANTES (sección sobre fondo navy) === */
.dcv-stats-block {
  margin: 56px -32px;
  padding: 110px 32px;
  background: linear-gradient(180deg, #000814 0%, #001d3d 60%, #000814 100%);
  color: #f5f5f7;
  position: relative;
  overflow: hidden;
}
.dcv-stats-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255,184,0,0.08), transparent 60%);
  pointer-events: none;
}
.dcv-stats-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.dcv-stats-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #ffb800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dcv-stats-title {
  margin: 0 0 64px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif !important;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em !important;
  line-height: 1.05;
  background: linear-gradient(180deg, #ffffff 0%, #c7c7cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dcv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.dcv-stat {
  text-align: left;
}
.dcv-stat-num {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif !important;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em !important;
  color: #ffb800 !important;
  line-height: 1;
  margin-bottom: 14px;
}
.dcv-stat-label {
  font-size: 14px;
  color: #d2d2d7;
  font-weight: 500;
  line-height: 1.4;
  max-width: 220px;
}
.dcv-stats-foot {
  margin: 0;
  font-size: 12px;
  color: #6e6e73;
  letter-spacing: 0.01em;
}
@media (max-width: 820px) {
  .dcv-stats-block { margin: 40px -16px; padding: 80px 18px; }
  .dcv-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .dcv-stat { text-align: center; }
  .dcv-stat-label { max-width: none; }
}

/* === SECCIÓN NOSOTROS === */
.dcv-about {
  margin: 56px 0;
  padding: 100px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  border-radius: 28px;
  text-align: center;
}
.dcv-about-inner {
  max-width: 880px;
  margin: 0 auto;
}
.dcv-about-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #0071e3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dcv-about-title {
  margin: 0 0 22px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif !important;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em !important;
  line-height: 1.08;
  color: #1d1d1f;
}
.dcv-about-sub {
  margin: 0 auto 36px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: #424245;
  line-height: 1.55;
  max-width: 660px;
}
.dcv-about-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .dcv-about { padding: 60px 18px; margin: 32px 0; }
}

/* === FOOTER MINIMALISTA === */
.dcv-footer-nav {
  margin: 56px 0 24px;
  padding: 48px 0 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.dcv-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.dcv-footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dcv-footer-col-title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: 0.02em;
}
.dcv-footer-col a {
  font-size: 13px;
  color: #6e6e73 !important;
  text-decoration: none !important;
  transition: color 0.2s;
  padding: 2px 0;
}
.dcv-footer-col a:hover { color: #1d1d1f !important; }
@media (max-width: 720px) {
  .dcv-footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* =========================================================
   DATACIVIS INFLUENCERS · sección VIP con gate WhatsApp
   Todo prefijado con dcv-influencers-* / dcv-influencer-vip-*
   AISLADO del resto del CSS para no romper nada.
   Datacivis · 2026.05
   ========================================================= */
.dcv-influencers-vip {
  margin: 56px -32px;
  padding: 100px 32px;
  background: linear-gradient(180deg, #1a1a1f 0%, #2d2d34 100%);
  color: #f5f5f7;
  position: relative;
  overflow: hidden;
}
.dcv-influencers-vip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 320px at 0% 0%, rgba(255, 184, 0, 0.10), transparent 65%),
    radial-gradient(540px 320px at 100% 100%, rgba(255, 184, 0, 0.06), transparent 60%);
  pointer-events: none;
}
.dcv-influencers-vip-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.dcv-influencers-vip-head {
  text-align: center;
  margin-bottom: 56px;
}
.dcv-influencers-vip-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1f;
  background: #ffb800;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dcv-influencers-vip-title {
  margin: 0 0 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif !important;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em !important;
  line-height: 1.05;
  color: #ffffff !important;
  background: linear-gradient(180deg, #ffffff 0%, #ffd166 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dcv-influencers-vip-sub {
  margin: 0 auto;
  max-width: 620px;
  font-size: clamp(15px, 1.5vw, 17px);
  color: #a8a8b3;
  line-height: 1.55;
}
.dcv-influencers-vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}
.dcv-influencer-vip-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s, background 0.3s;
}
.dcv-influencer-vip-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 184, 0, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.dcv-influencer-vip-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb800, #f59e0b);
  color: #1a1a1f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.dcv-influencer-vip-meta {
  flex: 1;
  min-width: 0;
}
.dcv-influencer-vip-name {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.2;
}
.dcv-influencer-vip-cat {
  font-size: 12px;
  color: #a8a8b3;
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.dcv-influencer-vip-lock {
  font-size: 12px;
  opacity: 0.55;
  flex-shrink: 0;
  transition: opacity 0.25s;
}
.dcv-influencer-vip-card:hover .dcv-influencer-vip-lock {
  opacity: 0.95;
}
.dcv-influencers-vip-cta-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.dcv-influencers-vip-cta-text {
  margin: 0 0 22px;
  font-size: 15px;
  color: #d2d2d7;
  line-height: 1.5;
}
.dcv-influencers-vip-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30);
}
.dcv-influencers-vip-cta:hover {
  background: #20bf5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.40);
}
.dcv-influencers-vip-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .dcv-influencers-vip { margin: 40px -16px; padding: 60px 18px; }
  .dcv-influencers-vip-head { margin-bottom: 36px; }
}
/* === FIN DATACIVIS INFLUENCERS === */

/* === Datacivis Influencers · cards clickeables a WhatsApp === */
a.dcv-influencer-vip-card {
  cursor: pointer;
  text-decoration: none !important;
  color: inherit;
}
a.dcv-influencer-vip-card:hover {
  border-color: rgba(37, 211, 102, 0.45) !important; /* verde WhatsApp en hover */
  background: rgba(37, 211, 102, 0.06) !important;
}
a.dcv-influencer-vip-card:hover .dcv-influencer-vip-lock {
  /* Hover muestra mejor el candado, pero el verdadero CTA es el ícono whatsapp que aparece */
  opacity: 0;
}
a.dcv-influencer-vip-card::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 14px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'><path d='M20 12a8 8 0 0 1-11.7 7l-4.3 1.1L5 16a8 8 0 1 1 15-4zm-8-6a6 6 0 0 0-5.2 9l.3.5-.6 2.1 2.2-.6.5.3A6 6 0 1 0 12 6z'/></svg>") no-repeat center / contain;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
a.dcv-influencer-vip-card:hover::after {
  opacity: 1;
}
