    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       DESIGN TOKENS  (extracted from user's CSS variables)
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    /* El contenedor tendrá el color azul de fondo */


    :root {
      /* Brand Colors */
      --navy: #1C2E52;
      /* --e-global-color-044b931 */
      --navy-deep: #081031;
      /* --e-global-color-638d055 */
      --purple: #5C3B8F;
      /* --e-global-color-332724a / a2c0d56 */
      --blue: #2B94EF;
      /* --e-global-color-7ddb453 */
      --blue-mid: #2B94EF;
      /* --e-global-color-d49ac81 / ec3c7a7 */
      --sky: #41A6DD;
      /* --e-global-color-f911590 */
      --teal: #1C2E52;
      /* --e-global-color-7f3ae70 */
      --gold: #FDC100;
      /* --e-global-color-8bcd848 */
      --gold-dark: #C49A00;
      /* Dorado oscuro para gradientes con contraste */
      --green-active: #1C2E52;
      /* Estado activo / indicador dot */
      --red-danger: #DC2626;
      /* Rojo de alerta crítica */
      --red-mid: #EF4444;
      /* Rojo medio */
      --gray-100: #F8F8F8;
      /* --e-global-color-7fbea4f */
      --gray-200: #F0F0F0;
      /* --e-global-color-cfa1f76 */
      --gray-300: #DCDCDE;
      /* --e-global-color-4d462f5 */
      --gray-600: #B6BEC8;
      /* --e-global-color-c94d9ab */
      --primary: #5F6B7A;
      /* Texto de apoyo — contraste â‰¥4.5:1 sobre blanco (WCAG AA) */
      --text-muted: #9A9A9A;
      /* Solo uso decorativo / separadores */
      --secondary: #373737;
      /* --e-global-color-secondary */
      --text-light: #FFFFFF;
      /* --e-global-color-text */
      --accent-glass: #FFFFFF2B;
      /* --e-global-color-accent */
      --white: #FFFFFF;

      /* Typography (brand-defined) */
      --font-display: 'Outfit', sans-serif;
      --font-body: 'Inter', sans-serif;

      /* Font sizes */
      --fs-11: 11px;
      --fs-12: 12px;
      --fs-13: 13px;
      --fs-14: 14px;
      /* body */
      --fs-16: 16px;
      --fs-18: 18px;
      --fs-20: 20px;
      --fs-24: 24px;
      --fs-30: 30px;
      --fs-32: 32px;
      --fs-36: 36px;

      /* Spacing (wp presets) */
      --sp-20: 0.44rem;
      --sp-30: 0.67rem;
      --sp-40: 1rem;
      --sp-50: 1.5rem;
      --sp-60: 2.25rem;
      --sp-70: 3.38rem;
      --sp-80: 5.06rem;

      /* Radii */
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-xl: 32px;

      /* Shadows */
      --shadow-natural: 6px 6px 9px rgba(0, 0, 0, .20);
      --shadow-deep: 12px 12px 50px rgba(0, 0, 0, .40);
      --shadow-crisp: 6px 6px 0px rgba(0, 0, 0, 1);
      --shadow-card: 0 4px 24px rgba(11, 95, 255, .08), 0 1px 4px rgba(0, 0, 0, .06);
      --shadow-glow: 0 0 40px rgba(11, 95, 255, .25);

      /* Transitions */
      --ease: cubic-bezier(.4, 0, .2, 1);
      --dur: 0.28s;

      /* Content sizes */
      --content: 800px;
      --wide: 1200px;
      --gap: 24px;
    }

    .icon::before {
      content: "▶";
      font-size: 12px;
      margin-right: 5px;
    }

    /* â”€â”€â”€ RESET â”€â”€â”€ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-body);
      font-size: var(--fs-14);
      font-weight: 400;
      line-height: 1.65em;
      color: var(--secondary);
      background-color: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    /* â”€â”€â”€ UTILITY â”€â”€â”€ */
    .container {
      width: 100%;
      max-width: var(--wide);
      margin: 0 auto;
      padding: 0 var(--sp-60);
    }

    .section-tag {
      font-family: var(--font-display);
      font-size: var(--fs-11);
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blue);
      line-height: 1em;
      display: inline-block;
    }

    .divider {
      width: 48px;
      height: 3px;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--blue), var(--gold));
      margin: 10px 0 16px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: var(--fs-30);
      font-weight: 600;
      letter-spacing: -1px;
      line-height: 1.2em;
      color: var(--navy);
      padding-bottom: 10px;
    }

    .section-lead {
      font-family: var(--font-body);
      font-size: var(--fs-14);
      font-weight: 400;
      line-height: 1.75em;
      color: var(--primary);
      max-width: 680px;
      margin-top: 8px;
    }

    /* Fade-up animation */
    .fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .65s var(--ease), transform .65s var(--ease);
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       NAVBAR
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: var(--white);
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
      transition: background var(--dur), box-shadow var(--dur);
    }

    #navbar.scrolled {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .nav-container {
      max-width: var(--wide);
      margin: 0 auto;
      padding: 0px var(--sp-60);
      display: flex;
      align-items: center;
      gap: 32px;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .nav-logo img {
      height: 90px;
      width: auto;
    }

    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
      max-width: 250px;
    }

    .nav-logo-text strong {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.3px;
    }

    .nav-right {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      gap: 12px;
      align-items: flex-end;
    }

    /* Top Row */
    .nav-top-row {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 24px;
    }

    .top-links {
      display: flex;
      gap: 20px;
    }

    .top-links a {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color var(--dur);
    }

    .top-links a:hover {
      color: var(--navy);
    }

    .top-links i {
      font-size: 16px;
      color: var(--navy);
    }

    .social-links {
      display: flex;
      gap: 8px;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: transparent;
      color: var(--navy);
      font-size: 18px;
      transition: color var(--dur), transform var(--dur);
    }

    .social-links a:hover {
      color: var(--blue);
      transform: translateY(-2px);
    }

    .social-links a:nth-child(2) {
      color: #0077b5;
    }

    /* linkedin */
    .social-links a:nth-child(3) {
      color: #ff0000;
    }

    /* youtube */

    /* Bottom Row (Nav Pill) */
    .nav-bottom-row {
      position: relative;
      background: var(--navy);
      border-radius: 24px 0 0 24px;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      margin-left: auto;
    }

    .nav-bottom-row::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 100%;
      width: 100vw;
      background: var(--navy);
      z-index: -1;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-links li a {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      padding: 8px 16px;
      border-radius: 16px;
      transition: background var(--dur), color var(--dur);
      white-space: nowrap;
    }

    .nav-links li a:hover,
    .nav-links li a.nav-active {
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
    }

    /* HAMBURGER */
    /* =========================
   HAMBURGER
========================= */

    .hamburger {
      display: none;

      width: 48px;
      height: 48px;

      margin-left: auto;

      border: 1px solid rgba(0, 0, 0, .08);
      border-radius: 14px;

      background: rgba(255, 255, 255, .94);

      backdrop-filter: blur(10px);

      box-shadow:
        0 4px 18px rgba(0, 0, 0, .08);

      cursor: pointer;

      flex-direction: column;
      align-items: center;
      justify-content: center;

      gap: 5px;

      transition: .3s ease;

      z-index: 1001;
    }

    /* LINEAS */

    .hamburger span {
      width: 22px;
      height: 2px;

      background: var(--navy);

      border-radius: 999px;

      transition: .3s ease;
    }

    /* HOVER */

    .hamburger:hover {
      transform: translateY(-2px);

      box-shadow:
        0 10px 24px rgba(0, 0, 0, .14);
    }

    .hamburger:hover span {
      background: var(--blue);
    }

    /* =========================
   MOBILE MENU
========================= */
    .mobile-menu {
      display: flex;
    }

    @media (max-width: 980px) {

      /* MOSTRAR HAMBURGER */

      .hamburger {
        display: flex;
      }

      /* MENU */
      /* =========================
   MOBILE NAV
========================= */

      .nav-bottom-row {
        position: static;
      }

      /* HAMBURGER */

      .hamburger {
        display: none;

        width: 48px;
        height: 48px;

        border: 1px solid rgba(0, 0, 0, .08);
        border-radius: 14px;

        background: rgba(255, 255, 255, .95);

        box-shadow:
          0 4px 18px rgba(0, 0, 0, .08);

        cursor: pointer;

        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;

        z-index: 1001;
      }

      .hamburger span {
        width: 22px;
        height: 2px;

        background: var(--navy);

        border-radius: 999px;
      }

      /* MOBILE */

      .hamburger {
        display: flex;
      }

      .nav-links {

        position: absolute;

        top: 70px;

        left: 50%;
        transform: translateX(-50%);

        width: calc(100vw - 32px);
        max-width: 320px;

        background: var(--navy-deep);

        border-radius: 22px;

        padding: 24px;

        list-style: none;

        margin: 0;

        display: none;

        flex-direction: column;

        gap: 18px;

        z-index: 999;

        box-shadow:
          0 24px 50px rgba(0, 0, 0, .28);
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links li a {

        display: block;

        width: 100%;

        color: #fff;

        text-decoration: none;

        font-size: 17px;
        font-weight: 600;

        line-height: 1.4;

        padding: 6px 0;
      }

      /* HOVER */

      .mobile-menu li a:hover {
        color: var(--gold);

        transform: translateX(4px);
      }

    }


    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       HERO
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #hero {
      position: relative;
      min-height: auto;
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #152648 100%);
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 120px 0 56px;
    }

    /* Grid background overlay */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(43, 148, 239, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 148, 239, .06) 1px, transparent 1px);
      background-size: 48px 48px;
      z-index: 0;
    }

    /* Glow blobs */
    .hero-blob {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(11, 95, 255, .35) 0%, transparent 70%);
      top: -150px;
      left: -100px;
      animation: blobPulse 8s ease-in-out infinite alternate;
      z-index: 0;
    }

    .hero-blob2 {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(253, 193, 0, .25) 0%, transparent 70%);
      bottom: -80px;
      right: 120px;
      animation: blobPulse 10s ease-in-out infinite alternate-reverse;
      z-index: 0;
    }

    @keyframes blobPulse {
      from {
        transform: scale(1) translate(0, 0);
      }

      to {
        transform: scale(1.15) translate(20px, 15px);
      }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: var(--wide);
      margin: 0 auto;
      padding: 0 var(--sp-60);
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .hero-eyebrow {
      font-family: var(--font-display);
      font-size: var(--fs-11);
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      line-height: 1em;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 700;
      letter-spacing: -1.5px;
      line-height: 1em;
      color: var(--white);
      margin-bottom: 24px;
    }

    .hero-title em {
      font-style: normal;
      background: linear-gradient(135deg, var(--blue-mid), var(--sky));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-desc {
      font-family: var(--font-body);
      font-size: var(--fs-16);
      font-weight: 400;
      line-height: 1.75em;
      color: rgba(255, 255, 255, .65);
      margin-bottom: 36px;
      max-width: 500px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .btn-primary {
      font-family: var(--font-display);
      font-size: var(--fs-14);
      font-weight: 600;
      color: var(--white);
      background: linear-gradient(135deg, var(--blue), var(--blue-mid));
      padding: 14px 28px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform var(--dur), box-shadow var(--dur);
      box-shadow: 0 4px 24px rgba(11, 95, 255, .35);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(11, 95, 255, .5);
    }

    .btn-outline {
      font-family: var(--font-display);
      font-size: var(--fs-14);
      font-weight: 500;
      color: var(--white);
      border: 1.5px solid rgba(255, 255, 255, .25);
      padding: 13px 26px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background var(--dur), border-color var(--dur);
      backdrop-filter: blur(8px);
    }

    .btn-outline:hover {
      background: var(--accent-glass);
      border-color: rgba(255, 255, 255, .4);
    }

    /* Hero stats */
    .hero-stats {
      display: flex;
      gap: 40px;
    }

    .hero-stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .hero-stat strong {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.5px;
    }

    .hero-stat span {
      font-family: var(--font-body);
      font-size: 12px;
      color: rgba(255, 255, 255, .5);
      font-weight: 400;
    }

    /* Hero image */
    /* 1. EL CONTENEDOR: Totalmente limpio. 
   Es VITAL que tenga overflow: visible para que la sombra pueda "salir" */
    .hero-img-wrap {
      display: inline-block;
      position: relative;
      background: transparent !important;
      /* Quitamos cualquier fondo viejo */
      padding: 0 !important;
      /* Quitamos espacios que deformen */
      overflow: visible !important;
      filter: none !important;
      /* Mata cualquier filtro de sombra oscuro heredado */
      /* ESTO ES LA MAGIA: permite que se vea la sombra */
    }

    .hero-img-wrap::before,
    .hero-img-wrap::after {
      content: none !important;
      display: none !important;
    }

    /* 2. LA IMAGEN: Aquí hacemos todo el trabajo */
    .hero-img-wrap img {
      display: block;
      width: 100%;
      height: auto;

      /* Forzamos el redondeado de TODAS las esquinas de la foto */
      border-radius: 30px !important;

      /* LA SOMBRA DESFASADA 
     Valores: [X-derecha] [Y-abajo] [difuminado] [expansión] [color] */
      box-shadow: 12px 12px 0px 0px var(--blue-mid) !important;

      /* Aseguramos que la imagen no se mueva de su sitio original */
      transform: none !important;
      filter: none !important;
      /* Desactiva sombras oscuras nativas */
    }

    @keyframes badgePulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(11, 95, 255, .3);
      }

      50% {
        box-shadow: 0 0 0 8px rgba(11, 95, 255, 0);
      }
    }


    @keyframes dotBlink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .4;
      }
    }

    .hero-img-badge span {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 500;
      color: rgba(255, 255, 255, .85);
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       TICKER
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .ticker {
      background: var(--gold);
      overflow: hidden;
      padding: 13px 0;
      position: relative;
      z-index: 2;
    }

    .ticker-inner {
      display: flex;
      gap: 0;
      white-space: nowrap;
      animation: tickerScroll 35s linear infinite;
      width: max-content;
    }

    .ticker-inner span {
      font-family: var(--font-display);
      font-size: var(--fs-12);
      font-weight: 600;
      color: var(--navy-deep);
      letter-spacing: .5px;
      padding: 0 20px;
    }

    .ticker-inner .sep {
      color: var(--navy);
      opacity: .4;
      padding: 0;
    }

    @keyframes tickerScroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .ticker:hover .ticker-inner {
      animation-play-state: paused;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       SECTIONS — BASE LAYOUT
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    section {
      padding: 44px 0;
    }


    #intro {
      background: var(--gray-100);
    }

    #sst {
      background: var(--white);
    }

    #etica {
      background: var(--gray-100);
    }

    #anticorrupcion {
      background: var(--navy-deep);
    }

    #conflictos {
      background: var(--white);
    }

    #confidencialidad {
      background: var(--gray-100);
    }

    #financiero {
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
      position: relative;
      overflow: hidden;
    }

    #encuesta {
      background: var(--white);
    }

    #acta {
      background: var(--gray-100);
    }

    #contactos {
      background: var(--white);
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       INTRO / ALCANCE
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 52px;
    }

    .intro-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-card);
      transition: transform var(--dur), box-shadow var(--dur);
      position: relative;
      overflow: hidden;
    }

    .intro-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--sky));
    }

    .intro-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-deep);
    }

    .intro-card-num {
      font-family: var(--font-display);
      font-size: var(--fs-11);
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 12px;
    }

    .intro-card h3 {
      font-family: var(--font-display);
      font-size: var(--fs-20);
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .intro-card p {
      font-family: var(--font-body);
      font-size: var(--fs-14);
      color: var(--primary);
      line-height: 1.75em;
    }

    .objectives-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 4px;
    }


    .objectives-list li {
      font-family: var(--font-body);
      font-size: var(--fs-14);
      color: var(--primary);
      line-height: 1.65em;
      
      /* 1. Convertimos el li en flexbox para ponerlos lado a lado */
      display: flex;
      
      /* 2. Alinea el check con el primer renglón de texto si llega a haber un salto */
      align-items: flex-start; 
      
      /* 3. Controla la separación exacta entre el círculo azul y el texto */
      gap: 12px; 
      
      /* 4. IMPORTANTE: Ponemos el padding-left en 0 para que el flexbox controle el espacio */
      padding-left: 0 !important; 
      
      position: relative;
}
    

    .objectives-list li::before {
        content: '✓';
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--blue);
        color: white;
        font-size: 10px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 10px;
    }

  

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       SST
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .sst-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 52px;
    }

    .sst-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    /* Access banner */
    .acceso-banner {
      background: linear-gradient(135deg, rgba(11, 95, 255, .07), rgba(65, 166, 221, .07));
      border: 1px solid rgba(11, 95, 255, .15);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 28px;
    }

    .acceso-banner-icon {
      font-size: 24px;
      flex-shrink: 0;
      line-height: 1;
      margin-top: 2px;
    }

    .acceso-banner p {
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: var(--secondary);
      line-height: 1.65em;
    }

    .acceso-banner strong {
      color: var(--navy);
    }

    /* Doc tiers */
    .doc-tier {
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 16px;
      border: 1px solid var(--gray-300);
    }

    .doc-tier-head {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      font-family: var(--font-display);
      font-size: var(--fs-13);
      font-weight: 600;
    }

    .doc-tier-icon {
      font-size: 18px;
    }

    .doc-tier-title {
      color: var(--white);
    }

    .t1 .doc-tier-head {
      background: var(--blue);
    }

    .t2 .doc-tier-head {
      background: var(--purple);
    }

    .t3 .doc-tier-head {
      background: var(--navy);
    }

    .doc-tier-body {
      padding: 16px 20px;
      background: var(--white);
    }

    .doc-tier-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .doc-tier-list li {
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: var(--secondary);
      line-height: 1.6em;
      padding-left: 16px;
      position: relative;
    }

    .doc-tier-list li::before {
      content: '*➮';
      position: absolute;
      left: 0;
      color: var(--blue);
      font-weight: 700;
    }

    /* SST ops grid */
    .sst-ops-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .sst-op-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius-md);
      padding: 18px 20px;
      transition: transform var(--dur), box-shadow var(--dur);
      position: relative;
      overflow: hidden;
    }

    .sst-op-card::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--blue), var(--sky));
    }

    .sst-op-card:hover {
      transform: translateX(4px);
      box-shadow: var(--shadow-card);
    }

    .sst-op-card h5 {
      font-family: var(--font-display);
      font-size: var(--fs-14);
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .sst-op-card p {
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: var(--primary);
      line-height: 1.65em;
    }

    .sst-section-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-family: var(--font-body);
    }

    /* Legal box */
    .legal-box {
      background: var(--gray-100);
      border-radius: var(--radius-md);
      padding: 24px;
      border: 1px solid var(--gray-300);
      margin-top: 28px;
    }

    .legal-box h4 {
      font-family: var(--font-display);
      font-size: var(--fs-14);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 16px;
    }

    .legal-item {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      padding: 10px 0;
      border-bottom: 1px solid var(--gray-300);
    }

    .legal-item:last-child {
      border-bottom: none;
    }

    .legal-item strong {
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 600;
      color: var(--navy);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .legal-item span {
      font-family: var(--font-body);
      font-size: 12px;
      color: var(--primary);
      line-height: 1.5em;
      text-align: right;
    }

    /* Alto riesgo */
    .alto-riesgo {
      background: linear-gradient(135deg, #fff8e1, #fffde7);
      border: 1px solid rgba(253, 193, 0, .4);
      border-radius: var(--radius-lg);
      padding: 32px 36px;
      margin-top: 40px;
    }

    .alto-riesgo h4 {
      font-family: var(--font-display);
      font-size: var(--fs-18);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 20px;
    }

    .alto-riesgo-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .alto-riesgo-list li {
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: var(--secondary);
      line-height: 1.65em;
      padding: 14px 16px;
      background: rgba(255, 255, 255, .7);
      border-radius: var(--radius-sm);
      border: 1px solid rgba(253, 193, 0, .25);
    }

    .alto-riesgo-list li strong {
      color: var(--navy);
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       ÉTICA
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .ethics-intro {
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .value-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      text-align: center;
      transition: transform var(--dur), box-shadow var(--dur);
      position: relative;
      overflow: hidden;
    }

    .value-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--gold));
      transform: scaleX(0);
      transition: transform var(--dur);
    }

    .value-card:hover::before {
      transform: scaleX(1);
    }

    .value-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-card);
    }

    .value-icon {
      font-size: 36px;
      line-height: 1;
      margin-bottom: 16px;
      display: block;
    }

    .value-card h4 {
      font-family: var(--font-display);
      font-size: var(--fs-16);
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .value-card p {
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: var(--primary);
      line-height: 1.65em;
    }

    /* Conductas */
    .ethics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 0;
    }

    .ethics-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: transform var(--dur), box-shadow var(--dur);
    }

    .ethics-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
    }

    .ethics-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 16px;
    }

    .ethics-card h3 {
      font-family: var(--font-display);
      font-size: var(--fs-16);
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .ethics-card p {
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: var(--primary);
      line-height: 1.65em;
    }

    .ethics-section-title {
      font-family: var(--font-display);
      font-size: var(--fs-20);
      font-weight: 700;
      color: var(--navy);
      margin: 52px 0 24px;
      text-align: center;
      letter-spacing: -0.3px;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       ANTICORRUPCIÓN (dark section)
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #anticorrupcion .section-tag {
      color: var(--gold);
    }

    #anticorrupcion .section-title {
      color: var(--white);
    }

    #anticorrupcion .section-lead {
      color: rgba(255, 255, 255, .65);
    }

    #anticorrupcion .section-lead strong {
      color: var(--gold);
    }

    #anticorrupcion .divider {
      background: linear-gradient(90deg, var(--gold), var(--blue-mid));
    }

    .anti-table {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
      text-align: center;
    }

    .anti-col {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .anti-col-head {
      padding: 20px 28px;
      font-family: var(--font-display);
      font-size: var(--fs-18);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
    }

    .anti-col-head span {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 900;
    }

    .prohibited .anti-col-head {
      background: rgba(207, 46, 46, .15);
      color: #ff6b6b;
    }

    .prohibited .anti-col-head span {
      background: rgba(207, 46, 46, .2);
      color: #ff6b6b;
    }

    .required .anti-col-head {
      background: rgba(0, 208, 130, .1);
      color: #34d399;
    }

    .required .anti-col-head span {
      background: rgba(0, 208, 130, .15);
      color: #34d399;
    }

    .anti-items {
      padding: 24px 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      background: rgba(255, 255, 255, .04);
    }

    .anti-items li {
      font-family: var(--font-body);
      font-size: var(--fs-14);
      color: rgba(255, 255, 255, .75);
      line-height: 1.55em;
      text-align: left;
      padding: 12px 16px;
      background: rgba(255, 255, 255, .04);
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .07);
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       CONFLICTOS
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .conflictos-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
    }

    .conflicto-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-card);
      transition: transform var(--dur);
    }

    .conflicto-card:hover {
      transform: translateY(-4px);
    }

    .conflicto-card h3 {
      font-family: var(--font-display);
      font-size: var(--fs-18);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 16px;
    }

    .conflicto-card p {
      font-family: var(--font-body);
      font-size: var(--fs-14);
      color: var(--primary);
      line-height: 1.7em;
      margin-bottom: 16px;
    }

    .mini-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;
    }

    .mini-list li {
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: var(--secondary);
      line-height: 1.6em;
      padding-left: 18px;
      position: relative;
    }

    .mini-list li::before {
      content: '●';
      position: absolute;
      left: 0;
      color: var(--blue);
      font-weight: 700;
    }

    .conflict-alert {
      background: rgba(253, 193, 0, .10);
      border: 1px solid rgba(253, 193, 0, .35);
      border-radius: var(--radius-sm);
      padding: 14px 18px;
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: var(--navy);
      font-weight: 500;
      line-height: 1.55em;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       CONFIDENCIALIDAD
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .conf-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .conf-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-card);
      transition: transform var(--dur), box-shadow var(--dur);
    }

    .conf-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    }

    .conf-card h3 {
      font-family: var(--font-display);
      font-size: var(--fs-18);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .tag-icon {
      font-size: 20px;
      width: 40px;
      height: 40px;
      background: var(--gray-100);
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .check-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .check-list li {
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: var(--secondary);
      line-height: 1.6em;
      padding-left: 22px;
      position: relative;
    }

    .check-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 5px;
      position: absolute;
      left: 0;
      color: var(--blue);
      font-size: 12px;
      font-weight: 700;
      top: 1px;
    }

    .card-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
      background: linear-gradient(135deg, var(--blue), var(--blue-mid));
      padding: 10px 20px;
      border-radius: 8px;
      transition: opacity var(--dur), transform var(--dur);
    }

    .card-button:hover {
      opacity: .85;
      transform: translateY(-1px);
    }

    /* Dark card in conf */
    .conf-card.dark-card {
      background: var(--navy);
      border-color: transparent;
    }

    .conf-card.dark-card h3 {
      color: var(--white);
    }

    .conf-card.dark-card .tag-icon {
      background: rgba(255, 255, 255, .1);
    }

    .conf-card.dark-card p {
      color: rgba(255, 255, 255, .75);
    }

    .conf-card.dark-card .check-list li {
      color: rgba(255, 255, 255, .75);
    }

    .conf-card.dark-card .check-list li::before {
      color: rgba(255, 255, 255, .65);
    }

    /* â”€â”€â”€ Helpers: fondos de iconos de ética (reemplazan inline styles) â”€â”€â”€ */
    .ethics-icon.ei-blue {
      background: #e8f0fb;
    }

    .ethics-icon.ei-green {
      background: #f0faf5;
    }

    .ethics-icon.ei-amber {
      background: #fff3e0;
    }

    .ethics-icon.ei-violet {
      background: #f3f0ff;
    }

    /* â”€â”€â”€ Texto pequeño de apoyo (reemplaza inline styles en sección conf) â”€â”€â”€ */
    .p-sm {
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: var(--primary);
      line-height: 1.65em;
      margin-bottom: 14px;
    }

    .p-sm-mb2 {
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: var(--primary);
      line-height: 1.65em;
      margin-bottom: 16px;
    }

    .p-sm-dark {
      font-size: var(--fs-13);
      color: rgba(255, 255, 255, .75);
      line-height: 1.65em;
      margin-bottom: 14px;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       FINANCIERO (dark)
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #financiero::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(43, 148, 239, .2) 0%, transparent 70%);
      top: -100px;
      right: -100px;
    }

    #financiero .section-tag {
      color: var(--gold);
    }

    #financiero .section-title {
      color: var(--white);
    }

    #financiero .section-lead {
      color: rgba(255, 255, 255, .65);
    }

    #financiero .divider {
      background: linear-gradient(90deg, var(--gold), var(--sky));
    }

    .fin-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .fin-card {
      background: rgba(255, 255, 255, 0.177);
      border: 1px solid rgba(255, 255, 255, 0.542);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      text-align: center;
      transition: background var(--dur), transform var(--dur);
      backdrop-filter: blur(8px);
    }

    .fin-card:hover {
      background: rgba(255, 255, 255, .1);
      transform: translateY(-4px);
    }

    .fin-card-icon {
      font-size: 36px;
      line-height: 1;
      margin-bottom: 16px;
    }

    .fin-card h4 {
      font-family: var(--font-display);
      font-size: var(--fs-16);
      font-weight: 600;
      color: var(--white);
      margin-bottom: 10px;
    }

    .fin-card p {
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: rgba(255, 255, 255, 0.826);
      line-height: 1.65em;
    }

    .fin-note {
      display: flex;
      background: rgba(255, 255, 255, 0.118);
      border: 1px solid rgb(255, 255, 255);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      margin-top: 28px;
      gap:8px;
    }
    .fin-note::before { content: 'ℹ️'; font-size: 18px; flex-shrink: 0; }
    
    .fin-note p {
      font-family: var(--font-body);
      font-size: var(--fs-14);
      color: rgba(255, 255, 255, 0.819);
      line-height: 1.75em;
    }
  
    .fin-facturacion {
      background: linear-gradient(135deg, rgba(11, 95, 255, .25), rgba(43, 148, 239, .2));
      border: 1px solid rgba(43, 148, 239, .3);
      border-radius: var(--radius-lg);
      padding: 28px 32px;
      margin-top: 24px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .fin-facturacion-icon {
      font-size: 36px;
      line-height: 1;
      flex-shrink: 0;
    }

    .fin-facturacion-body h4 {
      font-family: var(--font-display);
      font-size: var(--fs-18);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }

    .fin-facturacion-body p {
      font-family: var(--font-body);
      font-size: var(--fs-14);
      color: rgba(255, 255, 255, .7);
      line-height: 1.7em;
    }

    .fin-facturacion-body a {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       ENCUESTA NPS
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .nps-layout {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 64px;
      align-items: center;
    }

    .nps-content .section-tag {
      color: var(--blue);
    }

    .nps-card {
      background: var(--gray-100);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius-xl);
      padding: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      min-width: 280px;
      box-shadow: var(--shadow-card);
    }

    .nps-qr-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      width: 100%;
    }

    .nps-label,
    .nps-qr-label {
      font-family: var(--font-display);
      font-size: var(--fs-11);
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--secondary);
    }

    .nps-qr-image {
      max-width: 160px;
      border-radius: var(--radius-md);
      border: 2px solid var(--gray-300);
    }

    .nps-cta a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-display);
      font-size: var(--fs-14);
      font-weight: 700;
      color: var(--white);
      background: linear-gradient(135deg, var(--blue), var(--blue-mid));
      padding: 14px 28px;
      border-radius: 10px;
      transition: transform var(--dur), box-shadow var(--dur);
      box-shadow: 0 4px 24px rgba(11, 95, 255, .3);
    }

    .nps-cta a:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(11, 95, 255, .5);
    }

    .nps-highlight {
      font-size: var(--fs-14);
      color: var(--navy);
      font-weight: 600;
      margin-top: 28px;
      padding: 16px 20px;
      background: rgba(253, 193, 0, .08);
      border-left: 3px solid var(--gold);
      border-radius: var(--radius-sm);
      line-height: 1.5em;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       ACTA
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .acta-section {
      padding: 64px 0;
    }

    .acta-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      box-shadow: var(--shadow-card);
      margin-top: 28px;
    }

    .acta-title {
      font-family: var(--font-display);
      font-size: var(--fs-20);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .acta-lead {
      font-family: var(--font-body);
      font-size: var(--fs-14);
      color: var(--primary);
      line-height: 1.7em;
      margin-bottom: 12px;
    }

    .acta-note {
      font-family: var(--font-body);
      font-size: 12px;
      color: var(--primary);
    }

    .acta-note strong {
      color: var(--navy);
      font-size: 11px;
    }

    .acta-actions {
      flex-shrink: 0;
    }

    .acta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-display);
      font-size: var(--fs-14);
      font-weight: 700;
      color: var(--white);
      background: var(--blue);
      padding: 16px 32px;
      border-radius: 10px;
      white-space: nowrap;
      transition: transform var(--dur), box-shadow var(--dur);
      box-shadow: 0 4px 20px rgba(11, 95, 255, .3);
    }

    .acta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(11, 95, 255, .45);
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       CONTACTOS
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .contacts-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .contact-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: transform var(--dur), box-shadow var(--dur);
    }

    .contact-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-deep);
    }

    .contact-card-head {
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .contact-card-head.blue {
      background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    }

    .contact-card-head.gold {
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    }

    .contact-card-head.purple {
      background: linear-gradient(135deg, var(--purple), var(--purple));
    }

    .contact-card-head.teal {
      background: linear-gradient(135deg, var(--teal), var(--navy));
    }

    .contact-card-icon {
      font-size: 26px;
      line-height: 1;
    }

    .contact-card-head h3 {
      font-family: var(--font-display);
      font-size: var(--fs-16);
      font-weight: 700;
      color: var(--white);
      line-height: 1.25em;
    }

    .contact-card-body {
      padding: 20px 24px;
      text-align: justify;
    }

    .contact-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--gray-200);
    }
    .contact-row-center{
    justify-content: center;
    }

    .contact-row:last-child {
      border-bottom: none;
    }

    .lbl {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--primary);
      flex-shrink: 0;
      padding-top: 1px;
    }

    .val {
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: var(--secondary);
      text-align: right;
      line-height: 1.5em;
    }
    
    .val.justify-left {
      text-align: justify;
    }

    .val a {
      color: var(--blue);
      transition: opacity var(--dur);
    }

    .val a:hover {
      opacity: .7;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       FOOTER
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    footer {
      background: var(--navy-deep);
      padding: 64px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 56px;
    }

    .footer-brand img {
      width: 80px;
      height: auto;
      display: block;
      margin-bottom: 24px;
    }

    /* DESCRIPCION */

    .footer-description {
      margin: 0 0 28px 0;
      max-width: 320px;
      font-size: 17px;
      line-height: 1.55;
      font-weight: 400;
      color: rgba(255, 255, 255, .82);
    }

    .footer-brand p {
      font-family: var(--font-body);
      font-size: 17px;
      color: rgba(255, 255, 255, .5);
      line-height: 1.75em;
    }

    .footer-col h4 {
      font-family: var(--font-display);
      font-size: var(--fs-12);
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .65);
      margin-bottom: 20px;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul li a {
      font-family: var(--font-body);
      font-size: var(--fs-13);
      color: rgba(255, 255, 255, .6);
      transition: color var(--dur);
    }

    /* BOTON */

    .footer-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;

      height: 42px;
      padding: 0 24px;

      border: 1px solid rgba(255, 255, 255, .18);

      background: var(--blue-mid);

      color: #fff;
      text-decoration: none;

      font-size: 13px;
      font-weight: 600;

      border-radius: 999px;

      transition: .3s ease;

      margin-bottom: 26px;
    }

    .footer-btn:hover {
      background: var(--purple);
    }

    /* REDES */

    .footer-socials {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-socials a {
      width: 42px;
      height: 42px;

      display: flex;
      align-items: center;
      justify-content: center;

      border-radius: 50%;
      background: #ffffff;
      text-decoration: none;

      transition: .3s ease;

      font-size: 18px;
      box-shadow:
        0 4px 14px rgba(0, 0, 0, .18);
    }

    /* COLORES */
    /* HOVER GENERAL */

    .footer-socials a:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow:
        0 10px 22px rgba(0, 0, 0, .22);
    }

    /* INSTAGRAM */

    .footer-socials .instagram {
      color: #000000;
    }

    /* LINKEDIN */

    .footer-socials .linkedin {
      color: var(--blue-mid);
    }

    /* YOUTUBE */

    .footer-socials .youtube {
      color: var(--gold);
    }

    /* FACEBOOK */

    .footer-socials .facebook {
      color: var(--purple);
    }

    /* VERSION */

    .footer-version {
      font-size: 14px;
      line-height: 1.6;

      color: rgba(255, 255, 255, .28);

      margin: 0;

      max-width: 320px;
    }

    .footer-col ul li a:hover {
      color: var(--white);
    }

    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
      flex-wrap: nowrap;
    }

    .footer-bottom p {
      font-family: var(--font-body);
      font-size: 12px;
      color: rgba(255, 255, 255, .55);
      white-space: nowrap;
    }

    .footer-nit {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 600;
      color: rgba(255, 255, 255, .45);
      letter-spacing: 1px;
      white-space: nowrap;
    }

    .footer-bottom a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      color: inherit;

      vertical-align: middle;
    }

    .footer-bottom img {
      display: block;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       SCROLL TO TOP
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .scroll-top {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--blue-mid));
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 20px rgba(11, 95, 255, .4);
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--dur), transform var(--dur);
      z-index: 999;
    }

    .scroll-top.visible {
      opacity: 1;
      pointer-events: all;
    }

    .scroll-top:hover {
      transform: translateY(-3px);
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       RESPONSIVE
    â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    @media (max-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-img-wrap {
        display: none;
      }

      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .fin-cards {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 340px;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 20px;
      }

      section {
        padding: 32px 0;
      }

      .nav-container {
        padding: 8px 20px;
      }

      .nav-top-row {
        display: none;
      }

      .nav-bottom-row {
        padding: 0;
        height: auto;
        background: transparent;
        position: static;
      }

      .nav-bottom-row::after {
        display: none;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        transform: none;
        background: var(--navy-deep);
        padding: 16px 20px;
        border-radius: 0 0 16px 16px;
        z-index: 998;
        gap: 2px;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-logo img {
        height: 58px;
      }

      .nav-logo-text {
        display: none;
      }



      .intro-grid {
        grid-template-columns: 1fr;
      }

      .sst-layout {
        grid-template-columns: 1fr;
      }

      .values-grid {
        grid-template-columns: 1fr 1fr;
      }

      .ethics-grid {
        grid-template-columns: 1fr;
      }

      .anti-table {
        grid-template-columns: 1fr;
      }

      .conflictos-grid {
        grid-template-columns: 1fr;
      }

      .conf-grid {
        grid-template-columns: 1fr;
      }

      .fin-cards {
        grid-template-columns: 1fr 1fr;
      }

      .nps-layout {
        grid-template-columns: 1fr;
      }

      .nps-card {
        min-width: unset;
      }

      .contacts-grid {
        grid-template-columns: 1fr;
      }

      .acta-card {
        flex-direction: column;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
      }

      .footer-bottom p {
        white-space: normal;
      }

      .alto-riesgo-list {
        grid-template-columns: 1fr;
      }

      .hero-stats {
        gap: 24px;
      }

      .section-title {
        font-size: 24px;
      }

      .hero-title {
        font-size: 36px;
      }
    }

    @media (max-width: 480px) {
      .values-grid {
        grid-template-columns: 1fr;
      }

      .fin-cards {
        grid-template-columns: 1fr;
      }
    }

    .footer-contact-card{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-block{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.contact-label{
    font-size:.75rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    color:rgba(255,255,255,.45);
}

.contact-block a,
.contact-block span{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    line-height:1.6;
    transition:.3s ease;
}

.contact-block a:hover{
    color:var(--primary-color);
}

.footer-contact-btn{
    margin-top:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
}

.footer-contact-btn:hover{
    transform:translateY(-2px);
    background:rgba(255,255,255,.12);
}
.copy-toast{
    position:fixed;
    right:20px;
    bottom:20px;
    padding:12px 18px;
    background:#1f2937;
    color:#fff;
    border-radius:8px;
    z-index:9999;
    font-size:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}