    .pnpp-header{
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 1030;
        height: 100px;
        background: #ffffff;
        box-shadow: 2px 2px 20px rgba(0,0,0,.20);
    }

    .pnpp-header__inner{
        width: 1280px;
        height: 100px;
        margin: 0 auto;
        padding: 24px 64px;      /* Arriba/Abajo 24 - Izq/Der 64 */
        box-sizing: border-box;

        display: flex;
        align-items: center;
        justify-content: space-between; /* space-between */
        gap: 24px;
    }

    /* Company (Horizontal, relleno, alto ajustado 86, gap 8) */
    .pnpp-company{
        display: flex;
        align-items: center;
        gap: 8px;
        height: 86px;
        flex: 1; /* relleno */
        min-width: 0;
    }

    /* Frame1 (Fijo 246, alto ajustado 86) */
    .pnpp-frame-header{
        width: 246px;
        height: 86px;
        display: flex;
        align-items: center;
    }
    .pnpp-frame-header img{
        max-height: 86px;
        width: auto;
        display:block;
    }

    /* Separador vertical entre logo y “PAGO ONLINE” */
    .pnpp-divider{
        width: 1px;
        height: 32px;
        background: #E5E7EB;
        flex: 0 0 1px;
    }

    /* PAGO ONLINE */
    .pnpp-product{
        font-family: 'Encode Sans', sans-serif;
        font-weight: 700;
        font-size: 18px;
        letter-spacing: 0;
        color: #3D658A;
        white-space: nowrap;
    }

    /* Buttons (Horizontal, gap 24, alto 47) */
    .pnpp-buttons{
        display: flex;
        align-items: center;
        gap: 24px;      
        height: 47px;
        flex: 0 0 auto;
    }

    /* Botones base */
    .pnpp-btn{
        height: 47px;             
        border-radius: 12px;     
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        font-family: 'Encode Sans', sans-serif;
        font-weight: 500;         
        font-size: 16px;
        line-height: 145%;
        letter-spacing: -0.5%;
        text-decoration: none;
        box-sizing: border-box;
        white-space: nowrap;
        cursor: pointer;
    }

    /* Primary button OUTLINE (Iniciar sesión) */
    .pnpp-btn--outline{
        padding: 12px 24px;
        background: #ffffff;
        border: 1px solid #5080A7;        
        color: #5080A7;
    }

    /* Primary button FILLED (Crear cuenta gratis)  */
    .pnpp-btn--primary{
        padding: 12px 16px;
        background: #3D658A;
        border: 1px solid #3D658A;
        color: #ffffff;
    }  
  
  
  @media (max-width: 1300px){
  .pnpp-header__inner{
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 767px){
  .pnpp-header{ height:auto; }
  .pnpp-header__inner{
    width: 100%;
    height:auto;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .pnpp-company{ justify-content: flex-start; }
  .pnpp-buttons{ justify-content: flex-start; flex-wrap: wrap; }
}
